├── .env.example ├── .gitignore ├── .jshintrc ├── .pylintrc ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── botbot ├── __init__.py ├── apps │ ├── __init__.py │ ├── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150630_1459.py │ │ │ ├── 0003_auto_20151026_1950.py │ │ │ └── __init__.py │ │ └── models.py │ ├── bots │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150630_1459.py │ │ │ ├── 0003_remove_channel_users.py │ │ │ ├── 0004_channel_status.py │ │ │ ├── 0005_move_to_status_choices.py │ │ │ ├── 0006_auto_20151030_1406.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── sitemaps.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── channel_url.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── kudos │ │ ├── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── kudos.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── sandbox.py │ │ └── utils.py │ ├── logs │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── redact.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── logs_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── plugins │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── help.py │ │ │ └── logger.py │ │ ├── forms.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── run_plugins.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20140912_1656.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── plugin.py │ │ ├── runner.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── plugin_docs.py │ │ ├── tests.py │ │ └── utils.py │ ├── preview │ │ ├── __init__.py │ │ └── views.py │ └── sitemap │ │ ├── __init__.py │ │ └── urls.py ├── core │ ├── __init__.py │ ├── fields.py │ ├── middleware.py │ ├── models.py │ ├── paginator.py │ ├── templatetags │ │ ├── __init__.py │ │ └── verbatim.py │ └── tests.py ├── jinja2.py ├── less │ ├── animate-custom.less │ ├── banners.less │ ├── bootstrap │ │ ├── accordion.less │ │ ├── alerts.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── grid.less │ │ ├── hero-unit.less │ │ ├── labels-badges.less │ │ ├── layouts.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── popovers.less │ │ ├── progress-bars.less │ │ ├── reset.less │ │ ├── responsive-1200px-min.less │ │ ├── responsive-767px-max.less │ │ ├── responsive-768px-979px.less │ │ ├── responsive-navbar.less │ │ ├── responsive-utilities.less │ │ ├── responsive.less │ │ ├── scaffolding.less │ │ ├── sprites.less │ │ ├── tables.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── font-awesome │ │ ├── bootstrap.less │ │ ├── core.less │ │ ├── extras.less │ │ ├── font-awesome-ie7.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── mixins.less │ │ ├── path.less │ │ └── variables.less │ ├── globals.less │ ├── management.less │ ├── nick-colors.less │ ├── responsive.less │ ├── screen.less │ └── timeline.less ├── settings │ ├── __init__.py │ ├── _asset_pipeline.py │ └── base.py ├── static │ ├── .gitignore │ ├── css │ │ └── screen.css │ ├── data │ │ └── world-110m2.json │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── timeline-circle-large.svg │ │ ├── timeline-circle-selected-large.svg │ │ ├── timeline-circle-selected-small.svg │ │ ├── timeline-circle-small.svg │ │ └── timeline-more.svg │ ├── js │ │ ├── app │ │ │ ├── app.js │ │ │ ├── common.js │ │ │ ├── logs │ │ │ │ └── default.js │ │ │ └── manage │ │ │ │ ├── default.js │ │ │ │ └── models.js │ │ └── vendor │ │ │ ├── andlog.js │ │ │ ├── backbone.js │ │ │ ├── bootstrap.js │ │ │ ├── d3.v3.min.js │ │ │ ├── detect_timezone.js │ │ │ ├── handlebars.js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-ui-1.9.1.custom.js │ │ │ ├── jquery.highlight.js │ │ │ ├── moment.js │ │ │ ├── topojson.v1.min.js │ │ │ ├── underscore.js │ │ │ └── waypoints.js │ └── robots.txt ├── templates │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── bootstrap_toolkit │ │ ├── button.html │ │ ├── field.html │ │ ├── field_checkbox.html │ │ ├── field_choices.html │ │ ├── field_default.html │ │ ├── field_errors.html │ │ ├── field_help.html │ │ ├── field_horizontal.html │ │ ├── field_inline.html │ │ ├── field_prepend_append.html │ │ ├── field_search.html │ │ ├── field_vertical.html │ │ ├── field_visible.html │ │ ├── form.html │ │ ├── formset.html │ │ ├── icon.html │ │ ├── messages.html │ │ ├── nav.html │ │ ├── non_field_error.html │ │ ├── non_field_errors.html │ │ ├── pagination.html │ │ ├── pills.html │ │ └── tabs.html │ ├── channel_list.html │ ├── home.html │ ├── includes │ │ ├── checkbox.html │ │ ├── field.html │ │ ├── footer.html │ │ ├── google-analytics.html │ │ └── header.html │ ├── launchpad │ │ ├── signup.html │ │ ├── success.html │ │ └── unsubscribe.html │ └── logs │ │ ├── help.html │ │ ├── kudos.html │ │ ├── log_display.html │ │ ├── logs.html │ │ └── logs.txt ├── urls │ ├── __init__.py │ ├── admin.py │ └── base.py └── wsgi.py ├── docs ├── Makefile ├── conf.py ├── developers.rst ├── getting_started.rst ├── images │ └── botbot-architecture.png ├── index.rst ├── install.rst ├── irc_resources.rst ├── managing_bots.rst ├── plugins.rst ├── production.rst └── troubleshooting.rst ├── manage.py ├── nginx.conf.example ├── requirements.txt └── setup.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/.jshintrc -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/README.md -------------------------------------------------------------------------------- /botbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/accounts/admin.py -------------------------------------------------------------------------------- /botbot/apps/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /botbot/apps/accounts/migrations/0002_auto_20150630_1459.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/accounts/migrations/0002_auto_20150630_1459.py -------------------------------------------------------------------------------- /botbot/apps/accounts/migrations/0003_auto_20151026_1950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/accounts/migrations/0003_auto_20151026_1950.py -------------------------------------------------------------------------------- /botbot/apps/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/accounts/models.py -------------------------------------------------------------------------------- /botbot/apps/bots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/bots/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/admin.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/migrations/0001_initial.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/0002_auto_20150630_1459.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/migrations/0002_auto_20150630_1459.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/0003_remove_channel_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/migrations/0003_remove_channel_users.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/0004_channel_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/migrations/0004_channel_status.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/0005_move_to_status_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/migrations/0005_move_to_status_choices.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/0006_auto_20151030_1406.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/migrations/0006_auto_20151030_1406.py -------------------------------------------------------------------------------- /botbot/apps/bots/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/bots/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/models.py -------------------------------------------------------------------------------- /botbot/apps/bots/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/sitemaps.py -------------------------------------------------------------------------------- /botbot/apps/bots/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/bots/templatetags/channel_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/templatetags/channel_url.py -------------------------------------------------------------------------------- /botbot/apps/bots/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/tests.py -------------------------------------------------------------------------------- /botbot/apps/bots/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/urls.py -------------------------------------------------------------------------------- /botbot/apps/bots/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/utils.py -------------------------------------------------------------------------------- /botbot/apps/bots/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/bots/views.py -------------------------------------------------------------------------------- /botbot/apps/kudos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/kudos/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/kudos/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/kudos/management/commands/kudos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/kudos/management/commands/kudos.py -------------------------------------------------------------------------------- /botbot/apps/kudos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/kudos/migrations/0001_initial.py -------------------------------------------------------------------------------- /botbot/apps/kudos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/kudos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/kudos/models.py -------------------------------------------------------------------------------- /botbot/apps/kudos/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/kudos/sandbox.py -------------------------------------------------------------------------------- /botbot/apps/kudos/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/kudos/utils.py -------------------------------------------------------------------------------- /botbot/apps/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/logs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/admin.py -------------------------------------------------------------------------------- /botbot/apps/logs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/forms.py -------------------------------------------------------------------------------- /botbot/apps/logs/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/logs/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/logs/management/commands/redact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/management/commands/redact.py -------------------------------------------------------------------------------- /botbot/apps/logs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/migrations/0001_initial.py -------------------------------------------------------------------------------- /botbot/apps/logs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/logs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/models.py -------------------------------------------------------------------------------- /botbot/apps/logs/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/logs/templatetags/logs_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/templatetags/logs_tags.py -------------------------------------------------------------------------------- /botbot/apps/logs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/tests.py -------------------------------------------------------------------------------- /botbot/apps/logs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/urls.py -------------------------------------------------------------------------------- /botbot/apps/logs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/utils.py -------------------------------------------------------------------------------- /botbot/apps/logs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/logs/views.py -------------------------------------------------------------------------------- /botbot/apps/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/plugins/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/admin.py -------------------------------------------------------------------------------- /botbot/apps/plugins/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/plugins/core/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/core/help.py -------------------------------------------------------------------------------- /botbot/apps/plugins/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/core/logger.py -------------------------------------------------------------------------------- /botbot/apps/plugins/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/forms.py -------------------------------------------------------------------------------- /botbot/apps/plugins/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/plugins/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/plugins/management/commands/run_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/management/commands/run_plugins.py -------------------------------------------------------------------------------- /botbot/apps/plugins/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/migrations/0001_initial.py -------------------------------------------------------------------------------- /botbot/apps/plugins/migrations/0002_auto_20140912_1656.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/migrations/0002_auto_20140912_1656.py -------------------------------------------------------------------------------- /botbot/apps/plugins/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/plugins/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/models.py -------------------------------------------------------------------------------- /botbot/apps/plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/plugin.py -------------------------------------------------------------------------------- /botbot/apps/plugins/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/runner.py -------------------------------------------------------------------------------- /botbot/apps/plugins/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/plugins/templatetags/plugin_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/templatetags/plugin_docs.py -------------------------------------------------------------------------------- /botbot/apps/plugins/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/tests.py -------------------------------------------------------------------------------- /botbot/apps/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/plugins/utils.py -------------------------------------------------------------------------------- /botbot/apps/preview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/preview/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/preview/views.py -------------------------------------------------------------------------------- /botbot/apps/sitemap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/apps/sitemap/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/apps/sitemap/urls.py -------------------------------------------------------------------------------- /botbot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/core/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/core/fields.py -------------------------------------------------------------------------------- /botbot/core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/core/middleware.py -------------------------------------------------------------------------------- /botbot/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/core/models.py -------------------------------------------------------------------------------- /botbot/core/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/core/paginator.py -------------------------------------------------------------------------------- /botbot/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/core/templatetags/verbatim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/core/templatetags/verbatim.py -------------------------------------------------------------------------------- /botbot/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/core/tests.py -------------------------------------------------------------------------------- /botbot/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/jinja2.py -------------------------------------------------------------------------------- /botbot/less/animate-custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/animate-custom.less -------------------------------------------------------------------------------- /botbot/less/banners.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/banners.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/accordion.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/alerts.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/button-groups.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/buttons.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/carousel.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/close.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/code.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/component-animations.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/forms.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/grid.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/hero-unit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/hero-unit.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/labels-badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/labels-badges.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/layouts.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/mixins.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/modals.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/navbar.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/navs.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/pager.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/pagination.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/popovers.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/reset.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/responsive-1200px-min.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/responsive-1200px-min.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/responsive-767px-max.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/responsive-767px-max.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/responsive-768px-979px.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/responsive-768px-979px.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/responsive-navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/responsive-navbar.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/responsive.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/sprites.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/tables.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/tooltip.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/type.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/utilities.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/variables.less -------------------------------------------------------------------------------- /botbot/less/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/bootstrap/wells.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/bootstrap.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/core.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/extras.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/extras.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/font-awesome-ie7.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/font-awesome-ie7.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/font-awesome.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/icons.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/mixins.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/path.less -------------------------------------------------------------------------------- /botbot/less/font-awesome/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/font-awesome/variables.less -------------------------------------------------------------------------------- /botbot/less/globals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/globals.less -------------------------------------------------------------------------------- /botbot/less/management.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/management.less -------------------------------------------------------------------------------- /botbot/less/nick-colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/nick-colors.less -------------------------------------------------------------------------------- /botbot/less/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/responsive.less -------------------------------------------------------------------------------- /botbot/less/screen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/screen.less -------------------------------------------------------------------------------- /botbot/less/timeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/less/timeline.less -------------------------------------------------------------------------------- /botbot/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /botbot/settings/_asset_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/settings/_asset_pipeline.py -------------------------------------------------------------------------------- /botbot/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/settings/base.py -------------------------------------------------------------------------------- /botbot/static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botbot/static/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/css/screen.css -------------------------------------------------------------------------------- /botbot/static/data/world-110m2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/data/world-110m2.json -------------------------------------------------------------------------------- /botbot/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /botbot/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /botbot/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /botbot/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /botbot/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /botbot/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /botbot/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /botbot/static/img/timeline-circle-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/timeline-circle-large.svg -------------------------------------------------------------------------------- /botbot/static/img/timeline-circle-selected-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/timeline-circle-selected-large.svg -------------------------------------------------------------------------------- /botbot/static/img/timeline-circle-selected-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/timeline-circle-selected-small.svg -------------------------------------------------------------------------------- /botbot/static/img/timeline-circle-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/timeline-circle-small.svg -------------------------------------------------------------------------------- /botbot/static/img/timeline-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/img/timeline-more.svg -------------------------------------------------------------------------------- /botbot/static/js/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/app/app.js -------------------------------------------------------------------------------- /botbot/static/js/app/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/app/common.js -------------------------------------------------------------------------------- /botbot/static/js/app/logs/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/app/logs/default.js -------------------------------------------------------------------------------- /botbot/static/js/app/manage/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/app/manage/default.js -------------------------------------------------------------------------------- /botbot/static/js/app/manage/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/app/manage/models.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/andlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/andlog.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/backbone.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/d3.v3.min.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/detect_timezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/detect_timezone.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/handlebars.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/jquery-1.8.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/jquery-1.8.2.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/jquery-ui-1.9.1.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/jquery-ui-1.9.1.custom.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/jquery.highlight.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/moment.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/topojson.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/topojson.v1.min.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/underscore.js -------------------------------------------------------------------------------- /botbot/static/js/vendor/waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/js/vendor/waypoints.js -------------------------------------------------------------------------------- /botbot/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/static/robots.txt -------------------------------------------------------------------------------- /botbot/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/404.html -------------------------------------------------------------------------------- /botbot/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/500.html -------------------------------------------------------------------------------- /botbot/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/base.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/button.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_checkbox.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_choices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_choices.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_default.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_errors.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_help.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_horizontal.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_inline.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_prepend_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_prepend_append.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_search.html: -------------------------------------------------------------------------------- 1 | {% include "bootstrap_toolkit/field_inline.html" %} 2 | -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_vertical.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/field_visible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/field_visible.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/form.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/formset.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/icon.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/messages.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/nav.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/non_field_error.html: -------------------------------------------------------------------------------- 1 |

