├── .gitignore ├── .gitmodules ├── .hgignore ├── Makefile ├── README.md ├── activities-testing ├── README.md ├── example-activity.html ├── example-activity.js ├── index.html ├── jquery-1.6.2.min.js ├── login.html ├── twitter.webapp ├── underscore-min.js └── webactivities.js ├── addons ├── activities │ ├── data │ │ ├── default_app.png │ │ ├── i │ │ │ └── sprite.png │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery.tmpl.min.js │ │ ├── mediatorapi.js │ │ ├── service.css │ │ ├── service.html │ │ ├── service.js │ │ ├── servicesapi.js │ │ ├── style.css │ │ └── tabs.css │ ├── lib │ │ ├── main.js │ │ └── services.js │ ├── package.json │ └── test │ │ ├── apps │ │ └── basic │ │ │ ├── basic.html │ │ │ ├── basic.js │ │ │ └── basic.webapp │ │ ├── helpers.js │ │ └── test-services.js ├── faker │ ├── data │ │ ├── angrybirds.js │ │ ├── angrybirds.manifest │ │ ├── nytimes-inline.js │ │ ├── nytimes.js │ │ ├── nytimes.manifest │ │ ├── twitter.js │ │ └── twitter.manifest │ ├── faker.xpi │ ├── lib │ │ └── main.js │ └── package.json └── jetpack │ ├── .gitignore │ ├── data │ ├── about.html │ ├── about.js │ ├── locale │ │ └── en-US.properties │ ├── mgmtapi.js │ ├── native-install │ │ ├── XUL │ │ │ ├── chrome.manifest │ │ │ ├── content │ │ │ │ ├── main.js │ │ │ │ ├── main.xul │ │ │ │ ├── window.js │ │ │ │ └── window.xul │ │ │ ├── defaults │ │ │ │ └── preferences │ │ │ │ │ └── prefs.js │ │ │ ├── newapp_template.ini │ │ │ └── specialfiles.json │ │ ├── mac │ │ │ ├── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ │ └── foxlauncher │ │ │ │ └── Resources │ │ │ │ │ └── empty │ │ │ └── specialfiles.json │ │ └── windows │ │ │ ├── app │ │ │ └── specialfiles.json │ │ │ └── installer │ │ │ ├── install.exe │ │ │ └── specialfiles.json │ ├── silkscreen_logo.png │ ├── skin │ │ ├── about.css │ │ ├── app-icon.png │ │ ├── close.png │ │ ├── extension-icon.png │ │ ├── hud-panel.png │ │ ├── left.opacity │ │ ├── left.png │ │ ├── overlay.css │ │ ├── right.opacity │ │ ├── right.png │ │ └── toolbar-button.png │ └── widget.html │ ├── lib │ ├── about.js │ ├── api.js │ ├── main.js │ ├── manifest.js │ ├── nativeshell.js │ ├── repo.js │ ├── socketserver.js │ ├── sync-old.js │ ├── sync.js │ ├── typed_storage.js │ ├── urlmatch.js │ └── utils.js │ ├── mac │ ├── Makefile │ └── foxlauncher.m │ ├── package.json │ ├── test │ ├── README.md │ ├── apps │ │ ├── basic │ │ │ ├── basic.html │ │ │ ├── basic.js │ │ │ ├── basic.webapp │ │ │ ├── error.js │ │ │ └── success.js │ │ └── testable_mediator.html │ ├── data │ │ ├── evil_manifest_dirtraversal.webapp │ │ ├── evil_manifest_dirtraversal2.webapp │ │ ├── evil_manifest_js.webapp │ │ ├── evil_manifest_launchpath_js.webapp │ │ ├── evil_manifest_xml.webapp │ │ ├── index.htm │ │ ├── ok_manifest_quotes.webapp │ │ └── ok_manifest_xml.webapp │ ├── helpers │ │ ├── helpers.js │ │ ├── test-assert-extras.js │ │ ├── unit_test_runner.js │ │ └── win_stub.js │ ├── test-about.js │ ├── test-api.js │ ├── test-main.js │ ├── test-sync.js │ ├── test-utils.js │ └── test-xhr-timeout.js │ └── windows │ └── installer │ └── webapp-installer.nsi ├── clients └── android │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── default.properties │ ├── gen │ └── com │ │ └── mozilla │ │ └── labs │ │ └── soup │ │ └── R.java │ ├── res │ ├── drawable │ │ └── soup.png │ ├── layout │ │ ├── list_item.xml │ │ ├── login_page.xml │ │ └── main_page.xml │ └── values │ │ └── strings.xml │ └── src │ └── com │ └── mozilla │ └── labs │ └── soup │ ├── AppsAdapter.java │ ├── Base64.java │ ├── MainActivity.java │ └── SyncService.java ├── dependencies.json ├── docs ├── .gitignore ├── ACTIVITIES.md ├── APP_REPO.md ├── INTEGRATION.md ├── LOGIN_ACTIVITY.md ├── MANIFEST.md ├── MOBILE.md ├── SECURITY.md ├── SHARE_ACTIVITY.md ├── SYNC.md ├── TECH_INTRO.md ├── TESTING.md ├── VERIFICATION.md ├── WEB_OR_NATIVE.md ├── creating_web_app_store.html ├── creating_web_apps.html ├── demoApps.css ├── demoApps.html ├── fonts │ └── MuseoSans_500.otf ├── makeTechSite.sh ├── techSiteFooter.html ├── techSiteHeader.html ├── techsite.css └── wiki.txt ├── examples ├── demo │ ├── .DS_Store │ ├── dropbox_storage │ │ ├── authed.htm │ │ ├── config.ini │ │ ├── config.ini.template │ │ ├── dropbox_storage.webapp │ │ ├── dropbox_storage_index.htm │ │ ├── dropbox_storage_service.htm │ │ ├── sample_file │ │ ├── server.py │ │ ├── static │ │ │ ├── demo.htm │ │ │ ├── dropbox_logo.jpg │ │ │ └── jquery-1.4.2.min.js │ │ └── webconfig.py │ ├── jquery.getimagedata.min.js │ ├── pixastic │ │ ├── .DS_Store │ │ ├── actions │ │ │ ├── blend.js │ │ │ ├── blur.js │ │ │ ├── blurfast.js │ │ │ ├── brightness.js │ │ │ ├── coloradjust.js │ │ │ ├── colorhistogram.js │ │ │ ├── crop.js │ │ │ ├── desaturate.js │ │ │ ├── edges.js │ │ │ ├── edges2.js │ │ │ ├── emboss.js │ │ │ ├── flip.js │ │ │ ├── fliph.js │ │ │ ├── flipv.js │ │ │ ├── glow.js │ │ │ ├── histogram.js │ │ │ ├── hsl.js │ │ │ ├── invert.js │ │ │ ├── laplace.js │ │ │ ├── lighten.js │ │ │ ├── mosaic.js │ │ │ ├── noise.js │ │ │ ├── pointillize.js │ │ │ ├── posterize.js │ │ │ ├── removenoise.js │ │ │ ├── resize.js │ │ │ ├── rotate.js │ │ │ ├── sepia.js │ │ │ ├── sharpen.js │ │ │ ├── solarize.js │ │ │ └── unsharpmask.js │ │ ├── pixastic.core.js │ │ └── pixastic.jquery.js │ ├── serviceDemo_getImage.html │ ├── serviceDemo_getProfile.html │ ├── serviceDemo_mixImage.html │ ├── serviceDemo_sendImage.html │ └── serviceDemo_transferImage.html ├── demopaid │ ├── index.html │ └── manifest.webapp ├── mozillaball │ ├── icon.png │ ├── index.html │ ├── jquery-1.4.2.min.js │ ├── manifest.webapp │ └── publish ├── mozillahead │ ├── icon.png │ ├── index.html │ ├── jquery-1.4.2.min.js │ └── manifest.webapp └── tasktracker │ ├── background.png │ ├── config.py │ ├── crypto.py │ ├── error.html │ ├── no_user_index.html │ ├── pubkey.pem │ ├── publish │ ├── server.py │ ├── start_server.sh │ ├── static │ ├── jquery-1.4.2.min.js │ └── tasktracker.css │ ├── stop_server.sh │ └── user_index.html ├── jslibs ├── README ├── app.js ├── eventmixin.js ├── jquery-1.4.4.min.js ├── jschannel.js ├── manifest.js ├── repo.js └── urlmatch.js ├── site ├── cache.manifest ├── css │ ├── 960.css │ ├── FoxTop.css │ ├── appdir.css │ ├── dashboard.css │ ├── demodash.css │ ├── jibe.css │ ├── login.css │ └── tabletdash.css ├── favicon.ico ├── fonts │ ├── MuseoSans_500.otf │ ├── marvel.woff │ └── marvel_bold.woff ├── icongrid ├── icons │ ├── 16px.png │ └── 256px.png ├── img │ ├── Info.opacity │ ├── Info.png │ ├── about-logo.png │ ├── appinfo.png │ ├── clearButton.png │ ├── icon16.png │ ├── resize_handle.png │ └── tabletdash_bg.jpg ├── index.html ├── jquery-1.4.2.min.js ├── js │ ├── base32.js │ ├── jibe.js │ ├── jquery-1.4.2.min.js │ ├── jquery-ui-1.8.9.custom │ │ ├── css │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ └── jquery-ui-1.8.9.custom.css │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.4.4.min.js │ │ │ └── jquery-ui-1.8.9.custom.min.js │ └── qs_score.js ├── jsapi │ ├── conduit.js │ ├── default_app_icon.png │ ├── eventmixin.js │ ├── include.html │ ├── include.js │ ├── jschannel.js │ ├── logo.png │ ├── manifest.js │ ├── repo.js │ ├── trusted.js │ ├── typed-storage.js │ └── urlmatch.js ├── login.html ├── manifest.webapp ├── manifestchecker │ ├── bespin │ │ ├── BespinEmbedded.css │ │ ├── BespinEmbedded.js │ │ ├── BespinMain.js │ │ ├── BespinWorker.js │ │ ├── resources │ │ │ └── screen_theme │ │ │ │ ├── images │ │ │ │ ├── bespin-s.png │ │ │ │ ├── check-selected.png │ │ │ │ ├── check-unselected.png │ │ │ │ ├── lines.png │ │ │ │ ├── radio-selected.png │ │ │ │ ├── radio-unselected.png │ │ │ │ ├── scroll-down.png │ │ │ │ ├── scroll-left.png │ │ │ │ ├── scroll-right.png │ │ │ │ └── scroll-up.png │ │ │ │ └── theme.less │ │ └── samples │ │ │ ├── fields.html │ │ │ ├── html.html │ │ │ ├── jquery.html │ │ │ ├── multi.html │ │ │ ├── programmatic.html │ │ │ ├── sample.html │ │ │ ├── tags.html │ │ │ ├── textarea.html │ │ │ └── wide.html │ ├── img │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── logo_128.png │ │ └── logo_48.png │ ├── index.html │ ├── jquery-1.4.4.min.js │ ├── main.js │ ├── manifest.js │ ├── manifest.webapp │ ├── style.css │ └── urlmatch.js ├── publish ├── server │ ├── server.py │ ├── start_server.sh │ └── stop_server.sh ├── tests │ ├── README.md │ ├── apps │ │ ├── app1 │ │ │ ├── great_success.html │ │ │ ├── icon128.png │ │ │ ├── manifest.webapp │ │ │ └── thumbs_up.png │ │ ├── app2 │ │ │ ├── great_success.html │ │ │ ├── icon128.png │ │ │ ├── manifest.webapp │ │ │ └── thumbs_up.png │ │ └── app3 │ │ │ ├── great_success.html │ │ │ ├── icon128.png │ │ │ ├── manifest.webapp │ │ │ └── thumbs_up.png │ ├── appstore.html │ ├── base.html │ ├── index.html │ ├── js │ │ ├── appdir.js │ │ ├── jquery-1.6.1.min.js │ │ ├── phantomrunner.js │ │ ├── phantomrunner_fixup.js │ │ └── underscore-min.js │ ├── mozmill │ │ ├── README.md │ │ ├── repo_api_html5.js │ │ ├── repo_api_jetpack.js │ │ ├── test_addon.sh │ │ └── test_html5.sh │ ├── phantom_runserver.py │ ├── run.js │ ├── scripts │ │ ├── jenkins_install.txt │ │ ├── run_jstests.py │ │ ├── run_jstests.sh │ │ └── runner.py │ ├── servers │ │ ├── README.md │ │ ├── app_that_eats_images │ │ │ ├── backchannel.html │ │ │ ├── image_handler.html │ │ │ ├── jschannel.js │ │ │ └── manifest.webapp │ │ ├── app_with_simple_service │ │ │ ├── aboutme_svc.html │ │ │ ├── jschannel.js │ │ │ └── manifest.webapp │ │ ├── bad_content_type │ │ │ └── manifest.json │ │ ├── basic_app │ │ │ ├── include.html │ │ │ ├── jschannel.js │ │ │ ├── manifest.webapp │ │ │ └── manifest2.webapp │ │ ├── json_syntax_error │ │ │ └── manifest.webapp │ │ ├── manifest_with_bom │ │ │ └── manifest.webapp │ │ ├── missing_required_field │ │ │ └── manifest.webapp │ │ ├── no_delegated_install │ │ │ ├── include.html │ │ │ ├── jschannel.js │ │ │ └── manifest.webapp │ │ └── no_mgmt_api_off_repo_origin │ │ │ ├── include.html │ │ │ └── jschannel.js │ └── spec │ │ ├── blank.html │ │ ├── conduits.html │ │ ├── manifest.html │ │ ├── repo_api.html │ │ ├── run-all.html │ │ ├── typed-storage.html │ │ └── urlmatch.html └── tools │ ├── VERSION │ ├── abacus.webapp │ ├── abacus_anon.html │ ├── aboutme.html │ ├── aboutme.webapp │ ├── aboutme_svc.html │ ├── addDemoApps.html │ ├── build_rpm.sh │ ├── build_static │ ├── chicken.webapp │ ├── chicken_anon.html │ ├── compress_html.py │ ├── deleteLocalStorage.html │ ├── getProfileTest.html │ ├── idServiceIntroTest.html │ ├── inline_code.py │ ├── mozillaball.webapp │ ├── myapps.spec │ ├── newdash.html │ ├── newdash.js │ ├── sampleapp.html │ ├── sampleapp_anon.html │ ├── websendIntroTest.html │ ├── webserver.js │ ├── zebra.webapp │ └── zebra_anon.html ├── store ├── creds.sh.sample └── src │ ├── .gitignore │ ├── MAKE_KEYS │ ├── account.html │ ├── app.html │ ├── app_iphone.html │ ├── config.py │ ├── crypto.py │ ├── index.html │ ├── index_iphone.html │ ├── iphone_verify.html │ ├── login.html │ ├── model.py │ ├── publish │ ├── server.py │ ├── start_server.sh │ ├── static │ ├── demostore.css │ ├── gmail_96.png │ ├── googleOpenID.png │ ├── home.png │ ├── iphone │ │ ├── Images │ │ │ ├── backgroundStripes.png │ │ │ ├── chevron.png │ │ │ ├── chevron_white.png │ │ │ └── selectedRowiPhone.png │ │ ├── Parts │ │ │ ├── Images │ │ │ │ ├── button.png │ │ │ │ ├── button1.png │ │ │ │ ├── button1__mid.png │ │ │ │ ├── button1_clicked.png │ │ │ │ ├── button1_clicked__mid.png │ │ │ │ ├── button2.png │ │ │ │ ├── button2__mid.png │ │ │ │ ├── button2_clicked.png │ │ │ │ ├── button2_clicked__mid.png │ │ │ │ ├── button__mid.png │ │ │ │ ├── button_clicked.png │ │ │ │ └── button_clicked__mid.png │ │ │ ├── core │ │ │ │ └── external │ │ │ │ │ └── sizzle_c.js │ │ │ ├── license.txt │ │ │ ├── parts.js │ │ │ └── redirector.js │ │ ├── main.css │ │ └── main.js │ ├── jquery-1.4.2.min.js │ ├── jquery.jgrowl.css │ ├── jquery.jgrowl_minimized.js │ ├── mozilla.png │ ├── task.png │ ├── twitterOpenID.png │ └── yahooOpenID.png │ └── stop_server.sh └── sync ├── README.md ├── mock-server.js ├── sync.js └── tests ├── demodash.html ├── index.html ├── mock-repo.js ├── mock-server.html ├── scheduler.html └── sync-service.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/.hgignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/README.md -------------------------------------------------------------------------------- /activities-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/README.md -------------------------------------------------------------------------------- /activities-testing/example-activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/example-activity.html -------------------------------------------------------------------------------- /activities-testing/example-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/example-activity.js -------------------------------------------------------------------------------- /activities-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/index.html -------------------------------------------------------------------------------- /activities-testing/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /activities-testing/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/login.html -------------------------------------------------------------------------------- /activities-testing/twitter.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/twitter.webapp -------------------------------------------------------------------------------- /activities-testing/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/underscore-min.js -------------------------------------------------------------------------------- /activities-testing/webactivities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/activities-testing/webactivities.js -------------------------------------------------------------------------------- /addons/activities/data/default_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/default_app.png -------------------------------------------------------------------------------- /addons/activities/data/i/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/i/sprite.png -------------------------------------------------------------------------------- /addons/activities/data/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /addons/activities/data/jquery.tmpl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/jquery.tmpl.min.js -------------------------------------------------------------------------------- /addons/activities/data/mediatorapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/mediatorapi.js -------------------------------------------------------------------------------- /addons/activities/data/service.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/service.css -------------------------------------------------------------------------------- /addons/activities/data/service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/service.html -------------------------------------------------------------------------------- /addons/activities/data/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/service.js -------------------------------------------------------------------------------- /addons/activities/data/servicesapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/servicesapi.js -------------------------------------------------------------------------------- /addons/activities/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/style.css -------------------------------------------------------------------------------- /addons/activities/data/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/data/tabs.css -------------------------------------------------------------------------------- /addons/activities/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/lib/main.js -------------------------------------------------------------------------------- /addons/activities/lib/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/lib/services.js -------------------------------------------------------------------------------- /addons/activities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/package.json -------------------------------------------------------------------------------- /addons/activities/test/apps/basic/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/test/apps/basic/basic.html -------------------------------------------------------------------------------- /addons/activities/test/apps/basic/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/test/apps/basic/basic.js -------------------------------------------------------------------------------- /addons/activities/test/apps/basic/basic.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/test/apps/basic/basic.webapp -------------------------------------------------------------------------------- /addons/activities/test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/test/helpers.js -------------------------------------------------------------------------------- /addons/activities/test/test-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/activities/test/test-services.js -------------------------------------------------------------------------------- /addons/faker/data/angrybirds.js: -------------------------------------------------------------------------------- 1 | // nothing for now 2 | // window.alert('yo twitter'); -------------------------------------------------------------------------------- /addons/faker/data/angrybirds.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/data/angrybirds.manifest -------------------------------------------------------------------------------- /addons/faker/data/nytimes-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/data/nytimes-inline.js -------------------------------------------------------------------------------- /addons/faker/data/nytimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/data/nytimes.js -------------------------------------------------------------------------------- /addons/faker/data/nytimes.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/data/nytimes.manifest -------------------------------------------------------------------------------- /addons/faker/data/twitter.js: -------------------------------------------------------------------------------- 1 | // nothing for now 2 | // window.alert('yo twitter'); -------------------------------------------------------------------------------- /addons/faker/data/twitter.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/data/twitter.manifest -------------------------------------------------------------------------------- /addons/faker/faker.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/faker.xpi -------------------------------------------------------------------------------- /addons/faker/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/lib/main.js -------------------------------------------------------------------------------- /addons/faker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/faker/package.json -------------------------------------------------------------------------------- /addons/jetpack/.gitignore: -------------------------------------------------------------------------------- 1 | openwebapps.xpi 2 | package.json.backup -------------------------------------------------------------------------------- /addons/jetpack/data/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/about.html -------------------------------------------------------------------------------- /addons/jetpack/data/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/about.js -------------------------------------------------------------------------------- /addons/jetpack/data/locale/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/locale/en-US.properties -------------------------------------------------------------------------------- /addons/jetpack/data/mgmtapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/mgmtapi.js -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/chrome.manifest -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/content/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/content/main.js -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/content/main.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/content/main.xul -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/content/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/content/window.js -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/content/window.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/content/window.xul -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/newapp_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/newapp_template.ini -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/XUL/specialfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/XUL/specialfiles.json -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/mac/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/mac/Contents/Info.plist -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/mac/Contents/MacOS/foxlauncher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/mac/Contents/MacOS/foxlauncher -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/mac/Contents/Resources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/mac/specialfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/mac/specialfiles.json -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/windows/app/specialfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/windows/app/specialfiles.json -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/windows/installer/install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/windows/installer/install.exe -------------------------------------------------------------------------------- /addons/jetpack/data/native-install/windows/installer/specialfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/native-install/windows/installer/specialfiles.json -------------------------------------------------------------------------------- /addons/jetpack/data/silkscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/silkscreen_logo.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/about.css -------------------------------------------------------------------------------- /addons/jetpack/data/skin/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/app-icon.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/close.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/extension-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/extension-icon.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/hud-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/hud-panel.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/left.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/left.opacity -------------------------------------------------------------------------------- /addons/jetpack/data/skin/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/left.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/overlay.css -------------------------------------------------------------------------------- /addons/jetpack/data/skin/right.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/right.opacity -------------------------------------------------------------------------------- /addons/jetpack/data/skin/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/right.png -------------------------------------------------------------------------------- /addons/jetpack/data/skin/toolbar-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/skin/toolbar-button.png -------------------------------------------------------------------------------- /addons/jetpack/data/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/data/widget.html -------------------------------------------------------------------------------- /addons/jetpack/lib/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/about.js -------------------------------------------------------------------------------- /addons/jetpack/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/api.js -------------------------------------------------------------------------------- /addons/jetpack/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/main.js -------------------------------------------------------------------------------- /addons/jetpack/lib/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/manifest.js -------------------------------------------------------------------------------- /addons/jetpack/lib/nativeshell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/nativeshell.js -------------------------------------------------------------------------------- /addons/jetpack/lib/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/repo.js -------------------------------------------------------------------------------- /addons/jetpack/lib/socketserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/socketserver.js -------------------------------------------------------------------------------- /addons/jetpack/lib/sync-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/sync-old.js -------------------------------------------------------------------------------- /addons/jetpack/lib/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/sync.js -------------------------------------------------------------------------------- /addons/jetpack/lib/typed_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/typed_storage.js -------------------------------------------------------------------------------- /addons/jetpack/lib/urlmatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/urlmatch.js -------------------------------------------------------------------------------- /addons/jetpack/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/lib/utils.js -------------------------------------------------------------------------------- /addons/jetpack/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/mac/Makefile -------------------------------------------------------------------------------- /addons/jetpack/mac/foxlauncher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/mac/foxlauncher.m -------------------------------------------------------------------------------- /addons/jetpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/package.json -------------------------------------------------------------------------------- /addons/jetpack/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/README.md -------------------------------------------------------------------------------- /addons/jetpack/test/apps/basic/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/apps/basic/basic.html -------------------------------------------------------------------------------- /addons/jetpack/test/apps/basic/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/apps/basic/basic.js -------------------------------------------------------------------------------- /addons/jetpack/test/apps/basic/basic.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/apps/basic/basic.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/apps/basic/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/apps/basic/error.js -------------------------------------------------------------------------------- /addons/jetpack/test/apps/basic/success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/apps/basic/success.js -------------------------------------------------------------------------------- /addons/jetpack/test/apps/testable_mediator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/apps/testable_mediator.html -------------------------------------------------------------------------------- /addons/jetpack/test/data/evil_manifest_dirtraversal.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/evil_manifest_dirtraversal.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/data/evil_manifest_dirtraversal2.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/evil_manifest_dirtraversal2.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/data/evil_manifest_js.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/evil_manifest_js.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/data/evil_manifest_launchpath_js.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/evil_manifest_launchpath_js.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/data/evil_manifest_xml.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/evil_manifest_xml.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/index.htm -------------------------------------------------------------------------------- /addons/jetpack/test/data/ok_manifest_quotes.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/ok_manifest_quotes.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/data/ok_manifest_xml.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/data/ok_manifest_xml.webapp -------------------------------------------------------------------------------- /addons/jetpack/test/helpers/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/helpers/helpers.js -------------------------------------------------------------------------------- /addons/jetpack/test/helpers/test-assert-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/helpers/test-assert-extras.js -------------------------------------------------------------------------------- /addons/jetpack/test/helpers/unit_test_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/helpers/unit_test_runner.js -------------------------------------------------------------------------------- /addons/jetpack/test/helpers/win_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/helpers/win_stub.js -------------------------------------------------------------------------------- /addons/jetpack/test/test-about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/test-about.js -------------------------------------------------------------------------------- /addons/jetpack/test/test-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/test-api.js -------------------------------------------------------------------------------- /addons/jetpack/test/test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/test-main.js -------------------------------------------------------------------------------- /addons/jetpack/test/test-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/test-sync.js -------------------------------------------------------------------------------- /addons/jetpack/test/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/test-utils.js -------------------------------------------------------------------------------- /addons/jetpack/test/test-xhr-timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/test/test-xhr-timeout.js -------------------------------------------------------------------------------- /addons/jetpack/windows/installer/webapp-installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/addons/jetpack/windows/installer/webapp-installer.nsi -------------------------------------------------------------------------------- /clients/android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/.classpath -------------------------------------------------------------------------------- /clients/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/.project -------------------------------------------------------------------------------- /clients/android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /clients/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/AndroidManifest.xml -------------------------------------------------------------------------------- /clients/android/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/default.properties -------------------------------------------------------------------------------- /clients/android/gen/com/mozilla/labs/soup/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/gen/com/mozilla/labs/soup/R.java -------------------------------------------------------------------------------- /clients/android/res/drawable/soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/res/drawable/soup.png -------------------------------------------------------------------------------- /clients/android/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/res/layout/list_item.xml -------------------------------------------------------------------------------- /clients/android/res/layout/login_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/res/layout/login_page.xml -------------------------------------------------------------------------------- /clients/android/res/layout/main_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/res/layout/main_page.xml -------------------------------------------------------------------------------- /clients/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/res/values/strings.xml -------------------------------------------------------------------------------- /clients/android/src/com/mozilla/labs/soup/AppsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/src/com/mozilla/labs/soup/AppsAdapter.java -------------------------------------------------------------------------------- /clients/android/src/com/mozilla/labs/soup/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/src/com/mozilla/labs/soup/Base64.java -------------------------------------------------------------------------------- /clients/android/src/com/mozilla/labs/soup/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/src/com/mozilla/labs/soup/MainActivity.java -------------------------------------------------------------------------------- /clients/android/src/com/mozilla/labs/soup/SyncService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/clients/android/src/com/mozilla/labs/soup/SyncService.java -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/dependencies.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/ACTIVITIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/ACTIVITIES.md -------------------------------------------------------------------------------- /docs/APP_REPO.md: -------------------------------------------------------------------------------- 1 | moved to https://developer.mozilla.org/en/OpenWebApps/The_JavaScript_API 2 | -------------------------------------------------------------------------------- /docs/INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/INTEGRATION.md -------------------------------------------------------------------------------- /docs/LOGIN_ACTIVITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/LOGIN_ACTIVITY.md -------------------------------------------------------------------------------- /docs/MANIFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/MANIFEST.md -------------------------------------------------------------------------------- /docs/MOBILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/MOBILE.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/SHARE_ACTIVITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/SHARE_ACTIVITY.md -------------------------------------------------------------------------------- /docs/SYNC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/SYNC.md -------------------------------------------------------------------------------- /docs/TECH_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/TECH_INTRO.md -------------------------------------------------------------------------------- /docs/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/TESTING.md -------------------------------------------------------------------------------- /docs/VERIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/VERIFICATION.md -------------------------------------------------------------------------------- /docs/WEB_OR_NATIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/WEB_OR_NATIVE.md -------------------------------------------------------------------------------- /docs/creating_web_app_store.html: -------------------------------------------------------------------------------- 1 | now lives at https://developer.mozilla.org/en/OpenWebApps/Creating_a_store 2 | -------------------------------------------------------------------------------- /docs/creating_web_apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/creating_web_apps.html -------------------------------------------------------------------------------- /docs/demoApps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/demoApps.css -------------------------------------------------------------------------------- /docs/demoApps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/demoApps.html -------------------------------------------------------------------------------- /docs/fonts/MuseoSans_500.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/fonts/MuseoSans_500.otf -------------------------------------------------------------------------------- /docs/makeTechSite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/makeTechSite.sh -------------------------------------------------------------------------------- /docs/techSiteFooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/techSiteFooter.html -------------------------------------------------------------------------------- /docs/techSiteHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/techSiteHeader.html -------------------------------------------------------------------------------- /docs/techsite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/techsite.css -------------------------------------------------------------------------------- /docs/wiki.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/docs/wiki.txt -------------------------------------------------------------------------------- /examples/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/.DS_Store -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/authed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/authed.htm -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/config.ini -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/config.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/config.ini.template -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/dropbox_storage.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/dropbox_storage.webapp -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/dropbox_storage_index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/dropbox_storage_index.htm -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/dropbox_storage_service.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/dropbox_storage_service.htm -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/sample_file: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/server.py -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/static/demo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/static/demo.htm -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/static/dropbox_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/static/dropbox_logo.jpg -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/static/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/dropbox_storage/static/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /examples/demo/dropbox_storage/webconfig.py: -------------------------------------------------------------------------------- 1 | cookie_secret = "sfdjwl35w2cvljdlq345s" -------------------------------------------------------------------------------- /examples/demo/jquery.getimagedata.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/jquery.getimagedata.min.js -------------------------------------------------------------------------------- /examples/demo/pixastic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/.DS_Store -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/blend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/blend.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/blur.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/blurfast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/blurfast.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/brightness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/brightness.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/coloradjust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/coloradjust.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/colorhistogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/colorhistogram.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/crop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/crop.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/desaturate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/desaturate.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/edges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/edges.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/edges2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/edges2.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/emboss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/emboss.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/flip.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/fliph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/fliph.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/flipv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/flipv.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/glow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/glow.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/histogram.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/hsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/hsl.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/invert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/invert.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/laplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/laplace.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/lighten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/lighten.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/mosaic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/mosaic.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/noise.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/pointillize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/pointillize.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/posterize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/posterize.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/removenoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/removenoise.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/resize.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/rotate.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/sepia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/sepia.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/sharpen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/sharpen.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/solarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/solarize.js -------------------------------------------------------------------------------- /examples/demo/pixastic/actions/unsharpmask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/actions/unsharpmask.js -------------------------------------------------------------------------------- /examples/demo/pixastic/pixastic.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/pixastic.core.js -------------------------------------------------------------------------------- /examples/demo/pixastic/pixastic.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/pixastic/pixastic.jquery.js -------------------------------------------------------------------------------- /examples/demo/serviceDemo_getImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/serviceDemo_getImage.html -------------------------------------------------------------------------------- /examples/demo/serviceDemo_getProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/serviceDemo_getProfile.html -------------------------------------------------------------------------------- /examples/demo/serviceDemo_mixImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/serviceDemo_mixImage.html -------------------------------------------------------------------------------- /examples/demo/serviceDemo_sendImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/serviceDemo_sendImage.html -------------------------------------------------------------------------------- /examples/demo/serviceDemo_transferImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demo/serviceDemo_transferImage.html -------------------------------------------------------------------------------- /examples/demopaid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demopaid/index.html -------------------------------------------------------------------------------- /examples/demopaid/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/demopaid/manifest.webapp -------------------------------------------------------------------------------- /examples/mozillaball/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillaball/icon.png -------------------------------------------------------------------------------- /examples/mozillaball/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillaball/index.html -------------------------------------------------------------------------------- /examples/mozillaball/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillaball/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /examples/mozillaball/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillaball/manifest.webapp -------------------------------------------------------------------------------- /examples/mozillaball/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillaball/publish -------------------------------------------------------------------------------- /examples/mozillahead/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillahead/icon.png -------------------------------------------------------------------------------- /examples/mozillahead/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillahead/index.html -------------------------------------------------------------------------------- /examples/mozillahead/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillahead/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /examples/mozillahead/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/mozillahead/manifest.webapp -------------------------------------------------------------------------------- /examples/tasktracker/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/background.png -------------------------------------------------------------------------------- /examples/tasktracker/config.py: -------------------------------------------------------------------------------- 1 | cookie_secret = "FB91739A-E8EF-46C4-9819-DC41FFD34405" -------------------------------------------------------------------------------- /examples/tasktracker/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/crypto.py -------------------------------------------------------------------------------- /examples/tasktracker/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/error.html -------------------------------------------------------------------------------- /examples/tasktracker/no_user_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/no_user_index.html -------------------------------------------------------------------------------- /examples/tasktracker/pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/pubkey.pem -------------------------------------------------------------------------------- /examples/tasktracker/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/publish -------------------------------------------------------------------------------- /examples/tasktracker/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/server.py -------------------------------------------------------------------------------- /examples/tasktracker/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/start_server.sh -------------------------------------------------------------------------------- /examples/tasktracker/static/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/static/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /examples/tasktracker/static/tasktracker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/static/tasktracker.css -------------------------------------------------------------------------------- /examples/tasktracker/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/stop_server.sh -------------------------------------------------------------------------------- /examples/tasktracker/user_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/examples/tasktracker/user_index.html -------------------------------------------------------------------------------- /jslibs/README: -------------------------------------------------------------------------------- 1 | THIS DIRECTORY IS OBSOLETE 2 | -------------------------------------------------------------------------------- /jslibs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/app.js -------------------------------------------------------------------------------- /jslibs/eventmixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/eventmixin.js -------------------------------------------------------------------------------- /jslibs/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /jslibs/jschannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/jschannel.js -------------------------------------------------------------------------------- /jslibs/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/manifest.js -------------------------------------------------------------------------------- /jslibs/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/repo.js -------------------------------------------------------------------------------- /jslibs/urlmatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/jslibs/urlmatch.js -------------------------------------------------------------------------------- /site/cache.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/cache.manifest -------------------------------------------------------------------------------- /site/css/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/960.css -------------------------------------------------------------------------------- /site/css/FoxTop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/FoxTop.css -------------------------------------------------------------------------------- /site/css/appdir.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/appdir.css -------------------------------------------------------------------------------- /site/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/dashboard.css -------------------------------------------------------------------------------- /site/css/demodash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/demodash.css -------------------------------------------------------------------------------- /site/css/jibe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/jibe.css -------------------------------------------------------------------------------- /site/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/login.css -------------------------------------------------------------------------------- /site/css/tabletdash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/css/tabletdash.css -------------------------------------------------------------------------------- /site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/favicon.ico -------------------------------------------------------------------------------- /site/fonts/MuseoSans_500.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/fonts/MuseoSans_500.otf -------------------------------------------------------------------------------- /site/fonts/marvel.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/fonts/marvel.woff -------------------------------------------------------------------------------- /site/fonts/marvel_bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/fonts/marvel_bold.woff -------------------------------------------------------------------------------- /site/icongrid: -------------------------------------------------------------------------------- 1 | ../icongrid/icongrid -------------------------------------------------------------------------------- /site/icons/16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/icons/16px.png -------------------------------------------------------------------------------- /site/icons/256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/icons/256px.png -------------------------------------------------------------------------------- /site/img/Info.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/Info.opacity -------------------------------------------------------------------------------- /site/img/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/Info.png -------------------------------------------------------------------------------- /site/img/about-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/about-logo.png -------------------------------------------------------------------------------- /site/img/appinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/appinfo.png -------------------------------------------------------------------------------- /site/img/clearButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/clearButton.png -------------------------------------------------------------------------------- /site/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/icon16.png -------------------------------------------------------------------------------- /site/img/resize_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/resize_handle.png -------------------------------------------------------------------------------- /site/img/tabletdash_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/img/tabletdash_bg.jpg -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/index.html -------------------------------------------------------------------------------- /site/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- 1 | ../icongrid/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /site/js/base32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/base32.js -------------------------------------------------------------------------------- /site/js/jibe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jibe.js -------------------------------------------------------------------------------- /site/js/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/css/smoothness/jquery-ui-1.8.9.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/css/smoothness/jquery-ui-1.8.9.custom.css -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/index.html -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /site/js/jquery-ui-1.8.9.custom/js/jquery-ui-1.8.9.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/jquery-ui-1.8.9.custom/js/jquery-ui-1.8.9.custom.min.js -------------------------------------------------------------------------------- /site/js/qs_score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/js/qs_score.js -------------------------------------------------------------------------------- /site/jsapi/conduit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/conduit.js -------------------------------------------------------------------------------- /site/jsapi/default_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/default_app_icon.png -------------------------------------------------------------------------------- /site/jsapi/eventmixin.js: -------------------------------------------------------------------------------- 1 | ../../jslibs/eventmixin.js -------------------------------------------------------------------------------- /site/jsapi/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/include.html -------------------------------------------------------------------------------- /site/jsapi/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/include.js -------------------------------------------------------------------------------- /site/jsapi/jschannel.js: -------------------------------------------------------------------------------- 1 | ../../jslibs/jschannel.js -------------------------------------------------------------------------------- /site/jsapi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/logo.png -------------------------------------------------------------------------------- /site/jsapi/manifest.js: -------------------------------------------------------------------------------- 1 | ../../addons/jetpack/lib/manifest.js -------------------------------------------------------------------------------- /site/jsapi/repo.js: -------------------------------------------------------------------------------- 1 | ../../addons/jetpack/lib/repo.js -------------------------------------------------------------------------------- /site/jsapi/trusted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/trusted.js -------------------------------------------------------------------------------- /site/jsapi/typed-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/jsapi/typed-storage.js -------------------------------------------------------------------------------- /site/jsapi/urlmatch.js: -------------------------------------------------------------------------------- 1 | ../../addons/jetpack/lib/urlmatch.js -------------------------------------------------------------------------------- /site/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/login.html -------------------------------------------------------------------------------- /site/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifest.webapp -------------------------------------------------------------------------------- /site/manifestchecker/bespin/BespinEmbedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/BespinEmbedded.css -------------------------------------------------------------------------------- /site/manifestchecker/bespin/BespinEmbedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/BespinEmbedded.js -------------------------------------------------------------------------------- /site/manifestchecker/bespin/BespinMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/BespinMain.js -------------------------------------------------------------------------------- /site/manifestchecker/bespin/BespinWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/BespinWorker.js -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/bespin-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/bespin-s.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/check-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/check-selected.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/check-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/check-unselected.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/lines.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/radio-selected.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/radio-unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/radio-unselected.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/scroll-down.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/scroll-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/scroll-left.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/scroll-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/scroll-right.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/images/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/images/scroll-up.png -------------------------------------------------------------------------------- /site/manifestchecker/bespin/resources/screen_theme/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/resources/screen_theme/theme.less -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/fields.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/html.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/jquery.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/multi.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/programmatic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/programmatic.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/sample.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/tags.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/textarea.html -------------------------------------------------------------------------------- /site/manifestchecker/bespin/samples/wide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/bespin/samples/wide.html -------------------------------------------------------------------------------- /site/manifestchecker/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/img/favicon.ico -------------------------------------------------------------------------------- /site/manifestchecker/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/img/favicon.png -------------------------------------------------------------------------------- /site/manifestchecker/img/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/img/logo_128.png -------------------------------------------------------------------------------- /site/manifestchecker/img/logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/img/logo_48.png -------------------------------------------------------------------------------- /site/manifestchecker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/index.html -------------------------------------------------------------------------------- /site/manifestchecker/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- 1 | ../../jslibs/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /site/manifestchecker/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/main.js -------------------------------------------------------------------------------- /site/manifestchecker/manifest.js: -------------------------------------------------------------------------------- 1 | ../../jslibs/manifest.js -------------------------------------------------------------------------------- /site/manifestchecker/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/manifest.webapp -------------------------------------------------------------------------------- /site/manifestchecker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/manifestchecker/style.css -------------------------------------------------------------------------------- /site/manifestchecker/urlmatch.js: -------------------------------------------------------------------------------- 1 | ../../jslibs/urlmatch.js -------------------------------------------------------------------------------- /site/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/publish -------------------------------------------------------------------------------- /site/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/server/server.py -------------------------------------------------------------------------------- /site/server/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/server/start_server.sh -------------------------------------------------------------------------------- /site/server/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/server/stop_server.sh -------------------------------------------------------------------------------- /site/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/README.md -------------------------------------------------------------------------------- /site/tests/apps/app1/great_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app1/great_success.html -------------------------------------------------------------------------------- /site/tests/apps/app1/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app1/icon128.png -------------------------------------------------------------------------------- /site/tests/apps/app1/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app1/manifest.webapp -------------------------------------------------------------------------------- /site/tests/apps/app1/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app1/thumbs_up.png -------------------------------------------------------------------------------- /site/tests/apps/app2/great_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app2/great_success.html -------------------------------------------------------------------------------- /site/tests/apps/app2/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app2/icon128.png -------------------------------------------------------------------------------- /site/tests/apps/app2/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app2/manifest.webapp -------------------------------------------------------------------------------- /site/tests/apps/app2/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app2/thumbs_up.png -------------------------------------------------------------------------------- /site/tests/apps/app3/great_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app3/great_success.html -------------------------------------------------------------------------------- /site/tests/apps/app3/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app3/icon128.png -------------------------------------------------------------------------------- /site/tests/apps/app3/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app3/manifest.webapp -------------------------------------------------------------------------------- /site/tests/apps/app3/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/apps/app3/thumbs_up.png -------------------------------------------------------------------------------- /site/tests/appstore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/appstore.html -------------------------------------------------------------------------------- /site/tests/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/base.html -------------------------------------------------------------------------------- /site/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/index.html -------------------------------------------------------------------------------- /site/tests/js/appdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/js/appdir.js -------------------------------------------------------------------------------- /site/tests/js/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/js/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /site/tests/js/phantomrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/js/phantomrunner.js -------------------------------------------------------------------------------- /site/tests/js/phantomrunner_fixup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/js/phantomrunner_fixup.js -------------------------------------------------------------------------------- /site/tests/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/js/underscore-min.js -------------------------------------------------------------------------------- /site/tests/mozmill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/mozmill/README.md -------------------------------------------------------------------------------- /site/tests/mozmill/repo_api_html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/mozmill/repo_api_html5.js -------------------------------------------------------------------------------- /site/tests/mozmill/repo_api_jetpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/mozmill/repo_api_jetpack.js -------------------------------------------------------------------------------- /site/tests/mozmill/test_addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/mozmill/test_addon.sh -------------------------------------------------------------------------------- /site/tests/mozmill/test_html5.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | mozmill -t repo_api_html5.js 4 | 5 | -------------------------------------------------------------------------------- /site/tests/phantom_runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/phantom_runserver.py -------------------------------------------------------------------------------- /site/tests/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/run.js -------------------------------------------------------------------------------- /site/tests/scripts/jenkins_install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/scripts/jenkins_install.txt -------------------------------------------------------------------------------- /site/tests/scripts/run_jstests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/scripts/run_jstests.py -------------------------------------------------------------------------------- /site/tests/scripts/run_jstests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/scripts/run_jstests.sh -------------------------------------------------------------------------------- /site/tests/scripts/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/scripts/runner.py -------------------------------------------------------------------------------- /site/tests/servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/README.md -------------------------------------------------------------------------------- /site/tests/servers/app_that_eats_images/backchannel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/app_that_eats_images/backchannel.html -------------------------------------------------------------------------------- /site/tests/servers/app_that_eats_images/image_handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/app_that_eats_images/image_handler.html -------------------------------------------------------------------------------- /site/tests/servers/app_that_eats_images/jschannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/app_that_eats_images/jschannel.js -------------------------------------------------------------------------------- /site/tests/servers/app_that_eats_images/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/app_that_eats_images/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/app_with_simple_service/aboutme_svc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/app_with_simple_service/aboutme_svc.html -------------------------------------------------------------------------------- /site/tests/servers/app_with_simple_service/jschannel.js: -------------------------------------------------------------------------------- 1 | ../../../../jslibs/jschannel.js -------------------------------------------------------------------------------- /site/tests/servers/app_with_simple_service/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/app_with_simple_service/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/bad_content_type/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/bad_content_type/manifest.json -------------------------------------------------------------------------------- /site/tests/servers/basic_app/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/basic_app/include.html -------------------------------------------------------------------------------- /site/tests/servers/basic_app/jschannel.js: -------------------------------------------------------------------------------- 1 | ../../../../jslibs/jschannel.js -------------------------------------------------------------------------------- /site/tests/servers/basic_app/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/basic_app/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/basic_app/manifest2.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/basic_app/manifest2.webapp -------------------------------------------------------------------------------- /site/tests/servers/json_syntax_error/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/json_syntax_error/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/manifest_with_bom/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/manifest_with_bom/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/missing_required_field/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/missing_required_field/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/no_delegated_install/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/no_delegated_install/include.html -------------------------------------------------------------------------------- /site/tests/servers/no_delegated_install/jschannel.js: -------------------------------------------------------------------------------- 1 | ../../../../jslibs/jschannel.js -------------------------------------------------------------------------------- /site/tests/servers/no_delegated_install/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/no_delegated_install/manifest.webapp -------------------------------------------------------------------------------- /site/tests/servers/no_mgmt_api_off_repo_origin/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/servers/no_mgmt_api_off_repo_origin/include.html -------------------------------------------------------------------------------- /site/tests/servers/no_mgmt_api_off_repo_origin/jschannel.js: -------------------------------------------------------------------------------- 1 | ../../../../jslibs/jschannel.js -------------------------------------------------------------------------------- /site/tests/spec/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/blank.html -------------------------------------------------------------------------------- /site/tests/spec/conduits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/conduits.html -------------------------------------------------------------------------------- /site/tests/spec/manifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/manifest.html -------------------------------------------------------------------------------- /site/tests/spec/repo_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/repo_api.html -------------------------------------------------------------------------------- /site/tests/spec/run-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/run-all.html -------------------------------------------------------------------------------- /site/tests/spec/typed-storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/typed-storage.html -------------------------------------------------------------------------------- /site/tests/spec/urlmatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tests/spec/urlmatch.html -------------------------------------------------------------------------------- /site/tools/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.1 2 | -------------------------------------------------------------------------------- /site/tools/abacus.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/abacus.webapp -------------------------------------------------------------------------------- /site/tools/abacus_anon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/abacus_anon.html -------------------------------------------------------------------------------- /site/tools/aboutme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/aboutme.html -------------------------------------------------------------------------------- /site/tools/aboutme.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/aboutme.webapp -------------------------------------------------------------------------------- /site/tools/aboutme_svc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/aboutme_svc.html -------------------------------------------------------------------------------- /site/tools/addDemoApps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/addDemoApps.html -------------------------------------------------------------------------------- /site/tools/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/build_rpm.sh -------------------------------------------------------------------------------- /site/tools/build_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/build_static -------------------------------------------------------------------------------- /site/tools/chicken.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/chicken.webapp -------------------------------------------------------------------------------- /site/tools/chicken_anon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/chicken_anon.html -------------------------------------------------------------------------------- /site/tools/compress_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/compress_html.py -------------------------------------------------------------------------------- /site/tools/deleteLocalStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/deleteLocalStorage.html -------------------------------------------------------------------------------- /site/tools/getProfileTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/getProfileTest.html -------------------------------------------------------------------------------- /site/tools/idServiceIntroTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/idServiceIntroTest.html -------------------------------------------------------------------------------- /site/tools/inline_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/inline_code.py -------------------------------------------------------------------------------- /site/tools/mozillaball.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/mozillaball.webapp -------------------------------------------------------------------------------- /site/tools/myapps.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/myapps.spec -------------------------------------------------------------------------------- /site/tools/newdash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/newdash.html -------------------------------------------------------------------------------- /site/tools/newdash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/newdash.js -------------------------------------------------------------------------------- /site/tools/sampleapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/sampleapp.html -------------------------------------------------------------------------------- /site/tools/sampleapp_anon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/sampleapp_anon.html -------------------------------------------------------------------------------- /site/tools/websendIntroTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/websendIntroTest.html -------------------------------------------------------------------------------- /site/tools/webserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/webserver.js -------------------------------------------------------------------------------- /site/tools/zebra.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/zebra.webapp -------------------------------------------------------------------------------- /site/tools/zebra_anon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/site/tools/zebra_anon.html -------------------------------------------------------------------------------- /store/creds.sh.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/creds.sh.sample -------------------------------------------------------------------------------- /store/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/.gitignore -------------------------------------------------------------------------------- /store/src/MAKE_KEYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/MAKE_KEYS -------------------------------------------------------------------------------- /store/src/account.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/app.html -------------------------------------------------------------------------------- /store/src/app_iphone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/app_iphone.html -------------------------------------------------------------------------------- /store/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/config.py -------------------------------------------------------------------------------- /store/src/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/crypto.py -------------------------------------------------------------------------------- /store/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/index.html -------------------------------------------------------------------------------- /store/src/index_iphone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/index_iphone.html -------------------------------------------------------------------------------- /store/src/iphone_verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/iphone_verify.html -------------------------------------------------------------------------------- /store/src/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/login.html -------------------------------------------------------------------------------- /store/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/model.py -------------------------------------------------------------------------------- /store/src/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/publish -------------------------------------------------------------------------------- /store/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/server.py -------------------------------------------------------------------------------- /store/src/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/start_server.sh -------------------------------------------------------------------------------- /store/src/static/demostore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/demostore.css -------------------------------------------------------------------------------- /store/src/static/gmail_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/gmail_96.png -------------------------------------------------------------------------------- /store/src/static/googleOpenID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/googleOpenID.png -------------------------------------------------------------------------------- /store/src/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/home.png -------------------------------------------------------------------------------- /store/src/static/iphone/Images/backgroundStripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Images/backgroundStripes.png -------------------------------------------------------------------------------- /store/src/static/iphone/Images/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Images/chevron.png -------------------------------------------------------------------------------- /store/src/static/iphone/Images/chevron_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Images/chevron_white.png -------------------------------------------------------------------------------- /store/src/static/iphone/Images/selectedRowiPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Images/selectedRowiPhone.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button1.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button1__mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button1__mid.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button1_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button1_clicked.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button1_clicked__mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button1_clicked__mid.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button2.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button2__mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button2__mid.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button2_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button2_clicked.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button2_clicked__mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button2_clicked__mid.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button__mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button__mid.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button_clicked.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/Images/button_clicked__mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/Images/button_clicked__mid.png -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/core/external/sizzle_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/core/external/sizzle_c.js -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/license.txt -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/parts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/parts.js -------------------------------------------------------------------------------- /store/src/static/iphone/Parts/redirector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/Parts/redirector.js -------------------------------------------------------------------------------- /store/src/static/iphone/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/main.css -------------------------------------------------------------------------------- /store/src/static/iphone/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/iphone/main.js -------------------------------------------------------------------------------- /store/src/static/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /store/src/static/jquery.jgrowl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/jquery.jgrowl.css -------------------------------------------------------------------------------- /store/src/static/jquery.jgrowl_minimized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/jquery.jgrowl_minimized.js -------------------------------------------------------------------------------- /store/src/static/mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/mozilla.png -------------------------------------------------------------------------------- /store/src/static/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/task.png -------------------------------------------------------------------------------- /store/src/static/twitterOpenID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/twitterOpenID.png -------------------------------------------------------------------------------- /store/src/static/yahooOpenID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/static/yahooOpenID.png -------------------------------------------------------------------------------- /store/src/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/store/src/stop_server.sh -------------------------------------------------------------------------------- /sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/README.md -------------------------------------------------------------------------------- /sync/mock-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/mock-server.js -------------------------------------------------------------------------------- /sync/sync.js: -------------------------------------------------------------------------------- 1 | ../addons/jetpack/lib/sync.js -------------------------------------------------------------------------------- /sync/tests/demodash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/tests/demodash.html -------------------------------------------------------------------------------- /sync/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/tests/index.html -------------------------------------------------------------------------------- /sync/tests/mock-repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/tests/mock-repo.js -------------------------------------------------------------------------------- /sync/tests/mock-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/tests/mock-server.html -------------------------------------------------------------------------------- /sync/tests/scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/tests/scheduler.html -------------------------------------------------------------------------------- /sync/tests/sync-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/openwebapps/HEAD/sync/tests/sync-service.html --------------------------------------------------------------------------------