├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── scrapy-web-ui.iml └── vcs.xml ├── LICENSE ├── README.md └── app ├── app.js ├── config.js ├── index.html ├── js ├── collections │ ├── jobs.js │ ├── projects.js │ ├── spiders.js │ └── versions.js ├── main.js ├── models │ └── log.js ├── routers │ └── scrapy.js ├── utils.js ├── vendor │ ├── backbone-1.1.1-min.js │ ├── lodash-2.4.1-min.js │ ├── marionette-1.6.2-min.js │ └── mustache.js └── views │ ├── 404.js │ ├── dashboard.js │ ├── documentation.js │ ├── items.js │ ├── job-item.js │ ├── jobs.js │ ├── log.js │ ├── logs.js │ ├── project-item.js │ ├── projects.js │ ├── spider-item.js │ └── spiders.js ├── main.css └── templates ├── 404.html ├── dashboard.html ├── documentation.html ├── items.html ├── job-item.html ├── jobs.html ├── log-row.html ├── log.html ├── logs.html ├── project-item.html ├── projects.html └── spider-item.html /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/scrapy-web-ui.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/.idea/scrapy-web-ui.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/app.js -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/config.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/collections/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/collections/jobs.js -------------------------------------------------------------------------------- /app/js/collections/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/collections/projects.js -------------------------------------------------------------------------------- /app/js/collections/spiders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/collections/spiders.js -------------------------------------------------------------------------------- /app/js/collections/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/collections/versions.js -------------------------------------------------------------------------------- /app/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/main.js -------------------------------------------------------------------------------- /app/js/models/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/models/log.js -------------------------------------------------------------------------------- /app/js/routers/scrapy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/routers/scrapy.js -------------------------------------------------------------------------------- /app/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/utils.js -------------------------------------------------------------------------------- /app/js/vendor/backbone-1.1.1-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/vendor/backbone-1.1.1-min.js -------------------------------------------------------------------------------- /app/js/vendor/lodash-2.4.1-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/vendor/lodash-2.4.1-min.js -------------------------------------------------------------------------------- /app/js/vendor/marionette-1.6.2-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/vendor/marionette-1.6.2-min.js -------------------------------------------------------------------------------- /app/js/vendor/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/vendor/mustache.js -------------------------------------------------------------------------------- /app/js/views/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/404.js -------------------------------------------------------------------------------- /app/js/views/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/dashboard.js -------------------------------------------------------------------------------- /app/js/views/documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/documentation.js -------------------------------------------------------------------------------- /app/js/views/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/items.js -------------------------------------------------------------------------------- /app/js/views/job-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/job-item.js -------------------------------------------------------------------------------- /app/js/views/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/jobs.js -------------------------------------------------------------------------------- /app/js/views/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/log.js -------------------------------------------------------------------------------- /app/js/views/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/logs.js -------------------------------------------------------------------------------- /app/js/views/project-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/project-item.js -------------------------------------------------------------------------------- /app/js/views/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/projects.js -------------------------------------------------------------------------------- /app/js/views/spider-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/spider-item.js -------------------------------------------------------------------------------- /app/js/views/spiders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/js/views/spiders.js -------------------------------------------------------------------------------- /app/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/main.css -------------------------------------------------------------------------------- /app/templates/404.html: -------------------------------------------------------------------------------- 1 |
404 - Yikes!
-------------------------------------------------------------------------------- /app/templates/dashboard.html: -------------------------------------------------------------------------------- 1 |Dashboard
-------------------------------------------------------------------------------- /app/templates/documentation.html: -------------------------------------------------------------------------------- 1 |Documentation
-------------------------------------------------------------------------------- /app/templates/items.html: -------------------------------------------------------------------------------- 1 |Items
-------------------------------------------------------------------------------- /app/templates/job-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/templates/job-item.html -------------------------------------------------------------------------------- /app/templates/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/templates/jobs.html -------------------------------------------------------------------------------- /app/templates/log-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/templates/log-row.html -------------------------------------------------------------------------------- /app/templates/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/templates/log.html -------------------------------------------------------------------------------- /app/templates/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikej165/scrapy-web-ui/HEAD/app/templates/logs.html -------------------------------------------------------------------------------- /app/templates/project-item.html: -------------------------------------------------------------------------------- 1 | {{project}} -------------------------------------------------------------------------------- /app/templates/projects.html: -------------------------------------------------------------------------------- 1 |Projects
-------------------------------------------------------------------------------- /app/templates/spider-item.html: -------------------------------------------------------------------------------- 1 | {{spider}} --------------------------------------------------------------------------------