├── .codecov.yml ├── .coveragerc ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .isort.cfg ├── .readthedocs.yaml ├── .tx └── config ├── AUTHORS ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── Makefile ├── README.rst ├── babel.config.js ├── docs ├── Makefile ├── _images │ ├── logo.svg │ ├── logo_small.svg │ ├── permissions_edit_page_1.png │ ├── permissions_edit_page_2.png │ └── permissions_edit_page_3.png ├── _static │ └── custom_theme.css ├── _templates │ ├── indexcontent.html │ └── layout.rst ├── conf.py ├── contributing.rst ├── customization │ ├── index.rst │ ├── overriding_applications.rst │ ├── recipes │ │ ├── custom_avatar_backend.rst │ │ ├── custom_forum_member_display_names.rst │ │ ├── overriding_models.rst │ │ └── using_another_markup_language.rst │ └── underlying_mechanisms.rst ├── example_project.rst ├── forum_permissions.rst ├── getting_started.rst ├── glossary.rst ├── index.rst ├── machina_apps_reference │ ├── forum.rst │ ├── forum_conversation │ │ ├── forum_attachments.rst │ │ ├── forum_polls.rst │ │ └── index.rst │ ├── forum_feeds.rst │ ├── forum_member.rst │ ├── forum_moderation.rst │ ├── forum_permission.rst │ ├── forum_search.rst │ ├── forum_tracking.rst │ └── index.rst ├── make.bat ├── release_notes │ ├── index.rst │ ├── v0.2.1.rst │ ├── v0.2.rst │ ├── v0.3.rst │ ├── v0.4.rst │ ├── v0.5.1.rst │ ├── v0.5.2.rst │ ├── v0.5.3.rst │ ├── v0.5.4.rst │ ├── v0.5.5.rst │ ├── v0.5.6.rst │ ├── v0.5.rst │ ├── v0.6.rst │ ├── v0.7.1.rst │ ├── v0.7.rst │ ├── v1.0.1.rst │ ├── v1.0.2.rst │ ├── v1.0.rst │ ├── v1.1.1.rst │ ├── v1.1.2.rst │ ├── v1.1.3.rst │ ├── v1.1.4.rst │ ├── v1.1.5.rst │ ├── v1.1.6.rst │ ├── v1.1.rst │ ├── v1.2.rst │ ├── v1.3.1.rst │ └── v1.3.rst └── settings.rst ├── example_project ├── Makefile ├── main │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ └── auth │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── common │ │ ├── __init__.py │ │ └── mixins.py │ ├── static │ │ └── css │ │ │ └── theme.css │ └── templates │ │ ├── base.html │ │ ├── board_base.html │ │ └── registration │ │ ├── base_account.html │ │ ├── login.html │ │ ├── parameters.html │ │ ├── password.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_form.html │ │ ├── register.html │ │ └── unregister.html ├── manage.py ├── project │ ├── __init__.py │ ├── fixtures │ │ ├── forums.json │ │ ├── polloptions.json │ │ ├── polls.json │ │ ├── posts.json │ │ └── topics.json │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ └── dev.py │ └── urls.py └── wsgi.py ├── gulpfile.babel.js ├── machina ├── __init__.py ├── apps │ ├── __init__.py │ ├── forum │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150725_0512.py │ │ │ ├── 0003_remove_forum_is_active.py │ │ │ ├── 0004_auto_20170504_2108.py │ │ │ ├── 0005_auto_20170504_2113.py │ │ │ ├── 0006_auto_20170523_2036.py │ │ │ ├── 0007_auto_20170523_2140.py │ │ │ ├── 0008_forum_last_post.py │ │ │ ├── 0009_auto_20170928_2327.py │ │ │ ├── 0010_auto_20181103_1401.py │ │ │ ├── 0011_auto_20190627_2132.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ ├── signals.py │ │ ├── urls.py │ │ ├── views.py │ │ └── visibility.py │ ├── forum_conversation │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── forum_attachments │ │ │ ├── __init__.py │ │ │ ├── abstract_models.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── cache.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20181103_1404.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── forum_polls │ │ │ ├── __init__.py │ │ │ ├── abstract_models.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20151105_0029.py │ │ │ │ ├── 0003_topicpoll_hide_results.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ ├── validators.py │ │ │ └── views.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_post_anonymous_key.py │ │ │ ├── 0003_auto_20160228_2051.py │ │ │ ├── 0004_auto_20160427_0502.py │ │ │ ├── 0005_auto_20160607_0455.py │ │ │ ├── 0006_post_enable_signature.py │ │ │ ├── 0007_auto_20160903_0450.py │ │ │ ├── 0008_auto_20160903_0512.py │ │ │ ├── 0009_auto_20160925_2126.py │ │ │ ├── 0010_auto_20170120_0224.py │ │ │ ├── 0011_remove_post_poster_ip.py │ │ │ ├── 0012_auto_20200423_1049.py │ │ │ ├── 0013_auto_20201220_1745.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ ├── signals.py │ │ ├── urls.py │ │ └── views.py │ ├── forum_feeds │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── feeds.py │ │ └── urls.py │ ├── forum_member │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20160225_0515.py │ │ │ ├── 0003_auto_20160227_2122.py │ │ │ ├── 0004_auto_20181103_1406.py │ │ │ ├── 0005_auto_20200423_1049.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ ├── shortcuts.py │ │ ├── urls.py │ │ └── views.py │ ├── forum_moderation │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── urls.py │ │ └── views.py │ ├── forum_permission │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── checker.py │ │ ├── defaults.py │ │ ├── handler.py │ │ ├── middleware.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20160607_0500.py │ │ │ ├── 0003_remove_forumpermission_name.py │ │ │ ├── 0004_auto_20190319_2240.py │ │ │ ├── 0005_userforumpermission_authenticated_user.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ ├── shortcuts.py │ │ └── viewmixins.py │ ├── forum_search │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── search_indexes.py │ │ ├── urls.py │ │ └── views.py │ └── forum_tracking │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── handler.py │ │ ├── managers.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160607_0502.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ ├── urls.py │ │ └── views.py ├── conf │ ├── __init__.py │ └── settings.py ├── core │ ├── __init__.py │ ├── compat.py │ ├── context_processors.py │ ├── db │ │ ├── __init__.py │ │ └── models.py │ ├── loading.py │ ├── markdown.py │ ├── shortcuts.py │ ├── urls.py │ └── validators.py ├── forms │ ├── __init__.py │ └── widgets.py ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr_CA │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro_RO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl_SI │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── models │ ├── __init__.py │ ├── abstract_models.py │ └── fields.py ├── static │ └── machina │ │ ├── build │ │ ├── README.rst │ │ ├── css │ │ │ ├── machina.admin_theme.min.css │ │ │ ├── machina.board_theme.min.css │ │ │ ├── machina.board_theme.vendor.min.css │ │ │ └── vendor │ │ │ │ └── easymde.min.css │ │ ├── fonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ └── js │ │ │ ├── machina.editor.min.js │ │ │ ├── machina.min.js │ │ │ ├── machina.packages.min.js │ │ │ └── vendor │ │ │ └── easymde.min.js │ │ ├── js │ │ ├── editor.js │ │ └── ui.js │ │ └── sass │ │ ├── admin_pages │ │ ├── forum_change_list.scss │ │ └── forum_permissions.scss │ │ ├── admin_theme.scss │ │ ├── board_pages │ │ ├── conversation_post_edit.scss │ │ ├── conversation_topic_detail.scss │ │ ├── forum_detail.scss │ │ ├── forum_lists.scss │ │ ├── member_profile.scss │ │ ├── moderation.scss │ │ └── search.scss │ │ ├── board_theme.scss │ │ ├── board_theme.vendor.scss │ │ └── variables.scss ├── templates │ ├── admin │ │ └── forum │ │ │ └── forum │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ ├── change_list_table.html │ │ │ ├── editpermissions_anonymous_user.html │ │ │ ├── editpermissions_authenticated_user.html │ │ │ ├── editpermissions_form.html │ │ │ ├── editpermissions_group.html │ │ │ ├── editpermissions_index.html │ │ │ └── editpermissions_user.html │ └── machina │ │ ├── _base.html │ │ ├── board_base.html │ │ ├── forum │ │ ├── forum_detail.html │ │ ├── forum_list.html │ │ └── index.html │ │ ├── forum_conversation │ │ ├── forum_attachments │ │ │ ├── attachment_formset.html │ │ │ ├── attachments_detail.html │ │ │ └── attachments_preview.html │ │ ├── forum_polls │ │ │ ├── poll_detail.html │ │ │ ├── poll_option_formset.html │ │ │ ├── poll_preview.html │ │ │ ├── poll_results.html │ │ │ └── poll_vote_form.html │ │ ├── partials │ │ │ ├── post_form.html │ │ │ ├── topic_detail_actions.html │ │ │ └── topic_form.html │ │ ├── post_create.html │ │ ├── post_delete.html │ │ ├── post_preview.html │ │ ├── post_update.html │ │ ├── topic_create.html │ │ ├── topic_detail.html │ │ ├── topic_list.html │ │ ├── topic_pages_inline_list.html │ │ └── topic_update.html │ │ ├── forum_feeds │ │ ├── topics_description.html │ │ └── topics_title.html │ │ ├── forum_member │ │ ├── forum_profile_detail.html │ │ ├── forum_profile_update.html │ │ ├── subscription_topic_list.html │ │ ├── topic_subscribe.html │ │ ├── topic_unsubscribe.html │ │ └── user_posts_list.html │ │ ├── forum_moderation │ │ ├── moderation_queue │ │ │ ├── detail.html │ │ │ ├── list.html │ │ │ ├── post_approve.html │ │ │ └── post_disapprove.html │ │ ├── topic_delete.html │ │ ├── topic_lock.html │ │ ├── topic_move.html │ │ ├── topic_unlock.html │ │ └── topic_update_type.html │ │ ├── forum_search │ │ ├── pagination.html │ │ ├── post_text.txt │ │ └── search.html │ │ ├── forum_tracking │ │ ├── mark_forums_read.html │ │ ├── mark_topics_read.html │ │ └── unread_topic_list.html │ │ └── partials │ │ ├── avatar.html │ │ ├── breadcrumb.html │ │ ├── form_field.html │ │ ├── messages.html │ │ └── pagination.html ├── templatetags │ ├── __init__.py │ ├── forum_conversation_tags.py │ ├── forum_markup_tags.py │ ├── forum_member_tags.py │ ├── forum_permission_tags.py │ ├── forum_polls_tags.py │ ├── forum_tags.py │ └── forum_tracking_tags.py ├── test │ ├── __init__.py │ ├── context_managers.py │ ├── factories │ │ ├── __init__.py │ │ ├── attachments.py │ │ ├── auth.py │ │ ├── conversation.py │ │ ├── forum.py │ │ ├── permission.py │ │ ├── polls.py │ │ └── tracking.py │ ├── mixins.py │ └── testcases.py └── urls.py ├── package.json ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── requirements-doc.freeze └── tests ├── README.rst ├── __init__.py ├── _testdata └── media │ ├── attachment.jpg │ ├── attachment.kyz │ ├── to_be_resized_image.png │ ├── too_high_image.jpg │ ├── too_large_image.jpg │ └── too_wide_image.jpg ├── _testsite ├── __init__.py ├── apps │ ├── __init__.py │ ├── forum │ │ ├── __init__.py │ │ ├── models.py │ │ └── views.py │ └── forum_conversation │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_post_anonymous_key.py │ │ ├── 0003_auto_20160228_2051.py │ │ ├── 0004_auto_20160427_0502.py │ │ ├── 0005_auto_20160607_0455.py │ │ ├── 0006_post_enable_signature.py │ │ ├── 0007_auto_20160903_0450.py │ │ ├── 0008_auto_20160903_0512.py │ │ ├── 0009_auto_20160925_2126.py │ │ ├── 0010_auto_20170120_0224.py │ │ ├── 0011_topic_dummy.py │ │ └── __init__.py │ │ └── models.py ├── importerror_app │ ├── __init__.py │ └── forum │ │ ├── __init__.py │ │ └── dummy.py ├── templates │ └── base.html └── urls.py ├── conftest.py ├── functional ├── __init__.py └── apps │ ├── __init__.py │ ├── forum │ ├── __init__.py │ ├── test_admin.py │ └── test_views.py │ ├── forum_conversation │ ├── __init__.py │ ├── forum_attachments │ │ ├── __init__.py │ │ ├── test_admin.py │ │ └── test_views.py │ ├── forum_polls │ │ ├── __init__.py │ │ ├── test_admin.py │ │ └── test_views.py │ ├── test_admin.py │ └── test_views.py │ ├── forum_feeds │ ├── __init__.py │ └── test_feeds.py │ ├── forum_member │ ├── __init__.py │ ├── test_admin.py │ └── test_views.py │ ├── forum_moderation │ ├── __init__.py │ └── test_views.py │ ├── forum_search │ ├── __init__.py │ └── test_views.py │ └── forum_tracking │ ├── __init__.py │ └── test_views.py ├── integration ├── __init__.py ├── apps │ ├── __init__.py │ └── forum_permission │ │ ├── __init__.py │ │ └── test_viewmixins.py └── templatetags │ ├── __init__.py │ ├── test_conversation_tags.py │ ├── test_forum_tags.py │ ├── test_markup_tags.py │ ├── test_member_tags.py │ ├── test_permission_tags.py │ ├── test_polls_tags.py │ └── test_tracking_tags.py ├── models.py ├── settings.py └── unit ├── __init__.py ├── apps ├── __init__.py ├── forum │ ├── __init__.py │ ├── test_models.py │ └── test_visibility.py ├── forum_conversation │ ├── __init__.py │ ├── attachments │ │ ├── __init__.py │ │ ├── test_cache.py │ │ └── test_models.py │ ├── polls │ │ ├── __init__.py │ │ ├── test_forms.py │ │ └── test_models.py │ ├── test_forms.py │ ├── test_managers.py │ └── test_models.py ├── forum_member │ ├── __init__.py │ ├── test_receivers.py │ └── test_shortcuts.py ├── forum_moderation │ ├── __init__.py │ └── test_forms.py ├── forum_permission │ ├── __init__.py │ ├── test_checker.py │ ├── test_handler.py │ └── test_models.py ├── forum_search │ ├── __init__.py │ └── test_forms.py └── forum_tracking │ ├── __init__.py │ ├── test_handler.py │ └── test_managers.py ├── core ├── __init__.py ├── test_loading.py ├── test_shortcuts.py └── test_validators.py ├── forms ├── __init__.py └── test_widgets.py └── models ├── __init__.py └── test_fields.py /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/README.rst -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_images/logo.svg -------------------------------------------------------------------------------- /docs/_images/logo_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_images/logo_small.svg -------------------------------------------------------------------------------- /docs/_images/permissions_edit_page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_images/permissions_edit_page_1.png -------------------------------------------------------------------------------- /docs/_images/permissions_edit_page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_images/permissions_edit_page_2.png -------------------------------------------------------------------------------- /docs/_images/permissions_edit_page_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_images/permissions_edit_page_3.png -------------------------------------------------------------------------------- /docs/_static/custom_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_static/custom_theme.css -------------------------------------------------------------------------------- /docs/_templates/indexcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_templates/indexcontent.html -------------------------------------------------------------------------------- /docs/_templates/layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/_templates/layout.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/customization/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/index.rst -------------------------------------------------------------------------------- /docs/customization/overriding_applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/overriding_applications.rst -------------------------------------------------------------------------------- /docs/customization/recipes/custom_avatar_backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/recipes/custom_avatar_backend.rst -------------------------------------------------------------------------------- /docs/customization/recipes/custom_forum_member_display_names.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/recipes/custom_forum_member_display_names.rst -------------------------------------------------------------------------------- /docs/customization/recipes/overriding_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/recipes/overriding_models.rst -------------------------------------------------------------------------------- /docs/customization/recipes/using_another_markup_language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/recipes/using_another_markup_language.rst -------------------------------------------------------------------------------- /docs/customization/underlying_mechanisms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/customization/underlying_mechanisms.rst -------------------------------------------------------------------------------- /docs/example_project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/example_project.rst -------------------------------------------------------------------------------- /docs/forum_permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/forum_permissions.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_conversation/forum_attachments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_conversation/forum_attachments.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_conversation/forum_polls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_conversation/forum_polls.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_conversation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_conversation/index.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_feeds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_feeds.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_member.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_member.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_moderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_moderation.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_permission.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_permission.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_search.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/forum_tracking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/forum_tracking.rst -------------------------------------------------------------------------------- /docs/machina_apps_reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/machina_apps_reference/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/release_notes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/index.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.2.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.2.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.3.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.4.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.2.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.3.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.4.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.5.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.6.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.5.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.6.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.7.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.7.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v0.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v0.7.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.0.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.0.2.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.0.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.2.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.3.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.4.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.5.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.6.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.2.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.3.1.rst -------------------------------------------------------------------------------- /docs/release_notes/v1.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/release_notes/v1.3.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /example_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/Makefile -------------------------------------------------------------------------------- /example_project/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/main/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/main/apps/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/main/apps/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/apps/auth/forms.py -------------------------------------------------------------------------------- /example_project/main/apps/auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/apps/auth/urls.py -------------------------------------------------------------------------------- /example_project/main/apps/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/apps/auth/views.py -------------------------------------------------------------------------------- /example_project/main/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/main/common/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/common/mixins.py -------------------------------------------------------------------------------- /example_project/main/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/static/css/theme.css -------------------------------------------------------------------------------- /example_project/main/templates/base.html: -------------------------------------------------------------------------------- 1 | {% extends "machina/_base.html" %} -------------------------------------------------------------------------------- /example_project/main/templates/board_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/board_base.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/base_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/base_account.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/login.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/parameters.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/password.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/register.html -------------------------------------------------------------------------------- /example_project/main/templates/registration/unregister.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/main/templates/registration/unregister.html -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/project/fixtures/forums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/fixtures/forums.json -------------------------------------------------------------------------------- /example_project/project/fixtures/polloptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/fixtures/polloptions.json -------------------------------------------------------------------------------- /example_project/project/fixtures/polls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/fixtures/polls.json -------------------------------------------------------------------------------- /example_project/project/fixtures/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/fixtures/posts.json -------------------------------------------------------------------------------- /example_project/project/fixtures/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/fixtures/topics.json -------------------------------------------------------------------------------- /example_project/project/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/project/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/settings/base.py -------------------------------------------------------------------------------- /example_project/project/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/settings/dev.py -------------------------------------------------------------------------------- /example_project/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/project/urls.py -------------------------------------------------------------------------------- /example_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/example_project/wsgi.py -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /machina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/__init__.py -------------------------------------------------------------------------------- /machina/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/admin.py -------------------------------------------------------------------------------- /machina/apps/forum/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/apps.py -------------------------------------------------------------------------------- /machina/apps/forum/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/forms.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0002_auto_20150725_0512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0002_auto_20150725_0512.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0003_remove_forum_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0003_remove_forum_is_active.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0004_auto_20170504_2108.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0004_auto_20170504_2108.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0005_auto_20170504_2113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0005_auto_20170504_2113.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0006_auto_20170523_2036.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0006_auto_20170523_2036.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0007_auto_20170523_2140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0007_auto_20170523_2140.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0008_forum_last_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0008_forum_last_post.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0009_auto_20170928_2327.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0009_auto_20170928_2327.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0010_auto_20181103_1401.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0010_auto_20181103_1401.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/0011_auto_20190627_2132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/migrations/0011_auto_20190627_2132.py -------------------------------------------------------------------------------- /machina/apps/forum/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/models.py -------------------------------------------------------------------------------- /machina/apps/forum/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/receivers.py -------------------------------------------------------------------------------- /machina/apps/forum/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/signals.py -------------------------------------------------------------------------------- /machina/apps/forum/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/urls.py -------------------------------------------------------------------------------- /machina/apps/forum/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/views.py -------------------------------------------------------------------------------- /machina/apps/forum/visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum/visibility.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_conversation/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/admin.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forms.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/admin.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/cache.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/forms.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/migrations/0002_auto_20181103_1404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/migrations/0002_auto_20181103_1404.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/models.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_attachments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_attachments/views.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/admin.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/forms.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/migrations/0002_auto_20151105_0029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/migrations/0002_auto_20151105_0029.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/migrations/0003_topicpoll_hide_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/migrations/0003_topicpoll_hide_results.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/models.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/validators.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/forum_polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/forum_polls/views.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/managers.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0002_post_anonymous_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0002_post_anonymous_key.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0003_auto_20160228_2051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0003_auto_20160228_2051.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0004_auto_20160427_0502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0004_auto_20160427_0502.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0005_auto_20160607_0455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0005_auto_20160607_0455.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0006_post_enable_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0006_post_enable_signature.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0007_auto_20160903_0450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0007_auto_20160903_0450.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0008_auto_20160903_0512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0008_auto_20160903_0512.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0009_auto_20160925_2126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0009_auto_20160925_2126.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0010_auto_20170120_0224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0010_auto_20170120_0224.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0011_remove_post_poster_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0011_remove_post_poster_ip.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0012_auto_20200423_1049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0012_auto_20200423_1049.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/0013_auto_20201220_1745.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/migrations/0013_auto_20201220_1745.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_conversation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/models.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/receivers.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/signals.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_conversation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_conversation/views.py -------------------------------------------------------------------------------- /machina/apps/forum_feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_feeds/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_feeds/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_feeds/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_feeds/feeds.py -------------------------------------------------------------------------------- /machina/apps/forum_feeds/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_feeds/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_member/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_member/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum_member/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/admin.py -------------------------------------------------------------------------------- /machina/apps/forum_member/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_member/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/forms.py -------------------------------------------------------------------------------- /machina/apps/forum_member/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum_member/migrations/0002_auto_20160225_0515.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/migrations/0002_auto_20160225_0515.py -------------------------------------------------------------------------------- /machina/apps/forum_member/migrations/0003_auto_20160227_2122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/migrations/0003_auto_20160227_2122.py -------------------------------------------------------------------------------- /machina/apps/forum_member/migrations/0004_auto_20181103_1406.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/migrations/0004_auto_20181103_1406.py -------------------------------------------------------------------------------- /machina/apps/forum_member/migrations/0005_auto_20200423_1049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/migrations/0005_auto_20200423_1049.py -------------------------------------------------------------------------------- /machina/apps/forum_member/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_member/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/models.py -------------------------------------------------------------------------------- /machina/apps/forum_member/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/receivers.py -------------------------------------------------------------------------------- /machina/apps/forum_member/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/shortcuts.py -------------------------------------------------------------------------------- /machina/apps/forum_member/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_member/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_member/views.py -------------------------------------------------------------------------------- /machina/apps/forum_moderation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_moderation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_moderation/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_moderation/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_moderation/forms.py -------------------------------------------------------------------------------- /machina/apps/forum_moderation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_moderation/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_moderation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_moderation/views.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_permission/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/admin.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/checker.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/defaults.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/handler.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/middleware.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/migrations/0002_auto_20160607_0500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/migrations/0002_auto_20160607_0500.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/migrations/0003_remove_forumpermission_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/migrations/0003_remove_forumpermission_name.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/migrations/0004_auto_20190319_2240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/migrations/0004_auto_20190319_2240.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/migrations/0005_userforumpermission_authenticated_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/migrations/0005_userforumpermission_authenticated_user.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_permission/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/models.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/receivers.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/shortcuts.py -------------------------------------------------------------------------------- /machina/apps/forum_permission/viewmixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_permission/viewmixins.py -------------------------------------------------------------------------------- /machina/apps/forum_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_search/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_search/forms.py -------------------------------------------------------------------------------- /machina/apps/forum_search/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_search/search_indexes.py -------------------------------------------------------------------------------- /machina/apps/forum_search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_search/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_search/views.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_tracking/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/abstract_models.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/admin.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/apps.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/handler.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/managers.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/migrations/0001_initial.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/migrations/0002_auto_20160607_0502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/migrations/0002_auto_20160607_0502.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/apps/forum_tracking/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/models.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/receivers.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/urls.py -------------------------------------------------------------------------------- /machina/apps/forum_tracking/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/apps/forum_tracking/views.py -------------------------------------------------------------------------------- /machina/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/conf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/conf/settings.py -------------------------------------------------------------------------------- /machina/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/core/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/compat.py -------------------------------------------------------------------------------- /machina/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/context_processors.py -------------------------------------------------------------------------------- /machina/core/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/core/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/db/models.py -------------------------------------------------------------------------------- /machina/core/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/loading.py -------------------------------------------------------------------------------- /machina/core/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/markdown.py -------------------------------------------------------------------------------- /machina/core/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/shortcuts.py -------------------------------------------------------------------------------- /machina/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/urls.py -------------------------------------------------------------------------------- /machina/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/core/validators.py -------------------------------------------------------------------------------- /machina/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/forms/widgets.py -------------------------------------------------------------------------------- /machina/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/fr_CA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/fr_CA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/fr_CA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/fr_CA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/ja_JP/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ja_JP/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/ja_JP/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ja_JP/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/nl_NL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/nl_NL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/nl_NL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/nl_NL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/ro_RO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ro_RO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/ro_RO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ro_RO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/sl_SI/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/sl_SI/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/sl_SI/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/sl_SI/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/locale/zh_TW/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/zh_TW/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /machina/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /machina/models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from .abstract_models import * # noqa 4 | -------------------------------------------------------------------------------- /machina/models/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/models/abstract_models.py -------------------------------------------------------------------------------- /machina/models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/models/fields.py -------------------------------------------------------------------------------- /machina/static/machina/build/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/README.rst -------------------------------------------------------------------------------- /machina/static/machina/build/css/machina.admin_theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/css/machina.admin_theme.min.css -------------------------------------------------------------------------------- /machina/static/machina/build/css/machina.board_theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/css/machina.board_theme.min.css -------------------------------------------------------------------------------- /machina/static/machina/build/css/machina.board_theme.vendor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/css/machina.board_theme.vendor.min.css -------------------------------------------------------------------------------- /machina/static/machina/build/css/vendor/easymde.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/css/vendor/easymde.min.css -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /machina/static/machina/build/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /machina/static/machina/build/js/machina.editor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/js/machina.editor.min.js -------------------------------------------------------------------------------- /machina/static/machina/build/js/machina.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/js/machina.min.js -------------------------------------------------------------------------------- /machina/static/machina/build/js/machina.packages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/js/machina.packages.min.js -------------------------------------------------------------------------------- /machina/static/machina/build/js/vendor/easymde.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/build/js/vendor/easymde.min.js -------------------------------------------------------------------------------- /machina/static/machina/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/js/editor.js -------------------------------------------------------------------------------- /machina/static/machina/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/js/ui.js -------------------------------------------------------------------------------- /machina/static/machina/sass/admin_pages/forum_change_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/admin_pages/forum_change_list.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/admin_pages/forum_permissions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/admin_pages/forum_permissions.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/admin_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/admin_theme.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/conversation_post_edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/conversation_post_edit.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/conversation_topic_detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/conversation_topic_detail.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/forum_detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/forum_detail.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/forum_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/forum_lists.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/member_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/member_profile.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/moderation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/moderation.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_pages/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_pages/search.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_theme.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/board_theme.vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/board_theme.vendor.scss -------------------------------------------------------------------------------- /machina/static/machina/sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/static/machina/sass/variables.scss -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/change_form.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/change_list.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/change_list_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/change_list_table.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/editpermissions_anonymous_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/editpermissions_anonymous_user.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/editpermissions_authenticated_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/editpermissions_authenticated_user.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/editpermissions_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/editpermissions_form.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/editpermissions_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/editpermissions_group.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/editpermissions_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/editpermissions_index.html -------------------------------------------------------------------------------- /machina/templates/admin/forum/forum/editpermissions_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/admin/forum/forum/editpermissions_user.html -------------------------------------------------------------------------------- /machina/templates/machina/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/_base.html -------------------------------------------------------------------------------- /machina/templates/machina/board_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/board_base.html -------------------------------------------------------------------------------- /machina/templates/machina/forum/forum_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum/forum_detail.html -------------------------------------------------------------------------------- /machina/templates/machina/forum/forum_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum/forum_list.html -------------------------------------------------------------------------------- /machina/templates/machina/forum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum/index.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_attachments/attachment_formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_attachments/attachment_formset.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_attachments/attachments_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_attachments/attachments_detail.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_attachments/attachments_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_attachments/attachments_preview.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_polls/poll_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_polls/poll_detail.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_polls/poll_option_formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_polls/poll_option_formset.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_polls/poll_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_polls/poll_preview.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_polls/poll_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_polls/poll_results.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/forum_polls/poll_vote_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/forum_polls/poll_vote_form.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/partials/post_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/partials/post_form.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/partials/topic_detail_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/partials/topic_detail_actions.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/partials/topic_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/partials/topic_form.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/post_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/post_create.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/post_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/post_delete.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/post_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/post_preview.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/post_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/post_update.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/topic_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/topic_create.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/topic_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/topic_detail.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/topic_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/topic_list.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/topic_pages_inline_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/topic_pages_inline_list.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_conversation/topic_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_conversation/topic_update.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_feeds/topics_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_feeds/topics_description.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_feeds/topics_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_feeds/topics_title.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_member/forum_profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_member/forum_profile_detail.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_member/forum_profile_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_member/forum_profile_update.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_member/subscription_topic_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_member/subscription_topic_list.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_member/topic_subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_member/topic_subscribe.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_member/topic_unsubscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_member/topic_unsubscribe.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_member/user_posts_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_member/user_posts_list.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/moderation_queue/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/moderation_queue/detail.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/moderation_queue/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/moderation_queue/list.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/moderation_queue/post_approve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/moderation_queue/post_approve.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/moderation_queue/post_disapprove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/moderation_queue/post_disapprove.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/topic_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/topic_delete.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/topic_lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/topic_lock.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/topic_move.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/topic_move.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/topic_unlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/topic_unlock.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_moderation/topic_update_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_moderation/topic_update_type.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_search/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_search/pagination.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_search/post_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_search/post_text.txt -------------------------------------------------------------------------------- /machina/templates/machina/forum_search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_search/search.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_tracking/mark_forums_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_tracking/mark_forums_read.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_tracking/mark_topics_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_tracking/mark_topics_read.html -------------------------------------------------------------------------------- /machina/templates/machina/forum_tracking/unread_topic_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/forum_tracking/unread_topic_list.html -------------------------------------------------------------------------------- /machina/templates/machina/partials/avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/partials/avatar.html -------------------------------------------------------------------------------- /machina/templates/machina/partials/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/partials/breadcrumb.html -------------------------------------------------------------------------------- /machina/templates/machina/partials/form_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/partials/form_field.html -------------------------------------------------------------------------------- /machina/templates/machina/partials/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/partials/messages.html -------------------------------------------------------------------------------- /machina/templates/machina/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templates/machina/partials/pagination.html -------------------------------------------------------------------------------- /machina/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/templatetags/forum_conversation_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_conversation_tags.py -------------------------------------------------------------------------------- /machina/templatetags/forum_markup_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_markup_tags.py -------------------------------------------------------------------------------- /machina/templatetags/forum_member_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_member_tags.py -------------------------------------------------------------------------------- /machina/templatetags/forum_permission_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_permission_tags.py -------------------------------------------------------------------------------- /machina/templatetags/forum_polls_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_polls_tags.py -------------------------------------------------------------------------------- /machina/templatetags/forum_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_tags.py -------------------------------------------------------------------------------- /machina/templatetags/forum_tracking_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/templatetags/forum_tracking_tags.py -------------------------------------------------------------------------------- /machina/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /machina/test/context_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/context_managers.py -------------------------------------------------------------------------------- /machina/test/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/__init__.py -------------------------------------------------------------------------------- /machina/test/factories/attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/attachments.py -------------------------------------------------------------------------------- /machina/test/factories/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/auth.py -------------------------------------------------------------------------------- /machina/test/factories/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/conversation.py -------------------------------------------------------------------------------- /machina/test/factories/forum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/forum.py -------------------------------------------------------------------------------- /machina/test/factories/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/permission.py -------------------------------------------------------------------------------- /machina/test/factories/polls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/polls.py -------------------------------------------------------------------------------- /machina/test/factories/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/factories/tracking.py -------------------------------------------------------------------------------- /machina/test/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/mixins.py -------------------------------------------------------------------------------- /machina/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/test/testcases.py -------------------------------------------------------------------------------- /machina/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/machina/urls.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-doc.freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/requirements-doc.freeze -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testdata/media/attachment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testdata/media/attachment.jpg -------------------------------------------------------------------------------- /tests/_testdata/media/attachment.kyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testdata/media/to_be_resized_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testdata/media/to_be_resized_image.png -------------------------------------------------------------------------------- /tests/_testdata/media/too_high_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testdata/media/too_high_image.jpg -------------------------------------------------------------------------------- /tests/_testdata/media/too_large_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testdata/media/too_large_image.jpg -------------------------------------------------------------------------------- /tests/_testdata/media/too_wide_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testdata/media/too_wide_image.jpg -------------------------------------------------------------------------------- /tests/_testsite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/apps/forum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/apps/forum/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/apps/forum/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum/views.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/admin.py: -------------------------------------------------------------------------------- 1 | from machina.apps.forum_conversation.admin import * # noqa 2 | -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/apps.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0002_post_anonymous_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0002_post_anonymous_key.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0003_auto_20160228_2051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0003_auto_20160228_2051.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0004_auto_20160427_0502.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0004_auto_20160427_0502.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0005_auto_20160607_0455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0005_auto_20160607_0455.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0006_post_enable_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0006_post_enable_signature.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0007_auto_20160903_0450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0007_auto_20160903_0450.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0008_auto_20160903_0512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0008_auto_20160903_0512.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0009_auto_20160925_2126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0009_auto_20160925_2126.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0010_auto_20170120_0224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0010_auto_20170120_0224.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/0011_topic_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/migrations/0011_topic_dummy.py -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/apps/forum_conversation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/apps/forum_conversation/models.py -------------------------------------------------------------------------------- /tests/_testsite/importerror_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/importerror_app/forum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_testsite/importerror_app/forum/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/importerror_app/forum/dummy.py -------------------------------------------------------------------------------- /tests/_testsite/templates/base.html: -------------------------------------------------------------------------------- 1 | {# base template used for testing purpose only #} -------------------------------------------------------------------------------- /tests/_testsite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/_testsite/urls.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum/test_admin.py -------------------------------------------------------------------------------- /tests/functional/apps/forum/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/forum_attachments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/forum_attachments/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_conversation/forum_attachments/test_admin.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/forum_attachments/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_conversation/forum_attachments/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/forum_polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/forum_polls/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_conversation/forum_polls/test_admin.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/forum_polls/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_conversation/forum_polls/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_conversation/test_admin.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_conversation/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_conversation/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_feeds/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_feeds/test_feeds.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_member/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_member/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_member/test_admin.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_member/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_member/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_moderation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_moderation/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_moderation/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_search/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_search/test_views.py -------------------------------------------------------------------------------- /tests/functional/apps/forum_tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/apps/forum_tracking/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/functional/apps/forum_tracking/test_views.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/apps/forum_permission/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/apps/forum_permission/test_viewmixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/apps/forum_permission/test_viewmixins.py -------------------------------------------------------------------------------- /tests/integration/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/templatetags/test_conversation_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_conversation_tags.py -------------------------------------------------------------------------------- /tests/integration/templatetags/test_forum_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_forum_tags.py -------------------------------------------------------------------------------- /tests/integration/templatetags/test_markup_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_markup_tags.py -------------------------------------------------------------------------------- /tests/integration/templatetags/test_member_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_member_tags.py -------------------------------------------------------------------------------- /tests/integration/templatetags/test_permission_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_permission_tags.py -------------------------------------------------------------------------------- /tests/integration/templatetags/test_polls_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_polls_tags.py -------------------------------------------------------------------------------- /tests/integration/templatetags/test_tracking_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/integration/templatetags/test_tracking_tags.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum/test_models.py -------------------------------------------------------------------------------- /tests/unit/apps/forum/test_visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum/test_visibility.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/attachments/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/attachments/test_cache.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/attachments/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/attachments/test_models.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/polls/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/polls/test_forms.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/polls/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/polls/test_models.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/test_forms.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/test_managers.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_conversation/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_conversation/test_models.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_member/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_member/test_receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_member/test_receivers.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_member/test_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_member/test_shortcuts.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_moderation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_moderation/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_moderation/test_forms.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_permission/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_permission/test_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_permission/test_checker.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_permission/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_permission/test_handler.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_permission/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_permission/test_models.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_search/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_search/test_forms.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/apps/forum_tracking/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_tracking/test_handler.py -------------------------------------------------------------------------------- /tests/unit/apps/forum_tracking/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/apps/forum_tracking/test_managers.py -------------------------------------------------------------------------------- /tests/unit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/core/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/core/test_loading.py -------------------------------------------------------------------------------- /tests/unit/core/test_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/core/test_shortcuts.py -------------------------------------------------------------------------------- /tests/unit/core/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/core/test_validators.py -------------------------------------------------------------------------------- /tests/unit/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/forms/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/forms/test_widgets.py -------------------------------------------------------------------------------- /tests/unit/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellmetha/django-machina/HEAD/tests/unit/models/test_fields.py --------------------------------------------------------------------------------