mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-06 22:29:11 -04:00
Fix typos
This commit is contained in:
parent
4f301f4e03
commit
a5ed291e65
5 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@ or Chromium) to fetch pages and embedded URLs and to extract links. It employs
|
||||||
capabilities and `rethinkdb <https://github.com/rethinkdb/rethinkdb>`_ to
|
capabilities and `rethinkdb <https://github.com/rethinkdb/rethinkdb>`_ to
|
||||||
manage crawl state.
|
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
|
Requirements
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -65,7 +65,7 @@ var umbraBehavior = {
|
||||||
if (where == 0) {
|
if (where == 0) {
|
||||||
console.log("clicking on " + clickRadioButtonTargets[k]);
|
console.log("clicking on " + clickRadioButtonTargets[k]);
|
||||||
// do mouse over event on click target
|
// do mouse over event on click target
|
||||||
// since some urls are requsted only on
|
// since some urls are requested only on
|
||||||
// this event - see
|
// this event - see
|
||||||
// https://webarchive.jira.com/browse/AITFIVE-451
|
// https://webarchive.jira.com/browse/AITFIVE-451
|
||||||
var mouseOverEvent = document.createEvent('Events');
|
var mouseOverEvent = document.createEvent('Events');
|
||||||
|
|
|
@ -46,7 +46,7 @@ var umbraBehavior = {
|
||||||
if (where == 0) {
|
if (where == 0) {
|
||||||
console.log("clicking on " + clickTargets[i].outerHTML);
|
console.log("clicking on " + clickTargets[i].outerHTML);
|
||||||
// do mouse over event on click target
|
// do mouse over event on click target
|
||||||
// since some urls are requsted only on
|
// since some urls are requested only on
|
||||||
// this event - see
|
// this event - see
|
||||||
// https://webarchive.jira.com/browse/AITFIVE-451
|
// https://webarchive.jira.com/browse/AITFIVE-451
|
||||||
var mouseOverEvent = document.createEvent('Events');
|
var mouseOverEvent = document.createEvent('Events');
|
||||||
|
|
|
@ -168,7 +168,7 @@ class UmbraBehavior {
|
||||||
doTarget(target, action) {
|
doTarget(target, action) {
|
||||||
// console.log("doing " + action + target.outerHTML);
|
// console.log("doing " + action + target.outerHTML);
|
||||||
// do mouse over event on target
|
// do mouse over event on target
|
||||||
// since some urls are requsted only on
|
// since some urls are requested only on
|
||||||
// this event - see
|
// this event - see
|
||||||
// https://webarchive.jira.com/browse/AITFIVE-451
|
// https://webarchive.jira.com/browse/AITFIVE-451
|
||||||
var mouseOverEvent = document.createEvent("Events");
|
var mouseOverEvent = document.createEvent("Events");
|
||||||
|
|
|
@ -75,7 +75,7 @@ def httpd(request):
|
||||||
def do_POST(self):
|
def do_POST(self):
|
||||||
if self.path == '/login-action':
|
if self.path == '/login-action':
|
||||||
self.send_response(200)
|
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-Type', 'text/plain;charset=utf-8')
|
||||||
self.send_header('Content-Length', len(payload))
|
self.send_header('Content-Length', len(payload))
|
||||||
self.end_headers()
|
self.end_headers()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue