Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imhotep/cordova-tizen
https://github.com/imhotep/cordova-tizen
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/imhotep/cordova-tizen
- Owner: imhotep
- License: apache-2.0
- Created: 2012-03-13T18:44:43.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-08T17:45:03.000Z (almost 13 years ago)
- Last Synced: 2024-10-26T22:33:43.400Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 78.1 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cordova Tizen
Cordova Tizen is a skeleton web application which allows a developer to build and run a Cordova web application on Tizen.
Cordova port to tizen is done thanks to a simple JS wrapper (shim layer) doing the mapping of the Cordova Web API to the Tizen Web API.## Set up your environment
---
Open a terminal, and navigate to the root cordova-tizen folder.
A Makefile resides here; You can run make on individual target tasks:- `make js` - builds phonegap.js from source javascript files to libs/phonegap.js
- `make copy_js` - copies libs/phonegap.js to framework/phonegap-$(PGVERSION).js (e.g: phonegap-1.5.0.js).
Modify this path if you want it in another location.
- `make sample_app` - package the skeleton web application as a "wgt" widget package which can be imported from
Tizen SDK IDE. (File->Import->Widget [Project and Widget File] -> select widget)## Implementation Status
---
The current implementation is based on Tizen SDK Beta release: see http://developer.tizen.org/documentation
### Ready
- **Device:** wrapper on Tizen System Information Web API.
- **File:** wrapper on W3C File API (FileTransfer missing).
- **Storage:** W3C Web SQL Database and W3C Web Storage.
- **Geolocation:** W3C Geolocation API.
- **URI schemes:** (tel:, sms:, mmsto:, mailto:) supported by WRT.### ToDo
- **Contacts:** wrapper on Tizen Contact Web API.
- **Events:** online/offline: wrapper Browser Online state.
- **Accelerometer:** wrapper on W3C sensor API or W3C Device Orientation Events API.
- **Compass:** wrapper on W3C sensor API or W3C Device Orientation Events API.### ToDo when APIs supported by Tizen SDK
- **Connection:** W3C Network Information.
- **Notification:** W3C Web Notification/W3C vibration API.
- **Camera:** Tizen Application Web API or W3C HTML Media Capture.
- **Capture:** Tizen Application Web API or W3C HTML Media Capture, GetUserMedia API.
- **Events:** battery: wrapper on W3C battery API.
- **Media:** Tizen Application Web API or HTML5 Audio.