diff --git a/brozzler/easy.py b/brozzler/easy.py index 6f8b553..40118cf 100644 --- a/brozzler/easy.py +++ b/brozzler/easy.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' -brozzler-easy - brozzler-worker, warcprox, and pywb all working together in a -single process +brozzler-easy - brozzler-worker, warcprox, pywb, and brozzler-webconsole all +working together in a single process Copyright (C) 2016 Internet Archive diff --git a/brozzler/frontier.py b/brozzler/frontier.py index afa0858..58119e7 100644 --- a/brozzler/frontier.py +++ b/brozzler/frontier.py @@ -69,7 +69,7 @@ class RethinkDbFrontier: self.r.table("pages").index_create( "least_hops", [ self.r.row["site_id"], self.r.row["brozzle_count"], - self.r.row["hops_from_seed"]]) + self.r.row["hops_from_seed"]]).run() if not "jobs" in tables: self.logger.info( "creating rethinkdb table 'jobs' in database %s", diff --git a/brozzler/webconsole/static/partials/home.html b/brozzler/webconsole/static/partials/home.html index bb05ca4..4e73813 100644 --- a/brozzler/webconsole/static/partials/home.html +++ b/brozzler/webconsole/static/partials/home.html @@ -73,12 +73,18 @@ id + status + started + seed url - - {{site.id}} - + + {{site.id}} + {{site.status}} + {{site.start_time}} + {{site.seed}} + diff --git a/setup.py b/setup.py index 709edec..52b60ea 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def find_package_data(package): setuptools.setup( name='brozzler', - version='1.1b6.dev74', + version='1.1b6.dev75', description='Distributed web crawling with browsers', url='https://github.com/internetarchive/brozzler', author='Noah Levitt',