diff --git a/Notification-system-Testing-using-selenium-master/Feed for draft to visible.py b/Notification-system-Testing-using-selenium-master/Feed for draft to visible.py new file mode 100644 index 0000000..2f9197b --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Feed for draft to visible.py @@ -0,0 +1,35 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + + def setUp(self): + self.driver = webdriver.Firefox() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[0]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + driver.get(config('IP_ADDRESS') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/4/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/4/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_id('publish').click() + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + + def tearDown(self): + self.driver.quit() + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py b/Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py new file mode 100644 index 0000000..b1f4da2 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py @@ -0,0 +1,53 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def checkAllUserNotification(self,var,driver): + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + "/notifications/") + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(2,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/2/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_xpath('//a [@href="/article-view/6/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/6/"]').click() + driver.find_element_by_id('publish').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(0,4): + self.checkAllUserNotification(i,driver) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py b/Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py new file mode 100644 index 0000000..83c4c38 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py @@ -0,0 +1,41 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/5/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/5/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_id('publish').click() + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(1) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + "/notifications/") + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group draft to private.py b/Notification-system-Testing-using-selenium-master/Group draft to private.py new file mode 100644 index 0000000..7daa6d0 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group draft to private.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/8/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/8/"]').click() + driver.find_element_by_id('visible').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,4): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group edit private articles .py b/Notification-system-Testing-using-selenium-master/Group edit private articles .py new file mode 100644 index 0000000..ba84986 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group edit private articles .py @@ -0,0 +1,46 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/11/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/11/"]').click() + driver.find_element_by_id('savechanges').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group edit the visible article.py b/Notification-system-Testing-using-selenium-master/Group edit the visible article.py new file mode 100644 index 0000000..926984b --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group edit the visible article.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,3): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/11/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/11/"]').click() + driver.find_element_by_id('savechanges').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group private to visible.py b/Notification-system-Testing-using-selenium-master/Group private to visible.py new file mode 100644 index 0000000..40cab72 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group private to visible.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/8/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/8/"]').click() + driver.find_element_by_id('publish').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,4): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group role change.py b/Notification-system-Testing-using-selenium-master/Group role change.py new file mode 100644 index 0000000..ef0ba77 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group role change.py @@ -0,0 +1,58 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var,roleid): + elem = driver.find_element_by_id("username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + role = config('NOTIFICATION_GROUP_ROLE').split(',') + elem = driver.find_element_by_id("role") + elem.send_keys(role[roleid]) + driver.find_element_by_id('update').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + for j in range(0,3): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_group/1/"]').click() + self.fillTheForm(driver,i,j) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group visible to publish.py b/Notification-system-Testing-using-selenium-master/Group visible to publish.py new file mode 100644 index 0000000..5059e93 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group visible to publish.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(2,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/8/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/8/"]').click() + driver.find_element_by_id('publish').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/articles/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,4): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + 'logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/Notification-system-Testing-using-selenium-master/Group visible to reject.py b/Notification-system-Testing-using-selenium-master/Group visible to reject.py new file mode 100644 index 0000000..4b05b3b --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group visible to reject.py @@ -0,0 +1,48 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(2,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/10/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/10/"]').click() + driver.find_element_by_id('reject').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,3): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Notification for editing the article.py b/Notification-system-Testing-using-selenium-master/Notification for editing the article.py new file mode 100644 index 0000000..f205173 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Notification for editing the article.py @@ -0,0 +1,49 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(0,3): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/2/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_xpath('//a [@href="/article-view/7/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/7/"]').click() + driver.find_element_by_id('savechanges').click() + driver.implicitly_wait(1000) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + self.login(3,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Notification system Report for Testing.pdf b/Notification-system-Testing-using-selenium-master/Notification system Report for Testing.pdf new file mode 100644 index 0000000..2fcbb2c Binary files /dev/null and b/Notification-system-Testing-using-selenium-master/Notification system Report for Testing.pdf differ diff --git a/Notification-system-Testing-using-selenium-master/Remove the users of different roles.py b/Notification-system-Testing-using-selenium-master/Remove the users of different roles.py new file mode 100644 index 0000000..3ca6bd7 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Remove the users of different roles.py @@ -0,0 +1,50 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var): + elem = driver.find_element_by_id("username") + user = config('user').split(',') + elem.send_keys(user[var]) + driver.find_element_by_id('remove').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_community/2/"]').click() + self.fillTheForm(driver,i) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Removing users in the group.py b/Notification-system-Testing-using-selenium-master/Removing users in the group.py new file mode 100644 index 0000000..c8b7b32 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Removing users in the group.py @@ -0,0 +1,48 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var): + elem = driver.find_element_by_id("username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + driver.find_element_by_id('remove').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_group/1/"]').click() + self.fillTheForm(driver,i) + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Role to role change.py b/Notification-system-Testing-using-selenium-master/Role to role change.py new file mode 100644 index 0000000..297a223 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Role to role change.py @@ -0,0 +1,56 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var,roleid): + elem = driver.find_element_by_id("username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + role = config('NOTIFICATION_ROLE').split(',') + elem = driver.find_element_by_id("role") + elem.send_keys(role[roleid]) + driver.find_element_by_id('update').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + for j in range(0,3): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_community/2/"]').click() + self.fillTheForm(driver,i,j) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Subscribe the community.py b/Notification-system-Testing-using-selenium-master/Subscribe the community.py new file mode 100644 index 0000000..23b60bf --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Subscribe the community.py @@ -0,0 +1,35 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(3,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_id("join-us").click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py b/Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py new file mode 100644 index 0000000..223551e --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py @@ -0,0 +1,43 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_id("Unsubscribe").click() + driver.find_element_by_id("Yes").click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + #make the id as visible of the button of visible in html file + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Unsubscribe the community.py b/Notification-system-Testing-using-selenium-master/Unsubscribe the community.py new file mode 100644 index 0000000..9d03cc8 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Unsubscribe the community.py @@ -0,0 +1,42 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_id("Unsubscribe").click() + driver.find_element_by_id("Yes").click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + #make the id as visible of the button of visible in html file + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/geckodriver.log b/Notification-system-Testing-using-selenium-master/geckodriver.log new file mode 100644 index 0000000..f1de064 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/geckodriver.log @@ -0,0 +1,6745 @@ +1530250009814 geckodriver INFO geckodriver 0.21.0 +1530250009870 geckodriver INFO Listening on 127.0.0.1:41507 +1530250010834 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DrinddkTWbNE" +1530250015119 Marionette INFO Listening on port 44515 +1530250015147 Marionette WARN TLS certificate errors will be ignored for this session +1530250015181 geckodriver INFO geckodriver 0.21.0 +1530250015185 geckodriver INFO Listening on 127.0.0.1:54959 +1530250016187 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WHYsGFevpWZA" +1530250019880 Marionette INFO Listening on port 33301 +1530250019902 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530250352661 geckodriver INFO geckodriver 0.21.0 +1530250352664 geckodriver INFO Listening on 127.0.0.1:45241 +1530250353670 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.seg1PLUimFxr" +1530250356546 Marionette INFO Listening on port 37809 +1530250356586 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530250510662 geckodriver INFO geckodriver 0.21.0 +1530250510665 geckodriver INFO Listening on 127.0.0.1:33301 +1530250511671 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jHzJDuXPpeoR" +1530250514646 Marionette INFO Listening on port 36339 +1530250514683 Marionette WARN TLS certificate errors will be ignored for this session +[Parent 6217, Gecko_IOThread] WARNING: pipe error (88): Connection reset by peer: file /build/firefox-AIw0T6/firefox-60.0.1+build2/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +1530250714905 geckodriver INFO geckodriver 0.21.0 +1530250714909 geckodriver INFO Listening on 127.0.0.1:43259 +1530250715913 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3qdp1XeuCHym" +1530250719079 Marionette INFO Listening on port 34519 +1530250719122 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530251142449 geckodriver INFO geckodriver 0.21.0 +1530251142452 geckodriver INFO Listening on 127.0.0.1:39241 +1530251143457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.C2Igh2yXIdXX" +1530251146584 Marionette INFO Listening on port 34209 +1530251146667 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530251207674 geckodriver INFO geckodriver 0.21.0 +1530251207678 geckodriver INFO Listening on 127.0.0.1:52385 +1530251208682 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.A1w61i1oOWj9" +1530251211816 Marionette INFO Listening on port 36465 +1530251211891 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530251473437 geckodriver INFO geckodriver 0.21.0 +1530251473440 geckodriver INFO Listening on 127.0.0.1:37929 +1530251474446 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.YVMYpuzIlS0k" +1530251477652 Marionette INFO Listening on port 32777 +1530251477660 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530251587605 geckodriver INFO geckodriver 0.21.0 +1530251587609 geckodriver INFO Listening on 127.0.0.1:40135 +1530251588613 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DMvupJRzfYZg" +1530251591733 Marionette INFO Listening on port 37809 +1530251591823 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530252277315 geckodriver INFO geckodriver 0.21.0 +1530252277319 geckodriver INFO Listening on 127.0.0.1:46887 +1530252278321 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.13jQg3vKDU4t" +1530252281118 Marionette INFO Listening on port 41649 +1530252281134 Marionette WARN TLS certificate errors will be ignored for this session +1530252281172 geckodriver INFO geckodriver 0.21.0 +1530252281176 geckodriver INFO Listening on 127.0.0.1:55337 +1530252282178 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Kw9FmuwZ9pWT" +1530252286751 Marionette INFO Listening on port 36105 +1530252286795 Marionette WARN TLS certificate errors will be ignored for this session +1530252288519 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530252304889 geckodriver INFO geckodriver 0.21.0 +1530252304893 geckodriver INFO Listening on 127.0.0.1:53819 +1530252305897 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gUneLfBbcQsZ" +1530252308984 Marionette INFO Listening on port 38579 +1530252309009 Marionette WARN TLS certificate errors will be ignored for this session +1530252309054 geckodriver INFO geckodriver 0.21.0 +1530252309058 geckodriver INFO Listening on 127.0.0.1:51815 +1530252310058 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6Zrh1cikxzy4" +1530252314440 Marionette INFO Listening on port 41103 +1530252314471 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530252466608 geckodriver INFO geckodriver 0.21.0 +1530252466611 geckodriver INFO Listening on 127.0.0.1:47921 +1530252467614 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aQRjTWXdrydP" +1530252470951 Marionette INFO Listening on port 34505 +1530252471023 Marionette WARN TLS certificate errors will be ignored for this session +1530252471059 geckodriver INFO geckodriver 0.21.0 +1530252471063 geckodriver INFO Listening on 127.0.0.1:47313 +1530252472065 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fFqQ6Bu60ta3" +1530252476482 Marionette INFO Listening on port 42587 +1530252476578 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530252710146 geckodriver INFO geckodriver 0.21.0 +1530252710149 geckodriver INFO Listening on 127.0.0.1:58229 +1530252711153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Y5p6UJKVdt0G" +1530252714185 Marionette INFO Listening on port 45207 +1530252714276 Marionette WARN TLS certificate errors will be ignored for this session +1530252714319 geckodriver INFO geckodriver 0.21.0 +1530252714322 geckodriver INFO Listening on 127.0.0.1:59829 +1530252715324 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JSGT2ymFnUy1" +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +1530252719163 Marionette INFO Listening on port 32993 +1530252719234 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530252843906 geckodriver INFO geckodriver 0.21.0 +1530252843910 geckodriver INFO Listening on 127.0.0.1:52591 +1530252844915 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.TKnqy3GWEv9n" +1530252849623 Marionette INFO Listening on port 43653 +1530252849627 Marionette WARN TLS certificate errors will be ignored for this session +1530252849667 geckodriver INFO geckodriver 0.21.0 +1530252849671 geckodriver INFO Listening on 127.0.0.1:54479 +1530252850672 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.71YLxIXVfn61" +1530252854662 Marionette INFO Listening on port 32883 +1530252854684 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530252927659 geckodriver INFO geckodriver 0.21.0 +1530252927662 geckodriver INFO Listening on 127.0.0.1:45447 +1530252928665 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WCHZB6zjezTs" +1530252932037 Marionette INFO Listening on port 42389 +1530252932080 Marionette WARN TLS certificate errors will be ignored for this session +1530252932114 geckodriver INFO geckodriver 0.21.0 +1530252932118 geckodriver INFO Listening on 127.0.0.1:53015 +1530252933118 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2aqVA429o5d0" +1530252937128 Marionette INFO Listening on port 38725 +1530252937245 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530253029149 geckodriver INFO geckodriver 0.21.0 +1530253029152 geckodriver INFO Listening on 127.0.0.1:52577 +1530253030155 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qqmnimmecvWH" +1530253033050 Marionette INFO Listening on port 45087 +1530253033065 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530253098351 geckodriver INFO geckodriver 0.21.0 +1530253098354 geckodriver INFO Listening on 127.0.0.1:46769 +1530253099359 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tC0TDJOl8m1T" +1530253102393 Marionette INFO Listening on port 37969 +1530253102470 Marionette WARN TLS certificate errors will be ignored for this session +1530253102506 geckodriver INFO geckodriver 0.21.0 +1530253102510 geckodriver INFO Listening on 127.0.0.1:37525 +1530253103513 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VLWQpXBL5bg8" +1530253107326 Marionette INFO Listening on port 40291 +1530253107424 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +[Parent 17637, Gecko_IOThread] WARNING: pipe error (95): Connection reset by peer: file /build/firefox-AIw0T6/firefox-60.0.1+build2/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530253252402 geckodriver INFO geckodriver 0.21.0 +1530253252406 geckodriver INFO Listening on 127.0.0.1:44831 +1530253253410 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mVqz3hAY6Nrz" +1530253256391 Marionette INFO Listening on port 40821 +1530253256420 Marionette WARN TLS certificate errors will be ignored for this session +1530253256483 geckodriver INFO geckodriver 0.21.0 +1530253256488 geckodriver INFO Listening on 127.0.0.1:42277 +1530253257491 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rFMEOY3HaF55" +1530253261270 Marionette INFO Listening on port 37721 +1530253261302 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530253378460 geckodriver INFO geckodriver 0.21.0 +1530253378464 geckodriver INFO Listening on 127.0.0.1:46359 +1530253379466 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Kf2M3rTWrHdd" +1530253382472 Marionette INFO Listening on port 35239 +1530253382475 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530253449467 geckodriver INFO geckodriver 0.21.0 +1530253449470 geckodriver INFO Listening on 127.0.0.1:54091 +1530253450475 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.0Unvt0BWbULh" +1530253453342 Marionette INFO Listening on port 37679 +1530253453385 Marionette WARN TLS certificate errors will be ignored for this session +1530253453420 geckodriver INFO geckodriver 0.21.0 +1530253453424 geckodriver INFO Listening on 127.0.0.1:36107 +1530253454426 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.n9Yi4dze84Qe" +1530253457922 Marionette INFO Listening on port 35359 +1530253457942 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530253866642 geckodriver INFO geckodriver 0.21.0 +1530253866646 geckodriver INFO Listening on 127.0.0.1:51099 +1530253867651 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.D4bvUMhLxeBq" +1530253870596 Marionette INFO Listening on port 42603 +1530253870675 Marionette WARN TLS certificate errors will be ignored for this session +1530253870719 geckodriver INFO geckodriver 0.21.0 +1530253870723 geckodriver INFO Listening on 127.0.0.1:40763 +1530253871726 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4kuJHzl19RIy" +1530253873177 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530253875839 Marionette INFO Listening on port 46749 +1530253875939 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530254285319 geckodriver INFO geckodriver 0.21.0 +1530254285323 geckodriver INFO Listening on 127.0.0.1:36751 +1530254286326 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jCO0eoxLO0T4" +1530254289203 Marionette INFO Listening on port 36929 +1530254289238 Marionette WARN TLS certificate errors will be ignored for this session +1530254289274 geckodriver INFO geckodriver 0.21.0 +1530254289277 geckodriver INFO Listening on 127.0.0.1:51755 +1530254290279 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cdFH1G58jL24" +[Child 20921, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-AIw0T6/firefox-60.0.1+build2/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530254293829 Marionette INFO Listening on port 33257 +1530254293912 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530254358170 addons.productaddons WARN Failed downloading XML, status: 0, reason: timeout +1530254448969 addons.productaddons WARN Failed downloading via XHR, status: 0, reason: error +1530254920819 geckodriver INFO geckodriver 0.21.0 +1530254920823 geckodriver INFO Listening on 127.0.0.1:32875 +1530254921825 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FHoYSQLSqwcy" +1530254924828 Marionette INFO Listening on port 46123 +1530254924841 Marionette WARN TLS certificate errors will be ignored for this session +1530254924882 geckodriver INFO geckodriver 0.21.0 +1530254924886 geckodriver INFO Listening on 127.0.0.1:36767 +1530254925887 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aEpWm3p64cy0" +1530254929400 Marionette INFO Listening on port 43917 +1530254929497 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530255131225 geckodriver INFO geckodriver 0.21.0 +1530255131230 geckodriver INFO Listening on 127.0.0.1:41085 +1530255132234 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wBJbGIvyrw1X" +1530255135253 Marionette INFO Listening on port 43851 +1530255135345 Marionette WARN TLS certificate errors will be ignored for this session +1530255135382 geckodriver INFO geckodriver 0.21.0 +1530255135386 geckodriver INFO Listening on 127.0.0.1:52993 +1530255135959 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530255136389 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VNDrHJwvCDeb" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530255139709 Marionette INFO Listening on port 38875 +1530255139802 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530257664999 geckodriver INFO geckodriver 0.21.0 +1530257665002 geckodriver INFO Listening on 127.0.0.1:50537 +1530257666006 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.f9OmvhXG6HOA" +1530257668947 Marionette INFO Listening on port 36877 +1530257669014 Marionette WARN TLS certificate errors will be ignored for this session +1530257669100 geckodriver INFO geckodriver 0.21.0 +1530257669105 geckodriver INFO Listening on 127.0.0.1:43211 +1530257670106 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dDJNL7rmO21u" +1530257670147 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530257673712 Marionette INFO Listening on port 37113 +1530257673717 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530257824716 geckodriver INFO geckodriver 0.21.0 +1530257824719 geckodriver INFO Listening on 127.0.0.1:45105 +1530257825725 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6aj3iIVrByaA" +1530257828710 Marionette INFO Listening on port 36857 +1530257828742 Marionette WARN TLS certificate errors will be ignored for this session +1530257828794 geckodriver INFO geckodriver 0.21.0 +1530257828799 geckodriver INFO Listening on 127.0.0.1:55427 +1530257829430 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530257829799 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5yIGPOoVP54D" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530257833623 Marionette INFO Listening on port 43735 +1530257833711 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +1530257977411 geckodriver INFO geckodriver 0.21.0 +1530257977415 geckodriver INFO Listening on 127.0.0.1:38423 +1530257978419 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Tbj7ujVzR12A" +1530257981458 Marionette INFO Listening on port 36817 +1530257981528 Marionette WARN TLS certificate errors will be ignored for this session +1530257981577 geckodriver INFO geckodriver 0.21.0 +1530257981582 geckodriver INFO Listening on 127.0.0.1:53549 +1530257982582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DJggN2CNfMVr" +1530257986852 Marionette INFO Listening on port 37771 +1530257986900 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530258050593 geckodriver INFO geckodriver 0.21.0 +1530258050597 geckodriver INFO Listening on 127.0.0.1:42411 +1530258051601 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZjHz5smg1rxx" +1530258054876 Marionette INFO Listening on port 33475 +1530258055050 Marionette WARN TLS certificate errors will be ignored for this session +1530258055105 geckodriver INFO geckodriver 0.21.0 +1530258055109 geckodriver INFO Listening on 127.0.0.1:55489 +1530258056109 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zRtmDHFiayWf" +1530258060524 Marionette INFO Listening on port 44523 +1530258060622 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530258156149 geckodriver INFO geckodriver 0.21.0 +1530258156152 geckodriver INFO Listening on 127.0.0.1:42319 +1530258157157 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NUEJKhYSpPcu" +1530258160202 Marionette INFO Listening on port 45885 +1530258160274 Marionette WARN TLS certificate errors will be ignored for this session +1530258160321 geckodriver INFO geckodriver 0.21.0 +1530258160325 geckodriver INFO Listening on 127.0.0.1:40443 +1530258161325 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZeYOntYsEZUt" +1530258162929 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530258165707 Marionette INFO Listening on port 35199 +1530258165737 Marionette WARN TLS certificate errors will be ignored for this session +1530258271447 geckodriver INFO geckodriver 0.21.0 +1530258271451 geckodriver INFO Listening on 127.0.0.1:34707 +1530258272457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZPF1gipwM4C7" +1530258275393 Marionette INFO Listening on port 37275 +1530258275472 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/, line 362: ReferenceError: None is not defined +1530258382783 geckodriver INFO geckodriver 0.21.0 +1530258382786 geckodriver INFO Listening on 127.0.0.1:35851 +1530258383791 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.8BXSW0j0kkam" +1530258386798 Marionette INFO Listening on port 33573 +1530258386904 Marionette WARN TLS certificate errors will be ignored for this session +1530258386936 geckodriver INFO geckodriver 0.21.0 +1530258386940 geckodriver INFO Listening on 127.0.0.1:43431 +1530258387941 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Pfi1qAcBWaY0" +1530258391848 Marionette INFO Listening on port 40911 +1530258391859 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://localhost:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/, line 362: ReferenceError: None is not defined +1530258501306 geckodriver INFO geckodriver 0.21.0 +1530258501309 geckodriver INFO Listening on 127.0.0.1:54211 +1530258502315 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.s363zTA0hb1Z" +1530258505318 Marionette INFO Listening on port 36283 +1530258505325 Marionette WARN TLS certificate errors will be ignored for this session +1530258505371 geckodriver INFO geckodriver 0.21.0 +1530258505376 geckodriver INFO Listening on 127.0.0.1:44507 +1530258506377 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3uLc0n9PbVzi" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530258510843 Marionette INFO Listening on port 42187 +1530258510899 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530258665983 geckodriver INFO geckodriver 0.21.0 +1530258665987 geckodriver INFO Listening on 127.0.0.1:46533 +1530258666992 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nqKjmklgj440" +1530258670011 Marionette INFO Listening on port 46275 +1530258670103 Marionette WARN TLS certificate errors will be ignored for this session +1530258670147 geckodriver INFO geckodriver 0.21.0 +1530258670152 geckodriver INFO Listening on 127.0.0.1:40491 +1530258671153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.afWrSpu3jaoU" +1530258672274 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530258675174 Marionette INFO Listening on port 41759 +1530258675263 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530258969646 geckodriver INFO geckodriver 0.21.0 +1530258969650 geckodriver INFO Listening on 127.0.0.1:60383 +1530258970654 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qKLnEuOmOqzG" +1530258973752 Marionette INFO Listening on port 45723 +1530258973767 Marionette WARN TLS certificate errors will be ignored for this session +1530258973813 geckodriver INFO geckodriver 0.21.0 +1530258973818 geckodriver INFO Listening on 127.0.0.1:33995 +1530258974819 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7i23tTRZVoZQ" +1530258978672 Marionette INFO Listening on port 44929 +1530258978730 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530259117815 geckodriver INFO geckodriver 0.21.0 +1530259117819 geckodriver INFO Listening on 127.0.0.1:56761 +1530259118822 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.EqesIV9m6aCO" +1530259122082 Marionette INFO Listening on port 46077 +1530259122138 Marionette WARN TLS certificate errors will be ignored for this session +1530259122171 geckodriver INFO geckodriver 0.21.0 +1530259122175 geckodriver INFO Listening on 127.0.0.1:42851 +1530259123177 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.git7ZimWZU6w" +1530259126814 Marionette INFO Listening on port 39465 +1530259126888 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530259924476 geckodriver INFO geckodriver 0.21.0 +1530259924481 geckodriver INFO Listening on 127.0.0.1:34513 +1530259925485 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.vHqPhniquxOf" +1530259928353 Marionette INFO Listening on port 41641 +1530259928397 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +1530259983307 geckodriver INFO geckodriver 0.21.0 +1530259983311 geckodriver INFO Listening on 127.0.0.1:45253 +1530259984313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zvJZ7fm9E368" +1530259987257 Marionette INFO Listening on port 36607 +1530259987333 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530260244902 geckodriver INFO geckodriver 0.21.0 +1530260244906 geckodriver INFO Listening on 127.0.0.1:46003 +1530260245911 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zxBXj3qW0i5Y" +1530260249067 Marionette INFO Listening on port 44925 +1530260249128 Marionette WARN TLS certificate errors will be ignored for this session +1530260249164 geckodriver INFO geckodriver 0.21.0 +1530260249168 geckodriver INFO Listening on 127.0.0.1:39287 +1530260250170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7b17AhuFiaNx" +1530260250484 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530260253966 Marionette INFO Listening on port 38291 +1530260253987 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +1530260363307 geckodriver INFO geckodriver 0.21.0 +1530260363311 geckodriver INFO Listening on 127.0.0.1:37645 +1530260364313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DIOXz4VPvy5n" +1530260367288 Marionette INFO Listening on port 35469 +1530260367323 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530260478028 geckodriver INFO geckodriver 0.21.0 +1530260478031 geckodriver INFO Listening on 127.0.0.1:42527 +1530260479037 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dxH6yvRIo3OC" +1530260481899 Marionette INFO Listening on port 43739 +1530260481946 Marionette WARN TLS certificate errors will be ignored for this session +1530260481982 geckodriver INFO geckodriver 0.21.0 +1530260481986 geckodriver INFO Listening on 127.0.0.1:46587 +1530260482989 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cU3HSZ7S0X9i" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530260487107 Marionette INFO Listening on port 44515 +1530260487201 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://localhost:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://localhost:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530268643816 geckodriver INFO geckodriver 0.21.0 +1530268643819 geckodriver INFO Listening on 127.0.0.1:38947 +1530268644824 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NGGGMxMqDkpl" +1530268647744 Marionette INFO Listening on port 40653 +1530268647834 Marionette WARN TLS certificate errors will be ignored for this session +1530268647875 geckodriver INFO geckodriver 0.21.0 +1530268647879 geckodriver INFO Listening on 127.0.0.1:35341 +1530268648881 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.CvDkD1NotjpD" +1530268650076 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530268652805 Marionette INFO Listening on port 40179 +1530268652895 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530268756837 geckodriver INFO geckodriver 0.21.0 +1530268756841 geckodriver INFO Listening on 127.0.0.1:58439 +1530268757845 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.p9gMOBBShPsV" +1530268760977 Marionette INFO Listening on port 33591 +1530268761065 Marionette WARN TLS certificate errors will be ignored for this session +1530268761101 geckodriver INFO geckodriver 0.21.0 +1530268761105 geckodriver INFO Listening on 127.0.0.1:59247 +1530268762106 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ilc6oqD3qScz" +1530268762324 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530268765584 Marionette INFO Listening on port 41393 +1530268765628 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530269221072 geckodriver INFO geckodriver 0.21.0 +1530269221076 geckodriver INFO Listening on 127.0.0.1:42755 +1530269222080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.KxudWXsJ6FZ1" +1530269225005 Marionette INFO Listening on port 41933 +1530269225089 Marionette WARN TLS certificate errors will be ignored for this session +1530269225131 geckodriver INFO geckodriver 0.21.0 +1530269225135 geckodriver INFO Listening on 127.0.0.1:49591 +1530269226136 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JSzpbwhtNKbV" +1530269227040 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269230309 Marionette INFO Listening on port 38299 +1530269230349 Marionette WARN TLS certificate errors will be ignored for this session +1530269491239 geckodriver INFO geckodriver 0.21.0 +1530269491243 geckodriver INFO Listening on 127.0.0.1:38183 +1530269492248 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NvrVcYD2N0PK" +1530269495367 Marionette INFO Listening on port 37289 +1530269495458 Marionette WARN TLS certificate errors will be ignored for this session +1530269495495 geckodriver INFO geckodriver 0.21.0 +1530269495499 geckodriver INFO Listening on 127.0.0.1:57275 +1530269495887 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530269496501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.U28E8zSNtt2s" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269500139 Marionette INFO Listening on port 37923 +1530269500211 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269534880 geckodriver INFO geckodriver 0.21.0 +1530269534884 geckodriver INFO Listening on 127.0.0.1:59147 +1530269535888 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VnyfssUkyCJH" +1530269539059 Marionette INFO Listening on port 34071 +1530269539103 Marionette WARN TLS certificate errors will be ignored for this session +1530269539140 geckodriver INFO geckodriver 0.21.0 +1530269539144 geckodriver INFO Listening on 127.0.0.1:51663 +1530269539568 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530269540146 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.iiXqoH5yIB2V" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269543831 Marionette INFO Listening on port 46019 +1530269543885 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530269944418 geckodriver INFO geckodriver 0.21.0 +1530269944422 geckodriver INFO Listening on 127.0.0.1:35847 +1530269945426 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NP1cembEMlzE" +1530269948326 Marionette INFO Listening on port 38379 +1530269948343 Marionette WARN TLS certificate errors will be ignored for this session +1530269948380 geckodriver INFO geckodriver 0.21.0 +1530269948384 geckodriver INFO Listening on 127.0.0.1:52943 +1530269949384 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bhfgXbBA1uBg" +1530269949520 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269952799 Marionette INFO Listening on port 42483 +1530269952894 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/, line 362: ReferenceError: None is not defined +1530270039741 geckodriver INFO geckodriver 0.21.0 +1530270039744 geckodriver INFO Listening on 127.0.0.1:36487 +1530270040746 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.pUiCwVP4i2iz" +1530270043866 Marionette INFO Listening on port 38473 +1530270043956 Marionette WARN TLS certificate errors will be ignored for this session +1530270043997 geckodriver INFO geckodriver 0.21.0 +1530270044001 geckodriver INFO Listening on 127.0.0.1:52791 +1530270045002 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.lZmUattTMc39" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270049206 Marionette INFO Listening on port 43471 +1530270049216 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/, line 362: ReferenceError: None is not defined +1530270116981 geckodriver INFO geckodriver 0.21.0 +1530270116985 geckodriver INFO Listening on 127.0.0.1:33521 +1530270117990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.0H4EYztSxbA3" +1530270120805 Marionette INFO Listening on port 39591 +1530270120899 Marionette WARN TLS certificate errors will be ignored for this session +1530270120936 geckodriver INFO geckodriver 0.21.0 +1530270120940 geckodriver INFO Listening on 127.0.0.1:55281 +1530270121942 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.GMMd5OQi1wvm" +1530270125605 Marionette INFO Listening on port 43759 +1530270125651 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/, line 362: ReferenceError: None is not defined +1530270375479 geckodriver INFO geckodriver 0.21.0 +1530270375483 geckodriver INFO Listening on 127.0.0.1:41781 +1530270376485 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HOOLpiGDdbj8" +1530270379413 Marionette INFO Listening on port 45461 +1530270379497 Marionette WARN TLS certificate errors will be ignored for this session +1530270379537 geckodriver INFO geckodriver 0.21.0 +1530270379541 geckodriver INFO Listening on 127.0.0.1:53931 +1530270380543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wKBr1NaZ31wm" +1530270384336 Marionette INFO Listening on port 41797 +1530270384357 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +1530270497614 geckodriver INFO geckodriver 0.21.0 +1530270497618 geckodriver INFO Listening on 127.0.0.1:48921 +1530270498622 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HIfZhP9jnEUm" +1530270501762 Marionette INFO Listening on port 46217 +1530270501840 Marionette WARN TLS certificate errors will be ignored for this session +1530270501879 geckodriver INFO geckodriver 0.21.0 +1530270501883 geckodriver INFO Listening on 127.0.0.1:52687 +1530270502652 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530270502885 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.lK6r5qaghmT8" +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270506344 Marionette INFO Listening on port 33685 +1530270506396 Marionette WARN TLS certificate errors will be ignored for this session +1530270507312 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270516322 geckodriver INFO geckodriver 0.21.0 +1530270516326 geckodriver INFO Listening on 127.0.0.1:59663 +1530270517331 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mIkKmacrUIhO" +1530270520145 Marionette INFO Listening on port 38317 +1530270520241 Marionette WARN TLS certificate errors will be ignored for this session +1530270520281 geckodriver INFO geckodriver 0.21.0 +1530270520285 geckodriver INFO Listening on 127.0.0.1:41165 +1530270521287 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.GrtFmy0ainDO" +1530270521409 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270525094 Marionette INFO Listening on port 40399 +1530270525215 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270913333 geckodriver INFO geckodriver 0.21.0 +1530270913336 geckodriver INFO Listening on 127.0.0.1:56369 +1530270914340 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.f440qAXVWj0Z" +1530270917333 Marionette INFO Listening on port 39749 +1530270917361 Marionette WARN TLS certificate errors will be ignored for this session +1530270917401 geckodriver INFO geckodriver 0.21.0 +1530270917404 geckodriver INFO Listening on 127.0.0.1:55709 +1530270917844 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530270918406 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.IXPODWf7AM9R" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270922050 Marionette INFO Listening on port 35385 +1530270922116 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530270990075 geckodriver INFO geckodriver 0.21.0 +1530270990079 geckodriver INFO Listening on 127.0.0.1:49827 +1530270991081 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ghoPyHJWVFE0" +1530270994199 Marionette INFO Listening on port 43045 +1530270994291 Marionette WARN TLS certificate errors will be ignored for this session +1530270994334 geckodriver INFO geckodriver 0.21.0 +1530270994338 geckodriver INFO Listening on 127.0.0.1:36851 +1530270995338 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rZC3xhKfoT0U" +1530270999834 Marionette INFO Listening on port 42323 +1530270999855 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530271640189 geckodriver INFO geckodriver 0.21.0 +1530271640193 geckodriver INFO Listening on 127.0.0.1:37431 +1530271641197 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.9jt2HlAzFaXM" +1530271644219 Marionette INFO Listening on port 37387 +1530271644307 Marionette WARN TLS certificate errors will be ignored for this session +1530271644364 geckodriver INFO geckodriver 0.21.0 +1530271644368 geckodriver INFO Listening on 127.0.0.1:52929 +1530271644751 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530271645369 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.LpTdvJA7jJqM" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271648909 Marionette INFO Listening on port 34363 +1530271648980 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271808273 geckodriver INFO geckodriver 0.21.0 +1530271808276 geckodriver INFO Listening on 127.0.0.1:55099 +1530271809282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.V9MiGFqT4qK8" +1530271812206 Marionette INFO Listening on port 43049 +1530271812291 Marionette WARN TLS certificate errors will be ignored for this session +1530271812327 geckodriver INFO geckodriver 0.21.0 +1530271812331 geckodriver INFO Listening on 127.0.0.1:42139 +1530271813334 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qRWW6f5Jt5ku" +1530271813699 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271816977 Marionette INFO Listening on port 41173 +1530271817057 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530271917356 geckodriver INFO geckodriver 0.21.0 +1530271917359 geckodriver INFO Listening on 127.0.0.1:60087 +1530271918365 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gjkIMuTkQXfu" +1530271921145 Marionette INFO Listening on port 45543 +1530271921174 Marionette WARN TLS certificate errors will be ignored for this session +1530271921234 geckodriver INFO geckodriver 0.21.0 +1530271921238 geckodriver INFO Listening on 127.0.0.1:38651 +1530271922239 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2UIUCTVZJBcd" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271926500 Marionette INFO Listening on port 43667 +1530271926557 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530272038613 geckodriver INFO geckodriver 0.21.0 +1530272038616 geckodriver INFO Listening on 127.0.0.1:55809 +1530272039621 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HTfuYvhdK210" +1530272042444 Marionette INFO Listening on port 41123 +1530272042531 Marionette WARN TLS certificate errors will be ignored for this session +1530272042569 geckodriver INFO geckodriver 0.21.0 +1530272042573 geckodriver INFO Listening on 127.0.0.1:56981 +1530272043576 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4pwvv3t08Hbo" +1530272047561 Marionette INFO Listening on port 35367 +1530272047592 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530272244343 geckodriver INFO geckodriver 0.21.0 +1530272244347 geckodriver INFO Listening on 127.0.0.1:49523 +1530272245351 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tHirciTCC5T4" +1530272248288 Marionette INFO Listening on port 42841 +1530272248370 Marionette WARN TLS certificate errors will be ignored for this session +1530272248413 geckodriver INFO geckodriver 0.21.0 +1530272248417 geckodriver INFO Listening on 127.0.0.1:60661 +1530272249418 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.C8WlzFsRqwWM" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530272253262 Marionette INFO Listening on port 34989 +1530272253334 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530272867808 geckodriver INFO geckodriver 0.21.0 +1530272867812 geckodriver INFO Listening on 127.0.0.1:57817 +1530272868818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.e86IYs9WJi8q" +1530272871698 Marionette INFO Listening on port 34679 +1530272871731 Marionette WARN TLS certificate errors will be ignored for this session +1530272871768 geckodriver INFO geckodriver 0.21.0 +1530272871772 geckodriver INFO Listening on 127.0.0.1:37917 +1530272872774 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.G4bpoOslB37a" +1530272872966 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530272876084 Marionette INFO Listening on port 36409 +1530272876183 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530273340599 geckodriver INFO geckodriver 0.21.0 +1530273340603 geckodriver INFO Listening on 127.0.0.1:38123 +1530273341607 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.QYwXziLu2nfy" +1530273344720 Marionette INFO Listening on port 37703 +1530273344827 Marionette WARN TLS certificate errors will be ignored for this session +1530273344859 geckodriver INFO geckodriver 0.21.0 +1530273344863 geckodriver INFO Listening on 127.0.0.1:37225 +1530273345865 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.N3p8Hp06i8bG" +1530273349409 Marionette INFO Listening on port 34075 +1530273349475 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530274609586 geckodriver INFO geckodriver 0.21.0 +1530274609590 geckodriver INFO Listening on 127.0.0.1:34217 +1530274610595 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wCetsFMylOs5" +1530274613627 Marionette INFO Listening on port 41877 +1530274613706 Marionette WARN TLS certificate errors will be ignored for this session +1530274613748 geckodriver INFO geckodriver 0.21.0 +1530274613752 geckodriver INFO Listening on 127.0.0.1:44539 +1530274614754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yjqPtKrNq1GK" +1530274615905 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530274618458 Marionette INFO Listening on port 41901 +1530274618464 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530274881826 geckodriver INFO geckodriver 0.21.0 +1530274881829 geckodriver INFO Listening on 127.0.0.1:60641 +1530274882833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.usKktarEXqsT" +1530274885946 Marionette INFO Listening on port 35755 +1530274886049 Marionette WARN TLS certificate errors will be ignored for this session +1530274886082 geckodriver INFO geckodriver 0.21.0 +1530274886086 geckodriver INFO Listening on 127.0.0.1:54871 +1530274887089 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5mCe9ri2StnD" +1530274888008 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530274890856 Marionette INFO Listening on port 42127 +1530274890900 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530275251823 geckodriver INFO geckodriver 0.21.0 +1530275251827 geckodriver INFO Listening on 127.0.0.1:57779 +1530275252831 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.sGKywyMajvFE" +1530275255889 Marionette INFO Listening on port 36681 +1530275255941 Marionette WARN TLS certificate errors will be ignored for this session +1530275255980 geckodriver INFO geckodriver 0.21.0 +1530275255984 geckodriver INFO Listening on 127.0.0.1:54193 +1530275256791 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530275256987 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ImGojLivmw3D" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530275260247 Marionette INFO Listening on port 38027 +1530275260360 Marionette WARN TLS certificate errors will be ignored for this session +1530275444407 geckodriver INFO geckodriver 0.21.0 +1530275444411 geckodriver INFO Listening on 127.0.0.1:34219 +1530275445416 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.MRo60FUpdIA8" +1530275448285 Marionette INFO Listening on port 45491 +1530275448326 Marionette WARN TLS certificate errors will be ignored for this session +1530275448379 geckodriver INFO geckodriver 0.21.0 +1530275448382 geckodriver INFO Listening on 127.0.0.1:48859 +1530275449385 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.TsdjKqyta3LW" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530275453449 Marionette INFO Listening on port 42711 +1530275453495 Marionette WARN TLS certificate errors will be ignored for this session +1530275493581 geckodriver INFO geckodriver 0.21.0 +1530275493585 geckodriver INFO Listening on 127.0.0.1:48087 +1530275494588 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.KBalzVX2NzkO" +1530275497491 Marionette INFO Listening on port 33851 +1530275497500 Marionette WARN TLS certificate errors will be ignored for this session +1530275497535 geckodriver INFO geckodriver 0.21.0 +1530275497539 geckodriver INFO Listening on 127.0.0.1:42853 +1530275498541 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zasRJKLA9tr7" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530275502463 Marionette INFO Listening on port 33857 +1530275502549 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530276143927 geckodriver INFO geckodriver 0.21.0 +1530276143930 geckodriver INFO Listening on 127.0.0.1:49435 +1530276144934 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yV0b26P9Gcc8" +1530276147841 Marionette INFO Listening on port 40517 +1530276147945 Marionette WARN TLS certificate errors will be ignored for this session +1530276147983 geckodriver INFO geckodriver 0.21.0 +1530276147986 geckodriver INFO Listening on 127.0.0.1:60807 +1530276148574 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530276148987 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Os5CcVqHxs5a" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276152190 Marionette INFO Listening on port 40855 +1530276152197 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530276436649 geckodriver INFO geckodriver 0.21.0 +1530276436653 geckodriver INFO Listening on 127.0.0.1:50561 +1530276437657 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.eKzUHXB5ECAc" +1530276440537 Marionette INFO Listening on port 42259 +1530276440566 Marionette WARN TLS certificate errors will be ignored for this session +1530276440627 geckodriver INFO geckodriver 0.21.0 +1530276440633 geckodriver INFO Listening on 127.0.0.1:49775 +1530276441633 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.40znMmM0vAjv" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276445825 Marionette INFO Listening on port 42967 +1530276445862 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +1530276640993 geckodriver INFO geckodriver 0.21.0 +1530276640997 geckodriver INFO Listening on 127.0.0.1:38427 +1530276641998 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.R9Kvnn3ICsH4" +1530276645319 Marionette INFO Listening on port 42615 +1530276645409 Marionette WARN TLS certificate errors will be ignored for this session +1530276645446 geckodriver INFO geckodriver 0.21.0 +1530276645450 geckodriver INFO Listening on 127.0.0.1:44897 +1530276646451 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.B1shvFiFIdjC" +1530276647082 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276650500 Marionette INFO Listening on port 45137 +1530276650563 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530276872500 geckodriver INFO geckodriver 0.21.0 +1530276872503 geckodriver INFO Listening on 127.0.0.1:56297 +1530276873506 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ja9qOY3zMyuY" +1530276876672 Marionette INFO Listening on port 42105 +1530276876715 Marionette WARN TLS certificate errors will be ignored for this session +1530276876781 geckodriver INFO geckodriver 0.21.0 +1530276876785 geckodriver INFO Listening on 127.0.0.1:53143 +1530276877547 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530276877786 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.j0TOCIVC5euz" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276881562 Marionette INFO Listening on port 34189 +1530276881597 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530277208774 geckodriver INFO geckodriver 0.21.0 +1530277208777 geckodriver INFO Listening on 127.0.0.1:44703 +1530277209781 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.oIdyFb16xoI9" +1530277212818 Marionette INFO Listening on port 45629 +1530277212903 Marionette WARN TLS certificate errors will be ignored for this session +1530277212941 geckodriver INFO geckodriver 0.21.0 +1530277212945 geckodriver INFO Listening on 127.0.0.1:41209 +1530277213946 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wXHTAXKfOrG4" +1530277214556 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530277217625 Marionette INFO Listening on port 43649 +1530277217656 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530277735182 geckodriver INFO geckodriver 0.21.0 +1530277735186 geckodriver INFO Listening on 127.0.0.1:52125 +1530277736190 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fTY4Vpea4pzL" +1530277739075 Marionette INFO Listening on port 39239 +1530277739115 Marionette WARN TLS certificate errors will be ignored for this session +1530277739187 geckodriver INFO geckodriver 0.21.0 +1530277739192 geckodriver INFO Listening on 127.0.0.1:46747 +1530277739744 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530277740193 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Q23jEw9S063y" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530277743738 Marionette INFO Listening on port 46337 +1530277743802 Marionette WARN TLS certificate errors will be ignored for this session +1530277948369 geckodriver INFO geckodriver 0.21.0 +1530277948373 geckodriver INFO Listening on 127.0.0.1:42741 +1530277949378 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3ghNXuXnuYu6" +1530277952259 Marionette INFO Listening on port 39661 +1530277952293 Marionette WARN TLS certificate errors will be ignored for this session +1530277952337 geckodriver INFO geckodriver 0.21.0 +1530277952341 geckodriver INFO Listening on 127.0.0.1:35941 +1530277952969 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530277953343 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4WKvGex87jf3" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530277956517 Marionette INFO Listening on port 42387 +1530277956552 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530278072565 geckodriver INFO geckodriver 0.21.0 +1530278072568 geckodriver INFO Listening on 127.0.0.1:48651 +1530278073573 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WwS7uvqRdmtp" +1530278076452 Marionette INFO Listening on port 37069 +1530278076483 Marionette WARN TLS certificate errors will be ignored for this session +1530278076554 geckodriver INFO geckodriver 0.21.0 +1530278076558 geckodriver INFO Listening on 127.0.0.1:53319 +1530278077561 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6Ymq4UXPZaGK" +1530278081904 Marionette INFO Listening on port 37715 +1530278081972 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278119419 geckodriver INFO geckodriver 0.21.0 +1530278119423 geckodriver INFO Listening on 127.0.0.1:52471 +1530278120427 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gIuWlJ1fALFm" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278123525 Marionette INFO Listening on port 45695 +1530278123546 Marionette WARN TLS certificate errors will be ignored for this session +1530278123583 geckodriver INFO geckodriver 0.21.0 +1530278123587 geckodriver INFO Listening on 127.0.0.1:55151 +1530278124589 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VUDv3F86isMu" +1530278125147 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278128452 Marionette INFO Listening on port 46707 +1530278128501 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530278225460 geckodriver INFO geckodriver 0.21.0 +1530278225463 geckodriver INFO Listening on 127.0.0.1:55279 +1530278226468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7BnnPtMAAmiP" +1530278229384 Marionette INFO Listening on port 46525 +1530278229478 Marionette WARN TLS certificate errors will be ignored for this session +1530278229518 geckodriver INFO geckodriver 0.21.0 +1530278229522 geckodriver INFO Listening on 127.0.0.1:33391 +1530278230524 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.COn1x2pWjDVm" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278234351 Marionette INFO Listening on port 38945 +1530278234435 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/communities/, line 356: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/community-view/2/, line 455: ReferenceError: None is not defined +1530278433712 geckodriver INFO geckodriver 0.21.0 +1530278433715 geckodriver INFO Listening on 127.0.0.1:34013 +1530278434719 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.sdWyDaMaDMzD" +1530278437655 Marionette INFO Listening on port 39663 +1530278437736 Marionette WARN TLS certificate errors will be ignored for this session +1530278437778 geckodriver INFO geckodriver 0.21.0 +1530278437782 geckodriver INFO Listening on 127.0.0.1:47809 +1530278438784 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VM22N1raKMPm" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278442728 Marionette INFO Listening on port 32935 +1530278442795 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/communities/, line 356: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/community-view/2/, line 455: ReferenceError: None is not defined +1530279031764 geckodriver INFO geckodriver 0.21.0 +1530279031768 geckodriver INFO Listening on 127.0.0.1:35815 +1530279032770 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.XytdziTbpyHv" +1530279035828 Marionette INFO Listening on port 41057 +1530279035887 Marionette WARN TLS certificate errors will be ignored for this session +1530279035924 geckodriver INFO geckodriver 0.21.0 +1530279035928 geckodriver INFO Listening on 127.0.0.1:59815 +1530279036930 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.MRp6o4js1ofo" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530279041479 Marionette INFO Listening on port 34311 +1530279041544 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530332085454 geckodriver INFO geckodriver 0.21.0 +1530332085509 geckodriver INFO Listening on 127.0.0.1:37413 +1530332086484 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.RrwnZAJgBxKO" +1530332090287 Marionette INFO Listening on port 39347 +1530332090314 Marionette WARN TLS certificate errors will be ignored for this session +1530332090352 geckodriver INFO geckodriver 0.21.0 +1530332090356 geckodriver INFO Listening on 127.0.0.1:35099 +1530332090732 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530332091358 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.G4lc2NlLKX51" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530332094842 Marionette INFO Listening on port 46103 +1530332094870 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530332386497 geckodriver INFO geckodriver 0.21.0 +1530332386500 geckodriver INFO Listening on 127.0.0.1:42463 +1530332387505 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.W7meu3QpVkNZ" +1530332390350 Marionette INFO Listening on port 35377 +1530332390429 Marionette WARN TLS certificate errors will be ignored for this session +1530332390473 geckodriver INFO geckodriver 0.21.0 +1530332390477 geckodriver INFO Listening on 127.0.0.1:51927 +1530332391363 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530332391476 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ORYuwdb0d9Ja" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530332395196 Marionette INFO Listening on port 39205 +1530332395287 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530332476547 geckodriver INFO geckodriver 0.21.0 +1530332476551 geckodriver INFO Listening on 127.0.0.1:54393 +1530332477556 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.inS9uvJ4XdKr" +1530332480545 Marionette INFO Listening on port 35145 +1530332480571 Marionette WARN TLS certificate errors will be ignored for this session +1530332480637 geckodriver INFO geckodriver 0.21.0 +1530332480641 geckodriver INFO Listening on 127.0.0.1:42797 +1530332481641 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.BSGHsV49Vyp1" +1530332485706 Marionette INFO Listening on port 38667 +1530332485756 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530332588709 geckodriver INFO geckodriver 0.21.0 +1530332588713 geckodriver INFO Listening on 127.0.0.1:36831 +1530332589717 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dKUhT8RjgMQH" +1530332592506 Marionette INFO Listening on port 45197 +1530332592527 Marionette WARN TLS certificate errors will be ignored for this session +1530332592568 geckodriver INFO geckodriver 0.21.0 +1530332592572 geckodriver INFO Listening on 127.0.0.1:38069 +1530332593494 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530332593573 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ewB6RF8adPWg" +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530332596797 Marionette INFO Listening on port 36307 +1530332596883 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530332806448 geckodriver INFO geckodriver 0.21.0 +1530332806452 geckodriver INFO Listening on 127.0.0.1:58787 +1530332807456 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.z8IwKqECuLjS" +1530332810417 Marionette INFO Listening on port 37449 +1530332810469 Marionette WARN TLS certificate errors will be ignored for this session +1530332810512 geckodriver INFO geckodriver 0.21.0 +1530332810516 geckodriver INFO Listening on 127.0.0.1:33209 +1530332811518 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nr6bKQrWXCZj" +1530332815918 Marionette INFO Listening on port 46747 +1530332815938 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334289481 geckodriver INFO geckodriver 0.21.0 +1530334289484 geckodriver INFO Listening on 127.0.0.1:60793 +1530334290489 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.G5WwTXsv6NuY" +1530334293426 Marionette INFO Listening on port 43613 +1530334293510 Marionette WARN TLS certificate errors will be ignored for this session +1530334293549 geckodriver INFO geckodriver 0.21.0 +1530334293553 geckodriver INFO Listening on 127.0.0.1:39745 +1530334293922 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530334294556 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.A1uSMwOgkfYJ" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334297900 Marionette INFO Listening on port 38491 +1530334297979 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334500062 geckodriver INFO geckodriver 0.21.0 +1530334500065 geckodriver INFO Listening on 127.0.0.1:49615 +1530334501070 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.W9nICZDVh31A" +1530334504417 Marionette INFO Listening on port 35691 +1530334504480 Marionette WARN TLS certificate errors will be ignored for this session +1530334504514 geckodriver INFO geckodriver 0.21.0 +1530334504518 geckodriver INFO Listening on 127.0.0.1:51929 +1530334505519 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.pXpEtw0Ed3P2" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334509475 Marionette INFO Listening on port 37703 +1530334509554 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334657588 geckodriver INFO geckodriver 0.21.0 +1530334657592 geckodriver INFO Listening on 127.0.0.1:40219 +1530334658593 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.x3sDX3V2R0qs" +1530334661955 Marionette INFO Listening on port 41419 +1530334662003 Marionette WARN TLS certificate errors will be ignored for this session +1530334662036 geckodriver INFO geckodriver 0.21.0 +1530334662040 geckodriver INFO Listening on 127.0.0.1:58771 +1530334663042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.PVS9CTzVtKeW" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334667560 Marionette INFO Listening on port 33909 +1530334667656 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334829793 geckodriver INFO geckodriver 0.21.0 +1530334829796 geckodriver INFO Listening on 127.0.0.1:44645 +1530334830802 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tlWjeKqvxJQf" +1530334833651 Marionette INFO Listening on port 40595 +1530334833727 Marionette WARN TLS certificate errors will be ignored for this session +1530334833766 geckodriver INFO geckodriver 0.21.0 +1530334833771 geckodriver INFO Listening on 127.0.0.1:52201 +1530334834772 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.hQ7wguLRv0gJ" +1530334838674 Marionette INFO Listening on port 39453 +1530334838685 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334964917 geckodriver INFO geckodriver 0.21.0 +1530334964921 geckodriver INFO Listening on 127.0.0.1:36725 +1530334965925 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qH3DsdNM7CTL" +1530334969114 Marionette INFO Listening on port 41479 +1530334969138 Marionette WARN TLS certificate errors will be ignored for this session +1530334969177 geckodriver INFO geckodriver 0.21.0 +1530334969182 geckodriver INFO Listening on 127.0.0.1:38211 +1530334969701 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530334970184 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6pQYHJv5ENYJ" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334973480 Marionette INFO Listening on port 43663 +1530334973496 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530335296593 geckodriver INFO geckodriver 0.21.0 +1530335296597 geckodriver INFO Listening on 127.0.0.1:48727 +1530335297601 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.40lS8ExLsay9" +1530335300923 Marionette INFO Listening on port 38023 +1530335301012 Marionette WARN TLS certificate errors will be ignored for this session +1530335301053 geckodriver INFO geckodriver 0.21.0 +1530335301057 geckodriver INFO Listening on 127.0.0.1:54825 +1530335302059 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.goi0oGHh5Ic2" +1530335306353 Marionette INFO Listening on port 33615 +1530335306372 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530335549979 geckodriver INFO geckodriver 0.21.0 +1530335549982 geckodriver INFO Listening on 127.0.0.1:33175 +1530335550986 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4oulHozfEhK9" +1530335553990 Marionette INFO Listening on port 34287 +1530335553997 Marionette WARN TLS certificate errors will be ignored for this session +1530335554042 geckodriver INFO geckodriver 0.21.0 +1530335554046 geckodriver INFO Listening on 127.0.0.1:52737 +1530335555048 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.UtNqOyiJ5xhf" +1530335559001 Marionette INFO Listening on port 43901 +1530335559065 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530335678599 geckodriver INFO geckodriver 0.21.0 +1530335678603 geckodriver INFO Listening on 127.0.0.1:53895 +1530335679608 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FOYJRYfw5AKG" +1530335682666 Marionette INFO Listening on port 45153 +1530335682719 Marionette WARN TLS certificate errors will be ignored for this session +1530335682753 geckodriver INFO geckodriver 0.21.0 +1530335682757 geckodriver INFO Listening on 127.0.0.1:60273 +1530335683142 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530335683760 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rnuZd8UHBgzQ" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530335687223 Marionette INFO Listening on port 42081 +1530335687280 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530336467244 geckodriver INFO geckodriver 0.21.0 +1530336467248 geckodriver INFO Listening on 127.0.0.1:48057 +1530336468252 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.QHN7gg2jDVX5" +1530336471120 Marionette INFO Listening on port 41129 +1530336471164 Marionette WARN TLS certificate errors will be ignored for this session +1530336471198 geckodriver INFO geckodriver 0.21.0 +1530336471202 geckodriver INFO Listening on 127.0.0.1:37337 +1530336472204 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.n4N6u03lqXys" +1530336472847 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530336476090 Marionette INFO Listening on port 41089 +1530336476119 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530337230508 geckodriver INFO geckodriver 0.21.0 +1530337230511 geckodriver INFO Listening on 127.0.0.1:41585 +1530337231516 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3HkIsIS57Hb2" +1530337234257 Marionette INFO Listening on port 32791 +1530337234335 Marionette WARN TLS certificate errors will be ignored for this session +1530337234375 geckodriver INFO geckodriver 0.21.0 +1530337234380 geckodriver INFO Listening on 127.0.0.1:52307 +1530337235380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.EoVQHtOswYdi" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530337239602 Marionette INFO Listening on port 44643 +1530337239695 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530337344982 geckodriver INFO geckodriver 0.21.0 +1530337344986 geckodriver INFO Listening on 127.0.0.1:60479 +1530337345990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bE2fFKS5tUM2" +1530337348888 Marionette INFO Listening on port 44525 +1530337348900 Marionette WARN TLS certificate errors will be ignored for this session +1530337348938 geckodriver INFO geckodriver 0.21.0 +1530337348942 geckodriver INFO Listening on 127.0.0.1:59183 +1530337349945 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.23uu1PpIysa1" +1530337353939 Marionette INFO Listening on port 36575 +1530337353958 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530339059381 geckodriver INFO geckodriver 0.21.0 +1530339059385 geckodriver INFO Listening on 127.0.0.1:59539 +1530339060390 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bqLMkvkUESVm" +1530339063458 Marionette INFO Listening on port 39685 +1530339063501 Marionette WARN TLS certificate errors will be ignored for this session +1530339063537 geckodriver INFO geckodriver 0.21.0 +1530339063541 geckodriver INFO Listening on 127.0.0.1:58035 +1530339063841 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530339064543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jesrD1ecwTiM" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530339068085 Marionette INFO Listening on port 37465 +1530339068162 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530339376982 geckodriver INFO geckodriver 0.21.0 +1530339376985 geckodriver INFO Listening on 127.0.0.1:34043 +1530339377991 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fzFRTRbfC3tf" +1530339380958 Marionette INFO Listening on port 41723 +1530339381005 Marionette WARN TLS certificate errors will be ignored for this session +1530339381039 geckodriver INFO geckodriver 0.21.0 +1530339381043 geckodriver INFO Listening on 127.0.0.1:41175 +1530339382045 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.F6GqYu8FZwb1" +1530339385994 Marionette INFO Listening on port 36687 +1530339386055 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530339863558 geckodriver INFO geckodriver 0.21.0 +1530339863562 geckodriver INFO Listening on 127.0.0.1:42505 +1530339864567 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.M7NxAqqXb6rZ" +1530339867444 Marionette INFO Listening on port 38689 +1530339867485 Marionette WARN TLS certificate errors will be ignored for this session +1530339867524 geckodriver INFO geckodriver 0.21.0 +1530339867528 geckodriver INFO Listening on 127.0.0.1:38501 +1530339868528 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gCShfJtvOhyd" +1530339868528 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530339871985 Marionette INFO Listening on port 35907 +1530339872040 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530339982667 geckodriver INFO geckodriver 0.21.0 +1530339982671 geckodriver INFO Listening on 127.0.0.1:48667 +1530339983675 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.xAJiY2dwtOlh" +1530339987196 Marionette INFO Listening on port 46479 +1530339987239 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +JavaScript error: resource://gre/modules/JSONFile.jsm, line 159: Error: Data is not ready. +JavaScript error: resource://gre/modules/JSONFile.jsm, line 159: Error: Data is not ready. +JavaScript error: resource://gre/modules/JSONFile.jsm, line 159: Error: Data is not ready. +JavaScript error: resource://pdf.js/PdfJs.jsm, line 247: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Data is not ready." {file: "resource://gre/modules/JSONFile.jsm" line: 159}]'[JavaScript Error: "Data is not ready." {file: "resource://gre/modules/JSONFile.jsm" line: 159}]' when calling method: [nsIHandlerService::store] +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340068866 geckodriver INFO geckodriver 0.21.0 +1530340068869 geckodriver INFO Listening on 127.0.0.1:39891 +1530340069874 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.McjsS1mGzaTi" +1530340072714 Marionette INFO Listening on port 46699 +1530340072800 Marionette WARN TLS certificate errors will be ignored for this session +1530340072904 geckodriver INFO geckodriver 0.21.0 +1530340072908 geckodriver INFO Listening on 127.0.0.1:41843 +1530340073908 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3tUhmdm3cYSf" +1530340074069 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340077283 Marionette INFO Listening on port 37073 +1530340077325 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530340261314 geckodriver INFO geckodriver 0.21.0 +1530340261318 geckodriver INFO Listening on 127.0.0.1:46359 +1530340262322 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.1R6DBfYp0c4N" +1530340265315 Marionette INFO Listening on port 34837 +1530340265336 Marionette WARN TLS certificate errors will be ignored for this session +1530340265377 geckodriver INFO geckodriver 0.21.0 +1530340265381 geckodriver INFO Listening on 127.0.0.1:45435 +1530340266224 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530340266383 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.vdMlnafeSjdq" +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340269851 Marionette INFO Listening on port 41497 +1530340269905 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530340539176 geckodriver INFO geckodriver 0.21.0 +1530340539179 geckodriver INFO Listening on 127.0.0.1:48299 +1530340540183 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.uGukQOzUKgPS" +1530340543236 Marionette INFO Listening on port 41605 +1530340543312 Marionette WARN TLS certificate errors will be ignored for this session +1530340543349 geckodriver INFO geckodriver 0.21.0 +1530340543354 geckodriver INFO Listening on 127.0.0.1:60265 +1530340543770 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530340544355 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qOR0mbFQJ0sf" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340548123 Marionette INFO Listening on port 43049 +1530340548169 Marionette WARN TLS certificate errors will be ignored for this session +1530340548608 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340711330 geckodriver INFO geckodriver 0.21.0 +1530340711333 geckodriver INFO Listening on 127.0.0.1:42519 +1530340712337 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.IfezN8tYH7Ic" +1530340715262 Marionette INFO Listening on port 39179 +1530340715349 Marionette WARN TLS certificate errors will be ignored for this session +1530340715397 geckodriver INFO geckodriver 0.21.0 +1530340715400 geckodriver INFO Listening on 127.0.0.1:50655 +1530340716402 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.8KQ0csa3y0LH" +1530340716717 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340720009 Marionette INFO Listening on port 38499 +1530340720012 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530341142260 geckodriver INFO geckodriver 0.21.0 +1530341142263 geckodriver INFO Listening on 127.0.0.1:42173 +1530341143269 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cV3CL3bGTOkO" +1530341146094 Marionette INFO Listening on port 45485 +1530341146188 Marionette WARN TLS certificate errors will be ignored for this session +1530341146224 geckodriver INFO geckodriver 0.21.0 +1530341146228 geckodriver INFO Listening on 127.0.0.1:49297 +1530341147230 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fEALA7v5DOgI" +1530341148222 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530341151236 Marionette INFO Listening on port 37757 +1530341151240 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530341194226 addons.productaddons WARN Failed downloading via XHR, status: 0, reason: error +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530341687511 geckodriver INFO geckodriver 0.21.0 +1530341687515 geckodriver INFO Listening on 127.0.0.1:38567 +1530341688519 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FQmJN7Ez1hNM" +1530341691461 Marionette INFO Listening on port 37419 +1530341691538 Marionette WARN TLS certificate errors will be ignored for this session +1530341691580 geckodriver INFO geckodriver 0.21.0 +1530341691585 geckodriver INFO Listening on 127.0.0.1:36781 +1530341692584 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yZ81lPU60Aa8" +1530341693002 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530341696116 Marionette INFO Listening on port 46535 +1530341696204 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342131930 geckodriver INFO geckodriver 0.21.0 +1530342131934 geckodriver INFO Listening on 127.0.0.1:42717 +1530342132940 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.iU6uzkY1J1lw" +1530342135856 Marionette INFO Listening on port 33179 +1530342135962 Marionette WARN TLS certificate errors will be ignored for this session +1530342136015 geckodriver INFO geckodriver 0.21.0 +1530342136020 geckodriver INFO Listening on 127.0.0.1:34195 +1530342137022 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zTdufn0mTzIN" +1530342140810 Marionette INFO Listening on port 40989 +1530342140837 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342286596 geckodriver INFO geckodriver 0.21.0 +1530342286600 geckodriver INFO Listening on 127.0.0.1:38241 +1530342287605 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.42R3KPnbM9uj" +1530342290646 Marionette INFO Listening on port 44477 +1530342290738 Marionette WARN TLS certificate errors will be ignored for this session +1530342290782 geckodriver INFO geckodriver 0.21.0 +1530342290787 geckodriver INFO Listening on 127.0.0.1:53085 +1530342291547 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530342291787 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.03V6rFekXerL" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530342295193 Marionette INFO Listening on port 44819 +1530342295213 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342725726 geckodriver INFO geckodriver 0.21.0 +1530342725730 geckodriver INFO Listening on 127.0.0.1:49655 +1530342726735 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.znt5LdwVe0Pr" +1530342729674 Marionette INFO Listening on port 45185 +1530342729744 Marionette WARN TLS certificate errors will be ignored for this session +1530342729813 geckodriver INFO geckodriver 0.21.0 +1530342729818 geckodriver INFO Listening on 127.0.0.1:39063 +1530342730818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nMGhgVXfns2I" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530342735018 Marionette INFO Listening on port 43415 +1530342735036 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342885757 geckodriver INFO geckodriver 0.21.0 +1530342885760 geckodriver INFO Listening on 127.0.0.1:39401 +1530342886765 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bm0Tcv4RIF3f" +1530342889882 Marionette INFO Listening on port 45305 +1530342889985 Marionette WARN TLS certificate errors will be ignored for this session +1530342890018 geckodriver INFO geckodriver 0.21.0 +1530342890021 geckodriver INFO Listening on 127.0.0.1:33919 +1530342891020 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JQoGoUUbLCXr" +1530342895078 Marionette INFO Listening on port 34627 +1530342895135 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530343225394 geckodriver INFO geckodriver 0.21.0 +1530343225398 geckodriver INFO Listening on 127.0.0.1:39121 +1530343226404 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WIAWzKbnkaSV" +1530343229401 Marionette INFO Listening on port 41013 +1530343229431 Marionette WARN TLS certificate errors will be ignored for this session +1530343229473 geckodriver INFO geckodriver 0.21.0 +1530343229478 geckodriver INFO Listening on 127.0.0.1:36537 +1530343230479 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nxP6SYJZSsuW" +1530343234525 Marionette INFO Listening on port 37337 +1530343234590 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530343676277 geckodriver INFO geckodriver 0.21.0 +1530343676281 geckodriver INFO Listening on 127.0.0.1:44905 +1530343677286 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JOUyxgNlFJ57" +1530343680282 Marionette INFO Listening on port 39567 +1530343680305 Marionette WARN TLS certificate errors will be ignored for this session +1530343680349 geckodriver INFO geckodriver 0.21.0 +1530343680353 geckodriver INFO Listening on 127.0.0.1:46101 +1530343681355 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.717dyM3SYFXC" +1530343685269 Marionette INFO Listening on port 46145 +1530343685366 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530346981167 geckodriver INFO geckodriver 0.21.0 +1530346981171 geckodriver INFO Listening on 127.0.0.1:43385 +1530346982176 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZSK3ZCQzQZDp" +1530346984914 Marionette INFO Listening on port 40713 +1530346984993 Marionette WARN TLS certificate errors will be ignored for this session +1530346985034 geckodriver INFO geckodriver 0.21.0 +1530346985038 geckodriver INFO Listening on 127.0.0.1:39555 +1530346986040 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JRmkWHyMdigd" +1530346986974 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530346989840 Marionette INFO Listening on port 44783 +1530346989859 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347098588 geckodriver INFO geckodriver 0.21.0 +1530347098591 geckodriver INFO Listening on 127.0.0.1:46925 +1530347099595 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wh9QfI2SjV6n" +1530347102742 Marionette INFO Listening on port 40247 +1530347102804 Marionette WARN TLS certificate errors will be ignored for this session +1530347102838 geckodriver INFO geckodriver 0.21.0 +1530347102842 geckodriver INFO Listening on 127.0.0.1:35701 +1530347103845 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Ef1O6Fv3lLTL" +1530347107759 Marionette INFO Listening on port 45983 +1530347107856 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347336167 geckodriver INFO geckodriver 0.21.0 +1530347336170 geckodriver INFO Listening on 127.0.0.1:44145 +1530347337172 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.K5efxpK8wUTm" +1530347340140 Marionette INFO Listening on port 38511 +1530347340182 Marionette WARN TLS certificate errors will be ignored for this session +1530347340232 geckodriver INFO geckodriver 0.21.0 +1530347340236 geckodriver INFO Listening on 127.0.0.1:49579 +1530347341239 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rGCE7pFJ53OQ" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347345240 Marionette INFO Listening on port 43289 +1530347345261 Marionette WARN TLS certificate errors will be ignored for this session +1530347437925 geckodriver INFO geckodriver 0.21.0 +1530347437929 geckodriver INFO Listening on 127.0.0.1:33799 +1530347438935 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.UxFThej67Zn3" +1530347441880 Marionette INFO Listening on port 37813 +1530347441960 Marionette WARN TLS certificate errors will be ignored for this session +1530347442003 geckodriver INFO geckodriver 0.21.0 +1530347442007 geckodriver INFO Listening on 127.0.0.1:57227 +1530347443008 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.CnETjI6Nrk47" +1530347446876 Marionette INFO Listening on port 33639 +1530347446921 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347507518 geckodriver INFO geckodriver 0.21.0 +1530347507521 geckodriver INFO Listening on 127.0.0.1:36541 +1530347508526 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HctwXMAqgCc9" +1530347511447 Marionette INFO Listening on port 42507 +1530347511535 Marionette WARN TLS certificate errors will be ignored for this session +1530347511571 geckodriver INFO geckodriver 0.21.0 +1530347511576 geckodriver INFO Listening on 127.0.0.1:35967 +1530347512189 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530347512575 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.iWWdYjZvkfrM" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347515975 Marionette INFO Listening on port 45189 +1530347515986 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530347518607 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping diff --git a/README.md b/README.md index e4d8c0a..5836845 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,43 @@ # Collaboration-System-Selenium -Selenium tests for Collaboration System +# Notification-system-Testing-using-selenium
+ +1.) .env file :
+ NOTIFICATION_PORT = 7000
+ NOTIFICATION_USER = shubh,admin,raghav,ty
+ NOTIFICATION_PASSWORD = shubh
+ IP_ADDRESS= https://172.17.0.1
+ NOTIFICATION_ROLE = author,publisher,admin
+ NOTIFICATION_GROUP_ROLE = author,publisher,group admin

+ +2.) Order of testing is mentioned in the report of Notification system Report for system.
+
+3.) Changes in id
+ The "left-side" needs to be searched and insert id = “right-side”
+ Unsubscribe - Unsubscribe
+ Yes - Yes
+ Save Changes - savechanges
+ transition.to_state.name- id =”publish” but at 212 line id = “Visible”
+ Reject - reject
+ Update - update
+ Remove - remove
+
+ The link for the comparison is : https://github.com/singhalshubh/hacker-1/pull/1/files
+ +4.) Roles:
+There are 4 users in the system : shubh,admin,raghav,ty.
+Password is same for all i.e. “shubh”
+Shubh - Community-admin,group-admin
+Admin - Community-admin,group-admin
+Raghav - Community-publisher,group-publisher
+Ty - author for both group and community.

+Community :
+There are 2 communities and the testing is done on the “second community” always.
+The articles 5,6 are drafts and goes till the published state.
+The articles 7 is just visible
+Article 9,13 is draft in community
+Article 12 is visible.

+Group :
+The group formed is only 1.
+8,10,11 article is in the group.
+