├── .gitignore ├── .gitmodules ├── __init__.py ├── apps ├── __init__.py ├── access │ ├── __init__.py │ ├── decorators.py │ ├── helpers.py │ └── tests │ │ ├── __init__.py │ │ └── test_decorators.py ├── activity │ ├── README.rst │ ├── __init__.py │ └── models.py ├── announcements │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ └── announcements │ │ │ └── email │ │ │ └── announcement.ltxt │ └── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_tasks.py ├── chat │ ├── __init__.py │ ├── cron.py │ ├── templates │ │ └── chat │ │ │ └── chat.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── customercare │ ├── __init__.py │ ├── admin.py │ ├── cron.py │ ├── fixtures │ │ └── tweets.json │ ├── helpers.py │ ├── models.py │ ├── templates │ │ └── customercare │ │ │ ├── base.html │ │ │ ├── landing.html │ │ │ ├── reply_modal.html │ │ │ ├── tweets.html │ │ │ └── twitter_modal.html │ ├── tests │ │ ├── __init__.py │ │ ├── stats.json │ │ ├── test_cron.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_templates.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── dashboards │ ├── __init__.py │ ├── admin.py │ ├── cron.py │ ├── helpers.py │ ├── models.py │ ├── personal.py │ ├── readouts.py │ ├── templates │ │ └── dashboards │ │ │ ├── base.html │ │ │ ├── contributors.html │ │ │ ├── group_locale.html │ │ │ ├── includes │ │ │ ├── action_list.html │ │ │ ├── announcement_list.html │ │ │ ├── kb_readout.html │ │ │ ├── macros.html │ │ │ ├── personal_tabs.html │ │ │ ├── watch_approved.html │ │ │ └── watch_locale.html │ │ │ ├── kb_detail.html │ │ │ ├── localization.html │ │ │ ├── questions.html │ │ │ └── review.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ ├── test_personal.py │ │ ├── test_readouts.py │ │ ├── test_templates.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── flagit │ ├── __init__.py │ ├── models.py │ ├── templates │ │ └── flagit │ │ │ ├── includes │ │ │ ├── flagged_answer.html │ │ │ └── flagged_question.html │ │ │ └── queue.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_permissions.py │ │ ├── test_templates.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── forums │ ├── README.rst │ ├── __init__.py │ ├── admin.py │ ├── events.py │ ├── feeds.py │ ├── fixtures │ │ ├── forums_permissions.json │ │ └── posts.json │ ├── formatters.py │ ├── forms.py │ ├── models.py │ ├── old_urls.py │ ├── permissions.py │ ├── tasks.py │ ├── templates │ │ └── forums │ │ │ ├── base.html │ │ │ ├── confirm_post_delete.html │ │ │ ├── confirm_thread_delete.html │ │ │ ├── edit_post.html │ │ │ ├── edit_thread.html │ │ │ ├── email │ │ │ ├── new_post.ltxt │ │ │ └── new_thread.ltxt │ │ │ ├── forums.html │ │ │ ├── includes │ │ │ └── post.html │ │ │ ├── new_thread.html │ │ │ ├── posts.html │ │ │ └── threads.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_activity.py │ │ ├── test_feeds.py │ │ ├── test_models.py │ │ ├── test_notifications.py │ │ ├── test_permissions.py │ │ ├── test_templates.py │ │ ├── test_urls.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── gallery │ ├── __init__.py │ ├── fixtures │ │ └── gallery │ │ │ └── media.json │ ├── forms.py │ ├── models.py │ ├── templates │ │ └── gallery │ │ │ ├── confirm_media_delete.html │ │ │ ├── edit_media.html │ │ │ ├── gallery.html │ │ │ ├── includes │ │ │ ├── media_list.html │ │ │ └── upload_media_form.html │ │ │ ├── media.html │ │ │ └── search.html │ ├── tests │ │ ├── __init__.py │ │ ├── media │ │ │ ├── test.flv │ │ │ ├── test.ogv │ │ │ ├── test.rtf │ │ │ └── test.webm │ │ ├── test__utils.py │ │ ├── test_models.py │ │ ├── test_templates.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── inproduct │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ │ └── inproduct │ │ │ └── redirects.json │ ├── middleware.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── kadmin │ ├── __init__.py │ ├── admin.py │ └── templates │ │ └── kadmin │ │ ├── base.html │ │ ├── schema.html │ │ └── settings.html ├── kbforums │ ├── __init__.py │ ├── events.py │ ├── feeds.py │ ├── fixtures │ │ ├── kbposts.json │ │ └── kbusers.json │ ├── forms.py │ ├── helpers.py │ ├── models.py │ ├── templates │ │ └── kbforums │ │ │ ├── base.html │ │ │ ├── confirm_post_delete.html │ │ │ ├── confirm_thread_delete.html │ │ │ ├── edit_post.html │ │ │ ├── edit_thread.html │ │ │ ├── email │ │ │ ├── new_post.ltxt │ │ │ └── new_thread.ltxt │ │ │ ├── includes │ │ │ ├── post.html │ │ │ └── watch_locale.html │ │ │ ├── new_thread.html │ │ │ ├── posts.html │ │ │ └── threads.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_feeds.py │ │ ├── test_models.py │ │ ├── test_notifications.py │ │ ├── test_templates.py │ │ ├── test_urls.py │ │ └── test_views.py │ └── views.py ├── landings │ ├── __init__.py │ ├── models.py │ ├── templates │ │ └── landings │ │ │ ├── base.html │ │ │ ├── fxhome.html │ │ │ ├── home.html │ │ │ ├── mobile.html │ │ │ ├── mobile │ │ │ ├── base.html │ │ │ ├── fxhome.html │ │ │ ├── home.html │ │ │ ├── mobile.html │ │ │ └── sync.html │ │ │ └── sync.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_templates.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── messages │ ├── __init__.py │ ├── context_processors.py │ ├── models.py │ ├── signals.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_context_processors.py │ │ └── test_internal_api.py │ └── views.py ├── postcrash │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── questions │ ├── __init__.py │ ├── cron.py │ ├── events.py │ ├── feeds.py │ ├── fixtures │ │ ├── questions.json │ │ └── taggit.json │ ├── formatters.py │ ├── forms.py │ ├── models.py │ ├── question_config.py │ ├── tasks.py │ ├── templates │ │ └── questions │ │ │ ├── activate_watch.html │ │ │ ├── answers.html │ │ │ ├── base.html │ │ │ ├── confirm_answer_delete.html │ │ │ ├── confirm_email.html │ │ │ ├── confirm_question_delete.html │ │ │ ├── confirm_question_form.html │ │ │ ├── edit_answer.html │ │ │ ├── edit_question.html │ │ │ ├── email │ │ │ ├── activate_watch.ltxt │ │ │ ├── confirm_question.ltxt │ │ │ ├── new_answer.ltxt │ │ │ ├── new_answer_to_asker.ltxt │ │ │ └── solution.ltxt │ │ │ ├── includes │ │ │ ├── aaq_macros.html │ │ │ ├── answer.html │ │ │ ├── email_subscribe.html │ │ │ ├── flag_form.html │ │ │ ├── have_problem.html │ │ │ ├── question_editing_frame.html │ │ │ └── question_vote_thanks.html │ │ │ ├── mobile │ │ │ ├── confirm_email.html │ │ │ ├── new_question.html │ │ │ └── new_question_login.html │ │ │ ├── new_question.html │ │ │ ├── new_question_login.html │ │ │ ├── questions.html │ │ │ └── unsubscribe_watch.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_feeds.py │ │ ├── test_forms.py │ │ ├── test_models.py │ │ ├── test_notifications.py │ │ ├── test_tasks.py │ │ ├── test_templates.py │ │ ├── test_views.py │ │ └── test_votes.py │ ├── urls.py │ └── views.py ├── search │ ├── __init__.py │ ├── clients.py │ ├── fixtures │ │ └── search │ │ │ └── documents.json │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── reindex.py │ │ │ ├── start_sphinx.py │ │ │ └── stop_sphinx.py │ ├── models.py │ ├── sphinxapi.py │ ├── templates │ │ └── search │ │ │ ├── base.html │ │ │ ├── basic-form.html │ │ │ ├── down.html │ │ │ ├── form.html │ │ │ ├── mobile │ │ │ ├── down.html │ │ │ └── results.html │ │ │ ├── plugin.html │ │ │ └── results.html │ ├── tests │ │ ├── __init__.py │ │ ├── test__utils.py │ │ ├── test_json.py │ │ ├── test_plugin.py │ │ └── test_search.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── sumo │ ├── __init__.py │ ├── admin.py │ ├── anonymous.py │ ├── context_processors.py │ ├── decorators.py │ ├── fixtures │ │ └── users.json │ ├── form_fields.py │ ├── helpers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── anonymize.py │ ├── middleware.py │ ├── models.py │ ├── monkeypatch.py │ ├── paginator.py │ ├── parser.py │ ├── templates │ │ ├── handlers │ │ │ ├── 400.html │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ └── 500.html │ │ ├── services │ │ │ └── monitor.html │ │ ├── sumo │ │ │ ├── deprecated.html │ │ │ ├── read-only.html │ │ │ └── robots.html │ │ └── wikiparser │ │ │ └── hook_image.html │ ├── tests │ │ ├── __init__.py │ │ ├── test__utils.py │ │ ├── test_anonymous_middleware.py │ │ ├── test_form_fields.py │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_locale_middleware.py │ │ ├── test_middleware.py │ │ ├── test_pagination.py │ │ ├── test_parser.py │ │ ├── test_readonly.py │ │ ├── test_templates.py │ │ ├── test_tests.py │ │ └── test_views.py │ ├── urlresolvers.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── widgets.py ├── tags │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── utils.py ├── twitter │ ├── __init__.py │ ├── middleware.py │ ├── models.py │ └── tests │ │ └── test_auth.py ├── upload │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── storage.py │ ├── tasks.py │ ├── templates │ │ └── upload │ │ │ └── attachments.html │ ├── tests │ │ ├── __init__.py │ │ ├── media │ │ │ ├── 123ascii有効.jpg │ │ │ ├── a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_yes_.jpg │ │ │ ├── test.jpg │ │ │ ├── test_invalid.ext │ │ │ └── test_thumb.jpg │ │ ├── test_models.py │ │ ├── test_tasks.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── users │ ├── __init__.py │ ├── admin.py │ ├── backends.py │ ├── forms.py │ ├── helpers.py │ ├── models.py │ ├── templates │ │ └── users │ │ │ ├── activate.html │ │ │ ├── base.html │ │ │ ├── change_email.html │ │ │ ├── change_email_complete.html │ │ │ ├── change_email_done.html │ │ │ ├── confirm_avatar_delete.html │ │ │ ├── edit_avatar.html │ │ │ ├── edit_profile.html │ │ │ ├── email │ │ │ ├── activate.ltxt │ │ │ ├── confirm_email.ltxt │ │ │ └── pw_reset.ltxt │ │ │ ├── includes │ │ │ └── macros.html │ │ │ ├── login.html │ │ │ ├── profile.html │ │ │ ├── pw_change.html │ │ │ ├── pw_change_complete.html │ │ │ ├── pw_reset_complete.html │ │ │ ├── pw_reset_confirm.html │ │ │ ├── pw_reset_form.html │ │ │ ├── pw_reset_sent.html │ │ │ ├── register.html │ │ │ ├── register_done.html │ │ │ ├── resend_confirmation.html │ │ │ └── resend_confirmation_done.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_templates.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── widgets.py └── wiki │ ├── __init__.py │ ├── admin.py │ ├── cron.py │ ├── events.py │ ├── fixtures │ └── wiki │ │ └── documents.json │ ├── forms.py │ ├── helpers.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── dump_topics.py │ ├── models.py │ ├── parser.py │ ├── tasks.py │ ├── templates │ ├── wiki │ │ ├── base.html │ │ ├── compare_revisions.html │ │ ├── confirm_document_delete.html │ │ ├── confirm_revision_delete.html │ │ ├── document.html │ │ ├── edit_document.html │ │ ├── email │ │ │ ├── approved.ltxt │ │ │ ├── edited.ltxt │ │ │ ├── ready_for_review.ltxt │ │ │ └── reviewed.ltxt │ │ ├── history.html │ │ ├── includes │ │ │ ├── document_macros.html │ │ │ ├── document_vote.html │ │ │ ├── review_form.html │ │ │ ├── revision_diff.html │ │ │ ├── sidebar_modules.html │ │ │ ├── submit_revision_for_review.html │ │ │ ├── submit_revision_modal.html │ │ │ └── support_for_selectors.html │ │ ├── list_documents.html │ │ ├── mobile │ │ │ └── document.html │ │ ├── new_document.html │ │ ├── preview.html │ │ ├── review_revision.html │ │ ├── review_translation.html │ │ ├── revision.html │ │ ├── select_locale.html │ │ └── translate.html │ └── wikiparser │ │ └── hook_video.html │ ├── tests │ ├── __init__.py │ ├── test_models.py │ ├── test_parser.py │ ├── test_tasks.py │ ├── test_templates.py │ └── test_views.py │ ├── topic_strings.py │ ├── urls.py │ └── views.py ├── configs ├── sphinx │ ├── localsettings.py-dist │ ├── localsettings_django.py │ ├── sphinx.conf │ ├── stopwords.txt │ └── wordforms.txt └── words.txt ├── docs ├── celery.rst ├── coding.rst ├── email.rst ├── installation.rst ├── localization.rst ├── search.rst ├── settings │ └── settings_local.prod.py ├── tests.rst ├── vendor.rst ├── wikidocs.rst └── wsgi.rst ├── lib ├── __init__.py ├── countries.py ├── languages.json └── sumo_locales.py ├── log_settings.py ├── manage.py ├── media ├── .htaccess ├── css │ ├── chat.css │ ├── customercare.css │ ├── dashboards.css │ ├── forums.css │ ├── gallery.css │ ├── home.css │ ├── ie.css │ ├── ie8.css │ ├── jqueryui │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jqueryui.css │ ├── kadmin.css │ ├── kbox.css │ ├── main.css │ ├── mobile.css │ ├── monitor.css │ ├── questions.css │ ├── reset.css │ ├── screencast.css │ ├── search.css │ ├── tags.css │ ├── to-delete.css │ ├── users.css │ ├── wiki.css │ └── wiki_syntax.css ├── fonts │ ├── .htaccess │ ├── MetaWebPro-Black.eot │ └── MetaWebPro-Black.woff ├── img │ ├── avatar.png │ ├── background-feature.jpg │ ├── background-tile.png │ ├── botbar.png │ ├── btn.search.png │ ├── cc-ie6.png │ ├── cc.png │ ├── chat │ │ ├── foxkeh-closed.png │ │ └── foxkeh-open.png │ ├── crumb.gif │ ├── customercare │ │ ├── bubble.png │ │ ├── bubbles.png │ │ ├── expander-closed.png │ │ ├── expander-open.png │ │ ├── hr-line.png │ │ ├── initial-tweet-arrow.png │ │ ├── notification-error.png │ │ ├── popup-background.png │ │ ├── reply-arrow.png │ │ ├── reply-check.png │ │ ├── spinner.gif │ │ └── twitter-icon.png │ ├── favicon.ico │ ├── ff-logo.png │ ├── firefox.png │ ├── footer-border.png │ ├── forums │ │ ├── arrow.png │ │ ├── delete.png │ │ ├── down.gif │ │ ├── edit.png │ │ ├── type │ │ │ ├── locked.png │ │ │ ├── normal.png │ │ │ └── sticky.png │ │ ├── up.gif │ │ └── watch.png │ ├── fpo.png │ ├── header-background.png │ ├── header-nav-divider.png │ ├── header-nav-menu-backgrounds.png │ ├── home-bar.png │ ├── icon.searchloupe.png │ ├── icons.actions.png │ ├── icons │ │ ├── toleft.gif │ │ └── toright.gif │ ├── logos.sprite.png │ ├── markup.png │ ├── mobile │ │ ├── arrow.svg │ │ └── wordmark.png │ ├── notifications-sprite.png │ ├── nurse.gif │ ├── nurse.mobile.gif │ ├── nurse.mobile.png │ ├── nurse.png │ ├── promo.plugins.png │ ├── promo.sumo.png │ ├── questions │ │ ├── bkg.divider.png │ │ └── icon.plugin.gif │ ├── search │ │ ├── active-tab.png │ │ ├── icons.png │ │ ├── submit-button-bg.png │ │ └── wait.gif │ ├── sumo-logo.png │ ├── topbar.png │ ├── video-thumb.png │ ├── wait-trans.gif │ └── wiki │ │ ├── aoa.banner.nurse.png │ │ ├── bkg.article.jpg │ │ ├── bkg.collapsibles.png │ │ ├── bkg.main.top.png │ │ ├── bkg.showfor.selector.gif │ │ ├── bkg.warning.png │ │ ├── compare.arrows.png │ │ ├── document.divider.jpg │ │ ├── icons.quicklinks.png │ │ ├── list.divider.png │ │ ├── morehelp.nurse.gif │ │ └── morehelp.nurse.png ├── js │ ├── aaq.js │ ├── browserdetect.js │ ├── chat.js │ ├── customercare.js │ ├── dashboards.js │ ├── format.js │ ├── forums.js │ ├── gallery.js │ ├── i18n.js │ ├── kbox.js │ ├── libs │ │ ├── django │ │ │ ├── prepopulate.js │ │ │ └── urlify.js │ │ ├── html5-shiv.js │ │ ├── jquery.NobleCount.js │ │ ├── jquery.ajaxupload.js │ │ ├── jquery.bullseye-1.0.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.min.js │ │ ├── jquery.mockjax.js │ │ ├── jquery.selectbox-1.2.js │ │ ├── jqueryui-min.js │ │ ├── jqueryui.min.js │ │ ├── jstestnet.js │ │ ├── modernizr-1.7.js │ │ └── swfobject.js │ ├── main.js │ ├── markup.js │ ├── mobile.js │ ├── questions.js │ ├── screencast.js │ ├── search.js │ ├── showfor.js │ ├── tags.js │ ├── tests │ │ ├── kboxtests.js │ │ ├── showfortests.js │ │ └── suite.json │ ├── testutils.js │ ├── upload.js │ ├── users.js │ ├── webtrends.js │ ├── wiki.js │ └── wikivote.js └── swf │ ├── expressInstall.swf │ └── screencast.swf ├── migrations ├── 100-dash-group-id-unique.sql ├── 101-document-delete-permissions.sql ├── 84-drop-eventwatch.sql ├── 85-customercare-hidden.sql ├── 86-tweet-relationships.sql ├── 87-image-permissions.sql ├── 88-postcrash.sql ├── 89-add-activity.sql ├── 90-install-waffle.sql ├── 91-user-locale.sql ├── 92-activity-formatters.sql ├── 93-announcements.sql ├── 94-rename-to-tidings.sql ├── 95-group-dashboards.sql ├── 96-group-dashboard-fix.sql ├── 97-waffle-0.6.sql ├── 98-gallery-is-draft.sql ├── 99-private-messages.sql └── schematic_settings.py ├── push.txt ├── requirements ├── compiled.txt └── tests-compiled.txt ├── scripts ├── anonymize.sql ├── build.sh ├── crontab │ ├── make-crons.py │ ├── prod │ ├── support │ └── support-release ├── pylint.sh ├── pylintrc ├── run_jstests.py ├── run_jstests.sh └── schema.sql ├── settings.py ├── templates ├── base.html ├── includes │ ├── common_macros.html │ ├── lang_form.html │ ├── mobile │ │ └── paginator.html │ └── sidebar_modules.html ├── layout │ ├── breadcrumbs.html │ ├── errorlist.html │ ├── footer.html │ ├── header.html │ ├── login.html │ ├── menu_links.html │ └── paginator.html ├── mobile │ └── base.html └── tests │ └── qunit.html ├── urls.py ├── webroot └── .htaccess └── wsgi └── kitsune.wsgi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/.gitmodules -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/access/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/access/__init__.py -------------------------------------------------------------------------------- /apps/access/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/access/decorators.py -------------------------------------------------------------------------------- /apps/access/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/access/helpers.py -------------------------------------------------------------------------------- /apps/access/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/access/tests/__init__.py -------------------------------------------------------------------------------- /apps/access/tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/access/tests/test_decorators.py -------------------------------------------------------------------------------- /apps/activity/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/activity/README.rst -------------------------------------------------------------------------------- /apps/activity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/activity/__init__.py -------------------------------------------------------------------------------- /apps/activity/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/activity/models.py -------------------------------------------------------------------------------- /apps/announcements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/announcements/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/admin.py -------------------------------------------------------------------------------- /apps/announcements/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/models.py -------------------------------------------------------------------------------- /apps/announcements/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/tasks.py -------------------------------------------------------------------------------- /apps/announcements/templates/announcements/email/announcement.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/templates/announcements/email/announcement.ltxt -------------------------------------------------------------------------------- /apps/announcements/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/tests/__init__.py -------------------------------------------------------------------------------- /apps/announcements/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/tests/test_models.py -------------------------------------------------------------------------------- /apps/announcements/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/announcements/tests/test_tasks.py -------------------------------------------------------------------------------- /apps/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/chat/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/chat/cron.py -------------------------------------------------------------------------------- /apps/chat/templates/chat/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/chat/templates/chat/chat.html -------------------------------------------------------------------------------- /apps/chat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/chat/tests.py -------------------------------------------------------------------------------- /apps/chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/chat/urls.py -------------------------------------------------------------------------------- /apps/chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/chat/views.py -------------------------------------------------------------------------------- /apps/customercare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/customercare/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/admin.py -------------------------------------------------------------------------------- /apps/customercare/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/cron.py -------------------------------------------------------------------------------- /apps/customercare/fixtures/tweets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/fixtures/tweets.json -------------------------------------------------------------------------------- /apps/customercare/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/helpers.py -------------------------------------------------------------------------------- /apps/customercare/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/models.py -------------------------------------------------------------------------------- /apps/customercare/templates/customercare/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/templates/customercare/base.html -------------------------------------------------------------------------------- /apps/customercare/templates/customercare/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/templates/customercare/landing.html -------------------------------------------------------------------------------- /apps/customercare/templates/customercare/reply_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/templates/customercare/reply_modal.html -------------------------------------------------------------------------------- /apps/customercare/templates/customercare/tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/templates/customercare/tweets.html -------------------------------------------------------------------------------- /apps/customercare/templates/customercare/twitter_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/templates/customercare/twitter_modal.html -------------------------------------------------------------------------------- /apps/customercare/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/__init__.py -------------------------------------------------------------------------------- /apps/customercare/tests/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/stats.json -------------------------------------------------------------------------------- /apps/customercare/tests/test_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/test_cron.py -------------------------------------------------------------------------------- /apps/customercare/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/test_helpers.py -------------------------------------------------------------------------------- /apps/customercare/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/test_models.py -------------------------------------------------------------------------------- /apps/customercare/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/test_templates.py -------------------------------------------------------------------------------- /apps/customercare/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/tests/test_views.py -------------------------------------------------------------------------------- /apps/customercare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/urls.py -------------------------------------------------------------------------------- /apps/customercare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/customercare/views.py -------------------------------------------------------------------------------- /apps/dashboards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/__init__.py -------------------------------------------------------------------------------- /apps/dashboards/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/admin.py -------------------------------------------------------------------------------- /apps/dashboards/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/cron.py -------------------------------------------------------------------------------- /apps/dashboards/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/helpers.py -------------------------------------------------------------------------------- /apps/dashboards/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/models.py -------------------------------------------------------------------------------- /apps/dashboards/personal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/personal.py -------------------------------------------------------------------------------- /apps/dashboards/readouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/readouts.py -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/base.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/contributors.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/group_locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/group_locale.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/action_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/action_list.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/announcement_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/announcement_list.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/kb_readout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/kb_readout.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/macros.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/personal_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/personal_tabs.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/watch_approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/watch_approved.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/includes/watch_locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/includes/watch_locale.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/kb_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/kb_detail.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/localization.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/questions.html -------------------------------------------------------------------------------- /apps/dashboards/templates/dashboards/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/templates/dashboards/review.html -------------------------------------------------------------------------------- /apps/dashboards/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/tests/__init__.py -------------------------------------------------------------------------------- /apps/dashboards/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/tests/test_models.py -------------------------------------------------------------------------------- /apps/dashboards/tests/test_personal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/tests/test_personal.py -------------------------------------------------------------------------------- /apps/dashboards/tests/test_readouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/tests/test_readouts.py -------------------------------------------------------------------------------- /apps/dashboards/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/tests/test_templates.py -------------------------------------------------------------------------------- /apps/dashboards/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/tests/test_views.py -------------------------------------------------------------------------------- /apps/dashboards/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/urls.py -------------------------------------------------------------------------------- /apps/dashboards/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/utils.py -------------------------------------------------------------------------------- /apps/dashboards/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/dashboards/views.py -------------------------------------------------------------------------------- /apps/flagit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flagit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/models.py -------------------------------------------------------------------------------- /apps/flagit/templates/flagit/includes/flagged_answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/templates/flagit/includes/flagged_answer.html -------------------------------------------------------------------------------- /apps/flagit/templates/flagit/includes/flagged_question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/templates/flagit/includes/flagged_question.html -------------------------------------------------------------------------------- /apps/flagit/templates/flagit/queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/templates/flagit/queue.html -------------------------------------------------------------------------------- /apps/flagit/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/tests/__init__.py -------------------------------------------------------------------------------- /apps/flagit/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/tests/test_permissions.py -------------------------------------------------------------------------------- /apps/flagit/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/tests/test_templates.py -------------------------------------------------------------------------------- /apps/flagit/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/tests/test_views.py -------------------------------------------------------------------------------- /apps/flagit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/urls.py -------------------------------------------------------------------------------- /apps/flagit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/flagit/views.py -------------------------------------------------------------------------------- /apps/forums/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/README.rst -------------------------------------------------------------------------------- /apps/forums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/__init__.py -------------------------------------------------------------------------------- /apps/forums/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/admin.py -------------------------------------------------------------------------------- /apps/forums/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/events.py -------------------------------------------------------------------------------- /apps/forums/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/feeds.py -------------------------------------------------------------------------------- /apps/forums/fixtures/forums_permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/fixtures/forums_permissions.json -------------------------------------------------------------------------------- /apps/forums/fixtures/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/fixtures/posts.json -------------------------------------------------------------------------------- /apps/forums/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/formatters.py -------------------------------------------------------------------------------- /apps/forums/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/forms.py -------------------------------------------------------------------------------- /apps/forums/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/models.py -------------------------------------------------------------------------------- /apps/forums/old_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/old_urls.py -------------------------------------------------------------------------------- /apps/forums/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/permissions.py -------------------------------------------------------------------------------- /apps/forums/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tasks.py -------------------------------------------------------------------------------- /apps/forums/templates/forums/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/base.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/confirm_post_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/confirm_post_delete.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/confirm_thread_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/confirm_thread_delete.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/edit_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/edit_post.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/edit_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/edit_thread.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/email/new_post.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/email/new_post.ltxt -------------------------------------------------------------------------------- /apps/forums/templates/forums/email/new_thread.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/email/new_thread.ltxt -------------------------------------------------------------------------------- /apps/forums/templates/forums/forums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/forums.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/includes/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/includes/post.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/new_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/new_thread.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/posts.html -------------------------------------------------------------------------------- /apps/forums/templates/forums/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/templates/forums/threads.html -------------------------------------------------------------------------------- /apps/forums/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/__init__.py -------------------------------------------------------------------------------- /apps/forums/tests/test_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_activity.py -------------------------------------------------------------------------------- /apps/forums/tests/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_feeds.py -------------------------------------------------------------------------------- /apps/forums/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_models.py -------------------------------------------------------------------------------- /apps/forums/tests/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_notifications.py -------------------------------------------------------------------------------- /apps/forums/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_permissions.py -------------------------------------------------------------------------------- /apps/forums/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_templates.py -------------------------------------------------------------------------------- /apps/forums/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_urls.py -------------------------------------------------------------------------------- /apps/forums/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/tests/test_views.py -------------------------------------------------------------------------------- /apps/forums/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/urls.py -------------------------------------------------------------------------------- /apps/forums/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/forums/views.py -------------------------------------------------------------------------------- /apps/gallery/__init__.py: -------------------------------------------------------------------------------- 1 | # The number of items per page 2 | ITEMS_PER_PAGE = 20 3 | -------------------------------------------------------------------------------- /apps/gallery/fixtures/gallery/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/fixtures/gallery/media.json -------------------------------------------------------------------------------- /apps/gallery/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/forms.py -------------------------------------------------------------------------------- /apps/gallery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/models.py -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/confirm_media_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/confirm_media_delete.html -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/edit_media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/edit_media.html -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/gallery.html -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/includes/media_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/includes/media_list.html -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/includes/upload_media_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/includes/upload_media_form.html -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/media.html -------------------------------------------------------------------------------- /apps/gallery/templates/gallery/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/templates/gallery/search.html -------------------------------------------------------------------------------- /apps/gallery/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/__init__.py -------------------------------------------------------------------------------- /apps/gallery/tests/media/test.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/media/test.flv -------------------------------------------------------------------------------- /apps/gallery/tests/media/test.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/media/test.ogv -------------------------------------------------------------------------------- /apps/gallery/tests/media/test.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/media/test.rtf -------------------------------------------------------------------------------- /apps/gallery/tests/media/test.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/media/test.webm -------------------------------------------------------------------------------- /apps/gallery/tests/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/test__utils.py -------------------------------------------------------------------------------- /apps/gallery/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/test_models.py -------------------------------------------------------------------------------- /apps/gallery/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/test_templates.py -------------------------------------------------------------------------------- /apps/gallery/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/tests/test_views.py -------------------------------------------------------------------------------- /apps/gallery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/urls.py -------------------------------------------------------------------------------- /apps/gallery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/utils.py -------------------------------------------------------------------------------- /apps/gallery/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/gallery/views.py -------------------------------------------------------------------------------- /apps/inproduct/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/inproduct/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/admin.py -------------------------------------------------------------------------------- /apps/inproduct/fixtures/inproduct/redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/fixtures/inproduct/redirects.json -------------------------------------------------------------------------------- /apps/inproduct/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/middleware.py -------------------------------------------------------------------------------- /apps/inproduct/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/models.py -------------------------------------------------------------------------------- /apps/inproduct/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/inproduct/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/tests/test_views.py -------------------------------------------------------------------------------- /apps/inproduct/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/urls.py -------------------------------------------------------------------------------- /apps/inproduct/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/inproduct/views.py -------------------------------------------------------------------------------- /apps/kadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/kadmin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kadmin/admin.py -------------------------------------------------------------------------------- /apps/kadmin/templates/kadmin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kadmin/templates/kadmin/base.html -------------------------------------------------------------------------------- /apps/kadmin/templates/kadmin/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kadmin/templates/kadmin/schema.html -------------------------------------------------------------------------------- /apps/kadmin/templates/kadmin/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kadmin/templates/kadmin/settings.html -------------------------------------------------------------------------------- /apps/kbforums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/__init__.py -------------------------------------------------------------------------------- /apps/kbforums/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/events.py -------------------------------------------------------------------------------- /apps/kbforums/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/feeds.py -------------------------------------------------------------------------------- /apps/kbforums/fixtures/kbposts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/fixtures/kbposts.json -------------------------------------------------------------------------------- /apps/kbforums/fixtures/kbusers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/fixtures/kbusers.json -------------------------------------------------------------------------------- /apps/kbforums/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/forms.py -------------------------------------------------------------------------------- /apps/kbforums/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/helpers.py -------------------------------------------------------------------------------- /apps/kbforums/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/models.py -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/base.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/confirm_post_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/confirm_post_delete.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/confirm_thread_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/confirm_thread_delete.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/edit_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/edit_post.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/edit_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/edit_thread.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/email/new_post.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/email/new_post.ltxt -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/email/new_thread.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/email/new_thread.ltxt -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/includes/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/includes/post.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/includes/watch_locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/includes/watch_locale.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/new_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/new_thread.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/posts.html -------------------------------------------------------------------------------- /apps/kbforums/templates/kbforums/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/templates/kbforums/threads.html -------------------------------------------------------------------------------- /apps/kbforums/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/__init__.py -------------------------------------------------------------------------------- /apps/kbforums/tests/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/test_feeds.py -------------------------------------------------------------------------------- /apps/kbforums/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/test_models.py -------------------------------------------------------------------------------- /apps/kbforums/tests/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/test_notifications.py -------------------------------------------------------------------------------- /apps/kbforums/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/test_templates.py -------------------------------------------------------------------------------- /apps/kbforums/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/test_urls.py -------------------------------------------------------------------------------- /apps/kbforums/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/tests/test_views.py -------------------------------------------------------------------------------- /apps/kbforums/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/kbforums/views.py -------------------------------------------------------------------------------- /apps/landings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/landings/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/landings/templates/landings/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/base.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/fxhome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/fxhome.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/home.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/mobile.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/mobile/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/mobile/base.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/mobile/fxhome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/mobile/fxhome.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/mobile/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/mobile/home.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/mobile/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/mobile/mobile.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/mobile/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/mobile/sync.html -------------------------------------------------------------------------------- /apps/landings/templates/landings/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/templates/landings/sync.html -------------------------------------------------------------------------------- /apps/landings/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/landings/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/tests/test_templates.py -------------------------------------------------------------------------------- /apps/landings/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/tests/test_views.py -------------------------------------------------------------------------------- /apps/landings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/urls.py -------------------------------------------------------------------------------- /apps/landings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/landings/views.py -------------------------------------------------------------------------------- /apps/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/messages/__init__.py -------------------------------------------------------------------------------- /apps/messages/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/messages/context_processors.py -------------------------------------------------------------------------------- /apps/messages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/messages/models.py -------------------------------------------------------------------------------- /apps/messages/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/messages/signals.py -------------------------------------------------------------------------------- /apps/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/messages/tests/test_context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/messages/tests/test_context_processors.py -------------------------------------------------------------------------------- /apps/messages/tests/test_internal_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/messages/tests/test_internal_api.py -------------------------------------------------------------------------------- /apps/messages/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /apps/postcrash/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/postcrash/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/postcrash/admin.py -------------------------------------------------------------------------------- /apps/postcrash/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/postcrash/models.py -------------------------------------------------------------------------------- /apps/postcrash/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/postcrash/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/postcrash/tests/test_models.py -------------------------------------------------------------------------------- /apps/postcrash/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/postcrash/tests/test_views.py -------------------------------------------------------------------------------- /apps/postcrash/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/postcrash/urls.py -------------------------------------------------------------------------------- /apps/postcrash/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/postcrash/views.py -------------------------------------------------------------------------------- /apps/questions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/__init__.py -------------------------------------------------------------------------------- /apps/questions/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/cron.py -------------------------------------------------------------------------------- /apps/questions/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/events.py -------------------------------------------------------------------------------- /apps/questions/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/feeds.py -------------------------------------------------------------------------------- /apps/questions/fixtures/questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/fixtures/questions.json -------------------------------------------------------------------------------- /apps/questions/fixtures/taggit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/fixtures/taggit.json -------------------------------------------------------------------------------- /apps/questions/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/formatters.py -------------------------------------------------------------------------------- /apps/questions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/forms.py -------------------------------------------------------------------------------- /apps/questions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/models.py -------------------------------------------------------------------------------- /apps/questions/question_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/question_config.py -------------------------------------------------------------------------------- /apps/questions/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tasks.py -------------------------------------------------------------------------------- /apps/questions/templates/questions/activate_watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/activate_watch.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/answers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/answers.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/base.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/confirm_answer_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/confirm_answer_delete.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/confirm_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/confirm_email.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/confirm_question_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/confirm_question_delete.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/confirm_question_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/confirm_question_form.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/edit_answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/edit_answer.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/edit_question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/edit_question.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/email/activate_watch.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/email/activate_watch.ltxt -------------------------------------------------------------------------------- /apps/questions/templates/questions/email/confirm_question.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/email/confirm_question.ltxt -------------------------------------------------------------------------------- /apps/questions/templates/questions/email/new_answer.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/email/new_answer.ltxt -------------------------------------------------------------------------------- /apps/questions/templates/questions/email/new_answer_to_asker.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/email/new_answer_to_asker.ltxt -------------------------------------------------------------------------------- /apps/questions/templates/questions/email/solution.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/email/solution.ltxt -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/aaq_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/aaq_macros.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/answer.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/email_subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/email_subscribe.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/flag_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/flag_form.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/have_problem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/have_problem.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/question_editing_frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/question_editing_frame.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/includes/question_vote_thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/includes/question_vote_thanks.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/mobile/confirm_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/mobile/confirm_email.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/mobile/new_question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/mobile/new_question.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/mobile/new_question_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/mobile/new_question_login.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/new_question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/new_question.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/new_question_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/new_question_login.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/questions.html -------------------------------------------------------------------------------- /apps/questions/templates/questions/unsubscribe_watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/templates/questions/unsubscribe_watch.html -------------------------------------------------------------------------------- /apps/questions/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/__init__.py -------------------------------------------------------------------------------- /apps/questions/tests/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_feeds.py -------------------------------------------------------------------------------- /apps/questions/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_forms.py -------------------------------------------------------------------------------- /apps/questions/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_models.py -------------------------------------------------------------------------------- /apps/questions/tests/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_notifications.py -------------------------------------------------------------------------------- /apps/questions/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_tasks.py -------------------------------------------------------------------------------- /apps/questions/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_templates.py -------------------------------------------------------------------------------- /apps/questions/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_views.py -------------------------------------------------------------------------------- /apps/questions/tests/test_votes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/tests/test_votes.py -------------------------------------------------------------------------------- /apps/questions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/urls.py -------------------------------------------------------------------------------- /apps/questions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/questions/views.py -------------------------------------------------------------------------------- /apps/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/__init__.py -------------------------------------------------------------------------------- /apps/search/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/clients.py -------------------------------------------------------------------------------- /apps/search/fixtures/search/documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/fixtures/search/documents.json -------------------------------------------------------------------------------- /apps/search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/forms.py -------------------------------------------------------------------------------- /apps/search/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/management/commands/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/management/commands/reindex.py -------------------------------------------------------------------------------- /apps/search/management/commands/start_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/management/commands/start_sphinx.py -------------------------------------------------------------------------------- /apps/search/management/commands/stop_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/management/commands/stop_sphinx.py -------------------------------------------------------------------------------- /apps/search/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/sphinxapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/sphinxapi.py -------------------------------------------------------------------------------- /apps/search/templates/search/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/base.html -------------------------------------------------------------------------------- /apps/search/templates/search/basic-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/basic-form.html -------------------------------------------------------------------------------- /apps/search/templates/search/down.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/down.html -------------------------------------------------------------------------------- /apps/search/templates/search/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/form.html -------------------------------------------------------------------------------- /apps/search/templates/search/mobile/down.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/mobile/down.html -------------------------------------------------------------------------------- /apps/search/templates/search/mobile/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/mobile/results.html -------------------------------------------------------------------------------- /apps/search/templates/search/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/plugin.html -------------------------------------------------------------------------------- /apps/search/templates/search/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/templates/search/results.html -------------------------------------------------------------------------------- /apps/search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/tests/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/tests/test__utils.py -------------------------------------------------------------------------------- /apps/search/tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/tests/test_json.py -------------------------------------------------------------------------------- /apps/search/tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/tests/test_plugin.py -------------------------------------------------------------------------------- /apps/search/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/tests/test_search.py -------------------------------------------------------------------------------- /apps/search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/urls.py -------------------------------------------------------------------------------- /apps/search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/utils.py -------------------------------------------------------------------------------- /apps/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/search/views.py -------------------------------------------------------------------------------- /apps/sumo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/__init__.py -------------------------------------------------------------------------------- /apps/sumo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/admin.py -------------------------------------------------------------------------------- /apps/sumo/anonymous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/anonymous.py -------------------------------------------------------------------------------- /apps/sumo/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/context_processors.py -------------------------------------------------------------------------------- /apps/sumo/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/decorators.py -------------------------------------------------------------------------------- /apps/sumo/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/fixtures/users.json -------------------------------------------------------------------------------- /apps/sumo/form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/form_fields.py -------------------------------------------------------------------------------- /apps/sumo/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/helpers.py -------------------------------------------------------------------------------- /apps/sumo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sumo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sumo/management/commands/anonymize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/management/commands/anonymize.py -------------------------------------------------------------------------------- /apps/sumo/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/middleware.py -------------------------------------------------------------------------------- /apps/sumo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/models.py -------------------------------------------------------------------------------- /apps/sumo/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/monkeypatch.py -------------------------------------------------------------------------------- /apps/sumo/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/paginator.py -------------------------------------------------------------------------------- /apps/sumo/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/parser.py -------------------------------------------------------------------------------- /apps/sumo/templates/handlers/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/handlers/400.html -------------------------------------------------------------------------------- /apps/sumo/templates/handlers/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/handlers/403.html -------------------------------------------------------------------------------- /apps/sumo/templates/handlers/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/handlers/404.html -------------------------------------------------------------------------------- /apps/sumo/templates/handlers/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/handlers/500.html -------------------------------------------------------------------------------- /apps/sumo/templates/services/monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/services/monitor.html -------------------------------------------------------------------------------- /apps/sumo/templates/sumo/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/sumo/deprecated.html -------------------------------------------------------------------------------- /apps/sumo/templates/sumo/read-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/sumo/read-only.html -------------------------------------------------------------------------------- /apps/sumo/templates/sumo/robots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/sumo/robots.html -------------------------------------------------------------------------------- /apps/sumo/templates/wikiparser/hook_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/templates/wikiparser/hook_image.html -------------------------------------------------------------------------------- /apps/sumo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/__init__.py -------------------------------------------------------------------------------- /apps/sumo/tests/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test__utils.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_anonymous_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_anonymous_middleware.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_form_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_form_fields.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_forms.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_helpers.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_locale_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_locale_middleware.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_middleware.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_pagination.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_parser.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_readonly.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_templates.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_tests.py -------------------------------------------------------------------------------- /apps/sumo/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/tests/test_views.py -------------------------------------------------------------------------------- /apps/sumo/urlresolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/urlresolvers.py -------------------------------------------------------------------------------- /apps/sumo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/urls.py -------------------------------------------------------------------------------- /apps/sumo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/utils.py -------------------------------------------------------------------------------- /apps/sumo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/views.py -------------------------------------------------------------------------------- /apps/sumo/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/sumo/widgets.py -------------------------------------------------------------------------------- /apps/tags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/tags/__init__.py -------------------------------------------------------------------------------- /apps/tags/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/tags/forms.py -------------------------------------------------------------------------------- /apps/tags/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/tags/models.py -------------------------------------------------------------------------------- /apps/tags/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/tags/utils.py -------------------------------------------------------------------------------- /apps/twitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/twitter/__init__.py -------------------------------------------------------------------------------- /apps/twitter/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/twitter/middleware.py -------------------------------------------------------------------------------- /apps/twitter/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/twitter/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/twitter/tests/test_auth.py -------------------------------------------------------------------------------- /apps/upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/upload/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/forms.py -------------------------------------------------------------------------------- /apps/upload/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/models.py -------------------------------------------------------------------------------- /apps/upload/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/storage.py -------------------------------------------------------------------------------- /apps/upload/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tasks.py -------------------------------------------------------------------------------- /apps/upload/templates/upload/attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/templates/upload/attachments.html -------------------------------------------------------------------------------- /apps/upload/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/__init__.py -------------------------------------------------------------------------------- /apps/upload/tests/media/123ascii有効.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/media/123ascii有効.jpg -------------------------------------------------------------------------------- /apps/upload/tests/media/a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_yes_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/media/a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_worth_more_than_250_characters__a_really_long_filename_yes_.jpg -------------------------------------------------------------------------------- /apps/upload/tests/media/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/media/test.jpg -------------------------------------------------------------------------------- /apps/upload/tests/media/test_invalid.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/media/test_invalid.ext -------------------------------------------------------------------------------- /apps/upload/tests/media/test_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/media/test_thumb.jpg -------------------------------------------------------------------------------- /apps/upload/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/test_models.py -------------------------------------------------------------------------------- /apps/upload/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/test_tasks.py -------------------------------------------------------------------------------- /apps/upload/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/tests/test_views.py -------------------------------------------------------------------------------- /apps/upload/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/urls.py -------------------------------------------------------------------------------- /apps/upload/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/utils.py -------------------------------------------------------------------------------- /apps/upload/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/upload/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/__init__.py -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/backends.py -------------------------------------------------------------------------------- /apps/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/forms.py -------------------------------------------------------------------------------- /apps/users/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/helpers.py -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/templates/users/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/activate.html -------------------------------------------------------------------------------- /apps/users/templates/users/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/base.html -------------------------------------------------------------------------------- /apps/users/templates/users/change_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/change_email.html -------------------------------------------------------------------------------- /apps/users/templates/users/change_email_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/change_email_complete.html -------------------------------------------------------------------------------- /apps/users/templates/users/change_email_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/change_email_done.html -------------------------------------------------------------------------------- /apps/users/templates/users/confirm_avatar_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/confirm_avatar_delete.html -------------------------------------------------------------------------------- /apps/users/templates/users/edit_avatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/edit_avatar.html -------------------------------------------------------------------------------- /apps/users/templates/users/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/edit_profile.html -------------------------------------------------------------------------------- /apps/users/templates/users/email/activate.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/email/activate.ltxt -------------------------------------------------------------------------------- /apps/users/templates/users/email/confirm_email.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/email/confirm_email.ltxt -------------------------------------------------------------------------------- /apps/users/templates/users/email/pw_reset.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/email/pw_reset.ltxt -------------------------------------------------------------------------------- /apps/users/templates/users/includes/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/includes/macros.html -------------------------------------------------------------------------------- /apps/users/templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/login.html -------------------------------------------------------------------------------- /apps/users/templates/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/profile.html -------------------------------------------------------------------------------- /apps/users/templates/users/pw_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/pw_change.html -------------------------------------------------------------------------------- /apps/users/templates/users/pw_change_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/pw_change_complete.html -------------------------------------------------------------------------------- /apps/users/templates/users/pw_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/pw_reset_complete.html -------------------------------------------------------------------------------- /apps/users/templates/users/pw_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/pw_reset_confirm.html -------------------------------------------------------------------------------- /apps/users/templates/users/pw_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/pw_reset_form.html -------------------------------------------------------------------------------- /apps/users/templates/users/pw_reset_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/pw_reset_sent.html -------------------------------------------------------------------------------- /apps/users/templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/register.html -------------------------------------------------------------------------------- /apps/users/templates/users/register_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/register_done.html -------------------------------------------------------------------------------- /apps/users/templates/users/resend_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/resend_confirmation.html -------------------------------------------------------------------------------- /apps/users/templates/users/resend_confirmation_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/templates/users/resend_confirmation_done.html -------------------------------------------------------------------------------- /apps/users/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/tests/__init__.py -------------------------------------------------------------------------------- /apps/users/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/tests/test_forms.py -------------------------------------------------------------------------------- /apps/users/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/tests/test_helpers.py -------------------------------------------------------------------------------- /apps/users/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/tests/test_models.py -------------------------------------------------------------------------------- /apps/users/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/tests/test_templates.py -------------------------------------------------------------------------------- /apps/users/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/tests/test_views.py -------------------------------------------------------------------------------- /apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/urls.py -------------------------------------------------------------------------------- /apps/users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/utils.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /apps/users/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/users/widgets.py -------------------------------------------------------------------------------- /apps/wiki/__init__.py: -------------------------------------------------------------------------------- 1 | DIFF_WRAP_COLUMN = 40 2 | TEMPLATE_TITLE_PREFIX = 'Template:' 3 | DOCUMENTS_PER_PAGE = 100 4 | -------------------------------------------------------------------------------- /apps/wiki/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/admin.py -------------------------------------------------------------------------------- /apps/wiki/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/cron.py -------------------------------------------------------------------------------- /apps/wiki/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/events.py -------------------------------------------------------------------------------- /apps/wiki/fixtures/wiki/documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/fixtures/wiki/documents.json -------------------------------------------------------------------------------- /apps/wiki/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/forms.py -------------------------------------------------------------------------------- /apps/wiki/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/helpers.py -------------------------------------------------------------------------------- /apps/wiki/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/wiki/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/wiki/management/commands/dump_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/management/commands/dump_topics.py -------------------------------------------------------------------------------- /apps/wiki/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/models.py -------------------------------------------------------------------------------- /apps/wiki/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/parser.py -------------------------------------------------------------------------------- /apps/wiki/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tasks.py -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/base.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/compare_revisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/compare_revisions.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/confirm_document_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/confirm_document_delete.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/confirm_revision_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/confirm_revision_delete.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/document.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/edit_document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/edit_document.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/email/approved.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/email/approved.ltxt -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/email/edited.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/email/edited.ltxt -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/email/ready_for_review.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/email/ready_for_review.ltxt -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/email/reviewed.ltxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/email/reviewed.ltxt -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/history.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/document_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/document_macros.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/document_vote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/document_vote.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/review_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/review_form.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/revision_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/revision_diff.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/sidebar_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/sidebar_modules.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/submit_revision_for_review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/submit_revision_for_review.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/submit_revision_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/submit_revision_modal.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/includes/support_for_selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/includes/support_for_selectors.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/list_documents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/list_documents.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/mobile/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/mobile/document.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/new_document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/new_document.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/preview.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/review_revision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/review_revision.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/review_translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/review_translation.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/revision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/revision.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/select_locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/select_locale.html -------------------------------------------------------------------------------- /apps/wiki/templates/wiki/translate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wiki/translate.html -------------------------------------------------------------------------------- /apps/wiki/templates/wikiparser/hook_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/templates/wikiparser/hook_video.html -------------------------------------------------------------------------------- /apps/wiki/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tests/__init__.py -------------------------------------------------------------------------------- /apps/wiki/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tests/test_models.py -------------------------------------------------------------------------------- /apps/wiki/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tests/test_parser.py -------------------------------------------------------------------------------- /apps/wiki/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tests/test_tasks.py -------------------------------------------------------------------------------- /apps/wiki/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tests/test_templates.py -------------------------------------------------------------------------------- /apps/wiki/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/tests/test_views.py -------------------------------------------------------------------------------- /apps/wiki/topic_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/topic_strings.py -------------------------------------------------------------------------------- /apps/wiki/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/urls.py -------------------------------------------------------------------------------- /apps/wiki/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/apps/wiki/views.py -------------------------------------------------------------------------------- /configs/sphinx/localsettings.py-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/configs/sphinx/localsettings.py-dist -------------------------------------------------------------------------------- /configs/sphinx/localsettings_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/configs/sphinx/localsettings_django.py -------------------------------------------------------------------------------- /configs/sphinx/sphinx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/configs/sphinx/sphinx.conf -------------------------------------------------------------------------------- /configs/sphinx/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/configs/sphinx/stopwords.txt -------------------------------------------------------------------------------- /configs/sphinx/wordforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/configs/sphinx/wordforms.txt -------------------------------------------------------------------------------- /configs/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/configs/words.txt -------------------------------------------------------------------------------- /docs/celery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/celery.rst -------------------------------------------------------------------------------- /docs/coding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/coding.rst -------------------------------------------------------------------------------- /docs/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/email.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/localization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/localization.rst -------------------------------------------------------------------------------- /docs/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/search.rst -------------------------------------------------------------------------------- /docs/settings/settings_local.prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/settings/settings_local.prod.py -------------------------------------------------------------------------------- /docs/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/tests.rst -------------------------------------------------------------------------------- /docs/vendor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/vendor.rst -------------------------------------------------------------------------------- /docs/wikidocs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/wikidocs.rst -------------------------------------------------------------------------------- /docs/wsgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/docs/wsgi.rst -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/lib/countries.py -------------------------------------------------------------------------------- /lib/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/lib/languages.json -------------------------------------------------------------------------------- /lib/sumo_locales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/lib/sumo_locales.py -------------------------------------------------------------------------------- /log_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/log_settings.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/manage.py -------------------------------------------------------------------------------- /media/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/.htaccess -------------------------------------------------------------------------------- /media/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/chat.css -------------------------------------------------------------------------------- /media/css/customercare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/customercare.css -------------------------------------------------------------------------------- /media/css/dashboards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/dashboards.css -------------------------------------------------------------------------------- /media/css/forums.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/forums.css -------------------------------------------------------------------------------- /media/css/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/gallery.css -------------------------------------------------------------------------------- /media/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/home.css -------------------------------------------------------------------------------- /media/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/ie.css -------------------------------------------------------------------------------- /media/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/ie8.css -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /media/css/jqueryui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /media/css/jqueryui/jqueryui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/jqueryui/jqueryui.css -------------------------------------------------------------------------------- /media/css/kadmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/kadmin.css -------------------------------------------------------------------------------- /media/css/kbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/kbox.css -------------------------------------------------------------------------------- /media/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/main.css -------------------------------------------------------------------------------- /media/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/mobile.css -------------------------------------------------------------------------------- /media/css/monitor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/monitor.css -------------------------------------------------------------------------------- /media/css/questions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/questions.css -------------------------------------------------------------------------------- /media/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/reset.css -------------------------------------------------------------------------------- /media/css/screencast.css: -------------------------------------------------------------------------------- 1 | .video-wrap { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /media/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/search.css -------------------------------------------------------------------------------- /media/css/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/tags.css -------------------------------------------------------------------------------- /media/css/to-delete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/to-delete.css -------------------------------------------------------------------------------- /media/css/users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/users.css -------------------------------------------------------------------------------- /media/css/wiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/wiki.css -------------------------------------------------------------------------------- /media/css/wiki_syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/css/wiki_syntax.css -------------------------------------------------------------------------------- /media/fonts/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/fonts/.htaccess -------------------------------------------------------------------------------- /media/fonts/MetaWebPro-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/fonts/MetaWebPro-Black.eot -------------------------------------------------------------------------------- /media/fonts/MetaWebPro-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/fonts/MetaWebPro-Black.woff -------------------------------------------------------------------------------- /media/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/avatar.png -------------------------------------------------------------------------------- /media/img/background-feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/background-feature.jpg -------------------------------------------------------------------------------- /media/img/background-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/background-tile.png -------------------------------------------------------------------------------- /media/img/botbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/botbar.png -------------------------------------------------------------------------------- /media/img/btn.search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/btn.search.png -------------------------------------------------------------------------------- /media/img/cc-ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/cc-ie6.png -------------------------------------------------------------------------------- /media/img/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/cc.png -------------------------------------------------------------------------------- /media/img/chat/foxkeh-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/chat/foxkeh-closed.png -------------------------------------------------------------------------------- /media/img/chat/foxkeh-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/chat/foxkeh-open.png -------------------------------------------------------------------------------- /media/img/crumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/crumb.gif -------------------------------------------------------------------------------- /media/img/customercare/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/bubble.png -------------------------------------------------------------------------------- /media/img/customercare/bubbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/bubbles.png -------------------------------------------------------------------------------- /media/img/customercare/expander-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/expander-closed.png -------------------------------------------------------------------------------- /media/img/customercare/expander-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/expander-open.png -------------------------------------------------------------------------------- /media/img/customercare/hr-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/hr-line.png -------------------------------------------------------------------------------- /media/img/customercare/initial-tweet-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/initial-tweet-arrow.png -------------------------------------------------------------------------------- /media/img/customercare/notification-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/notification-error.png -------------------------------------------------------------------------------- /media/img/customercare/popup-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/popup-background.png -------------------------------------------------------------------------------- /media/img/customercare/reply-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/reply-arrow.png -------------------------------------------------------------------------------- /media/img/customercare/reply-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/reply-check.png -------------------------------------------------------------------------------- /media/img/customercare/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/spinner.gif -------------------------------------------------------------------------------- /media/img/customercare/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/customercare/twitter-icon.png -------------------------------------------------------------------------------- /media/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/favicon.ico -------------------------------------------------------------------------------- /media/img/ff-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/ff-logo.png -------------------------------------------------------------------------------- /media/img/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/firefox.png -------------------------------------------------------------------------------- /media/img/footer-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/footer-border.png -------------------------------------------------------------------------------- /media/img/forums/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/arrow.png -------------------------------------------------------------------------------- /media/img/forums/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/delete.png -------------------------------------------------------------------------------- /media/img/forums/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/down.gif -------------------------------------------------------------------------------- /media/img/forums/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/edit.png -------------------------------------------------------------------------------- /media/img/forums/type/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/type/locked.png -------------------------------------------------------------------------------- /media/img/forums/type/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/type/normal.png -------------------------------------------------------------------------------- /media/img/forums/type/sticky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/type/sticky.png -------------------------------------------------------------------------------- /media/img/forums/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/up.gif -------------------------------------------------------------------------------- /media/img/forums/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/forums/watch.png -------------------------------------------------------------------------------- /media/img/fpo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/fpo.png -------------------------------------------------------------------------------- /media/img/header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/header-background.png -------------------------------------------------------------------------------- /media/img/header-nav-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/header-nav-divider.png -------------------------------------------------------------------------------- /media/img/header-nav-menu-backgrounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/header-nav-menu-backgrounds.png -------------------------------------------------------------------------------- /media/img/home-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/home-bar.png -------------------------------------------------------------------------------- /media/img/icon.searchloupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/icon.searchloupe.png -------------------------------------------------------------------------------- /media/img/icons.actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/icons.actions.png -------------------------------------------------------------------------------- /media/img/icons/toleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/icons/toleft.gif -------------------------------------------------------------------------------- /media/img/icons/toright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/icons/toright.gif -------------------------------------------------------------------------------- /media/img/logos.sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/logos.sprite.png -------------------------------------------------------------------------------- /media/img/markup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/markup.png -------------------------------------------------------------------------------- /media/img/mobile/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/mobile/arrow.svg -------------------------------------------------------------------------------- /media/img/mobile/wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/mobile/wordmark.png -------------------------------------------------------------------------------- /media/img/notifications-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/notifications-sprite.png -------------------------------------------------------------------------------- /media/img/nurse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/nurse.gif -------------------------------------------------------------------------------- /media/img/nurse.mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/nurse.mobile.gif -------------------------------------------------------------------------------- /media/img/nurse.mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/nurse.mobile.png -------------------------------------------------------------------------------- /media/img/nurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/nurse.png -------------------------------------------------------------------------------- /media/img/promo.plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/promo.plugins.png -------------------------------------------------------------------------------- /media/img/promo.sumo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/promo.sumo.png -------------------------------------------------------------------------------- /media/img/questions/bkg.divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/questions/bkg.divider.png -------------------------------------------------------------------------------- /media/img/questions/icon.plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/questions/icon.plugin.gif -------------------------------------------------------------------------------- /media/img/search/active-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/search/active-tab.png -------------------------------------------------------------------------------- /media/img/search/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/search/icons.png -------------------------------------------------------------------------------- /media/img/search/submit-button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/search/submit-button-bg.png -------------------------------------------------------------------------------- /media/img/search/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/search/wait.gif -------------------------------------------------------------------------------- /media/img/sumo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/sumo-logo.png -------------------------------------------------------------------------------- /media/img/topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/topbar.png -------------------------------------------------------------------------------- /media/img/video-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/video-thumb.png -------------------------------------------------------------------------------- /media/img/wait-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wait-trans.gif -------------------------------------------------------------------------------- /media/img/wiki/aoa.banner.nurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/aoa.banner.nurse.png -------------------------------------------------------------------------------- /media/img/wiki/bkg.article.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/bkg.article.jpg -------------------------------------------------------------------------------- /media/img/wiki/bkg.collapsibles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/bkg.collapsibles.png -------------------------------------------------------------------------------- /media/img/wiki/bkg.main.top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/bkg.main.top.png -------------------------------------------------------------------------------- /media/img/wiki/bkg.showfor.selector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/bkg.showfor.selector.gif -------------------------------------------------------------------------------- /media/img/wiki/bkg.warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/bkg.warning.png -------------------------------------------------------------------------------- /media/img/wiki/compare.arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/compare.arrows.png -------------------------------------------------------------------------------- /media/img/wiki/document.divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/document.divider.jpg -------------------------------------------------------------------------------- /media/img/wiki/icons.quicklinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/icons.quicklinks.png -------------------------------------------------------------------------------- /media/img/wiki/list.divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/list.divider.png -------------------------------------------------------------------------------- /media/img/wiki/morehelp.nurse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/morehelp.nurse.gif -------------------------------------------------------------------------------- /media/img/wiki/morehelp.nurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/img/wiki/morehelp.nurse.png -------------------------------------------------------------------------------- /media/js/aaq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/aaq.js -------------------------------------------------------------------------------- /media/js/browserdetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/browserdetect.js -------------------------------------------------------------------------------- /media/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/chat.js -------------------------------------------------------------------------------- /media/js/customercare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/customercare.js -------------------------------------------------------------------------------- /media/js/dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/dashboards.js -------------------------------------------------------------------------------- /media/js/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/format.js -------------------------------------------------------------------------------- /media/js/forums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/forums.js -------------------------------------------------------------------------------- /media/js/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/gallery.js -------------------------------------------------------------------------------- /media/js/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/i18n.js -------------------------------------------------------------------------------- /media/js/kbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/kbox.js -------------------------------------------------------------------------------- /media/js/libs/django/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/django/prepopulate.js -------------------------------------------------------------------------------- /media/js/libs/django/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/django/urlify.js -------------------------------------------------------------------------------- /media/js/libs/html5-shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/html5-shiv.js -------------------------------------------------------------------------------- /media/js/libs/jquery.NobleCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.NobleCount.js -------------------------------------------------------------------------------- /media/js/libs/jquery.ajaxupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.ajaxupload.js -------------------------------------------------------------------------------- /media/js/libs/jquery.bullseye-1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.bullseye-1.0.min.js -------------------------------------------------------------------------------- /media/js/libs/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.cookie.js -------------------------------------------------------------------------------- /media/js/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.min.js -------------------------------------------------------------------------------- /media/js/libs/jquery.mockjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.mockjax.js -------------------------------------------------------------------------------- /media/js/libs/jquery.selectbox-1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jquery.selectbox-1.2.js -------------------------------------------------------------------------------- /media/js/libs/jqueryui-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jqueryui-min.js -------------------------------------------------------------------------------- /media/js/libs/jqueryui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jqueryui.min.js -------------------------------------------------------------------------------- /media/js/libs/jstestnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/jstestnet.js -------------------------------------------------------------------------------- /media/js/libs/modernizr-1.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/modernizr-1.7.js -------------------------------------------------------------------------------- /media/js/libs/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/libs/swfobject.js -------------------------------------------------------------------------------- /media/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/main.js -------------------------------------------------------------------------------- /media/js/markup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/markup.js -------------------------------------------------------------------------------- /media/js/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/mobile.js -------------------------------------------------------------------------------- /media/js/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/questions.js -------------------------------------------------------------------------------- /media/js/screencast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/screencast.js -------------------------------------------------------------------------------- /media/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/search.js -------------------------------------------------------------------------------- /media/js/showfor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/showfor.js -------------------------------------------------------------------------------- /media/js/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/tags.js -------------------------------------------------------------------------------- /media/js/tests/kboxtests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/tests/kboxtests.js -------------------------------------------------------------------------------- /media/js/tests/showfortests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/tests/showfortests.js -------------------------------------------------------------------------------- /media/js/tests/suite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/tests/suite.json -------------------------------------------------------------------------------- /media/js/testutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/testutils.js -------------------------------------------------------------------------------- /media/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/upload.js -------------------------------------------------------------------------------- /media/js/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/users.js -------------------------------------------------------------------------------- /media/js/webtrends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/webtrends.js -------------------------------------------------------------------------------- /media/js/wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/wiki.js -------------------------------------------------------------------------------- /media/js/wikivote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/js/wikivote.js -------------------------------------------------------------------------------- /media/swf/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/swf/expressInstall.swf -------------------------------------------------------------------------------- /media/swf/screencast.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/media/swf/screencast.swf -------------------------------------------------------------------------------- /migrations/100-dash-group-id-unique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/100-dash-group-id-unique.sql -------------------------------------------------------------------------------- /migrations/101-document-delete-permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/101-document-delete-permissions.sql -------------------------------------------------------------------------------- /migrations/84-drop-eventwatch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/84-drop-eventwatch.sql -------------------------------------------------------------------------------- /migrations/85-customercare-hidden.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/85-customercare-hidden.sql -------------------------------------------------------------------------------- /migrations/86-tweet-relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/86-tweet-relationships.sql -------------------------------------------------------------------------------- /migrations/87-image-permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/87-image-permissions.sql -------------------------------------------------------------------------------- /migrations/88-postcrash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/88-postcrash.sql -------------------------------------------------------------------------------- /migrations/89-add-activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/89-add-activity.sql -------------------------------------------------------------------------------- /migrations/90-install-waffle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/90-install-waffle.sql -------------------------------------------------------------------------------- /migrations/91-user-locale.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/91-user-locale.sql -------------------------------------------------------------------------------- /migrations/92-activity-formatters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/92-activity-formatters.sql -------------------------------------------------------------------------------- /migrations/93-announcements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/93-announcements.sql -------------------------------------------------------------------------------- /migrations/94-rename-to-tidings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/94-rename-to-tidings.sql -------------------------------------------------------------------------------- /migrations/95-group-dashboards.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/95-group-dashboards.sql -------------------------------------------------------------------------------- /migrations/96-group-dashboard-fix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/96-group-dashboard-fix.sql -------------------------------------------------------------------------------- /migrations/97-waffle-0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/97-waffle-0.6.sql -------------------------------------------------------------------------------- /migrations/98-gallery-is-draft.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/98-gallery-is-draft.sql -------------------------------------------------------------------------------- /migrations/99-private-messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/99-private-messages.sql -------------------------------------------------------------------------------- /migrations/schematic_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/migrations/schematic_settings.py -------------------------------------------------------------------------------- /push.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/push.txt -------------------------------------------------------------------------------- /requirements/compiled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/requirements/compiled.txt -------------------------------------------------------------------------------- /requirements/tests-compiled.txt: -------------------------------------------------------------------------------- 1 | -r compiled.txt 2 | 3 | coverage==3.2b4 4 | psutil>=0.2.0 5 | -------------------------------------------------------------------------------- /scripts/anonymize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/anonymize.sql -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/crontab/make-crons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/crontab/make-crons.py -------------------------------------------------------------------------------- /scripts/crontab/prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/crontab/prod -------------------------------------------------------------------------------- /scripts/crontab/support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/crontab/support -------------------------------------------------------------------------------- /scripts/crontab/support-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/crontab/support-release -------------------------------------------------------------------------------- /scripts/pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/pylint.sh -------------------------------------------------------------------------------- /scripts/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/pylintrc -------------------------------------------------------------------------------- /scripts/run_jstests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/run_jstests.py -------------------------------------------------------------------------------- /scripts/run_jstests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/run_jstests.sh -------------------------------------------------------------------------------- /scripts/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/scripts/schema.sql -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/settings.py -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/includes/common_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/includes/common_macros.html -------------------------------------------------------------------------------- /templates/includes/lang_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/includes/lang_form.html -------------------------------------------------------------------------------- /templates/includes/mobile/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/includes/mobile/paginator.html -------------------------------------------------------------------------------- /templates/includes/sidebar_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/includes/sidebar_modules.html -------------------------------------------------------------------------------- /templates/layout/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/breadcrumbs.html -------------------------------------------------------------------------------- /templates/layout/errorlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/errorlist.html -------------------------------------------------------------------------------- /templates/layout/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/footer.html -------------------------------------------------------------------------------- /templates/layout/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/header.html -------------------------------------------------------------------------------- /templates/layout/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/login.html -------------------------------------------------------------------------------- /templates/layout/menu_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/menu_links.html -------------------------------------------------------------------------------- /templates/layout/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/layout/paginator.html -------------------------------------------------------------------------------- /templates/mobile/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/mobile/base.html -------------------------------------------------------------------------------- /templates/tests/qunit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/templates/tests/qunit.html -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/urls.py -------------------------------------------------------------------------------- /webroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/webroot/.htaccess -------------------------------------------------------------------------------- /wsgi/kitsune.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcraciunoiu/kitsune/HEAD/wsgi/kitsune.wsgi --------------------------------------------------------------------------------