├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── README.md ├── ffdemo ├── __init__.py ├── bin │ └── update_site.py ├── commons │ ├── __init__.py │ ├── context_processors.py │ ├── middleware.py │ └── urlresolvers.py ├── fabfile.py ├── lib │ ├── __init__.py │ ├── product_details_json │ │ ├── .last_update │ │ ├── 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 │ └── shoehorn_l10n │ │ ├── __init__.py │ │ ├── templatetag.py │ │ ├── templatize.py │ │ └── tower_blocktrans.py ├── manage.py ├── markup │ ├── __init__.py │ ├── admin.py │ ├── common.py │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── generate_invites.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_mark_flaggings__add_field_mark_is_approved.py │ │ ├── 0003_auto__add_invitation.py │ │ ├── 0004_auto__chg_field_invitation_used_at.py │ │ ├── 0005_auto__add_field_mark_contributor_locale__add_field_mark_contributor.py │ │ ├── 0006_auto__chg_field_mark_contributor_locale__chg_field_mark_contributor.py │ │ ├── 0007_auto__add_unique_mark_reference.py │ │ ├── 0008_auto__add_unique_invitation_invite_code.py │ │ ├── 0009_auto__chg_field_mark_is_approved.py │ │ ├── 0010_auto__add_field_mark_duplicate_check__add_field_mark_ip_address.py │ │ ├── 0011_auto__chg_field_mark_duplicate_check.py │ │ ├── 0012_auto__chg_field_invitation_id__chg_field_mark_id.py │ │ ├── 0013_auto__chg_field_invitation_id__chg_field_mark_id.py │ │ ├── 0014_add_indexes_to_markup_mark.py │ │ ├── 0015_clean_up_reference_indexes.py │ │ ├── 0016_dump_points_obj_json.py │ │ ├── 0017_auto__add_invitation__del_field_mark_points_obj.py │ │ ├── 0018_hash_ip_decode_existing_simplified_to_json.py │ │ ├── 0019_add_model_MarkSequence.py │ │ ├── 0020_add_index_country_code.py │ │ ├── 0021_fix_mark_reference_collation.py │ │ └── __init__.py │ ├── models.py │ ├── requests.py │ ├── templatetags │ │ ├── __init__.py │ │ └── gml_extras.py │ └── views.py ├── requirements │ ├── compiled.txt │ ├── dev.txt │ └── prod.txt ├── responsys │ ├── README.md │ ├── __init__.py │ ├── forms.py │ ├── responsys.py │ └── views.py ├── settings.py ├── settings_local.py.default ├── static │ ├── Jimfile │ └── assets │ │ ├── css │ │ └── style.css │ │ ├── images │ │ ├── amanda_cox_bio.jpg │ │ ├── arrow_orange.png │ │ ├── arrow_orange2.png │ │ ├── bg.jpg │ │ ├── bigX.svg │ │ ├── browse_marks_lrg_border.png │ │ ├── evan_roth.jpg │ │ ├── evan_roth_bio.jpg │ │ ├── evan_roth_video.jpg │ │ ├── favicon.png │ │ ├── firefox_logo.jpg │ │ ├── footer_bg.gif │ │ ├── golan_levin_bio.jpg │ │ ├── jeff_larson_bio.jpg │ │ ├── large_dash.gif │ │ ├── light_overlay.png │ │ ├── loader_light.gif │ │ ├── loading.gif │ │ ├── location_selector_dropdown_bg.gif │ │ ├── mark_up_logo.jpg │ │ ├── mozilla_tab.png │ │ ├── overlay.png │ │ ├── playback.gif │ │ ├── site_thumb.jpg │ │ ├── ui.png │ │ ├── ui │ │ │ ├── cancel.png │ │ │ ├── collapsed.png │ │ │ ├── collapsible.png │ │ │ ├── coming-soon-tip-bg.png │ │ │ ├── contributor_label.png │ │ │ ├── controls.png │ │ │ ├── facebook.png │ │ │ ├── flag.png │ │ │ ├── gml_download.gif │ │ │ ├── i.png │ │ │ ├── locale_selector_arrow.png │ │ │ ├── location.png │ │ │ ├── location_small.png │ │ │ ├── magnifying.png │ │ │ ├── nextMark.png │ │ │ ├── playback.png │ │ │ ├── prevMark.png │ │ │ ├── reset.png │ │ │ ├── submit.png │ │ │ ├── tri.png │ │ │ ├── tri_rtl.png │ │ │ ├── twitter.png │ │ │ ├── zoomIn.png │ │ │ └── zoomOut.png │ │ ├── web_of_wonders.jpg │ │ └── world_eater.jpg │ │ └── js │ │ ├── markUp_app.min.js │ │ ├── markUp_common.min.js │ │ └── vendor │ │ ├── app.js │ │ ├── canvas_extensions.js │ │ ├── canvg.js │ │ ├── common.js │ │ ├── country_codes.json │ │ ├── jquery-1.5.1.js │ │ ├── jquery.collapsibleMod.js │ │ ├── jquery.delayedBind.js │ │ ├── jquery.markApp.capture.js │ │ ├── jquery.markApp.intro.js │ │ ├── jquery.markApp.js │ │ ├── jquery.markApp.linear.js │ │ ├── jquery.socialShare.js │ │ ├── jquery.ui-selectBox.js │ │ ├── json2.js │ │ ├── mark │ │ ├── mark.base.js │ │ ├── mark.brushes.js │ │ ├── mark.camera.js │ │ ├── mark.gmlMark.js │ │ ├── mark.gmlPoint.js │ │ ├── mark.layer.js │ │ ├── mark.layerManager.js │ │ ├── mark.renderer.js │ │ ├── mark.scene.js │ │ └── mark.simplifyPath.js │ │ ├── plugins │ │ ├── sammy.hash_push_proxy.js │ │ └── sammy.template.js │ │ ├── sammy-0.6.3.js │ │ ├── tween.js │ │ └── webtrends.js ├── templates_orig │ ├── 404.html │ ├── 500.html │ ├── about.html │ ├── base.html │ ├── base_min.html │ ├── code.html │ ├── coming_soon.html │ ├── community.html │ ├── evan-roth.html │ ├── gml.html │ ├── gml.xml │ ├── home.html │ ├── list_invites.html │ ├── manifesto.html │ ├── mozilla.html │ ├── newsletter.html │ ├── registration │ │ ├── locked.html │ │ ├── logged_out.html │ │ └── login.html │ ├── robots.txt │ ├── sammy │ │ ├── linear.html │ │ ├── makemark.html │ │ └── moderate.html │ ├── temp.html │ └── webtrends.html ├── urls.py ├── utils │ ├── __init__.py │ ├── context_processors.py │ ├── render.py │ └── short_url.py └── wsgi │ └── app.wsgi ├── gml ├── gml-1.0.dtd └── gml-1.0.xsd └── scripts ├── daily_gml_bundle.sh └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/README.md -------------------------------------------------------------------------------- /ffdemo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/bin/update_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/bin/update_site.py -------------------------------------------------------------------------------- /ffdemo/commons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/commons/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/commons/context_processors.py -------------------------------------------------------------------------------- /ffdemo/commons/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/commons/middleware.py -------------------------------------------------------------------------------- /ffdemo/commons/urlresolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/commons/urlresolvers.py -------------------------------------------------------------------------------- /ffdemo/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/fabfile.py -------------------------------------------------------------------------------- /ffdemo/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/.last_update: -------------------------------------------------------------------------------- 1 | Tue, 29 Mar 2011 12:54:41 GMT -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/firefox_beta_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/firefox_beta_builds.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/firefox_history_development_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/firefox_history_development_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/firefox_history_major_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/firefox_history_major_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/firefox_history_stability_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/firefox_history_stability_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/firefox_primary_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/firefox_primary_builds.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/firefox_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/firefox_versions.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/languages.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/mobile_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/mobile_details.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/mobile_history_development_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/mobile_history_development_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/mobile_history_major_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/mobile_history_major_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/mobile_history_stability_releases.json: -------------------------------------------------------------------------------- 1 | {"1.0.1":"2010-04-13"} -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/thunderbird_beta_builds.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/thunderbird_history_development_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/thunderbird_history_development_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/thunderbird_history_major_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/thunderbird_history_major_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/thunderbird_history_stability_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/thunderbird_history_stability_releases.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/thunderbird_primary_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/thunderbird_primary_builds.json -------------------------------------------------------------------------------- /ffdemo/lib/product_details_json/thunderbird_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/product_details_json/thunderbird_versions.json -------------------------------------------------------------------------------- /ffdemo/lib/shoehorn_l10n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/lib/shoehorn_l10n/templatetag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/shoehorn_l10n/templatetag.py -------------------------------------------------------------------------------- /ffdemo/lib/shoehorn_l10n/templatize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/shoehorn_l10n/templatize.py -------------------------------------------------------------------------------- /ffdemo/lib/shoehorn_l10n/tower_blocktrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/lib/shoehorn_l10n/tower_blocktrans.py -------------------------------------------------------------------------------- /ffdemo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/manage.py -------------------------------------------------------------------------------- /ffdemo/markup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/markup/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/admin.py -------------------------------------------------------------------------------- /ffdemo/markup/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/common.py -------------------------------------------------------------------------------- /ffdemo/markup/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/forms.py -------------------------------------------------------------------------------- /ffdemo/markup/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/markup/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/markup/management/commands/generate_invites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/management/commands/generate_invites.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0001_initial.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0002_auto__add_field_mark_flaggings__add_field_mark_is_approved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0002_auto__add_field_mark_flaggings__add_field_mark_is_approved.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0003_auto__add_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0003_auto__add_invitation.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0004_auto__chg_field_invitation_used_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0004_auto__chg_field_invitation_used_at.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0005_auto__add_field_mark_contributor_locale__add_field_mark_contributor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0005_auto__add_field_mark_contributor_locale__add_field_mark_contributor.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0006_auto__chg_field_mark_contributor_locale__chg_field_mark_contributor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0006_auto__chg_field_mark_contributor_locale__chg_field_mark_contributor.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0007_auto__add_unique_mark_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0007_auto__add_unique_mark_reference.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0008_auto__add_unique_invitation_invite_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0008_auto__add_unique_invitation_invite_code.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0009_auto__chg_field_mark_is_approved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0009_auto__chg_field_mark_is_approved.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0010_auto__add_field_mark_duplicate_check__add_field_mark_ip_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0010_auto__add_field_mark_duplicate_check__add_field_mark_ip_address.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0011_auto__chg_field_mark_duplicate_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0011_auto__chg_field_mark_duplicate_check.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0012_auto__chg_field_invitation_id__chg_field_mark_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0012_auto__chg_field_invitation_id__chg_field_mark_id.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0013_auto__chg_field_invitation_id__chg_field_mark_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0013_auto__chg_field_invitation_id__chg_field_mark_id.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0014_add_indexes_to_markup_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0014_add_indexes_to_markup_mark.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0015_clean_up_reference_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0015_clean_up_reference_indexes.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0016_dump_points_obj_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0016_dump_points_obj_json.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0017_auto__add_invitation__del_field_mark_points_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0017_auto__add_invitation__del_field_mark_points_obj.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0018_hash_ip_decode_existing_simplified_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0018_hash_ip_decode_existing_simplified_to_json.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0019_add_model_MarkSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0019_add_model_MarkSequence.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0020_add_index_country_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0020_add_index_country_code.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/0021_fix_mark_reference_collation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/migrations/0021_fix_mark_reference_collation.py -------------------------------------------------------------------------------- /ffdemo/markup/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/markup/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/models.py -------------------------------------------------------------------------------- /ffdemo/markup/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/requests.py -------------------------------------------------------------------------------- /ffdemo/markup/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/markup/templatetags/gml_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/templatetags/gml_extras.py -------------------------------------------------------------------------------- /ffdemo/markup/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/markup/views.py -------------------------------------------------------------------------------- /ffdemo/requirements/compiled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/requirements/compiled.txt -------------------------------------------------------------------------------- /ffdemo/requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -r prod.txt 2 | 3 | # L10n 4 | translate-toolkit==1.6.0 5 | -------------------------------------------------------------------------------- /ffdemo/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/requirements/prod.txt -------------------------------------------------------------------------------- /ffdemo/responsys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/responsys/README.md -------------------------------------------------------------------------------- /ffdemo/responsys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/responsys/__init__.py -------------------------------------------------------------------------------- /ffdemo/responsys/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/responsys/forms.py -------------------------------------------------------------------------------- /ffdemo/responsys/responsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/responsys/responsys.py -------------------------------------------------------------------------------- /ffdemo/responsys/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/responsys/views.py -------------------------------------------------------------------------------- /ffdemo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/settings.py -------------------------------------------------------------------------------- /ffdemo/settings_local.py.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/settings_local.py.default -------------------------------------------------------------------------------- /ffdemo/static/Jimfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/Jimfile -------------------------------------------------------------------------------- /ffdemo/static/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/css/style.css -------------------------------------------------------------------------------- /ffdemo/static/assets/images/amanda_cox_bio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/amanda_cox_bio.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/arrow_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/arrow_orange.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/arrow_orange2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/arrow_orange2.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/bg.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/bigX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/bigX.svg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/browse_marks_lrg_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/browse_marks_lrg_border.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/evan_roth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/evan_roth.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/evan_roth_bio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/evan_roth_bio.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/evan_roth_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/evan_roth_video.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/favicon.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/firefox_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/firefox_logo.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/footer_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/footer_bg.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/golan_levin_bio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/golan_levin_bio.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/jeff_larson_bio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/jeff_larson_bio.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/large_dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/large_dash.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/light_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/light_overlay.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/loader_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/loader_light.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/loading.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/location_selector_dropdown_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/location_selector_dropdown_bg.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/mark_up_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/mark_up_logo.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/mozilla_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/mozilla_tab.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/overlay.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/playback.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/playback.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/site_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/site_thumb.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/cancel.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/collapsed.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/collapsible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/collapsible.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/coming-soon-tip-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/coming-soon-tip-bg.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/contributor_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/contributor_label.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/controls.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/facebook.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/flag.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/gml_download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/gml_download.gif -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/i.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/locale_selector_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/locale_selector_arrow.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/location.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/location_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/location_small.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/magnifying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/magnifying.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/nextMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/nextMark.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/playback.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/prevMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/prevMark.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/reset.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/submit.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/tri.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/tri_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/tri_rtl.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/twitter.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/zoomIn.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/ui/zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/ui/zoomOut.png -------------------------------------------------------------------------------- /ffdemo/static/assets/images/web_of_wonders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/web_of_wonders.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/images/world_eater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/images/world_eater.jpg -------------------------------------------------------------------------------- /ffdemo/static/assets/js/markUp_app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/markUp_app.min.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/markUp_common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/markUp_common.min.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/app.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/canvas_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/canvas_extensions.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/canvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/canvg.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/common.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/country_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/country_codes.json -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery-1.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery-1.5.1.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.collapsibleMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.collapsibleMod.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.delayedBind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.delayedBind.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.markApp.capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.markApp.capture.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.markApp.intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.markApp.intro.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.markApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.markApp.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.markApp.linear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.markApp.linear.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.socialShare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.socialShare.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/jquery.ui-selectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/jquery.ui-selectBox.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/json2.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.base.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.brushes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.brushes.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.camera.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.gmlMark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.gmlMark.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.gmlPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.gmlPoint.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.layer.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.layerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.layerManager.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.renderer.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.scene.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/mark/mark.simplifyPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/mark/mark.simplifyPath.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/plugins/sammy.hash_push_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/plugins/sammy.hash_push_proxy.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/plugins/sammy.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/plugins/sammy.template.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/sammy-0.6.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/sammy-0.6.3.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/tween.js -------------------------------------------------------------------------------- /ffdemo/static/assets/js/vendor/webtrends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/static/assets/js/vendor/webtrends.js -------------------------------------------------------------------------------- /ffdemo/templates_orig/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/404.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/500.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/about.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/base.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/base_min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/base_min.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/code.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/coming_soon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/coming_soon.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/community.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/evan-roth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/evan-roth.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/gml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/gml.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/gml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/gml.xml -------------------------------------------------------------------------------- /ffdemo/templates_orig/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/home.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/list_invites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/list_invites.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/manifesto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/manifesto.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/mozilla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/mozilla.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/newsletter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/newsletter.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/registration/locked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/registration/locked.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/registration/logged_out.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/registration/login.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/robots.txt -------------------------------------------------------------------------------- /ffdemo/templates_orig/sammy/linear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/sammy/linear.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/sammy/makemark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/sammy/makemark.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/sammy/moderate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/sammy/moderate.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/temp.html -------------------------------------------------------------------------------- /ffdemo/templates_orig/webtrends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/templates_orig/webtrends.html -------------------------------------------------------------------------------- /ffdemo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/urls.py -------------------------------------------------------------------------------- /ffdemo/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ffdemo/utils/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/utils/context_processors.py -------------------------------------------------------------------------------- /ffdemo/utils/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/utils/render.py -------------------------------------------------------------------------------- /ffdemo/utils/short_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/utils/short_url.py -------------------------------------------------------------------------------- /ffdemo/wsgi/app.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/ffdemo/wsgi/app.wsgi -------------------------------------------------------------------------------- /gml/gml-1.0.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/gml/gml-1.0.dtd -------------------------------------------------------------------------------- /gml/gml-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/gml/gml-1.0.xsd -------------------------------------------------------------------------------- /scripts/daily_gml_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/scripts/daily_gml_bundle.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/markup/HEAD/scripts/update.sh --------------------------------------------------------------------------------