Porting between Symbian Web Runtime and Nokia Asha Web Apps
Article Metadata
Article
This article explains the differences between Symbian Web Runtime and Nokia Asha Web Apps, and the changes you need to make to port between the two formats.
Contents |
Overview
The Symbian Web Runtime (WRT) is the official Web Runtime offering by Nokia for Symbian devices. Nokia Asha Web Apps are W3C compliant widgets than run on Nokia Nokia Asha devices.
The two types of web apps are actually quite similar; they are both constructed from traditional web resources written in html, javascript and CSS, have a registration file, and are packaged in zip files. While the execution model is quite different, from a developer point of view the packaging and programming is much the same. As a result developers can port between the two types with little effort.
File name
Both types of web apps are packaged in a zip file containing much the same files. The main change in this area when porting is to use the correct file extension:
- Series 40 Web App has extension .wgt
- Symbian Web Runtime has extension .wgz
It is also necessary to change the registration file, as discussed below.
Widget / Web App manifest file
Both Symbian WRT widgets and Nokia Asha Web Apps need to have a manifest file, which defines the widget properties such as name, identifier and icon. W3C widget manifest file name is config.xml.
- Symbian Web Runtime widget: info.plist
- Nokia Asha Web Apps: config.xml
W3C widget manifest file is more versatile than the info.plist that is used in the Symbian WRT. Comparison of the common info.plist values and config.xml elements.
| info.plist | config.xml |
|---|---|
<key>DisplayName</key> |
<name short="WebAppName">WebAppName</name> |
<key>MainHTML</key> |
<content src="index.html"/> |
<key>Identifier</key> |
As attribute for the root widget element. id="http://webAppName" |
<key>Version</key> |
As attribute for the root widget element.version="1.0" |
<key>MiniViewEnabled</key> |
Mini view / Home Screen is not supported in Nokia Asha Web Apps |
<key>AllowNetworkAccess</key> |
Not used in Nokia Asha Web Apps |
| Not used in symbian WRT | Used when storing preferences <preference name="key" value=""/> |
| Not used in symbian WRT | Must be included in Nokia Asha Web Apps! <feature name="nokia://s40.nokia.com/SAWRT/1.0 " required="true"/> |
| Not used in symbian WRT | <author email="foo-bar@foo.org" href="http://foo.org/">Foo Bar Corp</author> |
| Not used in symbian WRT | <license>Copyright Foo Bar Corp, 2011.</license> |
Example: Info.plist (WRT)
<xmlversion="1.0"encoding="UTF8">
<DOCTYPEplistPUBLIC "//Nokia//DTDPLIST1.0//EN" "http://www.nokia.com/NOKIA_COM_1/DTDs/plist-1.0.dtd"><plist version="1.0">
<dict>
<key>DisplayName</key>
<string>A Widget</string>
<key>Identifier</key>
<string>xxx.xxx.widget</string>
<key>MainHTML</key>
<string>AWidget.html</string>
</dict>
</plist>
config.xml (Series 40 Web App)
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" height="200" id="http://nokia.com/simplemaps" version="0.1.0" viewmodes="windowed fullscreen" width="200">
<name short="AW">A Widget</name>
<icon src="icon.png"/>
<content src="AWidget.html"/>
<description>...</description>
<author email=" mailbox@email.com" href=" http://www.website.com/">
Corporation
</author>
<license>...</license>
</widget>
Size of UI elements
The typical screen size of Series 40 device (240 x 320 px) is different from typical Symbian touch devices (640 x 360 px), so the application must change the width and height of some items in html or css in order to optimise the UI. This includes text, images and videos.
Comparison of recommended dimensions of a button on common devices running Symbian WRT and Series 40 Web App.
| Device | Physical size | Pixel size |
|---|---|---|
| Nokia N8-00 (Symbian^3) | 7 x 7 mm | 60 x 60 px |
| Nokia X3-02 (Series 40) | 6.1 x 6.1 mm | 40 x 40 px |
For more information see Series 40 Web App UX Guidelines.
Media file size
Nokia Asha devices are typically are less powerful than Symbian devices. In order to run applications at acceptable speeds, it may be necessary to use smaller media files, including images, audio and video.
Application structure
The most difficult part on porting a Symbian Web Runtime widget to Series 40 Web App is taking mobile web library (MWL) into use in a Web App. Symbian Web Runtime allows JavaScript to be executed on a device and thus you can e.g. switch element contents on the fly without user noticing. The situation is different in the Series 40 Web App, as all of the JavaScript is executed on a proxy server. Using JavaScript to switch elements contents in a Web App will result in a round trip to server and back. This is where MWL comes to help. What you should do is to generate most of the HTML ready in the server side using JavaScript and then use MWL methods to switch CSS properties to hide and show element contents. Methods provided by the MWL are only scripts that are executed on a device in a Nokia Asha Web Apps.
Application icons
Nokia Asha Web Apps have one more icon compared to Symbian WRT widget. They both share the main icon defined in the info.plist or config.xml. This icon is used in the application menus. In addition a favicon is needed in Nokia Asha Web Apps. The favicon is used in Nokia Browser history and favorites listing. The favicon is a 16x16 px pixel image. To include favicon add following line to index.html head-section:
<link rel="icon" type="image/png" href="favicon.png"/>
Storing Data
Nokia Asha Web Apps supports preferences attribute to store key-value pairs as defined in the W3C Widget interface specification. Preference should be defined in config.xml before using.
Config.xml: <preference name="key" value=""/>
JavaScript:
var val = widget.preferences.getItem("key");
widget.preferences.setItem("key","value");
//or alternative way to access preferences
var val = widget.preferences["key"];
widget.preferences["key"] = "value”
Symbian WRT equivalent would be:
var val = widget.preferenceForKey("key");
widget.setPreferenceForKey("value", "key");
Localization
Symbian WRT uses special “xx.lproj” folders for localization purposes. For example \MyWidget\fi.lproj\. Series 40 Web apps uses supports localization in compliance with the W3C widget specification. Basically it is folder based localization as well, but the folder structure is bit different. In a W3C widget localization folder is placed in the root of the widget folder and must be named “locales” (case sensitive). Localized files are placed inside subfolders of the locales folder. The names of subfolders must comply with values derived from the IANA Language Subtag Registry such as “fr”, ”fi” and “en-US”. E.g. \locales\fi-Fi\


Hamishwillee - Add a real example in both formats?
Hi I've subedited this to improve the English, and also restructured slightly to make it more extensible. Can you please check it still says what you want?
I like this article, I think it is useful. I suggest though, that it would really help developers if you attached a simple demo application that has been ported so that users can do a side by side comparison
You should also reference the Best practices guide - this has lots of other good general advice on limitations of the Series 40 environment ... which are equivalent to porting issues!
Thanks
Hamishhamishwillee 10:53, 5 July 2011 (EEST)
Hamishwillee - @isalento - thanks for the updates
Hi Ilkka
Thanks for updating this - definitely an improvement. FYI, I've added you to the ArticleMetaData as having created a significant update. You can do this yourself to any article where you think you've made a real difference to its quality. If you as a competent technical reviewer think this is useful and accurate for the SDKs/tools it refers to you can/should also update the reviewer information. This tells people that even if the article was created at date X, it was still accurate at date Y.
Regards
Hamishhamishwillee 01:45, 21 October 2011 (EEST)