├── .coveragerc ├── .gitignore ├── .hgignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── anonymous.rst ├── conf.py ├── contributing.rst ├── customuser.rst ├── example.rst ├── filters.rst ├── index.rst ├── install.rst ├── javascript.rst ├── make.bat ├── markup.rst ├── notifications.rst ├── originalpybb.rst ├── permissions.rst ├── premoderation.rst ├── problems.rst ├── pybbmigrate.rst ├── settings.rst ├── templatetags.rst ├── testing.rst └── updates.rst ├── pybb ├── __init__.py ├── admin.py ├── apps.py ├── compat.py ├── context_processors.py ├── defaults.py ├── feeds.py ├── forms.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── dump_topics.py │ │ ├── migrate_profile.py │ │ ├── pybb_delete_invalid_topics.py │ │ ├── pybb_update_counters.py │ │ └── supermoderator.py ├── markup │ ├── __init__.py │ ├── base.py │ ├── bbcode.py │ └── markdown.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_slugs_optional.py │ ├── 0003_slugs_fill.py │ ├── 0004_slugs_required.py │ ├── 0005_auto_20151108_1528.py │ ├── 0006_forum_subscriptions.py │ ├── 0007_auto_20170111_1504.py │ └── __init__.py ├── models.py ├── permissions.py ├── profiles.py ├── signals.py ├── static │ ├── markitup │ │ ├── ajax_csrf.js │ │ ├── jquery.markitup.js │ │ ├── preview.css │ │ ├── sets │ │ │ ├── bbcode │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── fonts.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-item.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── quotes.png │ │ │ │ │ ├── stroke.png │ │ │ │ │ └── underline.png │ │ │ │ ├── readme.txt │ │ │ │ ├── set.js │ │ │ │ └── style.css │ │ │ ├── default │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ └── stroke.png │ │ │ │ ├── set.js │ │ │ │ └── style.css │ │ │ └── markdown │ │ │ │ ├── images │ │ │ │ ├── bold.png │ │ │ │ ├── code.png │ │ │ │ ├── h1.png │ │ │ │ ├── h2.png │ │ │ │ ├── h3.png │ │ │ │ ├── h4.png │ │ │ │ ├── h5.png │ │ │ │ ├── h6.png │ │ │ │ ├── italic.png │ │ │ │ ├── link.png │ │ │ │ ├── list-bullet.png │ │ │ │ ├── list-numeric.png │ │ │ │ ├── picture.png │ │ │ │ ├── preview.png │ │ │ │ └── quotes.png │ │ │ │ ├── readme.txt │ │ │ │ ├── set.js │ │ │ │ └── style.css │ │ ├── skins │ │ │ ├── markitup │ │ │ │ ├── images │ │ │ │ │ ├── bg-container.png │ │ │ │ │ ├── bg-editor-bbcode.png │ │ │ │ │ ├── bg-editor-dotclear.png │ │ │ │ │ ├── bg-editor-html.png │ │ │ │ │ ├── bg-editor-json.png │ │ │ │ │ ├── bg-editor-markdown.png │ │ │ │ │ ├── bg-editor-textile.png │ │ │ │ │ ├── bg-editor-wiki.png │ │ │ │ │ ├── bg-editor-xml.png │ │ │ │ │ ├── bg-editor.png │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── menu.png │ │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ │ └── simple │ │ │ │ ├── images │ │ │ │ ├── handle.png │ │ │ │ ├── menu.png │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ └── templates │ │ │ ├── preview.css │ │ │ └── preview.html │ └── pybb │ │ ├── emoticons │ │ ├── angry.png │ │ ├── cry.png │ │ ├── eyes.png │ │ ├── geek.png │ │ ├── glasses.png │ │ ├── lol.png │ │ ├── sad.png │ │ ├── shok.png │ │ ├── shy.png │ │ ├── smile.png │ │ ├── tongue.png │ │ └── wink.png │ │ ├── forum.less │ │ ├── forum3.less │ │ ├── img │ │ ├── attachment.png │ │ ├── default_avatar.jpg │ │ ├── feed-icon-big.png │ │ ├── feed-icon-small.png │ │ └── image.png │ │ ├── js │ │ ├── jquery.formset.min.js │ │ ├── markitup.js │ │ └── pybbjs.js │ │ ├── posts.less │ │ ├── posts3.less │ │ ├── visual.less │ │ └── visual3.less ├── subscription.py ├── templates │ └── pybb │ │ ├── _button_forum_subscription.html │ │ ├── _button_new_topic.html │ │ ├── _button_save.html │ │ ├── _button_submit.html │ │ ├── _easy_thumbnail_avatar.html │ │ ├── _markitup.html │ │ ├── _markitup_preview.html │ │ ├── _need_to_login_message.html │ │ ├── _select_radio.html │ │ ├── _sorl_thumbnail_avatar.html │ │ ├── add_post.html │ │ ├── attachments_formset.html │ │ ├── avatar.html │ │ ├── base.html │ │ ├── breadcrumb.html │ │ ├── breadcrumb_top_extra_crumb.html │ │ ├── category.html │ │ ├── delete_post.html │ │ ├── edit_post.html │ │ ├── edit_privileges.html │ │ ├── edit_profile.html │ │ ├── feeds │ │ ├── posts_description.html │ │ ├── posts_title.html │ │ ├── topics_description.html │ │ └── topics_title.html │ │ ├── form.html │ │ ├── form_errors.html │ │ ├── form_field.html │ │ ├── forum.html │ │ ├── forum_last_update_info.html │ │ ├── forum_list.html │ │ ├── forum_subscription.html │ │ ├── index.html │ │ ├── latest_topics.html │ │ ├── mail_templates │ │ ├── base-html.html │ │ ├── base.html │ │ ├── forum_subscription_email_body.html │ │ ├── forum_subscription_email_subject.html │ │ ├── subscription_email_body-html.html │ │ ├── subscription_email_body.html │ │ └── subscription_email_subject.html │ │ ├── markup │ │ ├── bbcode_widget.html │ │ └── markdown_widget.html │ │ ├── move_post.html │ │ ├── pagination.html │ │ ├── poll.html │ │ ├── poll_edit_form.html │ │ ├── post_form.html │ │ ├── post_template.html │ │ ├── topic.html │ │ ├── topic_last_message_info.html │ │ ├── topic_list.html │ │ ├── user.html │ │ ├── user_posts.html │ │ ├── user_topics.html │ │ └── users.html ├── templatetags │ ├── __init__.py │ └── pybb_tags.py ├── tests.py ├── urls.py ├── util.py └── views.py ├── runtests.py ├── setup.py ├── test ├── example_bootstrap │ ├── example_bootstrap │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── fixtures │ │ └── demo_data.json │ ├── manage.py │ ├── requirements.txt │ ├── static │ │ ├── bootstrap │ │ │ ├── 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 │ │ │ ├── mixins.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── popovers.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── csrf.js │ │ ├── example_bootstrap.css │ │ └── example_bootstrap.less │ └── templates │ │ ├── 404.html │ │ ├── base.html │ │ ├── bootstrap_base.html │ │ ├── pybb │ │ ├── breadcrumb.html │ │ └── form_field.html │ │ └── registration │ │ ├── activate.html │ │ ├── activation_complete.html │ │ ├── activation_email.txt │ │ ├── activation_email_subject.txt │ │ ├── login.html │ │ ├── logout.html │ │ ├── registration_complete.html │ │ └── registration_form.html ├── example_thirdparty │ ├── example_thirdparty │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── manage.py │ ├── requirements.txt │ └── templates │ │ ├── pybb │ │ ├── breadcrumb.html │ │ ├── form.html │ │ └── form_field.html │ │ └── site_base.html └── test_project │ ├── manage.py │ ├── requirements_test.txt │ ├── templates │ ├── 404.html │ ├── base.html │ └── pybb │ │ ├── _need_to_login_message.html │ │ └── edit_profile.html │ ├── test_app │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py │ └── test_project │ ├── __init__.py │ ├── markup_parsers.py │ ├── settings.py │ └── urls.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/anonymous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/anonymous.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/customuser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/customuser.rst -------------------------------------------------------------------------------- /docs/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/example.rst -------------------------------------------------------------------------------- /docs/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/filters.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/javascript.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/javascript.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/markup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/markup.rst -------------------------------------------------------------------------------- /docs/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/notifications.rst -------------------------------------------------------------------------------- /docs/originalpybb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/originalpybb.rst -------------------------------------------------------------------------------- /docs/permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/permissions.rst -------------------------------------------------------------------------------- /docs/premoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/premoderation.rst -------------------------------------------------------------------------------- /docs/problems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/problems.rst -------------------------------------------------------------------------------- /docs/pybbmigrate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/pybbmigrate.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/templatetags.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/updates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/docs/updates.rst -------------------------------------------------------------------------------- /pybb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/__init__.py -------------------------------------------------------------------------------- /pybb/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/admin.py -------------------------------------------------------------------------------- /pybb/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/apps.py -------------------------------------------------------------------------------- /pybb/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/compat.py -------------------------------------------------------------------------------- /pybb/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/context_processors.py -------------------------------------------------------------------------------- /pybb/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/defaults.py -------------------------------------------------------------------------------- /pybb/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/feeds.py -------------------------------------------------------------------------------- /pybb/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/forms.py -------------------------------------------------------------------------------- /pybb/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /pybb/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pybb/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybb/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybb/management/commands/dump_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/management/commands/dump_topics.py -------------------------------------------------------------------------------- /pybb/management/commands/migrate_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/management/commands/migrate_profile.py -------------------------------------------------------------------------------- /pybb/management/commands/pybb_delete_invalid_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/management/commands/pybb_delete_invalid_topics.py -------------------------------------------------------------------------------- /pybb/management/commands/pybb_update_counters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/management/commands/pybb_update_counters.py -------------------------------------------------------------------------------- /pybb/management/commands/supermoderator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/management/commands/supermoderator.py -------------------------------------------------------------------------------- /pybb/markup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybb/markup/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/markup/base.py -------------------------------------------------------------------------------- /pybb/markup/bbcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/markup/bbcode.py -------------------------------------------------------------------------------- /pybb/markup/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/markup/markdown.py -------------------------------------------------------------------------------- /pybb/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/middleware.py -------------------------------------------------------------------------------- /pybb/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0001_initial.py -------------------------------------------------------------------------------- /pybb/migrations/0002_slugs_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0002_slugs_optional.py -------------------------------------------------------------------------------- /pybb/migrations/0003_slugs_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0003_slugs_fill.py -------------------------------------------------------------------------------- /pybb/migrations/0004_slugs_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0004_slugs_required.py -------------------------------------------------------------------------------- /pybb/migrations/0005_auto_20151108_1528.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0005_auto_20151108_1528.py -------------------------------------------------------------------------------- /pybb/migrations/0006_forum_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0006_forum_subscriptions.py -------------------------------------------------------------------------------- /pybb/migrations/0007_auto_20170111_1504.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/migrations/0007_auto_20170111_1504.py -------------------------------------------------------------------------------- /pybb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/models.py -------------------------------------------------------------------------------- /pybb/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/permissions.py -------------------------------------------------------------------------------- /pybb/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/profiles.py -------------------------------------------------------------------------------- /pybb/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/signals.py -------------------------------------------------------------------------------- /pybb/static/markitup/ajax_csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/ajax_csrf.js -------------------------------------------------------------------------------- /pybb/static/markitup/jquery.markitup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/jquery.markitup.js -------------------------------------------------------------------------------- /pybb/static/markitup/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/preview.css -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/bold.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/clean.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/code.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/fonts.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/italic.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/link.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/list-bullet.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/list-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/list-item.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/list-numeric.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/picture.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/preview.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/quotes.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/stroke.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/images/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/images/underline.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/readme.txt -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/set.js -------------------------------------------------------------------------------- /pybb/static/markitup/sets/bbcode/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/bbcode/style.css -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/bold.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/clean.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/image.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/italic.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/link.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/picture.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/preview.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/images/stroke.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/set.js -------------------------------------------------------------------------------- /pybb/static/markitup/sets/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/default/style.css -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/bold.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/code.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/h1.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/h2.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/h3.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/h4.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/h5.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/h6.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/italic.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/link.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/list-bullet.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/list-numeric.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/picture.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/preview.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/images/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/images/quotes.png -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/readme.txt -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/set.js -------------------------------------------------------------------------------- /pybb/static/markitup/sets/markdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/sets/markdown/style.css -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-container.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-bbcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-bbcode.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-dotclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-dotclear.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-html.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-json.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-markdown.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-textile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-textile.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-wiki.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor-xml.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/bg-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/bg-editor.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/handle.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/menu.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/images/submenu.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/markitup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/markitup/style.css -------------------------------------------------------------------------------- /pybb/static/markitup/skins/simple/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/simple/images/handle.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/simple/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/simple/images/menu.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/simple/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/simple/images/submenu.png -------------------------------------------------------------------------------- /pybb/static/markitup/skins/simple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/skins/simple/style.css -------------------------------------------------------------------------------- /pybb/static/markitup/templates/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/templates/preview.css -------------------------------------------------------------------------------- /pybb/static/markitup/templates/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/markitup/templates/preview.html -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/angry.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/cry.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/eyes.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/geek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/geek.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/glasses.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/lol.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/sad.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/shok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/shok.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/shy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/shy.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/smile.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/tongue.png -------------------------------------------------------------------------------- /pybb/static/pybb/emoticons/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/emoticons/wink.png -------------------------------------------------------------------------------- /pybb/static/pybb/forum.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/forum.less -------------------------------------------------------------------------------- /pybb/static/pybb/forum3.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/forum3.less -------------------------------------------------------------------------------- /pybb/static/pybb/img/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/img/attachment.png -------------------------------------------------------------------------------- /pybb/static/pybb/img/default_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/img/default_avatar.jpg -------------------------------------------------------------------------------- /pybb/static/pybb/img/feed-icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/img/feed-icon-big.png -------------------------------------------------------------------------------- /pybb/static/pybb/img/feed-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/img/feed-icon-small.png -------------------------------------------------------------------------------- /pybb/static/pybb/img/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/img/image.png -------------------------------------------------------------------------------- /pybb/static/pybb/js/jquery.formset.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/js/jquery.formset.min.js -------------------------------------------------------------------------------- /pybb/static/pybb/js/markitup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/js/markitup.js -------------------------------------------------------------------------------- /pybb/static/pybb/js/pybbjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/js/pybbjs.js -------------------------------------------------------------------------------- /pybb/static/pybb/posts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/posts.less -------------------------------------------------------------------------------- /pybb/static/pybb/posts3.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/posts3.less -------------------------------------------------------------------------------- /pybb/static/pybb/visual.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/visual.less -------------------------------------------------------------------------------- /pybb/static/pybb/visual3.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/static/pybb/visual3.less -------------------------------------------------------------------------------- /pybb/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/subscription.py -------------------------------------------------------------------------------- /pybb/templates/pybb/_button_forum_subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_button_forum_subscription.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_button_new_topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_button_new_topic.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_button_save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_button_save.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_button_submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_button_submit.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_easy_thumbnail_avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_easy_thumbnail_avatar.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_markitup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_markitup.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_markitup_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_markitup_preview.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_need_to_login_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_need_to_login_message.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_select_radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_select_radio.html -------------------------------------------------------------------------------- /pybb/templates/pybb/_sorl_thumbnail_avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/_sorl_thumbnail_avatar.html -------------------------------------------------------------------------------- /pybb/templates/pybb/add_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/add_post.html -------------------------------------------------------------------------------- /pybb/templates/pybb/attachments_formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/attachments_formset.html -------------------------------------------------------------------------------- /pybb/templates/pybb/avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/avatar.html -------------------------------------------------------------------------------- /pybb/templates/pybb/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/base.html -------------------------------------------------------------------------------- /pybb/templates/pybb/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/breadcrumb.html -------------------------------------------------------------------------------- /pybb/templates/pybb/breadcrumb_top_extra_crumb.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybb/templates/pybb/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/category.html -------------------------------------------------------------------------------- /pybb/templates/pybb/delete_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/delete_post.html -------------------------------------------------------------------------------- /pybb/templates/pybb/edit_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/edit_post.html -------------------------------------------------------------------------------- /pybb/templates/pybb/edit_privileges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/edit_privileges.html -------------------------------------------------------------------------------- /pybb/templates/pybb/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/edit_profile.html -------------------------------------------------------------------------------- /pybb/templates/pybb/feeds/posts_description.html: -------------------------------------------------------------------------------- 1 | {{ obj.body_html|safe }} 2 | -------------------------------------------------------------------------------- /pybb/templates/pybb/feeds/posts_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/feeds/posts_title.html -------------------------------------------------------------------------------- /pybb/templates/pybb/feeds/topics_description.html: -------------------------------------------------------------------------------- 1 | {{ obj.head.body_html|safe }} 2 | -------------------------------------------------------------------------------- /pybb/templates/pybb/feeds/topics_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/feeds/topics_title.html -------------------------------------------------------------------------------- /pybb/templates/pybb/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/form.html -------------------------------------------------------------------------------- /pybb/templates/pybb/form_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/form_errors.html -------------------------------------------------------------------------------- /pybb/templates/pybb/form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/form_field.html -------------------------------------------------------------------------------- /pybb/templates/pybb/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/forum.html -------------------------------------------------------------------------------- /pybb/templates/pybb/forum_last_update_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/forum_last_update_info.html -------------------------------------------------------------------------------- /pybb/templates/pybb/forum_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/forum_list.html -------------------------------------------------------------------------------- /pybb/templates/pybb/forum_subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/forum_subscription.html -------------------------------------------------------------------------------- /pybb/templates/pybb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/index.html -------------------------------------------------------------------------------- /pybb/templates/pybb/latest_topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/latest_topics.html -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/base-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/mail_templates/base-html.html -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/mail_templates/base.html -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/forum_subscription_email_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/mail_templates/forum_subscription_email_body.html -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/forum_subscription_email_subject.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% trans 'New topic in forum that you subscribed.' %} 3 | -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/subscription_email_body-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/mail_templates/subscription_email_body-html.html -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/subscription_email_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/mail_templates/subscription_email_body.html -------------------------------------------------------------------------------- /pybb/templates/pybb/mail_templates/subscription_email_subject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/mail_templates/subscription_email_subject.html -------------------------------------------------------------------------------- /pybb/templates/pybb/markup/bbcode_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/markup/bbcode_widget.html -------------------------------------------------------------------------------- /pybb/templates/pybb/markup/markdown_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/markup/markdown_widget.html -------------------------------------------------------------------------------- /pybb/templates/pybb/move_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/move_post.html -------------------------------------------------------------------------------- /pybb/templates/pybb/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/pagination.html -------------------------------------------------------------------------------- /pybb/templates/pybb/poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/poll.html -------------------------------------------------------------------------------- /pybb/templates/pybb/poll_edit_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/poll_edit_form.html -------------------------------------------------------------------------------- /pybb/templates/pybb/post_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/post_form.html -------------------------------------------------------------------------------- /pybb/templates/pybb/post_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/post_template.html -------------------------------------------------------------------------------- /pybb/templates/pybb/topic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/topic.html -------------------------------------------------------------------------------- /pybb/templates/pybb/topic_last_message_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/topic_last_message_info.html -------------------------------------------------------------------------------- /pybb/templates/pybb/topic_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/topic_list.html -------------------------------------------------------------------------------- /pybb/templates/pybb/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/user.html -------------------------------------------------------------------------------- /pybb/templates/pybb/user_posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/user_posts.html -------------------------------------------------------------------------------- /pybb/templates/pybb/user_topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/user_topics.html -------------------------------------------------------------------------------- /pybb/templates/pybb/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templates/pybb/users.html -------------------------------------------------------------------------------- /pybb/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybb/templatetags/pybb_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/templatetags/pybb_tags.py -------------------------------------------------------------------------------- /pybb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/tests.py -------------------------------------------------------------------------------- /pybb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/urls.py -------------------------------------------------------------------------------- /pybb/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/util.py -------------------------------------------------------------------------------- /pybb/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/pybb/views.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/setup.py -------------------------------------------------------------------------------- /test/example_bootstrap/example_bootstrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example_bootstrap/example_bootstrap/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/example_bootstrap/settings.py -------------------------------------------------------------------------------- /test/example_bootstrap/example_bootstrap/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/example_bootstrap/urls.py -------------------------------------------------------------------------------- /test/example_bootstrap/example_bootstrap/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/example_bootstrap/wsgi.py -------------------------------------------------------------------------------- /test/example_bootstrap/fixtures/demo_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/fixtures/demo_data.json -------------------------------------------------------------------------------- /test/example_bootstrap/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/manage.py -------------------------------------------------------------------------------- /test/example_bootstrap/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/requirements.txt -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/alerts.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/button-groups.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/buttons.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/carousel.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/close.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/code.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/component-animations.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/forms.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/grid.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/mixins.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/modals.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/navbar.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/navs.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/pager.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/pagination.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/popovers.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/tables.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/tooltip.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/type.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/utilities.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/variables.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/bootstrap/wells.less -------------------------------------------------------------------------------- /test/example_bootstrap/static/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/csrf.js -------------------------------------------------------------------------------- /test/example_bootstrap/static/example_bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/example_bootstrap.css -------------------------------------------------------------------------------- /test/example_bootstrap/static/example_bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/static/example_bootstrap.less -------------------------------------------------------------------------------- /test/example_bootstrap/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/404.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/base.html: -------------------------------------------------------------------------------- 1 | {% extends "bootstrap_base.html" %} -------------------------------------------------------------------------------- /test/example_bootstrap/templates/bootstrap_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/bootstrap_base.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/pybb/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/pybb/breadcrumb.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/pybb/form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/pybb/form_field.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/registration/activate.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/activation_complete.html: -------------------------------------------------------------------------------- 1 | {% extends "activate.html" %} -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- 1 | Registration on {{site}}! -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/registration/login.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/registration/logout.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /test/example_bootstrap/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_bootstrap/templates/registration/registration_form.html -------------------------------------------------------------------------------- /test/example_thirdparty/example_thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example_thirdparty/example_thirdparty/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/example_thirdparty/forms.py -------------------------------------------------------------------------------- /test/example_thirdparty/example_thirdparty/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/example_thirdparty/settings.py -------------------------------------------------------------------------------- /test/example_thirdparty/example_thirdparty/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/example_thirdparty/urls.py -------------------------------------------------------------------------------- /test/example_thirdparty/example_thirdparty/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/example_thirdparty/wsgi.py -------------------------------------------------------------------------------- /test/example_thirdparty/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/manage.py -------------------------------------------------------------------------------- /test/example_thirdparty/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/requirements.txt -------------------------------------------------------------------------------- /test/example_thirdparty/templates/pybb/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/templates/pybb/breadcrumb.html -------------------------------------------------------------------------------- /test/example_thirdparty/templates/pybb/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/templates/pybb/form.html -------------------------------------------------------------------------------- /test/example_thirdparty/templates/pybb/form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/templates/pybb/form_field.html -------------------------------------------------------------------------------- /test/example_thirdparty/templates/site_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/example_thirdparty/templates/site_base.html -------------------------------------------------------------------------------- /test/test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/manage.py -------------------------------------------------------------------------------- /test/test_project/requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/requirements_test.txt -------------------------------------------------------------------------------- /test/test_project/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/templates/404.html -------------------------------------------------------------------------------- /test/test_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/templates/base.html -------------------------------------------------------------------------------- /test/test_project/templates/pybb/_need_to_login_message.html: -------------------------------------------------------------------------------- 1 | login, please -------------------------------------------------------------------------------- /test/test_project/templates/pybb/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/templates/pybb/edit_profile.html -------------------------------------------------------------------------------- /test/test_project/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_project/test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/test_app/apps.py -------------------------------------------------------------------------------- /test/test_project/test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /test/test_project/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_project/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/test_app/models.py -------------------------------------------------------------------------------- /test/test_project/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_project/test_project/markup_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/test_project/markup_parsers.py -------------------------------------------------------------------------------- /test/test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/test_project/settings.py -------------------------------------------------------------------------------- /test/test_project/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/test/test_project/test_project/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovel/pybbm/HEAD/tox.ini --------------------------------------------------------------------------------