├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── README.md ├── Vagrantfile ├── bin ├── compile-mo.sh ├── crontab │ ├── crontab.tpl │ └── gen-crons.py ├── jenkins.sh ├── update │ ├── commander_settings.py-dist │ └── deploy.py └── update_site.py ├── contribute.json ├── docs ├── Makefile ├── _build │ ├── .gitignore │ └── .gitkeep ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── build-github.zsh ├── conf.py └── index.rst ├── lib └── product_details_json │ ├── firefox_beta_builds.json │ ├── firefox_history_development_releases.json │ ├── firefox_history_major_releases.json │ ├── firefox_history_stability_releases.json │ ├── firefox_primary_builds.json │ ├── firefox_versions.json │ ├── languages.json │ ├── mobile_details.json │ ├── mobile_history_development_releases.json │ ├── mobile_history_major_releases.json │ ├── mobile_history_stability_releases.json │ ├── thunderbird_beta_builds.json │ ├── thunderbird_history_development_releases.json │ ├── thunderbird_history_major_releases.json │ ├── thunderbird_history_stability_releases.json │ ├── thunderbird_primary_builds.json │ └── thunderbird_versions.json ├── manage.py ├── migrations ├── 01-noop.sql ├── __init__.py └── schematic_settings.py ├── project ├── __init__.py ├── base │ ├── __init__.py │ ├── models.py │ └── templates │ │ ├── .gitignore │ │ ├── 404.html │ │ ├── 500.html │ │ └── example_base.html ├── examples │ ├── __init__.py │ ├── models.py │ ├── static │ │ └── examples │ │ │ ├── css │ │ │ ├── main.css │ │ │ └── mobile.css │ │ │ └── js │ │ │ ├── init.js │ │ │ └── libs │ │ │ ├── jquery-1.10.2.min.js │ │ │ └── jquery.cookie.js │ ├── templates │ │ └── examples │ │ │ ├── bleach.html │ │ │ ├── home.html │ │ │ └── mobile │ │ │ └── home.html │ ├── urls.py │ └── views.py ├── locale │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── messages.po │ └── templates │ │ └── LC_MESSAGES │ │ └── messages.pot ├── settings │ ├── __init__.py │ ├── base.py │ └── local.py-dist └── urls.py ├── puppet ├── files │ └── etc │ │ └── httpd │ │ └── conf.d │ │ └── playdoh.conf └── manifests │ ├── classes │ ├── apache.pp │ ├── custom.pp │ ├── init.pp │ ├── memcached.pp │ ├── mysql.pp │ ├── playdoh.pp │ └── python.pp │ └── vagrant.pp ├── requirements ├── compiled.txt ├── dev.txt └── prod.txt ├── settings_test.py ├── setup.py ├── vagrantconfig.yaml ├── vagrantconfig_local.yaml-dist ├── vendor-local └── vendor.pth └── wsgi └── playdoh.wsgi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/compile-mo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/compile-mo.sh -------------------------------------------------------------------------------- /bin/crontab/crontab.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/crontab/crontab.tpl -------------------------------------------------------------------------------- /bin/crontab/gen-crons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/crontab/gen-crons.py -------------------------------------------------------------------------------- /bin/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/jenkins.sh -------------------------------------------------------------------------------- /bin/update/commander_settings.py-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/update/commander_settings.py-dist -------------------------------------------------------------------------------- /bin/update/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/update/deploy.py -------------------------------------------------------------------------------- /bin/update_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/bin/update_site.py -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/contribute.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /docs/_build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build-github.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/docs/build-github.zsh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/docs/index.rst -------------------------------------------------------------------------------- /lib/product_details_json/firefox_beta_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/firefox_beta_builds.json -------------------------------------------------------------------------------- /lib/product_details_json/firefox_history_development_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/firefox_history_development_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/firefox_history_major_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/firefox_history_major_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/firefox_history_stability_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/firefox_history_stability_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/firefox_primary_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/firefox_primary_builds.json -------------------------------------------------------------------------------- /lib/product_details_json/firefox_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/firefox_versions.json -------------------------------------------------------------------------------- /lib/product_details_json/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/languages.json -------------------------------------------------------------------------------- /lib/product_details_json/mobile_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/mobile_details.json -------------------------------------------------------------------------------- /lib/product_details_json/mobile_history_development_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/mobile_history_development_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/mobile_history_major_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/mobile_history_major_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/mobile_history_stability_releases.json: -------------------------------------------------------------------------------- 1 | {"1.0.1":"2010-04-13"} -------------------------------------------------------------------------------- /lib/product_details_json/thunderbird_beta_builds.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /lib/product_details_json/thunderbird_history_development_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/thunderbird_history_development_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/thunderbird_history_major_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/thunderbird_history_major_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/thunderbird_history_stability_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/thunderbird_history_stability_releases.json -------------------------------------------------------------------------------- /lib/product_details_json/thunderbird_primary_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/thunderbird_primary_builds.json -------------------------------------------------------------------------------- /lib/product_details_json/thunderbird_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/lib/product_details_json/thunderbird_versions.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/01-noop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/migrations/01-noop.sql -------------------------------------------------------------------------------- /migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/schematic_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/migrations/schematic_settings.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/base/__init__.py: -------------------------------------------------------------------------------- 1 | """Application base, containing global templates.""" 2 | -------------------------------------------------------------------------------- /project/base/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/base/templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/base/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/base/templates/404.html -------------------------------------------------------------------------------- /project/base/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/base/templates/500.html -------------------------------------------------------------------------------- /project/base/templates/example_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/base/templates/example_base.html -------------------------------------------------------------------------------- /project/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/examples/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/models.py -------------------------------------------------------------------------------- /project/examples/static/examples/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/static/examples/css/main.css -------------------------------------------------------------------------------- /project/examples/static/examples/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/static/examples/css/mobile.css -------------------------------------------------------------------------------- /project/examples/static/examples/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/static/examples/js/init.js -------------------------------------------------------------------------------- /project/examples/static/examples/js/libs/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/static/examples/js/libs/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /project/examples/static/examples/js/libs/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/static/examples/js/libs/jquery.cookie.js -------------------------------------------------------------------------------- /project/examples/templates/examples/bleach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/templates/examples/bleach.html -------------------------------------------------------------------------------- /project/examples/templates/examples/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/templates/examples/home.html -------------------------------------------------------------------------------- /project/examples/templates/examples/mobile/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/templates/examples/mobile/home.html -------------------------------------------------------------------------------- /project/examples/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/urls.py -------------------------------------------------------------------------------- /project/examples/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/examples/views.py -------------------------------------------------------------------------------- /project/locale/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/locale/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /project/locale/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/locale/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /project/locale/templates/LC_MESSAGES/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/locale/templates/LC_MESSAGES/messages.pot -------------------------------------------------------------------------------- /project/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/settings/__init__.py -------------------------------------------------------------------------------- /project/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/settings/base.py -------------------------------------------------------------------------------- /project/settings/local.py-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/settings/local.py-dist -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/project/urls.py -------------------------------------------------------------------------------- /puppet/files/etc/httpd/conf.d/playdoh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/files/etc/httpd/conf.d/playdoh.conf -------------------------------------------------------------------------------- /puppet/manifests/classes/apache.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/apache.pp -------------------------------------------------------------------------------- /puppet/manifests/classes/custom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/custom.pp -------------------------------------------------------------------------------- /puppet/manifests/classes/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/init.pp -------------------------------------------------------------------------------- /puppet/manifests/classes/memcached.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/memcached.pp -------------------------------------------------------------------------------- /puppet/manifests/classes/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/mysql.pp -------------------------------------------------------------------------------- /puppet/manifests/classes/playdoh.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/playdoh.pp -------------------------------------------------------------------------------- /puppet/manifests/classes/python.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/classes/python.pp -------------------------------------------------------------------------------- /puppet/manifests/vagrant.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/puppet/manifests/vagrant.pp -------------------------------------------------------------------------------- /requirements/compiled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/requirements/compiled.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/requirements/prod.txt -------------------------------------------------------------------------------- /settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/settings_test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/setup.py -------------------------------------------------------------------------------- /vagrantconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/vagrantconfig.yaml -------------------------------------------------------------------------------- /vagrantconfig_local.yaml-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/vagrantconfig_local.yaml-dist -------------------------------------------------------------------------------- /vendor-local/vendor.pth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/playdoh.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/playdoh/HEAD/wsgi/playdoh.wsgi --------------------------------------------------------------------------------