├── .baked ├── .git-wtfrc ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── bin └── docker_run.sh ├── configs └── init.d │ └── celeryd ├── contribute.json ├── data ├── apps │ ├── images │ │ ├── ctr1.png │ │ ├── outlook1.png │ │ ├── pinterest1.png │ │ ├── redpanda.webm │ │ ├── reviewer-facebook.png │ │ ├── reviewer-random.png │ │ ├── reviewer-tunein.png │ │ └── screenshot1.png │ ├── manifests │ │ ├── ctr.zip │ │ ├── outlook.zip │ │ ├── pinterest.zip │ │ ├── reviewer-facebook.webapp │ │ ├── reviewer-random.webapp │ │ ├── reviewer-tunein.webapp │ │ └── testpackaged.zip │ ├── reviewer_apps.json │ └── test_apps.json └── users │ └── test_users.json ├── docs ├── Makefile ├── README.rst ├── __init__.py ├── _intersphinx │ ├── django.inv │ ├── jinja.inv │ ├── nose.inv │ ├── python.inv │ └── sphinx.inv ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── api │ ├── Makefile │ ├── __init__.py │ ├── conf.py │ ├── index.rst │ └── topics │ │ ├── abuse.rst │ │ ├── accounts.rst │ │ ├── app_features.rst │ │ ├── apps.rst │ │ ├── authentication.rst │ │ ├── comm.rst │ │ ├── content_ratings.rst │ │ ├── export.rst │ │ ├── feed.rst │ │ ├── firefox_os_addons.rst │ │ ├── fireplace.rst │ │ ├── games.rst │ │ ├── langpacks.rst │ │ ├── latecustomization.rst │ │ ├── overview.rst │ │ ├── payment.rst │ │ ├── ratings.rst │ │ ├── reviewers.rst │ │ ├── rocketfuel.rst │ │ ├── search.rst │ │ ├── site.rst │ │ ├── stats.rst │ │ ├── transactions.rst │ │ ├── tv.rst │ │ └── websites.rst ├── build-github.zsh ├── conf.py ├── extensions │ ├── __init__.py │ └── src_role.py ├── index.rst ├── topics │ ├── acl.rst │ ├── fake-app-spec.rst │ ├── hacking │ │ ├── branching.rst │ │ ├── contributing.rst │ │ ├── emails.rst │ │ ├── index.rst │ │ └── testing.rst │ ├── install-zamboni │ │ ├── advanced-installation.rst │ │ ├── celery.rst │ │ ├── elasticsearch.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── packages.rst │ │ └── troubleshooting.rst │ ├── logging.rst │ ├── services.rst │ └── translations.rst └── watcher.py ├── fabfile.py ├── lib ├── __init__.py ├── cef_loggers.py ├── constants.py ├── crypto │ ├── __init__.py │ ├── packaged.py │ ├── receipt.py │ ├── tests.py │ ├── util.py │ └── webpay.py ├── es │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── fixup_mkt_index.py │ │ │ ├── reindex.py │ │ │ └── reindex_app.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ └── test_models.py ├── geoip │ ├── __init__.py │ └── tests │ │ └── test_geoip.py ├── log_settings_base.py ├── metrics │ ├── __init__.py │ └── test.py ├── misc │ ├── __init__.py │ ├── admin_log.py │ ├── tests │ │ ├── __init__.py │ │ └── test_log.py │ └── urlconf_decorator.py ├── pay_server │ ├── __init__.py │ ├── base.py │ └── test.py ├── template_loader.py ├── tests │ ├── __init__.py │ ├── test_template_loader.py │ └── test_utils_.py ├── utils.py └── video │ ├── __init__.py │ ├── dummy.py │ ├── ffmpeg.py │ ├── fixtures │ ├── disco-truncated-ffmpeg-shot.png │ └── disco-truncated.webm │ ├── tasks.py │ ├── tests.py │ ├── totem.py │ └── utils.py ├── locale ├── README.rst ├── af │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ar │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── as │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ast │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── be │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── bg │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── bm │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── bn_BD │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── bn_IN │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── bs │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ca │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── compile-mo.sh ├── cs │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── cy │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── da │ ├── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po │ └── glossary.txt ├── dbg │ ├── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po │ └── README ├── de │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── dsb │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ee │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── el │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── en_GB │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── en_US │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── eo │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── es │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── et │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── eu │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── fa │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ff │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── fi │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── fr │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── fy ├── fy_NL │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ga │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ga_IE │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── gd │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── gl │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── gu │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── gu_IN │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ha │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── he │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── hi_IN │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── hr │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── hsb │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ht │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── hu │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── id │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ig │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── it │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ja │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── km │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── kn │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ko │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ku │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── lg │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── lij │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ln │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── lt │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── mk │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ml │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── mn │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ms │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── my │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── nb_NO │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ne_NP │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── nl │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── omg_new_l10n.sh ├── or │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── pa ├── pa_IN │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── pl │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── pt ├── pt_BR │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── pt_PT │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ro │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── rtl │ ├── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po │ └── README ├── ru │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── si │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sk │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sl │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── son │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sq │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sr │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sr_Latn │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── stats-po.sh ├── sv │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sv_SE │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── sw │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ta │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── te │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── templates │ └── LC_MESSAGES │ │ ├── django.pot │ │ └── djangojs.pot ├── th │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── tl │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── tn │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── tr │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── uk │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── ur │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── vi │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── wo │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── xh │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── yo │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── zh_CN │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── zh_TW │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po └── zu │ └── LC_MESSAGES │ ├── django.mo │ ├── django.po │ ├── djangojs.mo │ └── djangojs.po ├── logs └── .keep ├── manage.py ├── media ├── __init__.py ├── css │ ├── devreg │ │ ├── activity.styl │ │ ├── authors.styl │ │ ├── base.css │ │ ├── base.styl │ │ ├── breadcrumbs.styl │ │ ├── buttons.styl │ │ ├── consumer-buttons.styl │ │ ├── consumer-typography.styl │ │ ├── content_ratings.styl │ │ ├── data-grid.styl │ │ ├── desktop-account-links.styl │ │ ├── device.styl │ │ ├── files.styl │ │ ├── footer.styl │ │ ├── forms.styl │ │ ├── header.styl │ │ ├── in-app-config.styl │ │ ├── in-app-payments.styl │ │ ├── in-app-products.styl │ │ ├── invisible-upload.styl │ │ ├── jquery-ui │ │ │ └── jquery-ui-1.10.1.custom.css │ │ ├── l10n.styl │ │ ├── legacy-paginator.styl │ │ ├── lib.styl │ │ ├── lib_old.styl │ │ ├── listing.styl │ │ ├── login.styl │ │ ├── lookup-tool.styl │ │ ├── manage.styl │ │ ├── manifest.styl │ │ ├── media.styl │ │ ├── notification.styl │ │ ├── operators.styl │ │ ├── overlay.styl │ │ ├── payments.styl │ │ ├── popups.styl │ │ ├── prose.styl │ │ ├── reset.styl │ │ ├── reviewers-header.styl │ │ ├── reviewers-mobile.styl │ │ ├── reviewers.styl │ │ ├── status.styl │ │ ├── submit-details.styl │ │ ├── submit-manifest.styl │ │ ├── submit-progress.styl │ │ ├── submit-terms.styl │ │ ├── submit.styl │ │ ├── tabs.styl │ │ ├── themes_review.styl │ │ ├── tooltips.styl │ │ ├── transactions.styl │ │ ├── typography.styl │ │ └── validation.styl │ ├── ecosystem │ │ ├── documentation.styl │ │ └── landing.styl │ ├── gaia │ │ ├── action_menu.css │ │ ├── switches.css │ │ └── value_selector.css │ ├── legacy │ │ ├── ie9.css │ │ └── nojs.css │ ├── lib │ │ ├── marketplace-elements.css │ │ └── syntaxhighlighter │ │ │ └── shCoreDefault.css │ ├── mkt │ │ ├── .keep │ │ └── fonts │ │ │ ├── FeuraSansWeb-Bold.woff │ │ │ ├── FeuraSansWeb-Light.woff │ │ │ ├── FeuraSansWeb-Medium.woff │ │ │ └── FeuraSansWeb-Regular.woff │ └── zamboni │ │ ├── .keep │ │ ├── admin-django.css │ │ ├── admin.styl │ │ ├── editors.styl │ │ ├── files.css │ │ ├── jquery-ui │ │ └── images │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── mkt-admin.css │ │ ├── nick.css │ │ ├── translations │ │ └── trans.css │ │ └── zamboni.css ├── docs │ ├── app-test-template │ │ ├── v1 │ │ │ └── en-US.xlsx │ │ └── v2 │ │ │ └── en-US.xlsx │ ├── dev-agreement │ │ ├── ar.html │ │ ├── bn-BD.html │ │ ├── bn-IN.html │ │ ├── cs.html │ │ ├── de.html │ │ ├── el.html │ │ ├── en-US.html │ │ ├── es-ES.html │ │ ├── es.html │ │ ├── fr.html │ │ ├── hi.html │ │ ├── hr.html │ │ ├── hu.html │ │ ├── it.html │ │ ├── ja.html │ │ ├── mk.html │ │ ├── pl.html │ │ ├── pt-BR.html │ │ ├── ro.html │ │ ├── ru.html │ │ ├── sr.html │ │ ├── sw.html │ │ ├── ta.html │ │ ├── tl-PH.html │ │ └── zh-CN.html │ ├── pay-providers │ │ ├── all.html │ │ └── bango-en-US.v1.html │ ├── preloaded-apps-terms │ │ ├── en-US.html │ │ └── ja.html │ ├── privacy │ │ ├── af.html │ │ ├── ar.html │ │ ├── bn-BD.html │ │ ├── bn-IN.html │ │ ├── cs.html │ │ ├── de.html │ │ ├── el.html │ │ ├── en-US.html │ │ ├── es-ES.html │ │ ├── es.html │ │ ├── fr.html │ │ ├── hi.html │ │ ├── hr.html │ │ ├── hu.html │ │ ├── it.html │ │ ├── ja.html │ │ ├── mk.html │ │ ├── pl.html │ │ ├── pt-BR.html │ │ ├── ro.html │ │ ├── ru.html │ │ ├── sr.html │ │ ├── sw.html │ │ ├── ta.html │ │ ├── tl-PH.html │ │ ├── xh.html │ │ ├── zh-CN.html │ │ └── zu.html │ └── terms │ │ ├── af.html │ │ ├── ar.html │ │ ├── bn-BD.html │ │ ├── bn-IN.html │ │ ├── cs.html │ │ ├── de.html │ │ ├── el.html │ │ ├── en-US.html │ │ ├── es-ES.html │ │ ├── es.html │ │ ├── fr.html │ │ ├── hi.html │ │ ├── hr.html │ │ ├── hu.html │ │ ├── it.html │ │ ├── ja.html │ │ ├── mk.html │ │ ├── pl.html │ │ ├── pt-BR.html │ │ ├── ro.html │ │ ├── ru.html │ │ ├── sr.html │ │ ├── sw.html │ │ ├── ta.html │ │ ├── tl-PH.html │ │ ├── xh.html │ │ ├── zh-CN.html │ │ └── zu.html ├── external │ └── .gitkeep ├── img │ ├── admin │ │ ├── default-bg-reverse.gif │ │ ├── default-bg.gif │ │ ├── icon-no.gif │ │ ├── icon-yes.gif │ │ ├── icon_addlink.gif │ │ ├── icon_alert.gif │ │ ├── icon_changelink.gif │ │ ├── icon_deletelink.gif │ │ ├── icon_error.gif │ │ ├── icon_searchbox.png │ │ ├── icon_success.gif │ │ ├── inline-delete-8bit.png │ │ ├── inline-delete.png │ │ ├── inline-restore-8bit.png │ │ ├── inline-restore.png │ │ ├── nav-bg-grabber.gif │ │ ├── nav-bg-reverse.gif │ │ ├── nav-bg.gif │ │ ├── tool-left.gif │ │ ├── tool-left_over.gif │ │ ├── tool-right.gif │ │ ├── tool-right_over.gif │ │ ├── tooltag-add.gif │ │ ├── tooltag-add_over.gif │ │ ├── tooltag-arrowright.gif │ │ └── tooltag-arrowright_over.gif │ ├── developers │ │ ├── add.png │ │ ├── editor-sprite.png │ │ ├── firefox_android_phone.png │ │ ├── firefox_android_tablet.png │ │ ├── firefox_logo.png │ │ ├── firefox_phone.png │ │ ├── folder.png │ │ ├── logo-bango.png │ │ ├── logo-boku.png │ │ ├── logo-reference.png │ │ ├── platforms.png │ │ ├── progress.gif │ │ ├── simulated-kiwi.png │ │ ├── suite-fail.png │ │ ├── suite-notrun.png │ │ ├── suite-pass.png │ │ ├── suite-running.gif │ │ ├── suite-summary-bg.jpg │ │ ├── test-fail.png │ │ ├── test-info.png │ │ ├── test-pass.png │ │ └── test-warning.png │ ├── ecosystem │ │ ├── ZTE-OPEN.png │ │ ├── app-generator-layout-icons.png │ │ ├── connect-email.png │ │ ├── connect-mktplace.png │ │ ├── connect-twitter.png │ │ ├── connect-youtube.png │ │ ├── design_patterns-pattern1.gif │ │ ├── design_patterns-pattern10.gif │ │ ├── design_patterns-pattern11.gif │ │ ├── design_patterns-pattern12.gif │ │ ├── design_patterns-pattern2.gif │ │ ├── design_patterns-pattern3.gif │ │ ├── design_patterns-pattern4.gif │ │ ├── design_patterns-pattern5.gif │ │ ├── design_patterns-pattern6.gif │ │ ├── design_patterns-pattern7.gif │ │ ├── design_patterns-pattern8.gif │ │ ├── design_patterns-pattern9.gif │ │ ├── device-android.png │ │ ├── device-browser.png │ │ ├── device-ffos.png │ │ ├── device-tablet.png │ │ ├── favicon.ico │ │ ├── ff-os-wordmark.png │ │ ├── have-phone.png │ │ ├── homescreen-partners.jpg │ │ ├── html5-logos.png │ │ ├── landing-icon-early.png │ │ ├── landing-icon-target.png │ │ ├── landing-icon-testing.png │ │ ├── landing-steps.png │ │ ├── link-external.png │ │ ├── logo.png │ │ ├── loop.png │ │ ├── newsletter-arrow.png │ │ ├── newsletter-doc.png │ │ ├── newsletter-nametag.png │ │ ├── newsletter-phone.png │ │ ├── partner-box.png │ │ ├── partner-cuttherope.png │ │ ├── partner-ea.png │ │ ├── partner-evernote.png │ │ ├── partner-facebook.png │ │ ├── partner-lanyrd.png │ │ ├── partner-logos.png │ │ ├── partner-soundcloud.png │ │ ├── partner-twitter.png │ │ ├── phone-hand.png │ │ ├── phone-peak.png │ │ ├── poster-airbnb.jpg │ │ ├── poster-box.jpg │ │ ├── poster-evernote.jpg │ │ ├── poster-kicksend.jpg │ │ ├── poster-mobbase.jpg │ │ ├── poster-partners.jpg │ │ ├── poster-soundcloud.jpg │ │ ├── poster-teambox.jpg │ │ ├── poster-uken.jpg │ │ ├── reference-apps │ │ │ ├── chrono1.jpg │ │ │ ├── chrono2.jpg │ │ │ ├── chrono3.jpg │ │ │ ├── face-value1.jpg │ │ │ ├── face-value2.jpg │ │ │ ├── face-value3.jpg │ │ │ ├── notes1.jpg │ │ │ ├── notes2.jpg │ │ │ ├── notes3.jpg │ │ │ ├── podcasts1.jpg │ │ │ ├── podcasts2.jpg │ │ │ ├── podcasts3.jpg │ │ │ ├── roller1.jpg │ │ │ ├── roller2.jpg │ │ │ ├── roller3.jpg │ │ │ ├── rtcamera1.jpg │ │ │ ├── rtcamera2.jpg │ │ │ ├── rtcamera3.jpg │ │ │ ├── webfighter1.jpg │ │ │ ├── webfighter2.jpg │ │ │ └── webfighter3.jpg │ │ ├── rocket-treehouse.png │ │ ├── rocket.png │ │ ├── section-build-icon.png │ │ ├── section-design-icon.png │ │ ├── section-publish-icon.png │ │ ├── sim-dashboard.jpg │ │ ├── simulator-screen.jpg │ │ ├── stackoverflow_logo.jpg │ │ ├── submit-2x.png │ │ ├── submit-app-mktplace.png │ │ ├── submit.png │ │ └── want-phone.png │ ├── favicon.ico │ ├── gaia │ │ ├── action_menu │ │ │ └── images │ │ │ │ └── ui │ │ │ │ ├── alpha.png │ │ │ │ ├── default.png │ │ │ │ ├── gradient.png │ │ │ │ └── pattern.png │ │ ├── switches │ │ │ └── images │ │ │ │ ├── check │ │ │ │ ├── danger.png │ │ │ │ └── default.png │ │ │ │ ├── radio │ │ │ │ ├── danger.png │ │ │ │ └── default.png │ │ │ │ └── switch │ │ │ │ ├── background.png │ │ │ │ ├── handler.png │ │ │ │ └── icon.png │ │ └── value_selector │ │ │ └── images │ │ │ ├── icons │ │ │ └── checked.png │ │ │ └── ui │ │ │ ├── alpha.png │ │ │ ├── button_reset.png │ │ │ ├── button_special_disabled.png │ │ │ ├── button_submit.png │ │ │ ├── gradient.png │ │ │ ├── pattern.png │ │ │ ├── shadow-invert.png │ │ │ └── shadow.png │ ├── hub │ │ ├── americas-blue-128.png │ │ ├── americas-blue-32.png │ │ ├── americas-blue-48.png │ │ ├── americas-blue-64.png │ │ ├── americas-cerulean-128.png │ │ ├── americas-cerulean-32.png │ │ ├── americas-cerulean-48.png │ │ ├── americas-cerulean-64.png │ │ ├── americas-green-128.png │ │ ├── americas-green-32.png │ │ ├── americas-green-48.png │ │ ├── americas-green-64.png │ │ ├── americas-orange-128.png │ │ ├── americas-orange-32.png │ │ ├── americas-orange-48.png │ │ ├── americas-orange-64.png │ │ ├── americas-pink-128.png │ │ ├── americas-pink-32.png │ │ ├── americas-pink-48.png │ │ ├── americas-pink-64.png │ │ ├── americas-purple-128.png │ │ ├── americas-purple-32.png │ │ ├── americas-purple-48.png │ │ ├── americas-purple-64.png │ │ ├── americas-red-128.png │ │ ├── americas-red-32.png │ │ ├── americas-red-48.png │ │ ├── americas-red-64.png │ │ ├── americas-yellow-128.png │ │ ├── americas-yellow-32.png │ │ ├── americas-yellow-48.png │ │ ├── americas-yellow-64.png │ │ ├── asia-australia-blue-128.png │ │ ├── asia-australia-blue-32.png │ │ ├── asia-australia-blue-48.png │ │ ├── asia-australia-blue-64.png │ │ ├── asia-australia-cerulean-128.png │ │ ├── asia-australia-cerulean-32.png │ │ ├── asia-australia-cerulean-48.png │ │ ├── asia-australia-cerulean-64.png │ │ ├── asia-australia-green-128.png │ │ ├── asia-australia-green-32.png │ │ ├── asia-australia-green-48.png │ │ ├── asia-australia-green-64.png │ │ ├── asia-australia-orange-128.png │ │ ├── asia-australia-orange-32.png │ │ ├── asia-australia-orange-48.png │ │ ├── asia-australia-orange-64.png │ │ ├── asia-australia-pink-128.png │ │ ├── asia-australia-pink-32.png │ │ ├── asia-australia-pink-48.png │ │ ├── asia-australia-pink-64.png │ │ ├── asia-australia-purple-128.png │ │ ├── asia-australia-purple-32.png │ │ ├── asia-australia-purple-48.png │ │ ├── asia-australia-purple-64.png │ │ ├── asia-australia-red-128.png │ │ ├── asia-australia-red-32.png │ │ ├── asia-australia-red-48.png │ │ ├── asia-australia-red-64.png │ │ ├── asia-australia-yellow-128.png │ │ ├── asia-australia-yellow-32.png │ │ ├── asia-australia-yellow-48.png │ │ ├── asia-australia-yellow-64.png │ │ ├── default-128.png │ │ ├── default-32.png │ │ ├── default-48.png │ │ ├── default-64.png │ │ ├── europe-africa-blue-128.png │ │ ├── europe-africa-blue-32.png │ │ ├── europe-africa-blue-48.png │ │ ├── europe-africa-blue-64.png │ │ ├── europe-africa-cerulean-128.png │ │ ├── europe-africa-cerulean-32.png │ │ ├── europe-africa-cerulean-48.png │ │ ├── europe-africa-cerulean-64.png │ │ ├── europe-africa-green-128.png │ │ ├── europe-africa-green-32.png │ │ ├── europe-africa-green-48.png │ │ ├── europe-africa-green-64.png │ │ ├── europe-africa-orange-128.png │ │ ├── europe-africa-orange-32.png │ │ ├── europe-africa-orange-48.png │ │ ├── europe-africa-orange-64.png │ │ ├── europe-africa-pink-128.png │ │ ├── europe-africa-pink-32.png │ │ ├── europe-africa-pink-48.png │ │ ├── europe-africa-pink-64.png │ │ ├── europe-africa-purple-128.png │ │ ├── europe-africa-purple-32.png │ │ ├── europe-africa-purple-48.png │ │ ├── europe-africa-purple-64.png │ │ ├── europe-africa-red-128.png │ │ ├── europe-africa-red-32.png │ │ ├── europe-africa-red-48.png │ │ ├── europe-africa-red-64.png │ │ ├── europe-africa-yellow-128.png │ │ ├── europe-africa-yellow-32.png │ │ ├── europe-africa-yellow-48.png │ │ └── europe-africa-yellow-64.png │ ├── icons │ │ ├── minus.gif │ │ ├── plus.gif │ │ └── ratings │ │ │ ├── CLASSIND_10.png │ │ │ ├── CLASSIND_12.png │ │ │ ├── CLASSIND_14.png │ │ │ ├── CLASSIND_16.png │ │ │ ├── CLASSIND_18.png │ │ │ ├── CLASSIND_L.png │ │ │ ├── ESRB_ao.png │ │ │ ├── ESRB_e.png │ │ │ ├── ESRB_e10.png │ │ │ ├── ESRB_m.png │ │ │ ├── ESRB_t.png │ │ │ ├── USK_0.png │ │ │ ├── USK_12.png │ │ │ ├── USK_16.png │ │ │ ├── USK_18.png │ │ │ ├── USK_6.png │ │ │ ├── USK_RR.png │ │ │ ├── descriptors │ │ │ ├── pegi_discrimination.png │ │ │ ├── pegi_drugs.png │ │ │ ├── pegi_fear.png │ │ │ ├── pegi_gambling.png │ │ │ ├── pegi_inapp_purchase_option.png │ │ │ ├── pegi_language.png │ │ │ ├── pegi_location_data_sharing.png │ │ │ ├── pegi_nudity.png │ │ │ ├── pegi_online.png │ │ │ ├── pegi_personal_data_sharing.png │ │ │ ├── pegi_sex.png │ │ │ ├── pegi_social_interaction_functionality.png │ │ │ └── pegi_violence.png │ │ │ ├── generic_12.png │ │ │ ├── generic_16.png │ │ │ ├── generic_18.png │ │ │ ├── generic_3.png │ │ │ ├── generic_7.png │ │ │ ├── generic_rp.png │ │ │ ├── interactives │ │ │ ├── ESRB_digital-purchases.png │ │ │ ├── ESRB_digital-purchases_small.png │ │ │ ├── ESRB_shares-info.png │ │ │ ├── ESRB_shares-info_small.png │ │ │ ├── ESRB_shares-location.png │ │ │ ├── ESRB_shares-location_small.png │ │ │ ├── ESRB_users-interact.png │ │ │ └── ESRB_users-interact_small.png │ │ │ ├── pegi_12.png │ │ │ ├── pegi_16.png │ │ │ ├── pegi_18.png │ │ │ ├── pegi_3.png │ │ │ ├── pegi_7.png │ │ │ └── pegi_exclamation.png │ ├── impala │ │ ├── banner-close.png │ │ ├── breadcrumb-home.png │ │ ├── button-icons.png │ │ └── warning-bg.png │ ├── jquery-lightbox │ │ ├── close.png │ │ ├── goleft.png │ │ ├── goright.png │ │ ├── lightbox-blank.gif │ │ └── lightbox-ico-loading.gif │ ├── lightbox │ │ └── loading.gif │ ├── mkt │ │ ├── badges │ │ │ ├── firefox-marketplace_badge-black_116_40.png │ │ │ ├── firefox-marketplace_badge-black_129_45.png │ │ │ ├── firefox-marketplace_badge-black_172_60.png │ │ │ ├── firefox-marketplace_badge-grey_116_40.png │ │ │ ├── firefox-marketplace_badge-grey_129_45.png │ │ │ ├── firefox-marketplace_badge-grey_172_60.png │ │ │ ├── firefox-marketplace_badge-orange_116_40.png │ │ │ ├── firefox-marketplace_badge-orange_129_45.png │ │ │ └── firefox-marketplace_badge-orange_172_60.png │ │ ├── btn_spinner.png │ │ ├── btn_spinner_2x.png │ │ ├── close.png │ │ ├── device-icons.png │ │ ├── divider.png │ │ ├── grain.png │ │ ├── icons │ │ │ ├── device_icons.png │ │ │ ├── mkt-reviewer-detail-icons.png │ │ │ ├── mkt-reviewer-icons.png │ │ │ ├── nightly.png │ │ │ ├── rocket-2x.png │ │ │ ├── rocket-64.png │ │ │ ├── rocket.png │ │ │ ├── settings-2x.png │ │ │ └── settings.png │ │ ├── loading-16.png │ │ ├── logo.png │ │ ├── logos │ │ │ ├── 128.png │ │ │ ├── 32.png │ │ │ ├── 64.png │ │ │ ├── dino.png │ │ │ ├── footzilla-2x.png │ │ │ ├── footzilla.png │ │ │ ├── large-2x.png │ │ │ ├── large.png │ │ │ ├── mp_icon_wordmark_200x30.png │ │ │ ├── mp_icon_wordmark_400x60.png │ │ │ ├── originals │ │ │ │ ├── marketplace-logo-final-300dpi-cropped.png │ │ │ │ ├── marketplace-logo-final-300dpi.png │ │ │ │ └── marketplace-wordmark-final.png │ │ │ ├── small.png │ │ │ └── wordmark.png │ │ └── ui-lightness │ │ │ └── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ ├── sprites │ │ ├── README.txt │ │ └── mkt-reviewer-icons │ │ │ ├── coins.png │ │ │ ├── exclamation.png │ │ │ ├── information.png │ │ │ ├── lock.png │ │ │ ├── package.png │ │ │ ├── page_white_edit.png │ │ │ ├── privileged.png │ │ │ ├── up.png │ │ │ └── user_comment.png │ └── zamboni │ │ ├── icons │ │ ├── alert-32x32.png │ │ ├── checks.png │ │ └── icon-draggable.png │ │ ├── loading-small.gif │ │ ├── loading-white.gif │ │ ├── loading.gif │ │ ├── notification-error-small.png │ │ ├── notification-error.png │ │ ├── notification-success.png │ │ ├── notifications.png │ │ ├── personas │ │ ├── complete-theme-promo-original.png │ │ ├── complete-theme-promo.png │ │ ├── promo-arrows.png │ │ ├── promo-browser.png │ │ ├── submit.jpg │ │ ├── theme-promo-original.png │ │ └── theme-promo.png │ │ └── qr_code_test │ │ ├── 144983.jpg │ │ └── 4664.jpg ├── js │ ├── .keep │ ├── common │ │ ├── fakefilefield.js │ │ ├── formsets.js │ │ ├── keys.js │ │ ├── upload-base.js │ │ ├── upload-image.js │ │ └── upload-packaged-app.js │ ├── devreg │ │ ├── apps.js │ │ ├── capabilities.js │ │ ├── content_ratings.js │ │ ├── devhub.js │ │ ├── devreg_init.js │ │ ├── ecosystem.js │ │ ├── edit.js │ │ ├── formdata.js │ │ ├── gettext.js │ │ ├── in_app_products.js │ │ ├── inapp_payments.js │ │ ├── init.js │ │ ├── l10n.js │ │ ├── login.js │ │ ├── lookup-tool.js │ │ ├── manifest.js │ │ ├── modal.js │ │ ├── notification.js │ │ ├── overlay.js │ │ ├── payments-enroll.js │ │ ├── payments-manage.js │ │ ├── payments.js │ │ ├── popup.js │ │ ├── refunds.js │ │ ├── reviewers │ │ │ ├── buttons.js │ │ │ ├── editors.js │ │ │ ├── expandable.js │ │ │ ├── install.js │ │ │ ├── mobile_review_actions.js │ │ │ ├── payments.js │ │ │ ├── reviewers.js │ │ │ ├── reviewers_commbadge.js │ │ │ └── reviewers_init.js │ │ ├── slugify.js │ │ ├── storage.js │ │ ├── submit.js │ │ ├── suggestions.js │ │ ├── tabs.js │ │ ├── test-install.js │ │ ├── tooltip.js │ │ ├── tracking.js │ │ ├── tracking_app_submit.js │ │ ├── utils.js │ │ └── validator.js │ ├── impala │ │ ├── ajaxcache.js │ │ ├── pjax.js │ │ ├── preloaded.js │ │ └── serializers.js │ ├── lib │ │ ├── amd.js │ │ ├── csrf.js │ │ ├── diff_match_patch_uncompressed.js │ │ ├── document-register-element.js │ │ ├── es5-shim.min.js │ │ ├── flight.min.js │ │ ├── flipsnap.js │ │ ├── format.js │ │ ├── iepp.min.js │ │ ├── jquery-1.11.1.js │ │ ├── jquery-1.9.1.js │ │ ├── jquery-migrate-1.1.0.js │ │ ├── jquery-ui │ │ │ ├── README │ │ │ └── jquery-ui-1.10.1.custom.js │ │ ├── jquery.cookie.js │ │ ├── jquery.minicolors.js │ │ ├── jquery.mockjax.js │ │ ├── marketplace-elements.js │ │ ├── moment-with-langs.min.js │ │ ├── stick.js │ │ ├── syntaxhighlighter │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ ├── shLegacy.js │ │ │ └── xregexp-min.js │ │ └── underscore.js │ ├── mkt │ │ └── .keep │ └── zamboni │ │ ├── .keep │ │ ├── files.js │ │ ├── fxa_authorize.js │ │ ├── storage.js │ │ └── unicode.js └── packaged-apps │ ├── blocklisted.zip │ └── yulelog_20130529123630.zip ├── mkt ├── __init__.py ├── abuse │ ├── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ ├── 0003_abusereport_website.py │ │ ├── 0004_abusereport_extension.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── access │ ├── __init__.py │ ├── acl.py │ ├── helpers.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150825_1715.py │ │ ├── 0002_group_restricted.py │ │ ├── 0003_add_contenttools_groups.py │ │ └── __init__.py │ ├── models.py │ └── tests.py ├── account │ ├── __init__.py │ ├── helpers.py │ ├── serializers.py │ ├── templates │ │ └── account │ │ │ └── email │ │ │ └── feedback.txt │ ├── tests │ │ ├── __init__.py │ │ ├── sample.key │ │ ├── test_serializers.py │ │ ├── test_utils_.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── api │ ├── __init__.py │ ├── authentication.py │ ├── base.py │ ├── exceptions.py │ ├── fields.py │ ├── filters.py │ ├── forms.py │ ├── http.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── oauth.py │ ├── paginator.py │ ├── patch.py │ ├── permissions.py │ ├── renderers.py │ ├── sample-aes.key │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── nose.cfg │ │ ├── test_authentication.py │ │ ├── test_base.py │ │ ├── test_base_urls.py │ │ ├── test_exceptions.py │ │ ├── test_fields.py │ │ ├── test_forms.py │ │ ├── test_handlers.py │ │ ├── test_middleware.py │ │ ├── test_oauth.py │ │ ├── test_paginator.py │ │ ├── test_permissions.py │ │ ├── test_renderers.py │ │ ├── test_serializer.py │ │ ├── test_throttle.py │ │ ├── test_urls.py │ │ └── test_views.py │ ├── urls.py │ ├── v1 │ │ ├── __init__.py │ │ └── urls.py │ ├── v2 │ │ ├── __init__.py │ │ └── urls.py │ └── views.py ├── asset_bundles.py ├── carriers │ ├── __init__.py │ └── carriers.py ├── comm │ ├── __init__.py │ ├── filters.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ ├── 0003_auto_20150915_1245.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tasks.py │ ├── templates │ │ └── comm │ │ │ └── emails │ │ │ ├── approval.html │ │ │ ├── approval_private.html │ │ │ ├── base.html │ │ │ ├── disabled.html │ │ │ ├── escalation_developer.html │ │ │ ├── escalation_prerelease_app.html │ │ │ ├── escalation_senior_reviewer.html │ │ │ ├── escalation_vip.html │ │ │ ├── generic.html │ │ │ ├── includes │ │ │ ├── details.html │ │ │ └── questions.html │ │ │ ├── more_info_required.html │ │ │ └── rejection.html │ ├── tests │ │ ├── __init__.py │ │ ├── attachments │ │ │ ├── bacon.jpg │ │ │ └── bacon.txt │ │ ├── emails │ │ │ ├── email.txt │ │ │ ├── email_attachment.txt │ │ │ ├── email_multipart.txt │ │ │ ├── email_multipart2.txt │ │ │ └── email_quoted_printable.txt │ │ ├── test_constants.py │ │ ├── test_forms.py │ │ ├── test_models.py │ │ ├── test_serializers.py │ │ ├── test_utils_.py │ │ ├── test_utils_mail.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ ├── utils_mail.py │ └── views.py ├── commonplace │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── deploy_build_id.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── commonplace │ │ │ ├── fxa_authorize.html │ │ │ ├── iframe-install.html │ │ │ ├── includes │ │ │ └── open_graph.html │ │ │ ├── index.html │ │ │ ├── index_react.html │ │ │ ├── index_tv.html │ │ │ ├── manifest.appcache │ │ │ └── potatolytics.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_commands.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── constants │ ├── __init__.py │ ├── applications.py │ ├── apps.py │ ├── bango.py │ ├── base.py │ ├── carriers.py │ ├── categories.py │ ├── comm.py │ ├── features.py │ ├── iarc_mappings.py │ ├── lookup.py │ ├── payments.py │ ├── platforms.py │ ├── ratingsbodies.py │ ├── regions.py │ ├── reviewers.py │ ├── search.py │ ├── submit.py │ └── tests │ │ ├── __init__.py │ │ ├── test_carriers.py │ │ ├── test_features.py │ │ ├── test_iarc_mappings.py │ │ ├── test_platforms.py │ │ ├── test_ratingsbodies.py │ │ └── test_regions.py ├── detail │ ├── __init__.py │ ├── helpers.py │ ├── templates │ │ └── detail │ │ │ ├── helpers │ │ │ └── device_list.html │ │ │ └── includes │ │ │ └── price.html │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── developers │ ├── __init__.py │ ├── api_payments.py │ ├── cron.py │ ├── decorators.py │ ├── forms.py │ ├── forms_payments.py │ ├── helpers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── cleanup_addon_premium.py │ │ │ ├── exclude_region.py │ │ │ ├── populate_solitude_public_ids.py │ │ │ ├── refresh_wsdl.py │ │ │ └── requeue_uploads.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ ├── 0003_auto_20150727_1017.py │ │ ├── 0004_auto_20150824_0820.py │ │ ├── 0005_auto_20150827_1230.py │ │ ├── 0006_auto_20151110_1117.py │ │ ├── 0007_iarcrequest.py │ │ └── __init__.py │ ├── models.py │ ├── providers.py │ ├── serializers.py │ ├── signals.py │ ├── tasks.py │ ├── templates │ │ └── developers │ │ │ ├── api.html │ │ │ ├── apps │ │ │ ├── dashboard.html │ │ │ ├── edit.html │ │ │ ├── edit │ │ │ │ ├── admin.html │ │ │ │ ├── basic.html │ │ │ │ ├── details.html │ │ │ │ ├── language.html │ │ │ │ ├── media.html │ │ │ │ ├── support.html │ │ │ │ └── technical.html │ │ │ ├── forms_shared │ │ │ │ └── media.html │ │ │ ├── includes │ │ │ │ └── validation_test_results.html │ │ │ ├── listing │ │ │ │ ├── delete_form.html │ │ │ │ ├── item_actions.html │ │ │ │ ├── item_actions_app.html │ │ │ │ ├── items.html │ │ │ │ └── macros.html │ │ │ ├── owner.html │ │ │ ├── ratings │ │ │ │ └── ratings_summary.html │ │ │ ├── status.html │ │ │ └── version_edit.html │ │ │ ├── base.html │ │ │ ├── base_impala.html │ │ │ ├── docs │ │ │ └── policies-agreement.html │ │ │ ├── emails │ │ │ ├── new_regions_many.ltxt │ │ │ ├── new_regions_one.ltxt │ │ │ ├── new_regions_two.ltxt │ │ │ ├── prerelease_escalation.ltxt │ │ │ └── vip_escalation.ltxt │ │ │ ├── includes │ │ │ ├── addons_edit_nav.html │ │ │ ├── content_rating_icon.html │ │ │ ├── macros.html │ │ │ └── testing_nav.html │ │ │ ├── login.html │ │ │ ├── motd.html │ │ │ ├── nav.html │ │ │ ├── oauth_authorize.html │ │ │ ├── payments │ │ │ ├── includes │ │ │ │ ├── region_form.html │ │ │ │ ├── region_form_list.html │ │ │ │ ├── regions_inappropriate.html │ │ │ │ ├── regions_other.html │ │ │ │ └── regions_toggle.html │ │ │ └── premium.html │ │ │ ├── skeleton_impala.html │ │ │ ├── terms.html │ │ │ ├── terms_standalone.html │ │ │ ├── testing.html │ │ │ ├── transactions.html │ │ │ ├── validate_app.html │ │ │ └── validation.html │ ├── tests │ │ ├── __init__.py │ │ ├── addons │ │ │ ├── badicon.webapp │ │ │ ├── dataicon.webapp │ │ │ ├── malformed-locales.webapp │ │ │ ├── mozball-128.png │ │ │ ├── mozball.owa │ │ │ ├── mozball.webapp │ │ │ ├── mozscreen.webapp │ │ │ ├── noicon.webapp │ │ │ ├── non-english.webapp │ │ │ └── utf8bom.webapp │ │ ├── files │ │ │ ├── test.pdf │ │ │ └── test.xls │ │ ├── icons │ │ │ ├── 337141-128.png │ │ │ └── 337141-64.png │ │ ├── test_commands.py │ │ ├── test_cron.py │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_providers.py │ │ ├── test_tasks.py │ │ ├── test_utils_.py │ │ ├── test_views.py │ │ ├── test_views_api.py │ │ ├── test_views_edit.py │ │ ├── test_views_ownership.py │ │ ├── test_views_validation.py │ │ └── test_views_versions.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── views_payments.py ├── downloads │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── ecosystem │ ├── __init__.py │ ├── models.py │ ├── templates │ │ └── ecosystem │ │ │ ├── base.html │ │ │ ├── landing.html │ │ │ ├── macros.html │ │ │ ├── partners.html │ │ │ ├── publish_badges.html │ │ │ └── support.html │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── extensions │ ├── __init__.py │ ├── forms.py │ ├── indexers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_extension_add_uuid.py │ │ ├── 0003_populate_extension_uuid.py │ │ ├── 0004_extension_uuid_unique_constraint.py │ │ ├── 0005_auto_20150902_0755.py │ │ ├── 0006_auto_20150914_0745.py │ │ ├── 0007_extensionversion_size.py │ │ ├── 0008_auto_20150918_1103.py │ │ ├── 0009_auto_20150922_0502.py │ │ ├── 0010_extension_last_updated.py │ │ ├── 0011_extensionversion_reviewed.py │ │ ├── 0012_extension_popularity_and_trending.py │ │ ├── 0013_add_disabled_field_alter_status_and_last_updated.py │ │ ├── 0014_soft_delete.py │ │ ├── 0015_extension_author.py │ │ ├── 0016_reset_extensions_translations_locale.py │ │ ├── 0017_author_field_length.py │ │ ├── 0018_change_default_ordering.py │ │ ├── 0019_extension_icon_hash.py │ │ ├── 0020_change_filename_scheme.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_indexers.py │ │ ├── test_models.py │ │ ├── test_permissions.py │ │ ├── test_tasks.py │ │ ├── test_validation.py │ │ └── test_views.py │ ├── urls.py │ ├── validation.py │ └── views.py ├── features │ ├── __init__.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_serializers.py │ │ ├── test_utils_.py │ │ └── test_views.py │ ├── utils.py │ └── views.py ├── feed │ ├── __init__.py │ ├── constants.py │ ├── fakedata.py │ ├── fields.py │ ├── indexers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── generate_feed.py │ │ │ └── migrate_collection_colors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── files │ │ │ └── bacon.jpg │ │ ├── test_commands.py │ │ ├── test_fakedata.py │ │ ├── test_fields.py │ │ ├── test_indexers.py │ │ ├── test_models.py │ │ ├── test_permissions.py │ │ ├── test_serializers.py │ │ └── test_views.py │ └── views.py ├── files │ ├── __init__.py │ ├── admin.py │ ├── cron.py │ ├── decorators.py │ ├── fixtures │ │ └── files │ │ │ ├── dictionary-test.xpi │ │ │ └── recurse.xpi │ ├── forms.py │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ ├── 0003_remove_file_uses_flash.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ └── fileviewer │ │ │ ├── base.html │ │ │ ├── content.html │ │ │ ├── file.html │ │ │ ├── node.html │ │ │ └── viewer.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_decorators.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_utils_.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── fireplace │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── upload_new_marketplace_package.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_serializers.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── inapp │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_inappproduct_price.py │ │ ├── 0003_inappproduct_webapp.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── resources │ │ │ ├── logo-128.png │ │ │ └── logo-64.png │ │ ├── test_models.py │ │ ├── test_serializers.py │ │ └── test_views.py │ └── views.py ├── installs │ ├── __init__.py │ ├── forms.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── langpacks │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150824_0820.py │ │ ├── 0003_auto_20150918_1103.py │ │ ├── 0004_auto_20151125_1233.py │ │ ├── 0005_auto_20151231_0842.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ ├── test_utils_.py │ │ └── test_views.py │ ├── utils.py │ └── views.py ├── latecustomization │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151125_1233.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ └── views.py ├── lookup │ ├── __init__.py │ ├── forms.py │ ├── helpers.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── lookup │ │ │ ├── app_activity.html │ │ │ ├── app_summary.html │ │ │ ├── base.html │ │ │ ├── group_summary.html │ │ │ ├── helpers │ │ │ ├── app_header.html │ │ │ ├── user_header.html │ │ │ └── website_header.html │ │ │ ├── home.html │ │ │ ├── includes │ │ │ ├── app_search.html │ │ │ ├── group_search.html │ │ │ ├── promo_img_form.html │ │ │ ├── provider_portals.html │ │ │ ├── transaction_search.html │ │ │ ├── user_search.html │ │ │ └── website_search.html │ │ │ ├── transaction_summary.html │ │ │ ├── user_activity.html │ │ │ ├── user_purchases.html │ │ │ ├── user_summary.html │ │ │ ├── website_edit.html │ │ │ └── website_summary.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_forms.py │ │ ├── test_serializers.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── monolith │ ├── __init__.py │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── create_monolith_user.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── operators │ ├── __init__.py │ ├── helpers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── operator_user.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_management.py │ │ ├── test_permissions.py │ │ └── test_views.py │ └── views.py ├── prices │ ├── __init__.py │ ├── admin.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── load_prices.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ ├── 0003_auto_20150727_1017.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_utils.py │ ├── utils.py │ └── views.py ├── purchase │ ├── __init__.py │ ├── decorators.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── post_bluevia_payment.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ └── purchase │ │ │ ├── receipt.html │ │ │ └── receipt.ltxt │ ├── tests │ │ ├── __init__.py │ │ ├── test_webpay.py │ │ ├── test_webpay_tasks.py │ │ └── utils.py │ ├── urls.py │ └── webpay.py ├── ratings │ ├── __init__.py │ ├── cron.py │ ├── forms.py │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── templates │ │ └── ratings │ │ │ └── emails │ │ │ └── daily_digest.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_cron.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_utils.py │ │ ├── test_validators.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ ├── validators.py │ └── views.py ├── receipts │ ├── __init__.py │ ├── forms.py │ ├── templates │ │ └── receipts │ │ │ ├── test_details.html │ │ │ └── test_manifest.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ ├── test_utils_.py │ │ ├── test_verify.py │ │ ├── test_views.py │ │ └── test_views_api.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── recommendations │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ └── views.py ├── regions │ ├── __init__.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_init.py │ │ ├── test_middleware.py │ │ └── test_utils_.py │ └── utils.py ├── reviewers │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ ├── 0003_auto_20150727_1017.py │ │ ├── 0004_auto_20150810_0952.py │ │ ├── 0004_fix_unique.py │ │ ├── 0005_merge.py │ │ ├── 0006_auto_20151110_0714.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── reviewers │ │ │ ├── abuse.html │ │ │ ├── apps_reviewing.html │ │ │ ├── base.html │ │ │ ├── base_minimal.html │ │ │ ├── home.html │ │ │ ├── includes │ │ │ ├── additional_review_table.html │ │ │ ├── commbadge_note_template.html │ │ │ ├── details.html │ │ │ ├── macros.html │ │ │ ├── mobile_details.html │ │ │ ├── paginator_history.html │ │ │ ├── queue_abuse.html │ │ │ ├── queue_moderation.html │ │ │ ├── queue_search.html │ │ │ ├── queue_search_mobile.html │ │ │ ├── review_history.html │ │ │ ├── reviewers_paginator.html │ │ │ ├── reviewers_score_bar.html │ │ │ ├── reviews_link.html │ │ │ └── search_results.html │ │ │ ├── leaderboard.html │ │ │ ├── logs.html │ │ │ ├── moderatelog.html │ │ │ ├── moderatelog_detail.html │ │ │ ├── motd.html │ │ │ ├── performance.html │ │ │ ├── queue.html │ │ │ └── review.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_utils_.py │ │ ├── test_views.py │ │ └── test_views_api.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── search │ ├── __init__.py │ ├── filters.py │ ├── forms.py │ ├── indexers.py │ ├── middleware.py │ ├── serializers.py │ ├── templates │ │ └── search │ │ │ └── down.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_filters.py │ │ ├── test_forms.py │ │ ├── test_indexer.py │ │ ├── test_middleware.py │ │ ├── test_utils_.py │ │ └── test_views.py │ ├── utils.py │ └── views.py ├── settings.py ├── site │ ├── __init__.py │ ├── certificates │ │ └── roots.pem │ ├── context_processors.py │ ├── decorators.py │ ├── fields.py │ ├── fixtures │ │ ├── __init__.py │ │ ├── data │ │ │ ├── group_admin.json │ │ │ ├── group_editor.json │ │ │ ├── group_support.json │ │ │ ├── prices.json │ │ │ ├── prices2.json │ │ │ ├── user_10482.json │ │ │ ├── user_2519.json │ │ │ ├── user_999.json │ │ │ ├── user_admin.json │ │ │ ├── user_admin_group.json │ │ │ ├── user_editor.json │ │ │ ├── user_editor_group.json │ │ │ ├── user_operator.json │ │ │ ├── user_support_staff.json │ │ │ ├── users.json │ │ │ └── webapp_337141.json │ │ └── init.json │ ├── forms.py │ ├── helpers.py │ ├── log.py │ ├── mail.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── add_test_users.py │ │ │ └── resave_purified_translations.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151109_1326.py │ │ ├── 0003_auto_20151123_1219.py │ │ ├── 0004_auto_20160329_1749.py │ │ └── __init__.py │ ├── models.py │ ├── monitors.py │ ├── nagios_check_packaged_app.zip │ ├── storage_utils.py │ ├── tasks.py │ ├── templates │ │ ├── services │ │ │ └── monitor.html │ │ └── site │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── helpers │ │ │ ├── abuse.html │ │ │ ├── breadcrumbs.html │ │ │ ├── form_row.html │ │ │ ├── no_results.html │ │ │ ├── potato-recaptcha.html │ │ │ ├── simple_field.html │ │ │ ├── timelabel.html │ │ │ └── webapp_button.html │ │ │ ├── impala_paginator.html │ │ │ ├── paginator.html │ │ │ └── robots.txt │ ├── tests │ │ ├── __init__.py │ │ ├── images │ │ │ ├── animated.gif │ │ │ ├── animated.png │ │ │ ├── game_1050.jpg │ │ │ ├── mkt_icon_72.png │ │ │ ├── mozilla-sq.png │ │ │ ├── mozilla.png │ │ │ ├── non-animated.gif │ │ │ ├── non-animated.png │ │ │ ├── preview.jpg │ │ │ ├── preview_landscape.jpg │ │ │ ├── transparent-expected.png │ │ │ └── transparent.png │ │ ├── test_decorators.py │ │ ├── test_fields.py │ │ ├── test_helpers.py │ │ ├── test_jinja.py │ │ ├── test_locales.py │ │ ├── test_log.py │ │ ├── test_mail.py │ │ ├── test_middleware.py │ │ ├── test_models.py │ │ ├── test_monitor.py │ │ ├── test_storage_utils.py │ │ ├── test_utils_.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── stats │ ├── __init__.py │ ├── cron.py │ ├── forms.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_cron.py │ │ ├── test_forms.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── submit │ ├── __init__.py │ ├── decorators.py │ ├── forms.py │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_appsubmissionchecklist_addon.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── submit │ │ │ ├── details.html │ │ │ ├── done.html │ │ │ ├── helpers │ │ │ └── progress.html │ │ │ ├── manifest.html │ │ │ ├── next_steps.html │ │ │ └── terms.html │ ├── tests │ │ ├── __init__.py │ │ ├── packaged │ │ │ ├── extension.zip │ │ │ ├── full-tpa.zip │ │ │ ├── langpack.zip │ │ │ ├── mozBOM.zip │ │ │ ├── mozball.zip │ │ │ ├── no-manifest-at-root.zip │ │ │ ├── no_permissions.zip │ │ │ ├── prerelease.zip │ │ │ └── signed.zip │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_views.py │ │ ├── test_views_api.py │ │ └── webapps │ │ │ ├── mozball-nice-slug.webapp │ │ │ ├── mozball.webapp │ │ │ ├── non-utf8.webapp │ │ │ ├── short-locale.webapp │ │ │ └── unsupported-default-locale.webapp │ ├── urls.py │ └── views.py ├── tags │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_utils_.py │ └── utils.py ├── templates │ └── mkt │ │ ├── account-links.html │ │ ├── footer.html │ │ ├── header.html │ │ └── opensearch.xml ├── translations │ ├── __init__.py │ ├── fields.py │ ├── forms.py │ ├── helpers.py │ ├── hold.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ └── __init__.py │ ├── models.py │ ├── query.py │ ├── templates │ │ └── translations │ │ │ ├── all-locales.html │ │ │ └── trans-menu.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_utils.py │ │ ├── test_widgets.py │ │ └── testapp │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ └── testapp │ │ │ │ └── test_models.json │ │ │ └── models.py │ ├── transformer.py │ ├── utils.py │ └── widgets.py ├── tvplace │ ├── __init__.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── tvplace │ │ │ └── manifest.webapp │ ├── tests │ │ ├── __init__.py │ │ ├── test_serializers.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── urls.py ├── users │ ├── __init__.py │ ├── helpers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── generate_users.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150826_0807.py │ │ ├── 0003_userprofile_shown_dev_agreement.py │ │ ├── 0004_auto_20160106_0037.py │ │ └── __init__.py │ ├── models.py │ ├── notifications.py │ ├── signals.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_helpers.py │ │ ├── test_models.py │ │ ├── test_user_utils.py │ │ └── test_views.py │ ├── utils.py │ └── views.py ├── versions │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20150727_1017.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ ├── test_serializers.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── webapps │ ├── __init__.py │ ├── admin.py │ ├── cron.py │ ├── decorators.py │ ├── fakedata.py │ ├── helpers.py │ ├── indexers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── export_data.py │ │ │ ├── generate_apps.py │ │ │ ├── generate_apps_from_spec.py │ │ │ ├── generate_receipts.py │ │ │ ├── generate_reviewer_apps.py │ │ │ ├── list_packaged_apps.py │ │ │ ├── process_addons.py │ │ │ └── sign_apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_webapp_hosted_url.py │ │ ├── 0003_appfeatures_has_udpsocket.py │ │ ├── 0004_auto_20151120_0650.py │ │ ├── 0005_iarccert.py │ │ ├── 0006_remove_preview_thumbtype.py │ │ ├── 0007_webapp_tv_featured.py │ │ ├── 0008_remove_china_queue.py │ │ ├── 0009_remove_webapp_hosted_url.py │ │ ├── 0010_auto_20160216_1705.py │ │ ├── 0011_iarc_add_new_descriptors_and_interactives.py │ │ ├── 0012_new_generic_descriptors.py │ │ ├── 0013_disable_unsupported_apps.py │ │ ├── 0014_auto_20160329_1745.py │ │ ├── 0015_remove_iarc_info.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── tasks.py │ ├── templates │ │ └── webapps │ │ │ ├── dump │ │ │ ├── apps │ │ │ │ ├── license.txt │ │ │ │ └── readme.txt │ │ │ └── users │ │ │ │ ├── license.txt │ │ │ │ └── readme.txt │ │ │ ├── emails │ │ │ └── update_manifest_failure.txt │ │ │ └── impala │ │ │ └── listing │ │ │ └── sorter.html │ ├── tests │ │ ├── __init__.py │ │ ├── sample.key │ │ ├── sample.packaged.pem │ │ ├── test_crons.py │ │ ├── test_decorators.py │ │ ├── test_fakedata.py │ │ ├── test_indexers.py │ │ ├── test_models.py │ │ ├── test_serializers.py │ │ ├── test_tasks.py │ │ └── test_utils_.py │ ├── utils.py │ └── views.py ├── webpay │ ├── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── templates │ │ └── webpay │ │ │ └── failure.txt │ ├── tests │ │ ├── __init__.py │ │ ├── resources │ │ │ └── product.jpg │ │ ├── test_tasks.py │ │ ├── test_views.py │ │ └── test_webpay_jwt.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── webpay_jwt.py ├── webroot │ ├── admin-media │ ├── favicon.ico │ └── media ├── websites │ ├── __init__.py │ ├── decorators.py │ ├── forms.py │ ├── helpers.py │ ├── indexers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── import_games_from_csv.py │ │ │ ├── import_tv_websites_from_csv.py │ │ │ └── import_websites_from_csv.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_website_tv_url.py │ │ ├── 0003_website_developer_name.py │ │ ├── 0004_website_tv_featured.py │ │ ├── 0005_delete_websites.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── files │ │ │ └── games.csv │ │ ├── test_commands.py │ │ ├── test_forms.py │ │ ├── test_helpers.py │ │ ├── test_indexers.py │ │ ├── test_models.py │ │ ├── test_serializers.py │ │ ├── test_tasks.py │ │ └── test_views.py │ ├── utils.py │ └── views.py └── zadmin │ ├── __init__.py │ ├── admin.py │ ├── decorators.py │ ├── forms.py │ ├── helpers.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── addusertogroup.py │ │ ├── genkey.py │ │ └── removeuserfromgroup.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ ├── admin │ │ ├── base.html │ │ └── base_site.html │ └── zadmin │ │ ├── base.html │ │ ├── ecosystem.html │ │ ├── elastic.html │ │ ├── email-devs.html │ │ ├── export_button.html │ │ ├── generate-error.html │ │ ├── index.html │ │ ├── mail.html │ │ ├── manifest.html │ │ ├── memcache.html │ │ ├── oauth-consumer-create.html │ │ ├── settings.html │ │ └── update-prices.html │ ├── tests │ ├── __init__.py │ ├── test_commands.py │ └── test_views.py │ ├── urls.py │ └── views.py ├── package.json ├── requirements ├── compiled.txt ├── dev.txt ├── docs.txt ├── load.txt ├── prod.txt └── test.txt ├── scripts ├── __init__.py ├── auth_google_analytics.py ├── checkdev.py ├── crontab │ ├── crontab.tpl │ └── gen-cron.py ├── css-add-line-breaks.py ├── deploy_fake_data.sh ├── docker │ └── supervisor.conf ├── elasticsearch │ ├── elasticsearch.yml │ ├── run_locally.py │ └── wordlist.txt ├── find_revdeps.py ├── gaia_package.py ├── git_hooks │ └── post-merge ├── newmig.sh ├── nose.cfg ├── pylint.sh ├── pylintrc ├── serve_packaged_apps.py ├── serve_webapps.py └── travis_es.sh ├── services ├── __init__.py ├── utils.py ├── verify.py └── wsgi │ ├── __init__.py │ └── receiptverify.py ├── settings_test.py ├── setup.cfg ├── sites ├── __init__.py ├── dev │ ├── __init__.py │ └── settings.py ├── prod │ ├── __init__.py │ └── settings.py └── stage │ ├── __init__.py │ └── settings.py ├── templates ├── base.html ├── base_modal.html ├── includes │ └── forms.html └── messages.html ├── tmp ├── addons │ └── .gitignore ├── data │ └── .gitkeep ├── file_viewer │ └── .gitkeep ├── guarded-addons │ └── .gitkeep ├── icon │ └── .gitkeep ├── log │ └── .gitkeep ├── preview │ └── .gitkeep ├── test │ └── .gitkeep └── uploads │ ├── .gitkeep │ ├── collection_icons │ └── .gitkeep │ └── reviewer_attachment │ └── .gitkeep └── wsgi ├── __init__.py ├── mkt.py └── mkt.wsgi /.baked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/.baked -------------------------------------------------------------------------------- /.git-wtfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/.git-wtfrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/bin/docker_run.sh -------------------------------------------------------------------------------- /configs/init.d/celeryd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/configs/init.d/celeryd -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/contribute.json -------------------------------------------------------------------------------- /data/apps/images/ctr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/images/ctr1.png -------------------------------------------------------------------------------- /data/apps/images/outlook1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/images/outlook1.png -------------------------------------------------------------------------------- /data/apps/images/pinterest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/images/pinterest1.png -------------------------------------------------------------------------------- /data/apps/images/redpanda.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/images/redpanda.webm -------------------------------------------------------------------------------- /data/apps/manifests/ctr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/manifests/ctr.zip -------------------------------------------------------------------------------- /data/apps/manifests/outlook.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/manifests/outlook.zip -------------------------------------------------------------------------------- /data/apps/reviewer_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/reviewer_apps.json -------------------------------------------------------------------------------- /data/apps/test_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/apps/test_apps.json -------------------------------------------------------------------------------- /data/users/test_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/data/users/test_users.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_intersphinx/django.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/_intersphinx/django.inv -------------------------------------------------------------------------------- /docs/_intersphinx/jinja.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/_intersphinx/jinja.inv -------------------------------------------------------------------------------- /docs/_intersphinx/nose.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/_intersphinx/nose.inv -------------------------------------------------------------------------------- /docs/_intersphinx/python.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/_intersphinx/python.inv -------------------------------------------------------------------------------- /docs/_intersphinx/sphinx.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/_intersphinx/sphinx.inv -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/Makefile -------------------------------------------------------------------------------- /docs/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/conf.py -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/topics/abuse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/abuse.rst -------------------------------------------------------------------------------- /docs/api/topics/accounts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/accounts.rst -------------------------------------------------------------------------------- /docs/api/topics/apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/apps.rst -------------------------------------------------------------------------------- /docs/api/topics/comm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/comm.rst -------------------------------------------------------------------------------- /docs/api/topics/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/export.rst -------------------------------------------------------------------------------- /docs/api/topics/feed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/feed.rst -------------------------------------------------------------------------------- /docs/api/topics/fireplace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/fireplace.rst -------------------------------------------------------------------------------- /docs/api/topics/games.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/games.rst -------------------------------------------------------------------------------- /docs/api/topics/langpacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/langpacks.rst -------------------------------------------------------------------------------- /docs/api/topics/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/overview.rst -------------------------------------------------------------------------------- /docs/api/topics/payment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/payment.rst -------------------------------------------------------------------------------- /docs/api/topics/ratings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/ratings.rst -------------------------------------------------------------------------------- /docs/api/topics/reviewers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/reviewers.rst -------------------------------------------------------------------------------- /docs/api/topics/rocketfuel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/rocketfuel.rst -------------------------------------------------------------------------------- /docs/api/topics/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/search.rst -------------------------------------------------------------------------------- /docs/api/topics/site.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/site.rst -------------------------------------------------------------------------------- /docs/api/topics/stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/stats.rst -------------------------------------------------------------------------------- /docs/api/topics/tv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/tv.rst -------------------------------------------------------------------------------- /docs/api/topics/websites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/api/topics/websites.rst -------------------------------------------------------------------------------- /docs/build-github.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/build-github.zsh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/extensions/src_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/extensions/src_role.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/topics/acl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/acl.rst -------------------------------------------------------------------------------- /docs/topics/fake-app-spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/fake-app-spec.rst -------------------------------------------------------------------------------- /docs/topics/hacking/emails.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/hacking/emails.rst -------------------------------------------------------------------------------- /docs/topics/hacking/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/hacking/index.rst -------------------------------------------------------------------------------- /docs/topics/hacking/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/hacking/testing.rst -------------------------------------------------------------------------------- /docs/topics/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/logging.rst -------------------------------------------------------------------------------- /docs/topics/services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/services.rst -------------------------------------------------------------------------------- /docs/topics/translations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/topics/translations.rst -------------------------------------------------------------------------------- /docs/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/docs/watcher.py -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/fabfile.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/cef_loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/cef_loggers.py -------------------------------------------------------------------------------- /lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/constants.py -------------------------------------------------------------------------------- /lib/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import * # noqa 2 | -------------------------------------------------------------------------------- /lib/crypto/packaged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/crypto/packaged.py -------------------------------------------------------------------------------- /lib/crypto/receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/crypto/receipt.py -------------------------------------------------------------------------------- /lib/crypto/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/crypto/tests.py -------------------------------------------------------------------------------- /lib/crypto/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/crypto/util.py -------------------------------------------------------------------------------- /lib/crypto/webpay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/crypto/webpay.py -------------------------------------------------------------------------------- /lib/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/es/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/es/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/es/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/es/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/es/models.py -------------------------------------------------------------------------------- /lib/es/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/es/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/es/tests/test_models.py -------------------------------------------------------------------------------- /lib/geoip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/geoip/__init__.py -------------------------------------------------------------------------------- /lib/geoip/tests/test_geoip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/geoip/tests/test_geoip.py -------------------------------------------------------------------------------- /lib/log_settings_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/log_settings_base.py -------------------------------------------------------------------------------- /lib/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/metrics/__init__.py -------------------------------------------------------------------------------- /lib/metrics/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/metrics/test.py -------------------------------------------------------------------------------- /lib/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/misc/admin_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/misc/admin_log.py -------------------------------------------------------------------------------- /lib/misc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/misc/tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/misc/tests/test_log.py -------------------------------------------------------------------------------- /lib/misc/urlconf_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/misc/urlconf_decorator.py -------------------------------------------------------------------------------- /lib/pay_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/pay_server/__init__.py -------------------------------------------------------------------------------- /lib/pay_server/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/pay_server/base.py -------------------------------------------------------------------------------- /lib/pay_server/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/pay_server/test.py -------------------------------------------------------------------------------- /lib/template_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/template_loader.py -------------------------------------------------------------------------------- /lib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tests/test_utils_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/tests/test_utils_.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/utils.py -------------------------------------------------------------------------------- /lib/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/__init__.py -------------------------------------------------------------------------------- /lib/video/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/dummy.py -------------------------------------------------------------------------------- /lib/video/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/ffmpeg.py -------------------------------------------------------------------------------- /lib/video/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/tasks.py -------------------------------------------------------------------------------- /lib/video/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/tests.py -------------------------------------------------------------------------------- /lib/video/totem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/totem.py -------------------------------------------------------------------------------- /lib/video/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/lib/video/utils.py -------------------------------------------------------------------------------- /locale/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/README.rst -------------------------------------------------------------------------------- /locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/af/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/af/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/as/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/as/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/as/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/as/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/be/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/be/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/bg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/bm/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/bm/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/bm/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/bm/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/bs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/bs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/compile-mo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/compile-mo.sh -------------------------------------------------------------------------------- /locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/cy/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/cy/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/da/glossary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/da/glossary.txt -------------------------------------------------------------------------------- /locale/dbg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/dbg/README -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ee/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ee/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ee/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ee/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/eo/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/eo/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/et/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ff/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ff/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ff/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ff/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/fy: -------------------------------------------------------------------------------- 1 | fy_NL -------------------------------------------------------------------------------- /locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ga/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ga/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/gd/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/gd/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/gl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/gl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/gu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/gu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/gu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/gu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ha/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ha/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ha/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ha/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ht/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ht/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ht/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ht/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ig/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ig/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ig/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ig/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/km/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/km/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/kn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/kn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ku/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ku/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ku/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ku/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/lg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/lg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/lg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/lg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ln/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ln/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ln/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ln/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/mk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/mk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ml/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ml/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/mn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/mn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ms/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ms/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ms/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ms/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/my/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/my/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/omg_new_l10n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/omg_new_l10n.sh -------------------------------------------------------------------------------- /locale/or/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/or/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/or/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/or/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/pa: -------------------------------------------------------------------------------- 1 | pa_IN -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/pt: -------------------------------------------------------------------------------- 1 | pt_PT -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/rtl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/rtl/README -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/si/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/si/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/si/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/si/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/sq/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sq/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/stats-po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/stats-po.sh -------------------------------------------------------------------------------- /locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/sw/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/sw/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ta/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ta/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/te/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/te/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/th/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/th/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/tl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/tl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/tl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/tl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/tn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/tn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/tn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/tn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/ur/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/ur/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/wo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/wo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/wo/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/wo/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/xh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/xh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/xh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/xh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/yo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/yo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/yo/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/yo/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/zu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/zu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/zu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/locale/zu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /logs/.keep: -------------------------------------------------------------------------------- 1 | Docker logs will be written to this directory. 2 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/manage.py -------------------------------------------------------------------------------- /media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/css/devreg/activity.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/activity.styl -------------------------------------------------------------------------------- /media/css/devreg/authors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/authors.styl -------------------------------------------------------------------------------- /media/css/devreg/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/base.css -------------------------------------------------------------------------------- /media/css/devreg/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/base.styl -------------------------------------------------------------------------------- /media/css/devreg/buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/buttons.styl -------------------------------------------------------------------------------- /media/css/devreg/data-grid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/data-grid.styl -------------------------------------------------------------------------------- /media/css/devreg/device.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/device.styl -------------------------------------------------------------------------------- /media/css/devreg/files.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/files.styl -------------------------------------------------------------------------------- /media/css/devreg/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/footer.styl -------------------------------------------------------------------------------- /media/css/devreg/forms.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/forms.styl -------------------------------------------------------------------------------- /media/css/devreg/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/header.styl -------------------------------------------------------------------------------- /media/css/devreg/l10n.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/l10n.styl -------------------------------------------------------------------------------- /media/css/devreg/lib.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/lib.styl -------------------------------------------------------------------------------- /media/css/devreg/lib_old.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/lib_old.styl -------------------------------------------------------------------------------- /media/css/devreg/listing.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/listing.styl -------------------------------------------------------------------------------- /media/css/devreg/login.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/login.styl -------------------------------------------------------------------------------- /media/css/devreg/manage.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/manage.styl -------------------------------------------------------------------------------- /media/css/devreg/manifest.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/manifest.styl -------------------------------------------------------------------------------- /media/css/devreg/media.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/media.styl -------------------------------------------------------------------------------- /media/css/devreg/operators.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/operators.styl -------------------------------------------------------------------------------- /media/css/devreg/overlay.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/overlay.styl -------------------------------------------------------------------------------- /media/css/devreg/payments.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/payments.styl -------------------------------------------------------------------------------- /media/css/devreg/popups.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/popups.styl -------------------------------------------------------------------------------- /media/css/devreg/prose.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/prose.styl -------------------------------------------------------------------------------- /media/css/devreg/reset.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/reset.styl -------------------------------------------------------------------------------- /media/css/devreg/reviewers.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/reviewers.styl -------------------------------------------------------------------------------- /media/css/devreg/status.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/status.styl -------------------------------------------------------------------------------- /media/css/devreg/submit.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/submit.styl -------------------------------------------------------------------------------- /media/css/devreg/tabs.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/tabs.styl -------------------------------------------------------------------------------- /media/css/devreg/tooltips.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/devreg/tooltips.styl -------------------------------------------------------------------------------- /media/css/gaia/action_menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/gaia/action_menu.css -------------------------------------------------------------------------------- /media/css/gaia/switches.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/gaia/switches.css -------------------------------------------------------------------------------- /media/css/legacy/ie9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/legacy/ie9.css -------------------------------------------------------------------------------- /media/css/legacy/nojs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/legacy/nojs.css -------------------------------------------------------------------------------- /media/css/mkt/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/css/zamboni/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/css/zamboni/admin.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/css/zamboni/editors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/zamboni/editors.styl -------------------------------------------------------------------------------- /media/css/zamboni/files.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/zamboni/files.css -------------------------------------------------------------------------------- /media/css/zamboni/mkt-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/zamboni/mkt-admin.css -------------------------------------------------------------------------------- /media/css/zamboni/nick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/zamboni/nick.css -------------------------------------------------------------------------------- /media/css/zamboni/zamboni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/css/zamboni/zamboni.css -------------------------------------------------------------------------------- /media/docs/privacy/af.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/af.html -------------------------------------------------------------------------------- /media/docs/privacy/ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/ar.html -------------------------------------------------------------------------------- /media/docs/privacy/bn-BD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/bn-BD.html -------------------------------------------------------------------------------- /media/docs/privacy/bn-IN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/bn-IN.html -------------------------------------------------------------------------------- /media/docs/privacy/cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/cs.html -------------------------------------------------------------------------------- /media/docs/privacy/de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/de.html -------------------------------------------------------------------------------- /media/docs/privacy/el.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/el.html -------------------------------------------------------------------------------- /media/docs/privacy/en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/en-US.html -------------------------------------------------------------------------------- /media/docs/privacy/es-ES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/es-ES.html -------------------------------------------------------------------------------- /media/docs/privacy/es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/es.html -------------------------------------------------------------------------------- /media/docs/privacy/fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/fr.html -------------------------------------------------------------------------------- /media/docs/privacy/hi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/hi.html -------------------------------------------------------------------------------- /media/docs/privacy/hr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/hr.html -------------------------------------------------------------------------------- /media/docs/privacy/hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/hu.html -------------------------------------------------------------------------------- /media/docs/privacy/it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/it.html -------------------------------------------------------------------------------- /media/docs/privacy/ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/ja.html -------------------------------------------------------------------------------- /media/docs/privacy/mk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/mk.html -------------------------------------------------------------------------------- /media/docs/privacy/pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/pl.html -------------------------------------------------------------------------------- /media/docs/privacy/pt-BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/pt-BR.html -------------------------------------------------------------------------------- /media/docs/privacy/ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/ro.html -------------------------------------------------------------------------------- /media/docs/privacy/ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/ru.html -------------------------------------------------------------------------------- /media/docs/privacy/sr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/sr.html -------------------------------------------------------------------------------- /media/docs/privacy/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/sw.html -------------------------------------------------------------------------------- /media/docs/privacy/ta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/ta.html -------------------------------------------------------------------------------- /media/docs/privacy/tl-PH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/tl-PH.html -------------------------------------------------------------------------------- /media/docs/privacy/xh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/xh.html -------------------------------------------------------------------------------- /media/docs/privacy/zh-CN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/zh-CN.html -------------------------------------------------------------------------------- /media/docs/privacy/zu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/privacy/zu.html -------------------------------------------------------------------------------- /media/docs/terms/af.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/af.html -------------------------------------------------------------------------------- /media/docs/terms/ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/ar.html -------------------------------------------------------------------------------- /media/docs/terms/bn-BD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/bn-BD.html -------------------------------------------------------------------------------- /media/docs/terms/bn-IN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/bn-IN.html -------------------------------------------------------------------------------- /media/docs/terms/cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/cs.html -------------------------------------------------------------------------------- /media/docs/terms/de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/de.html -------------------------------------------------------------------------------- /media/docs/terms/el.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/el.html -------------------------------------------------------------------------------- /media/docs/terms/en-US.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/en-US.html -------------------------------------------------------------------------------- /media/docs/terms/es-ES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/es-ES.html -------------------------------------------------------------------------------- /media/docs/terms/es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/es.html -------------------------------------------------------------------------------- /media/docs/terms/fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/fr.html -------------------------------------------------------------------------------- /media/docs/terms/hi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/hi.html -------------------------------------------------------------------------------- /media/docs/terms/hr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/hr.html -------------------------------------------------------------------------------- /media/docs/terms/hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/hu.html -------------------------------------------------------------------------------- /media/docs/terms/it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/it.html -------------------------------------------------------------------------------- /media/docs/terms/ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/ja.html -------------------------------------------------------------------------------- /media/docs/terms/mk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/mk.html -------------------------------------------------------------------------------- /media/docs/terms/pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/pl.html -------------------------------------------------------------------------------- /media/docs/terms/pt-BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/pt-BR.html -------------------------------------------------------------------------------- /media/docs/terms/ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/ro.html -------------------------------------------------------------------------------- /media/docs/terms/ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/ru.html -------------------------------------------------------------------------------- /media/docs/terms/sr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/sr.html -------------------------------------------------------------------------------- /media/docs/terms/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/sw.html -------------------------------------------------------------------------------- /media/docs/terms/ta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/ta.html -------------------------------------------------------------------------------- /media/docs/terms/tl-PH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/tl-PH.html -------------------------------------------------------------------------------- /media/docs/terms/xh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/xh.html -------------------------------------------------------------------------------- /media/docs/terms/zh-CN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/zh-CN.html -------------------------------------------------------------------------------- /media/docs/terms/zu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/docs/terms/zu.html -------------------------------------------------------------------------------- /media/external/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/img/admin/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/default-bg.gif -------------------------------------------------------------------------------- /media/img/admin/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/icon-no.gif -------------------------------------------------------------------------------- /media/img/admin/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/icon-yes.gif -------------------------------------------------------------------------------- /media/img/admin/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/icon_alert.gif -------------------------------------------------------------------------------- /media/img/admin/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/icon_error.gif -------------------------------------------------------------------------------- /media/img/admin/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/nav-bg.gif -------------------------------------------------------------------------------- /media/img/admin/tool-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/tool-left.gif -------------------------------------------------------------------------------- /media/img/admin/tool-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/tool-right.gif -------------------------------------------------------------------------------- /media/img/admin/tooltag-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/admin/tooltag-add.gif -------------------------------------------------------------------------------- /media/img/developers/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/developers/add.png -------------------------------------------------------------------------------- /media/img/developers/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/developers/folder.png -------------------------------------------------------------------------------- /media/img/ecosystem/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/ecosystem/favicon.ico -------------------------------------------------------------------------------- /media/img/ecosystem/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/ecosystem/logo.png -------------------------------------------------------------------------------- /media/img/ecosystem/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/ecosystem/loop.png -------------------------------------------------------------------------------- /media/img/ecosystem/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/ecosystem/rocket.png -------------------------------------------------------------------------------- /media/img/ecosystem/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/ecosystem/submit.png -------------------------------------------------------------------------------- /media/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/favicon.ico -------------------------------------------------------------------------------- /media/img/hub/default-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/hub/default-128.png -------------------------------------------------------------------------------- /media/img/hub/default-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/hub/default-32.png -------------------------------------------------------------------------------- /media/img/hub/default-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/hub/default-48.png -------------------------------------------------------------------------------- /media/img/hub/default-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/hub/default-64.png -------------------------------------------------------------------------------- /media/img/icons/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/icons/minus.gif -------------------------------------------------------------------------------- /media/img/icons/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/icons/plus.gif -------------------------------------------------------------------------------- /media/img/impala/warning-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/impala/warning-bg.png -------------------------------------------------------------------------------- /media/img/lightbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/lightbox/loading.gif -------------------------------------------------------------------------------- /media/img/mkt/btn_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/btn_spinner.png -------------------------------------------------------------------------------- /media/img/mkt/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/close.png -------------------------------------------------------------------------------- /media/img/mkt/device-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/device-icons.png -------------------------------------------------------------------------------- /media/img/mkt/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/divider.png -------------------------------------------------------------------------------- /media/img/mkt/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/grain.png -------------------------------------------------------------------------------- /media/img/mkt/icons/nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/icons/nightly.png -------------------------------------------------------------------------------- /media/img/mkt/icons/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/icons/rocket.png -------------------------------------------------------------------------------- /media/img/mkt/loading-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/loading-16.png -------------------------------------------------------------------------------- /media/img/mkt/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logo.png -------------------------------------------------------------------------------- /media/img/mkt/logos/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logos/128.png -------------------------------------------------------------------------------- /media/img/mkt/logos/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logos/32.png -------------------------------------------------------------------------------- /media/img/mkt/logos/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logos/64.png -------------------------------------------------------------------------------- /media/img/mkt/logos/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logos/dino.png -------------------------------------------------------------------------------- /media/img/mkt/logos/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logos/large.png -------------------------------------------------------------------------------- /media/img/mkt/logos/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/mkt/logos/small.png -------------------------------------------------------------------------------- /media/img/sprites/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/sprites/README.txt -------------------------------------------------------------------------------- /media/img/zamboni/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/img/zamboni/loading.gif -------------------------------------------------------------------------------- /media/js/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/js/common/formsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/common/formsets.js -------------------------------------------------------------------------------- /media/js/common/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/common/keys.js -------------------------------------------------------------------------------- /media/js/common/upload-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/common/upload-base.js -------------------------------------------------------------------------------- /media/js/common/upload-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/common/upload-image.js -------------------------------------------------------------------------------- /media/js/devreg/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/apps.js -------------------------------------------------------------------------------- /media/js/devreg/capabilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/capabilities.js -------------------------------------------------------------------------------- /media/js/devreg/devhub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/devhub.js -------------------------------------------------------------------------------- /media/js/devreg/devreg_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/devreg_init.js -------------------------------------------------------------------------------- /media/js/devreg/ecosystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/ecosystem.js -------------------------------------------------------------------------------- /media/js/devreg/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/edit.js -------------------------------------------------------------------------------- /media/js/devreg/formdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/formdata.js -------------------------------------------------------------------------------- /media/js/devreg/gettext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/gettext.js -------------------------------------------------------------------------------- /media/js/devreg/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/init.js -------------------------------------------------------------------------------- /media/js/devreg/l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/l10n.js -------------------------------------------------------------------------------- /media/js/devreg/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/login.js -------------------------------------------------------------------------------- /media/js/devreg/lookup-tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/lookup-tool.js -------------------------------------------------------------------------------- /media/js/devreg/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/manifest.js -------------------------------------------------------------------------------- /media/js/devreg/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/modal.js -------------------------------------------------------------------------------- /media/js/devreg/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/notification.js -------------------------------------------------------------------------------- /media/js/devreg/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/overlay.js -------------------------------------------------------------------------------- /media/js/devreg/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/payments.js -------------------------------------------------------------------------------- /media/js/devreg/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/popup.js -------------------------------------------------------------------------------- /media/js/devreg/refunds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/refunds.js -------------------------------------------------------------------------------- /media/js/devreg/slugify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/slugify.js -------------------------------------------------------------------------------- /media/js/devreg/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/storage.js -------------------------------------------------------------------------------- /media/js/devreg/submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/submit.js -------------------------------------------------------------------------------- /media/js/devreg/suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/suggestions.js -------------------------------------------------------------------------------- /media/js/devreg/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/tabs.js -------------------------------------------------------------------------------- /media/js/devreg/test-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/test-install.js -------------------------------------------------------------------------------- /media/js/devreg/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/tooltip.js -------------------------------------------------------------------------------- /media/js/devreg/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/tracking.js -------------------------------------------------------------------------------- /media/js/devreg/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/utils.js -------------------------------------------------------------------------------- /media/js/devreg/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/devreg/validator.js -------------------------------------------------------------------------------- /media/js/impala/ajaxcache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/impala/ajaxcache.js -------------------------------------------------------------------------------- /media/js/impala/pjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/impala/pjax.js -------------------------------------------------------------------------------- /media/js/impala/preloaded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/impala/preloaded.js -------------------------------------------------------------------------------- /media/js/impala/serializers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/impala/serializers.js -------------------------------------------------------------------------------- /media/js/lib/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/amd.js -------------------------------------------------------------------------------- /media/js/lib/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/csrf.js -------------------------------------------------------------------------------- /media/js/lib/es5-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/es5-shim.min.js -------------------------------------------------------------------------------- /media/js/lib/flight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/flight.min.js -------------------------------------------------------------------------------- /media/js/lib/flipsnap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/flipsnap.js -------------------------------------------------------------------------------- /media/js/lib/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/format.js -------------------------------------------------------------------------------- /media/js/lib/iepp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/iepp.min.js -------------------------------------------------------------------------------- /media/js/lib/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/jquery-1.11.1.js -------------------------------------------------------------------------------- /media/js/lib/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/jquery-1.9.1.js -------------------------------------------------------------------------------- /media/js/lib/jquery-ui/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/jquery-ui/README -------------------------------------------------------------------------------- /media/js/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/jquery.cookie.js -------------------------------------------------------------------------------- /media/js/lib/stick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/stick.js -------------------------------------------------------------------------------- /media/js/lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/lib/underscore.js -------------------------------------------------------------------------------- /media/js/mkt/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/js/zamboni/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/js/zamboni/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/zamboni/files.js -------------------------------------------------------------------------------- /media/js/zamboni/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/zamboni/storage.js -------------------------------------------------------------------------------- /media/js/zamboni/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/media/js/zamboni/unicode.js -------------------------------------------------------------------------------- /mkt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/__init__.py -------------------------------------------------------------------------------- /mkt/abuse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/abuse/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/abuse/forms.py -------------------------------------------------------------------------------- /mkt/abuse/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/abuse/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/abuse/models.py -------------------------------------------------------------------------------- /mkt/abuse/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/abuse/serializers.py -------------------------------------------------------------------------------- /mkt/abuse/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/abuse/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/abuse/urls.py -------------------------------------------------------------------------------- /mkt/abuse/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/abuse/views.py -------------------------------------------------------------------------------- /mkt/access/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/access/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/access/acl.py -------------------------------------------------------------------------------- /mkt/access/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/access/helpers.py -------------------------------------------------------------------------------- /mkt/access/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/access/middleware.py -------------------------------------------------------------------------------- /mkt/access/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/access/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/access/models.py -------------------------------------------------------------------------------- /mkt/access/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/access/tests.py -------------------------------------------------------------------------------- /mkt/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/account/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/account/helpers.py -------------------------------------------------------------------------------- /mkt/account/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/account/serializers.py -------------------------------------------------------------------------------- /mkt/account/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/account/tests/sample.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/account/tests/sample.key -------------------------------------------------------------------------------- /mkt/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/account/urls.py -------------------------------------------------------------------------------- /mkt/account/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/account/utils.py -------------------------------------------------------------------------------- /mkt/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/account/views.py -------------------------------------------------------------------------------- /mkt/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/api/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/authentication.py -------------------------------------------------------------------------------- /mkt/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/base.py -------------------------------------------------------------------------------- /mkt/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/exceptions.py -------------------------------------------------------------------------------- /mkt/api/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/fields.py -------------------------------------------------------------------------------- /mkt/api/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/filters.py -------------------------------------------------------------------------------- /mkt/api/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/forms.py -------------------------------------------------------------------------------- /mkt/api/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/http.py -------------------------------------------------------------------------------- /mkt/api/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/middleware.py -------------------------------------------------------------------------------- /mkt/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/models.py -------------------------------------------------------------------------------- /mkt/api/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/oauth.py -------------------------------------------------------------------------------- /mkt/api/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/paginator.py -------------------------------------------------------------------------------- /mkt/api/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/patch.py -------------------------------------------------------------------------------- /mkt/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/permissions.py -------------------------------------------------------------------------------- /mkt/api/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/renderers.py -------------------------------------------------------------------------------- /mkt/api/sample-aes.key: -------------------------------------------------------------------------------- 1 | this is a sample, don't use for anything serious 2 | -------------------------------------------------------------------------------- /mkt/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/serializers.py -------------------------------------------------------------------------------- /mkt/api/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/__init__.py -------------------------------------------------------------------------------- /mkt/api/tests/nose.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/nose.cfg -------------------------------------------------------------------------------- /mkt/api/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/test_base.py -------------------------------------------------------------------------------- /mkt/api/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/test_fields.py -------------------------------------------------------------------------------- /mkt/api/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/test_forms.py -------------------------------------------------------------------------------- /mkt/api/tests/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/test_oauth.py -------------------------------------------------------------------------------- /mkt/api/tests/test_throttle.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/api/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/test_urls.py -------------------------------------------------------------------------------- /mkt/api/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/tests/test_views.py -------------------------------------------------------------------------------- /mkt/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/urls.py -------------------------------------------------------------------------------- /mkt/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/api/v1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/v1/urls.py -------------------------------------------------------------------------------- /mkt/api/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/api/v2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/v2/urls.py -------------------------------------------------------------------------------- /mkt/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/api/views.py -------------------------------------------------------------------------------- /mkt/asset_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/asset_bundles.py -------------------------------------------------------------------------------- /mkt/carriers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/carriers/__init__.py -------------------------------------------------------------------------------- /mkt/carriers/carriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/carriers/carriers.py -------------------------------------------------------------------------------- /mkt/comm/__init__.py: -------------------------------------------------------------------------------- 1 | from mkt.constants.comm import U_NOTE_TYPES # noqa 2 | -------------------------------------------------------------------------------- /mkt/comm/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/filters.py -------------------------------------------------------------------------------- /mkt/comm/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/forms.py -------------------------------------------------------------------------------- /mkt/comm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/comm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/models.py -------------------------------------------------------------------------------- /mkt/comm/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/permissions.py -------------------------------------------------------------------------------- /mkt/comm/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/serializers.py -------------------------------------------------------------------------------- /mkt/comm/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/tasks.py -------------------------------------------------------------------------------- /mkt/comm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/comm/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/tests/test_forms.py -------------------------------------------------------------------------------- /mkt/comm/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/tests/test_views.py -------------------------------------------------------------------------------- /mkt/comm/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/urls.py -------------------------------------------------------------------------------- /mkt/comm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/utils.py -------------------------------------------------------------------------------- /mkt/comm/utils_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/utils_mail.py -------------------------------------------------------------------------------- /mkt/comm/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/comm/views.py -------------------------------------------------------------------------------- /mkt/commonplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/commonplace/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/commonplace/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/commonplace/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/commonplace/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/commonplace/models.py -------------------------------------------------------------------------------- /mkt/commonplace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/commonplace/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/commonplace/urls.py -------------------------------------------------------------------------------- /mkt/commonplace/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/commonplace/views.py -------------------------------------------------------------------------------- /mkt/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/__init__.py -------------------------------------------------------------------------------- /mkt/constants/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/apps.py -------------------------------------------------------------------------------- /mkt/constants/bango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/bango.py -------------------------------------------------------------------------------- /mkt/constants/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/base.py -------------------------------------------------------------------------------- /mkt/constants/carriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/carriers.py -------------------------------------------------------------------------------- /mkt/constants/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/categories.py -------------------------------------------------------------------------------- /mkt/constants/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/comm.py -------------------------------------------------------------------------------- /mkt/constants/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/features.py -------------------------------------------------------------------------------- /mkt/constants/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/lookup.py -------------------------------------------------------------------------------- /mkt/constants/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/payments.py -------------------------------------------------------------------------------- /mkt/constants/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/platforms.py -------------------------------------------------------------------------------- /mkt/constants/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/regions.py -------------------------------------------------------------------------------- /mkt/constants/reviewers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/reviewers.py -------------------------------------------------------------------------------- /mkt/constants/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/search.py -------------------------------------------------------------------------------- /mkt/constants/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/constants/submit.py -------------------------------------------------------------------------------- /mkt/constants/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/detail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/detail/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/detail/helpers.py -------------------------------------------------------------------------------- /mkt/detail/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/detail/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/detail/urls.py -------------------------------------------------------------------------------- /mkt/detail/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/detail/views.py -------------------------------------------------------------------------------- /mkt/developers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/developers/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/cron.py -------------------------------------------------------------------------------- /mkt/developers/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/decorators.py -------------------------------------------------------------------------------- /mkt/developers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/forms.py -------------------------------------------------------------------------------- /mkt/developers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/helpers.py -------------------------------------------------------------------------------- /mkt/developers/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/developers/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/developers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/developers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/models.py -------------------------------------------------------------------------------- /mkt/developers/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/providers.py -------------------------------------------------------------------------------- /mkt/developers/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/signals.py -------------------------------------------------------------------------------- /mkt/developers/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/tasks.py -------------------------------------------------------------------------------- /mkt/developers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/developers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/urls.py -------------------------------------------------------------------------------- /mkt/developers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/utils.py -------------------------------------------------------------------------------- /mkt/developers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/developers/views.py -------------------------------------------------------------------------------- /mkt/downloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/downloads/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/downloads/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/downloads/urls.py -------------------------------------------------------------------------------- /mkt/downloads/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/downloads/views.py -------------------------------------------------------------------------------- /mkt/ecosystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/ecosystem/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/ecosystem/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/ecosystem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ecosystem/urls.py -------------------------------------------------------------------------------- /mkt/ecosystem/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ecosystem/views.py -------------------------------------------------------------------------------- /mkt/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/extensions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/forms.py -------------------------------------------------------------------------------- /mkt/extensions/indexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/indexers.py -------------------------------------------------------------------------------- /mkt/extensions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/extensions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/models.py -------------------------------------------------------------------------------- /mkt/extensions/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/tasks.py -------------------------------------------------------------------------------- /mkt/extensions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/extensions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/urls.py -------------------------------------------------------------------------------- /mkt/extensions/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/validation.py -------------------------------------------------------------------------------- /mkt/extensions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/extensions/views.py -------------------------------------------------------------------------------- /mkt/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/features/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/features/serializers.py -------------------------------------------------------------------------------- /mkt/features/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/features/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/features/utils.py -------------------------------------------------------------------------------- /mkt/features/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/features/views.py -------------------------------------------------------------------------------- /mkt/feed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/feed/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/constants.py -------------------------------------------------------------------------------- /mkt/feed/fakedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/fakedata.py -------------------------------------------------------------------------------- /mkt/feed/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/fields.py -------------------------------------------------------------------------------- /mkt/feed/indexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/indexers.py -------------------------------------------------------------------------------- /mkt/feed/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/feed/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/feed/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/feed/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/models.py -------------------------------------------------------------------------------- /mkt/feed/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/permissions.py -------------------------------------------------------------------------------- /mkt/feed/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/serializers.py -------------------------------------------------------------------------------- /mkt/feed/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/tasks.py -------------------------------------------------------------------------------- /mkt/feed/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/feed/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/tests/test_views.py -------------------------------------------------------------------------------- /mkt/feed/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/feed/views.py -------------------------------------------------------------------------------- /mkt/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/files/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/admin.py -------------------------------------------------------------------------------- /mkt/files/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/cron.py -------------------------------------------------------------------------------- /mkt/files/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/decorators.py -------------------------------------------------------------------------------- /mkt/files/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/forms.py -------------------------------------------------------------------------------- /mkt/files/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/helpers.py -------------------------------------------------------------------------------- /mkt/files/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/files/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/models.py -------------------------------------------------------------------------------- /mkt/files/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/tasks.py -------------------------------------------------------------------------------- /mkt/files/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/files/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/urls.py -------------------------------------------------------------------------------- /mkt/files/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/utils.py -------------------------------------------------------------------------------- /mkt/files/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/files/views.py -------------------------------------------------------------------------------- /mkt/fireplace/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /mkt/fireplace/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/fireplace/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/fireplace/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/fireplace/serializers.py -------------------------------------------------------------------------------- /mkt/fireplace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/fireplace/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/fireplace/urls.py -------------------------------------------------------------------------------- /mkt/fireplace/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/fireplace/views.py -------------------------------------------------------------------------------- /mkt/inapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/inapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/inapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/inapp/models.py -------------------------------------------------------------------------------- /mkt/inapp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/inapp/serializers.py -------------------------------------------------------------------------------- /mkt/inapp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/inapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/inapp/views.py -------------------------------------------------------------------------------- /mkt/installs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/installs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/installs/forms.py -------------------------------------------------------------------------------- /mkt/installs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/installs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/installs/urls.py -------------------------------------------------------------------------------- /mkt/installs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/installs/utils.py -------------------------------------------------------------------------------- /mkt/installs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/installs/views.py -------------------------------------------------------------------------------- /mkt/langpacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/langpacks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/langpacks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/langpacks/models.py -------------------------------------------------------------------------------- /mkt/langpacks/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/langpacks/serializers.py -------------------------------------------------------------------------------- /mkt/langpacks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/langpacks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/langpacks/utils.py -------------------------------------------------------------------------------- /mkt/langpacks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/langpacks/views.py -------------------------------------------------------------------------------- /mkt/latecustomization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/latecustomization/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/latecustomization/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/lookup/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/lookup/forms.py -------------------------------------------------------------------------------- /mkt/lookup/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/lookup/helpers.py -------------------------------------------------------------------------------- /mkt/lookup/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/lookup/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/lookup/serializers.py -------------------------------------------------------------------------------- /mkt/lookup/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/lookup/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/lookup/urls.py -------------------------------------------------------------------------------- /mkt/lookup/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/lookup/views.py -------------------------------------------------------------------------------- /mkt/monolith/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/monolith/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/monolith/forms.py -------------------------------------------------------------------------------- /mkt/monolith/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/monolith/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/monolith/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/monolith/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/monolith/models.py -------------------------------------------------------------------------------- /mkt/monolith/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/monolith/serializers.py -------------------------------------------------------------------------------- /mkt/monolith/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/monolith/tests.py -------------------------------------------------------------------------------- /mkt/monolith/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/monolith/urls.py -------------------------------------------------------------------------------- /mkt/monolith/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/monolith/views.py -------------------------------------------------------------------------------- /mkt/operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/operators/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/operators/helpers.py -------------------------------------------------------------------------------- /mkt/operators/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/operators/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/operators/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/operators/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/operators/models.py -------------------------------------------------------------------------------- /mkt/operators/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/operators/permissions.py -------------------------------------------------------------------------------- /mkt/operators/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/operators/serializers.py -------------------------------------------------------------------------------- /mkt/operators/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/operators/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/operators/views.py -------------------------------------------------------------------------------- /mkt/prices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/prices/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/prices/admin.py -------------------------------------------------------------------------------- /mkt/prices/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/prices/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/prices/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/prices/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/prices/models.py -------------------------------------------------------------------------------- /mkt/prices/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/prices/serializers.py -------------------------------------------------------------------------------- /mkt/prices/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/prices/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/prices/utils.py -------------------------------------------------------------------------------- /mkt/prices/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/prices/views.py -------------------------------------------------------------------------------- /mkt/purchase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/purchase/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/purchase/decorators.py -------------------------------------------------------------------------------- /mkt/purchase/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/purchase/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/purchase/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/purchase/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/purchase/models.py -------------------------------------------------------------------------------- /mkt/purchase/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/purchase/tasks.py -------------------------------------------------------------------------------- /mkt/purchase/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/purchase/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/purchase/tests/utils.py -------------------------------------------------------------------------------- /mkt/purchase/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/purchase/urls.py -------------------------------------------------------------------------------- /mkt/purchase/webpay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/purchase/webpay.py -------------------------------------------------------------------------------- /mkt/ratings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/__init__.py -------------------------------------------------------------------------------- /mkt/ratings/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/cron.py -------------------------------------------------------------------------------- /mkt/ratings/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/forms.py -------------------------------------------------------------------------------- /mkt/ratings/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/helpers.py -------------------------------------------------------------------------------- /mkt/ratings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/ratings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/models.py -------------------------------------------------------------------------------- /mkt/ratings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/serializers.py -------------------------------------------------------------------------------- /mkt/ratings/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/tasks.py -------------------------------------------------------------------------------- /mkt/ratings/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/ratings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/urls.py -------------------------------------------------------------------------------- /mkt/ratings/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/utils.py -------------------------------------------------------------------------------- /mkt/ratings/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/validators.py -------------------------------------------------------------------------------- /mkt/ratings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/ratings/views.py -------------------------------------------------------------------------------- /mkt/receipts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/receipts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/receipts/forms.py -------------------------------------------------------------------------------- /mkt/receipts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/receipts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/receipts/urls.py -------------------------------------------------------------------------------- /mkt/receipts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/receipts/utils.py -------------------------------------------------------------------------------- /mkt/receipts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/receipts/views.py -------------------------------------------------------------------------------- /mkt/recommendations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/recommendations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/recommendations/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/recommendations/views.py -------------------------------------------------------------------------------- /mkt/regions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/regions/__init__.py -------------------------------------------------------------------------------- /mkt/regions/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/regions/middleware.py -------------------------------------------------------------------------------- /mkt/regions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/regions/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/regions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/regions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/regions/utils.py -------------------------------------------------------------------------------- /mkt/reviewers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/reviewers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/admin.py -------------------------------------------------------------------------------- /mkt/reviewers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/forms.py -------------------------------------------------------------------------------- /mkt/reviewers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/helpers.py -------------------------------------------------------------------------------- /mkt/reviewers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/reviewers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/models.py -------------------------------------------------------------------------------- /mkt/reviewers/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/serializers.py -------------------------------------------------------------------------------- /mkt/reviewers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/reviewers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/urls.py -------------------------------------------------------------------------------- /mkt/reviewers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/utils.py -------------------------------------------------------------------------------- /mkt/reviewers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/reviewers/views.py -------------------------------------------------------------------------------- /mkt/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/search/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/filters.py -------------------------------------------------------------------------------- /mkt/search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/forms.py -------------------------------------------------------------------------------- /mkt/search/indexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/indexers.py -------------------------------------------------------------------------------- /mkt/search/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/middleware.py -------------------------------------------------------------------------------- /mkt/search/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/serializers.py -------------------------------------------------------------------------------- /mkt/search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/utils.py -------------------------------------------------------------------------------- /mkt/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/search/views.py -------------------------------------------------------------------------------- /mkt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/settings.py -------------------------------------------------------------------------------- /mkt/site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/site/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/decorators.py -------------------------------------------------------------------------------- /mkt/site/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/fields.py -------------------------------------------------------------------------------- /mkt/site/fixtures/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/fixtures/init.json -------------------------------------------------------------------------------- /mkt/site/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/forms.py -------------------------------------------------------------------------------- /mkt/site/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/helpers.py -------------------------------------------------------------------------------- /mkt/site/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/log.py -------------------------------------------------------------------------------- /mkt/site/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/mail.py -------------------------------------------------------------------------------- /mkt/site/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/site/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/site/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/middleware.py -------------------------------------------------------------------------------- /mkt/site/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/site/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/models.py -------------------------------------------------------------------------------- /mkt/site/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/monitors.py -------------------------------------------------------------------------------- /mkt/site/storage_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/storage_utils.py -------------------------------------------------------------------------------- /mkt/site/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/tasks.py -------------------------------------------------------------------------------- /mkt/site/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/tests/__init__.py -------------------------------------------------------------------------------- /mkt/site/tests/test_jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/tests/test_jinja.py -------------------------------------------------------------------------------- /mkt/site/tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/tests/test_log.py -------------------------------------------------------------------------------- /mkt/site/tests/test_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/tests/test_mail.py -------------------------------------------------------------------------------- /mkt/site/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/tests/test_views.py -------------------------------------------------------------------------------- /mkt/site/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/urls.py -------------------------------------------------------------------------------- /mkt/site/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/utils.py -------------------------------------------------------------------------------- /mkt/site/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/site/views.py -------------------------------------------------------------------------------- /mkt/stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/stats/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/stats/cron.py -------------------------------------------------------------------------------- /mkt/stats/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/stats/forms.py -------------------------------------------------------------------------------- /mkt/stats/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/stats/tasks.py -------------------------------------------------------------------------------- /mkt/stats/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/stats/tests/test_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/stats/tests/test_cron.py -------------------------------------------------------------------------------- /mkt/stats/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/stats/urls.py -------------------------------------------------------------------------------- /mkt/stats/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/stats/views.py -------------------------------------------------------------------------------- /mkt/submit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/submit/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/decorators.py -------------------------------------------------------------------------------- /mkt/submit/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/forms.py -------------------------------------------------------------------------------- /mkt/submit/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/helpers.py -------------------------------------------------------------------------------- /mkt/submit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/submit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/models.py -------------------------------------------------------------------------------- /mkt/submit/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/serializers.py -------------------------------------------------------------------------------- /mkt/submit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/submit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/urls.py -------------------------------------------------------------------------------- /mkt/submit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/submit/views.py -------------------------------------------------------------------------------- /mkt/tags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/tags/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/tags/admin.py -------------------------------------------------------------------------------- /mkt/tags/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/tags/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/tags/models.py -------------------------------------------------------------------------------- /mkt/tags/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/tags/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/tags/utils.py -------------------------------------------------------------------------------- /mkt/translations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/translations/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/fields.py -------------------------------------------------------------------------------- /mkt/translations/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/forms.py -------------------------------------------------------------------------------- /mkt/translations/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/helpers.py -------------------------------------------------------------------------------- /mkt/translations/hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/hold.py -------------------------------------------------------------------------------- /mkt/translations/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/translations/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/translations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/models.py -------------------------------------------------------------------------------- /mkt/translations/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/query.py -------------------------------------------------------------------------------- /mkt/translations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/translations/tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/translations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/utils.py -------------------------------------------------------------------------------- /mkt/translations/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/translations/widgets.py -------------------------------------------------------------------------------- /mkt/tvplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/tvplace/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/tvplace/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/tvplace/serializers.py -------------------------------------------------------------------------------- /mkt/tvplace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/tvplace/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/tvplace/urls.py -------------------------------------------------------------------------------- /mkt/tvplace/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/tvplace/views.py -------------------------------------------------------------------------------- /mkt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/urls.py -------------------------------------------------------------------------------- /mkt/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/users/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/users/helpers.py -------------------------------------------------------------------------------- /mkt/users/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/users/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/users/models.py -------------------------------------------------------------------------------- /mkt/users/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/users/notifications.py -------------------------------------------------------------------------------- /mkt/users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/users/signals.py -------------------------------------------------------------------------------- /mkt/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/users/utils.py -------------------------------------------------------------------------------- /mkt/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/users/views.py -------------------------------------------------------------------------------- /mkt/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/versions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/versions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/versions/models.py -------------------------------------------------------------------------------- /mkt/versions/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/versions/serializers.py -------------------------------------------------------------------------------- /mkt/versions/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/versions/tasks.py -------------------------------------------------------------------------------- /mkt/versions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/versions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/versions/urls.py -------------------------------------------------------------------------------- /mkt/versions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/versions/views.py -------------------------------------------------------------------------------- /mkt/webapps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webapps/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/admin.py -------------------------------------------------------------------------------- /mkt/webapps/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/cron.py -------------------------------------------------------------------------------- /mkt/webapps/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/decorators.py -------------------------------------------------------------------------------- /mkt/webapps/fakedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/fakedata.py -------------------------------------------------------------------------------- /mkt/webapps/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/helpers.py -------------------------------------------------------------------------------- /mkt/webapps/indexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/indexers.py -------------------------------------------------------------------------------- /mkt/webapps/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webapps/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webapps/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webapps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/models.py -------------------------------------------------------------------------------- /mkt/webapps/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/serializers.py -------------------------------------------------------------------------------- /mkt/webapps/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/signals.py -------------------------------------------------------------------------------- /mkt/webapps/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/tasks.py -------------------------------------------------------------------------------- /mkt/webapps/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webapps/tests/sample.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/tests/sample.key -------------------------------------------------------------------------------- /mkt/webapps/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/utils.py -------------------------------------------------------------------------------- /mkt/webapps/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webapps/views.py -------------------------------------------------------------------------------- /mkt/webpay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webpay/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/forms.py -------------------------------------------------------------------------------- /mkt/webpay/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webpay/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/models.py -------------------------------------------------------------------------------- /mkt/webpay/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/serializers.py -------------------------------------------------------------------------------- /mkt/webpay/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/tasks.py -------------------------------------------------------------------------------- /mkt/webpay/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/webpay/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/urls.py -------------------------------------------------------------------------------- /mkt/webpay/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/utils.py -------------------------------------------------------------------------------- /mkt/webpay/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/views.py -------------------------------------------------------------------------------- /mkt/webpay/webpay_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/webpay/webpay_jwt.py -------------------------------------------------------------------------------- /mkt/webroot/admin-media: -------------------------------------------------------------------------------- 1 | ../../vendor/src/django/django/contrib/admin/media -------------------------------------------------------------------------------- /mkt/webroot/favicon.ico: -------------------------------------------------------------------------------- 1 | ../../media/img/favicon.ico -------------------------------------------------------------------------------- /mkt/webroot/media: -------------------------------------------------------------------------------- 1 | ../../media -------------------------------------------------------------------------------- /mkt/websites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/websites/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/decorators.py -------------------------------------------------------------------------------- /mkt/websites/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/forms.py -------------------------------------------------------------------------------- /mkt/websites/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/helpers.py -------------------------------------------------------------------------------- /mkt/websites/indexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/indexers.py -------------------------------------------------------------------------------- /mkt/websites/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/websites/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/websites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/websites/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/models.py -------------------------------------------------------------------------------- /mkt/websites/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/serializers.py -------------------------------------------------------------------------------- /mkt/websites/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/tasks.py -------------------------------------------------------------------------------- /mkt/websites/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/websites/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/utils.py -------------------------------------------------------------------------------- /mkt/websites/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/websites/views.py -------------------------------------------------------------------------------- /mkt/zadmin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/__init__.py -------------------------------------------------------------------------------- /mkt/zadmin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/admin.py -------------------------------------------------------------------------------- /mkt/zadmin/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/decorators.py -------------------------------------------------------------------------------- /mkt/zadmin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/forms.py -------------------------------------------------------------------------------- /mkt/zadmin/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/helpers.py -------------------------------------------------------------------------------- /mkt/zadmin/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/zadmin/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/zadmin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/zadmin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/models.py -------------------------------------------------------------------------------- /mkt/zadmin/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/tasks.py -------------------------------------------------------------------------------- /mkt/zadmin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkt/zadmin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/urls.py -------------------------------------------------------------------------------- /mkt/zadmin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/mkt/zadmin/views.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/package.json -------------------------------------------------------------------------------- /requirements/compiled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/requirements/compiled.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/load.txt: -------------------------------------------------------------------------------- 1 | django-fakeauth==0.2 2 | -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/requirements/prod.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/checkdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/checkdev.py -------------------------------------------------------------------------------- /scripts/crontab/crontab.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/crontab/crontab.tpl -------------------------------------------------------------------------------- /scripts/crontab/gen-cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/crontab/gen-cron.py -------------------------------------------------------------------------------- /scripts/deploy_fake_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/deploy_fake_data.sh -------------------------------------------------------------------------------- /scripts/find_revdeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/find_revdeps.py -------------------------------------------------------------------------------- /scripts/gaia_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/gaia_package.py -------------------------------------------------------------------------------- /scripts/git_hooks/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/git_hooks/post-merge -------------------------------------------------------------------------------- /scripts/newmig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/newmig.sh -------------------------------------------------------------------------------- /scripts/nose.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/nose.cfg -------------------------------------------------------------------------------- /scripts/pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/pylint.sh -------------------------------------------------------------------------------- /scripts/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/pylintrc -------------------------------------------------------------------------------- /scripts/serve_webapps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/serve_webapps.py -------------------------------------------------------------------------------- /scripts/travis_es.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/scripts/travis_es.sh -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/services/utils.py -------------------------------------------------------------------------------- /services/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/services/verify.py -------------------------------------------------------------------------------- /services/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/settings_test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/setup.cfg -------------------------------------------------------------------------------- /sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/sites/__init__.py -------------------------------------------------------------------------------- /sites/dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/dev/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/sites/dev/settings.py -------------------------------------------------------------------------------- /sites/prod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/prod/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/sites/prod/settings.py -------------------------------------------------------------------------------- /sites/stage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/stage/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/sites/stage/settings.py -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/base_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/templates/base_modal.html -------------------------------------------------------------------------------- /templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/templates/messages.html -------------------------------------------------------------------------------- /tmp/addons/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tmp/data/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/file_viewer/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/guarded-addons/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/icon/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/log/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/preview/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/test/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/uploads/collection_icons/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /tmp/uploads/reviewer_attachment/.gitkeep: -------------------------------------------------------------------------------- 1 | stub file to create an empty dir 2 | -------------------------------------------------------------------------------- /wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/mkt.py: -------------------------------------------------------------------------------- 1 | mkt.wsgi -------------------------------------------------------------------------------- /wsgi/mkt.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/zamboni/HEAD/wsgi/mkt.wsgi --------------------------------------------------------------------------------