diff --git a/README.rst b/README.rst index 0fc5c4a..b2fe7f2 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ or Chromium) to fetch pages and embedded URLs and to extract links. It employs capabilities and `rethinkdb `_ to manage crawl state. -Brozzler is designed to work in conjuction with warcprox for web archiving. +Brozzler is designed to work in conjunction with warcprox for web archiving. Requirements ------------ diff --git a/brozzler/js-templates/fec_gov.js b/brozzler/js-templates/fec_gov.js index 25cfd8b..bdd03d9 100644 --- a/brozzler/js-templates/fec_gov.js +++ b/brozzler/js-templates/fec_gov.js @@ -65,7 +65,7 @@ var umbraBehavior = { if (where == 0) { console.log("clicking on " + clickRadioButtonTargets[k]); // do mouse over event on click target - // since some urls are requsted only on + // since some urls are requested only on // this event - see // https://webarchive.jira.com/browse/AITFIVE-451 var mouseOverEvent = document.createEvent('Events'); diff --git a/brozzler/js-templates/psu24.js b/brozzler/js-templates/psu24.js index 15388fc..fdcd865 100644 --- a/brozzler/js-templates/psu24.js +++ b/brozzler/js-templates/psu24.js @@ -46,7 +46,7 @@ var umbraBehavior = { if (where == 0) { console.log("clicking on " + clickTargets[i].outerHTML); // do mouse over event on click target - // since some urls are requsted only on + // since some urls are requested only on // this event - see // https://webarchive.jira.com/browse/AITFIVE-451 var mouseOverEvent = document.createEvent('Events'); diff --git a/brozzler/js-templates/umbraBehavior.js.j2 b/brozzler/js-templates/umbraBehavior.js.j2 index 3e04e1c..7cf3932 100644 --- a/brozzler/js-templates/umbraBehavior.js.j2 +++ b/brozzler/js-templates/umbraBehavior.js.j2 @@ -168,7 +168,7 @@ class UmbraBehavior { doTarget(target, action) { // console.log("doing " + action + target.outerHTML); // do mouse over event on target - // since some urls are requsted only on + // since some urls are requested only on // this event - see // https://webarchive.jira.com/browse/AITFIVE-451 var mouseOverEvent = document.createEvent("Events"); diff --git a/tests/test_brozzling.py b/tests/test_brozzling.py index 507379e..bd4a032 100755 --- a/tests/test_brozzling.py +++ b/tests/test_brozzling.py @@ -75,7 +75,7 @@ def httpd(request): def do_POST(self): if self.path == '/login-action': self.send_response(200) - payload = b'login successfull\n' + payload = b'login successful\n' self.send_header('Content-Type', 'text/plain;charset=utf-8') self.send_header('Content-Length', len(payload)) self.end_headers()