├── .covio.yml ├── .gitignore ├── .travis.yml ├── COPYING ├── Dockerfile ├── INSTALL.md ├── PODMAN.md ├── README.md ├── __init__.py ├── bnw.init.d.sh ├── bnw ├── __init__.py ├── core │ ├── __init__.py │ ├── base.py │ ├── bnw_gridfs.py │ ├── bnw_mongo.py │ ├── bnw_objects.py │ ├── delayed_global.py │ ├── ensure_indexes.py │ ├── post.py │ ├── statsd.py │ └── test_core.py ├── formatting │ ├── __init__.py │ ├── linkshit_format.py │ ├── markdown.py │ ├── moinmoin.py │ └── plaintext.py ├── handlers │ ├── __init__.py │ ├── base.py │ ├── command_alias.py │ ├── command_bl.py │ ├── command_clubs.py │ ├── command_delete.py │ ├── command_except.py │ ├── command_help.py │ ├── command_interface.py │ ├── command_jids.py │ ├── command_login.py │ ├── command_onoff.py │ ├── command_ping.py │ ├── command_pm.py │ ├── command_post.py │ ├── command_register.py │ ├── command_search.py │ ├── command_settings.py │ ├── command_show.py │ ├── command_stat.py │ ├── command_subscription.py │ ├── command_update.py │ ├── command_userinfo.py │ ├── command_userlist.py │ ├── command_vcard.py │ ├── command_whoami.py │ ├── mapreduce.py │ └── throttle.py ├── scripts │ ├── __init__.py │ ├── admin.py │ ├── entry.py │ ├── instance.py │ └── search.py ├── search │ ├── __init__.py │ ├── indexer.py │ └── search_server.py ├── tests │ └── test_server │ │ ├── config.py │ │ ├── run.py │ │ ├── run.sh │ │ ├── tests.py │ │ └── xmpp_tester.py ├── web │ ├── __init__.py │ ├── api.py │ ├── api_handlers.py │ ├── auth.py │ ├── base.py │ ├── rss.py │ ├── site.py │ ├── static │ │ ├── basestyle.css │ │ ├── button-ipv6-80x15.png │ │ ├── dialogs.js │ │ ├── dynamic.js │ │ ├── favicon-event.ico │ │ ├── favicon.ico │ │ ├── favicon.js │ │ ├── flot │ │ │ ├── jquery.flot.min.js │ │ │ └── jquery.flot.selection.min.js │ │ ├── highlight.min.js │ │ ├── highlight_github.css │ │ ├── jquery.cookie.js │ │ ├── jquery.min.js │ │ ├── mobile.css │ │ ├── oops.jpg │ │ ├── robots.txt │ │ ├── stat.html │ │ ├── tree-comments.js │ │ ├── web-socket-js │ │ │ ├── WebSocketMain.swf │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ │ └── ws.js │ ├── templates │ │ ├── 500.html │ │ ├── base.html │ │ ├── clubs.html │ │ ├── comment.html │ │ ├── feed.html │ │ ├── main.html │ │ ├── message.html │ │ ├── module-comment.html │ │ ├── module-message.html │ │ ├── noauth.html │ │ ├── pagination-head.html │ │ ├── pagination.html │ │ ├── post.html │ │ ├── today.html │ │ ├── user.html │ │ ├── userinfo.html │ │ └── ws_headers.html │ ├── uimodules.py │ └── widgets.py └── xmpp │ ├── __init__.py │ ├── alias_subst.py │ ├── base.py │ ├── bnw_component.py │ ├── deliver_formatters.py │ ├── formatters_redeye.py │ ├── formatters_simple.py │ ├── handlers.py │ ├── iq_handlers.py │ ├── parser_basexmpp.py │ ├── parser_redeye.py │ ├── parser_redeye_test.py │ ├── parser_regex.py │ ├── parser_regex_test.py │ ├── parser_simplified.py │ ├── stupid_handler.py │ └── xmpp_notifier.py ├── bnw_search.init.d.sh ├── bnw_shell.py ├── calc_daily.js ├── calc_subsgraph.js ├── calc_talkers.js ├── config.py.docker_env ├── config.py.example ├── doxy.conf ├── podman-run.sh ├── setup.py └── test_fullimport.py /.covio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/.covio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/INSTALL.md -------------------------------------------------------------------------------- /PODMAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/PODMAN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bnw.init.d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw.init.d.sh -------------------------------------------------------------------------------- /bnw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bnw/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bnw/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/base.py -------------------------------------------------------------------------------- /bnw/core/bnw_gridfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/bnw_gridfs.py -------------------------------------------------------------------------------- /bnw/core/bnw_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/bnw_mongo.py -------------------------------------------------------------------------------- /bnw/core/bnw_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/bnw_objects.py -------------------------------------------------------------------------------- /bnw/core/delayed_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/delayed_global.py -------------------------------------------------------------------------------- /bnw/core/ensure_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/ensure_indexes.py -------------------------------------------------------------------------------- /bnw/core/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/post.py -------------------------------------------------------------------------------- /bnw/core/statsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/statsd.py -------------------------------------------------------------------------------- /bnw/core/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/core/test_core.py -------------------------------------------------------------------------------- /bnw/formatting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/formatting/__init__.py -------------------------------------------------------------------------------- /bnw/formatting/linkshit_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/formatting/linkshit_format.py -------------------------------------------------------------------------------- /bnw/formatting/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/formatting/markdown.py -------------------------------------------------------------------------------- /bnw/formatting/moinmoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/formatting/moinmoin.py -------------------------------------------------------------------------------- /bnw/formatting/plaintext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/formatting/plaintext.py -------------------------------------------------------------------------------- /bnw/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/__init__.py -------------------------------------------------------------------------------- /bnw/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/base.py -------------------------------------------------------------------------------- /bnw/handlers/command_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_alias.py -------------------------------------------------------------------------------- /bnw/handlers/command_bl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_bl.py -------------------------------------------------------------------------------- /bnw/handlers/command_clubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_clubs.py -------------------------------------------------------------------------------- /bnw/handlers/command_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_delete.py -------------------------------------------------------------------------------- /bnw/handlers/command_except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_except.py -------------------------------------------------------------------------------- /bnw/handlers/command_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_help.py -------------------------------------------------------------------------------- /bnw/handlers/command_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_interface.py -------------------------------------------------------------------------------- /bnw/handlers/command_jids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_jids.py -------------------------------------------------------------------------------- /bnw/handlers/command_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_login.py -------------------------------------------------------------------------------- /bnw/handlers/command_onoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_onoff.py -------------------------------------------------------------------------------- /bnw/handlers/command_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_ping.py -------------------------------------------------------------------------------- /bnw/handlers/command_pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_pm.py -------------------------------------------------------------------------------- /bnw/handlers/command_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_post.py -------------------------------------------------------------------------------- /bnw/handlers/command_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_register.py -------------------------------------------------------------------------------- /bnw/handlers/command_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_search.py -------------------------------------------------------------------------------- /bnw/handlers/command_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_settings.py -------------------------------------------------------------------------------- /bnw/handlers/command_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_show.py -------------------------------------------------------------------------------- /bnw/handlers/command_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_stat.py -------------------------------------------------------------------------------- /bnw/handlers/command_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_subscription.py -------------------------------------------------------------------------------- /bnw/handlers/command_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_update.py -------------------------------------------------------------------------------- /bnw/handlers/command_userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_userinfo.py -------------------------------------------------------------------------------- /bnw/handlers/command_userlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_userlist.py -------------------------------------------------------------------------------- /bnw/handlers/command_vcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_vcard.py -------------------------------------------------------------------------------- /bnw/handlers/command_whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/command_whoami.py -------------------------------------------------------------------------------- /bnw/handlers/mapreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/mapreduce.py -------------------------------------------------------------------------------- /bnw/handlers/throttle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/handlers/throttle.py -------------------------------------------------------------------------------- /bnw/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bnw/scripts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/scripts/admin.py -------------------------------------------------------------------------------- /bnw/scripts/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/scripts/entry.py -------------------------------------------------------------------------------- /bnw/scripts/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/scripts/instance.py -------------------------------------------------------------------------------- /bnw/scripts/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/scripts/search.py -------------------------------------------------------------------------------- /bnw/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bnw/search/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/search/indexer.py -------------------------------------------------------------------------------- /bnw/search/search_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/search/search_server.py -------------------------------------------------------------------------------- /bnw/tests/test_server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/tests/test_server/config.py -------------------------------------------------------------------------------- /bnw/tests/test_server/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/tests/test_server/run.py -------------------------------------------------------------------------------- /bnw/tests/test_server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/tests/test_server/run.sh -------------------------------------------------------------------------------- /bnw/tests/test_server/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/tests/test_server/tests.py -------------------------------------------------------------------------------- /bnw/tests/test_server/xmpp_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/tests/test_server/xmpp_tester.py -------------------------------------------------------------------------------- /bnw/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bnw/web/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/api.py -------------------------------------------------------------------------------- /bnw/web/api_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/api_handlers.py -------------------------------------------------------------------------------- /bnw/web/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/auth.py -------------------------------------------------------------------------------- /bnw/web/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/base.py -------------------------------------------------------------------------------- /bnw/web/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/rss.py -------------------------------------------------------------------------------- /bnw/web/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/site.py -------------------------------------------------------------------------------- /bnw/web/static/basestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/basestyle.css -------------------------------------------------------------------------------- /bnw/web/static/button-ipv6-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/button-ipv6-80x15.png -------------------------------------------------------------------------------- /bnw/web/static/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/dialogs.js -------------------------------------------------------------------------------- /bnw/web/static/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/dynamic.js -------------------------------------------------------------------------------- /bnw/web/static/favicon-event.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/favicon-event.ico -------------------------------------------------------------------------------- /bnw/web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/favicon.ico -------------------------------------------------------------------------------- /bnw/web/static/favicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/favicon.js -------------------------------------------------------------------------------- /bnw/web/static/flot/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/flot/jquery.flot.min.js -------------------------------------------------------------------------------- /bnw/web/static/flot/jquery.flot.selection.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/flot/jquery.flot.selection.min.js -------------------------------------------------------------------------------- /bnw/web/static/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/highlight.min.js -------------------------------------------------------------------------------- /bnw/web/static/highlight_github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/highlight_github.css -------------------------------------------------------------------------------- /bnw/web/static/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/jquery.cookie.js -------------------------------------------------------------------------------- /bnw/web/static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/jquery.min.js -------------------------------------------------------------------------------- /bnw/web/static/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/mobile.css -------------------------------------------------------------------------------- /bnw/web/static/oops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/oops.jpg -------------------------------------------------------------------------------- /bnw/web/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /bnw/web/static/stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/stat.html -------------------------------------------------------------------------------- /bnw/web/static/tree-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/tree-comments.js -------------------------------------------------------------------------------- /bnw/web/static/web-socket-js/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/web-socket-js/WebSocketMain.swf -------------------------------------------------------------------------------- /bnw/web/static/web-socket-js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/web-socket-js/swfobject.js -------------------------------------------------------------------------------- /bnw/web/static/web-socket-js/web_socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/web-socket-js/web_socket.js -------------------------------------------------------------------------------- /bnw/web/static/ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/static/ws.js -------------------------------------------------------------------------------- /bnw/web/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/500.html -------------------------------------------------------------------------------- /bnw/web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/base.html -------------------------------------------------------------------------------- /bnw/web/templates/clubs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/clubs.html -------------------------------------------------------------------------------- /bnw/web/templates/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/comment.html -------------------------------------------------------------------------------- /bnw/web/templates/feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/feed.html -------------------------------------------------------------------------------- /bnw/web/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/main.html -------------------------------------------------------------------------------- /bnw/web/templates/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/message.html -------------------------------------------------------------------------------- /bnw/web/templates/module-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/module-comment.html -------------------------------------------------------------------------------- /bnw/web/templates/module-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/module-message.html -------------------------------------------------------------------------------- /bnw/web/templates/noauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/noauth.html -------------------------------------------------------------------------------- /bnw/web/templates/pagination-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/pagination-head.html -------------------------------------------------------------------------------- /bnw/web/templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/pagination.html -------------------------------------------------------------------------------- /bnw/web/templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/post.html -------------------------------------------------------------------------------- /bnw/web/templates/today.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/today.html -------------------------------------------------------------------------------- /bnw/web/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/user.html -------------------------------------------------------------------------------- /bnw/web/templates/userinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/userinfo.html -------------------------------------------------------------------------------- /bnw/web/templates/ws_headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/templates/ws_headers.html -------------------------------------------------------------------------------- /bnw/web/uimodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/uimodules.py -------------------------------------------------------------------------------- /bnw/web/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/web/widgets.py -------------------------------------------------------------------------------- /bnw/xmpp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/__init__.py -------------------------------------------------------------------------------- /bnw/xmpp/alias_subst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/alias_subst.py -------------------------------------------------------------------------------- /bnw/xmpp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/base.py -------------------------------------------------------------------------------- /bnw/xmpp/bnw_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/bnw_component.py -------------------------------------------------------------------------------- /bnw/xmpp/deliver_formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/deliver_formatters.py -------------------------------------------------------------------------------- /bnw/xmpp/formatters_redeye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/formatters_redeye.py -------------------------------------------------------------------------------- /bnw/xmpp/formatters_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/formatters_simple.py -------------------------------------------------------------------------------- /bnw/xmpp/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/handlers.py -------------------------------------------------------------------------------- /bnw/xmpp/iq_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/iq_handlers.py -------------------------------------------------------------------------------- /bnw/xmpp/parser_basexmpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/parser_basexmpp.py -------------------------------------------------------------------------------- /bnw/xmpp/parser_redeye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/parser_redeye.py -------------------------------------------------------------------------------- /bnw/xmpp/parser_redeye_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/parser_redeye_test.py -------------------------------------------------------------------------------- /bnw/xmpp/parser_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/parser_regex.py -------------------------------------------------------------------------------- /bnw/xmpp/parser_regex_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/parser_regex_test.py -------------------------------------------------------------------------------- /bnw/xmpp/parser_simplified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/parser_simplified.py -------------------------------------------------------------------------------- /bnw/xmpp/stupid_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/stupid_handler.py -------------------------------------------------------------------------------- /bnw/xmpp/xmpp_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw/xmpp/xmpp_notifier.py -------------------------------------------------------------------------------- /bnw_search.init.d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw_search.init.d.sh -------------------------------------------------------------------------------- /bnw_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/bnw_shell.py -------------------------------------------------------------------------------- /calc_daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/calc_daily.js -------------------------------------------------------------------------------- /calc_subsgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/calc_subsgraph.js -------------------------------------------------------------------------------- /calc_talkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/calc_talkers.js -------------------------------------------------------------------------------- /config.py.docker_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/config.py.docker_env -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/config.py.example -------------------------------------------------------------------------------- /doxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/doxy.conf -------------------------------------------------------------------------------- /podman-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/podman-run.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/setup.py -------------------------------------------------------------------------------- /test_fullimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stiletto/bnw/HEAD/test_fullimport.py --------------------------------------------------------------------------------