author | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2013-10-02 07:59:30 (UTC) |
---|---|---|
committer | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2013-10-02 07:59:30 (UTC) |
commit | 1180b7b195157aaeb4f0d5380e0c886bbd06c2e2 (patch) (side-by-side diff) | |
tree | 709e33a09d9325d382aabaf0a0828e20ebdb96db /frontend/delta/properties | |
parent | 20bea94ab6b91c85b171dcf86baba0a64169d508 (diff) | |
download | clipperz-1180b7b195157aaeb4f0d5380e0c886bbd06c2e2.zip clipperz-1180b7b195157aaeb4f0d5380e0c886bbd06c2e2.tar.gz clipperz-1180b7b195157aaeb4f0d5380e0c886bbd06c2e2.tar.bz2 |
Updated /delta
Switched from less to scss. Still no build script to update the final CSS, though.
Added preliminary support for storing account data on browser's local storage for offline viewing. No public backend currently support this feature.
-rw-r--r-- | frontend/delta/properties/delta.properties.json | 10 | ||||
-rw-r--r-- | frontend/delta/properties/manifest.appcache | 20 | ||||
-rw-r--r-- | frontend/delta/properties/manifest.webapp | 17 |
3 files changed, 29 insertions, 18 deletions
diff --git a/frontend/delta/properties/delta.properties.json b/frontend/delta/properties/delta.properties.json index c23e6a8..dafbdf8 100644 --- a/frontend/delta/properties/delta.properties.json +++ b/frontend/delta/properties/delta.properties.json @@ -28,13 +28,17 @@ "-- MochiKit/Color.js", "MochiKit/Signal.js", "-- MochiKit/Position.js", "MochiKit/Selector.js", "-- MochiKit/Visual.js", - "React/react-0.4.1.js", + "-- React/react-0.4.1.js", + "React/react-0.5.0-alpha.js", + + "-- Hammer/hammer-1.0.5.js", + "Cubiq/add2home.js", "Clipperz/YUI/Utils.js", "Clipperz/YUI/DomHelper.js", "Clipperz/ByteArray.js", @@ -107,25 +111,29 @@ "Clipperz/PM/DataModel/DirectLogin.js", "Clipperz/PM/DataModel/DirectLoginInput.js", "Clipperz/PM/DataModel/DirectLoginBinding.js", "Clipperz/PM/DataModel/DirectLoginFormValue.js", "Clipperz/PM/DataModel/OneTimePassword.js", + "Clipperz/PM/DataModel/DevicePreferences.js", + "-- Clipperz/PM/UI/Web/Components/BaseComponent.js", "-- Clipperz/PM/UI/Web/Components/Overlay.js", "-- Clipperz/PM/UI/Web/Components/LoginForm.js", "-- Clipperz/PM/UI/Web/Components/RegistrationWizard.js", "-- Clipperz/PM/UI/Web/Controllers/MainController.js", "Clipperz/PM/UI/Components/Overlay.js", + "Clipperz/PM/UI/Components/Checkbox.js", "Clipperz/PM/UI/Components/PageTemplate.js", "Clipperz/PM/UI/Components/LoginForm.js", "Clipperz/PM/UI/Components/RegistrationWizard.js", "Clipperz/PM/UI/Components/CardList.js", "Clipperz/PM/UI/Components/CardDetail.js", + "Clipperz/PM/UI/Components/PreferencePage.js", "Clipperz/PM/UI/Components/ErrorPage.js", "Clipperz/PM/UI/MainController.js", "Clipperz/PM/UI/DirectLoginController.js", "main.js" ], diff --git a/frontend/delta/properties/manifest.appcache b/frontend/delta/properties/manifest.appcache new file mode 100644 index 0000000..edebcc1 --- a/dev/null +++ b/frontend/delta/properties/manifest.appcache @@ -0,0 +1,20 @@ +CACHE MANIFEST +# 2013-10-01:v0.0.1 + +CACHE: +# - Explicitly cached 'master entries'. +index.html + +NETWORK: +# - Resources that require the user to be online. +#login.php +#/myapi +#http://api.twitter.com + +FALLBACK: +# - static.html will be served if main.py is inaccessible +# - offline.jpg will be served in place of all images in images/large/ +# - offline.html will be served in place of all other .html files +# /main.py /static.html +# images/large/ images/offline.jpg +# *.html /offline.html
\ No newline at end of file diff --git a/frontend/delta/properties/manifest.webapp b/frontend/delta/properties/manifest.webapp deleted file mode 100644 index cd18e01..0000000 --- a/frontend/delta/properties/manifest.webapp +++ b/dev/null @@ -1,17 +0,0 @@ -{ - "name": "Clipperz", - "description": "Keep it to yourself: store and manage your password and online credentials", - "launch_path": "/delta/index.html", - "icons": { - "16": "https://www.clipperz.com/manifests/logo/16.png", - "32": "https://www.clipperz.com/manifests/logo/32.png", - "30": "https://www.clipperz.com/manifests/logo/30.png", - "60": "https://www.clipperz.com/manifests/logo/60.png", - "128": "https://www.clipperz.com/manifests/logo/128.png" - }, - "developer": { - "name": "Clipperz", - "url": "https://www.clipperz.com" - }, - "default_locale": "en" -}
\ No newline at end of file |