gitextract_xr1bgpyb/ ├── .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/ │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ ├── default/ │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ └── markdown/ │ │ │ │ ├── readme.txt │ │ │ │ ├── set.js │ │ │ │ └── style.css │ │ │ ├── skins/ │ │ │ │ ├── markitup/ │ │ │ │ │ └── style.css │ │ │ │ └── simple/ │ │ │ │ └── style.css │ │ │ └── templates/ │ │ │ ├── preview.css │ │ │ └── preview.html │ │ └── pybb/ │ │ ├── forum.less │ │ ├── forum3.less │ │ ├── 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