{{ error }}

-------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/non_field_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/non_field_errors.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/pagination.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/pills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/pills.html -------------------------------------------------------------------------------- /botbot/templates/bootstrap_toolkit/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/bootstrap_toolkit/tabs.html -------------------------------------------------------------------------------- /botbot/templates/channel_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/channel_list.html -------------------------------------------------------------------------------- /botbot/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/home.html -------------------------------------------------------------------------------- /botbot/templates/includes/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/includes/checkbox.html -------------------------------------------------------------------------------- /botbot/templates/includes/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/includes/field.html -------------------------------------------------------------------------------- /botbot/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/includes/footer.html -------------------------------------------------------------------------------- /botbot/templates/includes/google-analytics.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /botbot/templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/includes/header.html -------------------------------------------------------------------------------- /botbot/templates/launchpad/signup.html: -------------------------------------------------------------------------------- 1 | {% include "home.html" %} 2 | -------------------------------------------------------------------------------- /botbot/templates/launchpad/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/launchpad/success.html -------------------------------------------------------------------------------- /botbot/templates/launchpad/unsubscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/launchpad/unsubscribe.html -------------------------------------------------------------------------------- /botbot/templates/logs/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/logs/help.html -------------------------------------------------------------------------------- /botbot/templates/logs/kudos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/logs/kudos.html -------------------------------------------------------------------------------- /botbot/templates/logs/log_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/logs/log_display.html -------------------------------------------------------------------------------- /botbot/templates/logs/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/logs/logs.html -------------------------------------------------------------------------------- /botbot/templates/logs/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/templates/logs/logs.txt -------------------------------------------------------------------------------- /botbot/urls/__init__.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | -------------------------------------------------------------------------------- /botbot/urls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/urls/admin.py -------------------------------------------------------------------------------- /botbot/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/urls/base.py -------------------------------------------------------------------------------- /botbot/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/botbot/wsgi.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/developers.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/images/botbot-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/images/botbot-architecture.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/irc_resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/irc_resources.rst -------------------------------------------------------------------------------- /docs/managing_bots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/managing_bots.rst -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/production.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/production.rst -------------------------------------------------------------------------------- /docs/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/docs/troubleshooting.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/manage.py -------------------------------------------------------------------------------- /nginx.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/nginx.conf.example -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBotMe/botbot-web/HEAD/setup.py --------------------------------------------------------------------------------