Revert "Updated application sources" 04/22404/1 master
authorPiotr Wronski <p.wronski@samsung.com>
Tue, 3 Jun 2014 06:06:41 +0000 (23:06 -0700)
committerPiotr Wronski <p.wronski@samsung.com>
Tue, 3 Jun 2014 06:06:41 +0000 (23:06 -0700)
This reverts commit b37c4dc99f726e5ce8883ff92b2b23ae95ce1b1a.

Change-Id: I4dab5ebd7dc206d6b8ff78a7842ef780bea98f35

project/config.xml
project/css/style.css
project/index.html
project/js/config.js
project/js/main.js

index ef1be7e..fbfac1f 100755 (executable)
@@ -1,22 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<widget
-    xmlns="http://www.w3.org/ns/widgets"
-    xmlns:tizen="http://tizen.org/ns/widgets"
-    id="http://sample-web-application.tizen.org/SystemInfo"
-    version="2.2.0"
-    viewmodes="maximized">
-
-    <tizen:application
-        id="nGZWgKPPAa.Systeminfo"
-        package="nGZWgKPPAa"
-        required_version="2.2" />
-
-    <content src="index.html" />
-
-    <icon src="icon.png" />
-
-    <name>System Info</name>
-
-    <feature name="http://tizen.org/feature/screen.size.normal.720.1280" />
-
+<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="http://yourdomain/Systeminfo" version="0.1.7" viewmodes="maximized">
+       <tizen:application id="nGZWgKPPAa.Systeminfo" package="nGZWgKPPAa" required_version="2.2"/>
+       <content src="index.html"/>
+       <icon src="icon.png"/>
+       <name>System Info</name>
+       <feature name="http://tizen.org/feature/screen.size.normal.720.1280"/>
 </widget>
index 0a8b9dd..6d2ee4f 100755 (executable)
@@ -1,7 +1,3 @@
-body {
-       -webkit-user-select: none;
-}
-
 li>label {
        color:#646464;
 }
index 761c644..752ef84 100644 (file)
@@ -1,54 +1,44 @@
 <!DOCTYPE html>
 <html>
 <head>
-
-    <meta charset="utf-8"/>
-    <meta name="viewport" content="width=360, user-scalable=no"/>
-
-    <title>System info</title>
-    <meta name="description" content="System info API Tutorial"/>
-
-    <script src="/usr/share/tizen-web-ui-fw/latest/js/jquery.min.js"></script>
-    <script src="./js/config.js"></script>
-    <script src="/usr/share/tizen-web-ui-fw/latest/js/tizen-web-ui-fw-libs.min.js"></script>
-    <script src="/usr/share/tizen-web-ui-fw/latest/js/tizen-web-ui-fw.min.js" data-framework-viewport-scale="false" data-framework-theme="tizen-white"></script>
-
-    <link rel="stylesheet" type="text/css" href="./css/style.css"/>
-    <script type="text/javascript" src="./js/main.js"></script>
-
+       <meta charset="utf-8"/>
+       <meta name="description" content="System info API Tutorial"/>
+       <title>System info</title>
+       <script src="tizen-web-ui-fw/latest/js/jquery.min.js"></script>
+       <script src="./js/config.js"></script>
+       <script src="tizen-web-ui-fw/latest/js/tizen-web-ui-fw-libs.min.js"></script>
+       <script src="tizen-web-ui-fw/latest/js/tizen-web-ui-fw.min.js"
+                       data-framework-viewport-scale="false"
+                       data-framework-theme="tizen-white"></script>
+       <script type="text/javascript" src="./js/main.js"></script>
+       <link rel="stylesheet" type="text/css" href="./css/style.css"/>
 </head>
 <body>
 
-    <div data-role="page" id="main">
-
-        <div data-role="header" data-position="fixed">
-            <h1>System information</h1>
-        </div>
-
-        <div data-role="content">
-            <ul data-role="listview">
-                <li id="storage-info">Storage</li>
-                <li id="battery-info">Battery</li>
-                <li id="cpu-info">CPU</li>
-                <li id="display-info">Display</li>
-                <li id="orientation-info">Device orientation</li>
-            </ul>
-        </div>
-
-    </div>
-
-    <div data-role="page" id="info">
-
-        <div data-role="header" data-position="fixed">
-            <h1 id="info-title"></h1>
-        </div>
-
-        <div data-role="content">
-            <ul data-role="listview" id="info-list">
-            </ul>
-        </div>
-
-    </div>
+       <div data-role="page" id="main">
+               <div data-role="header" data-position="fixed">
+                       <h1>System information</h1>
+               </div>
+               <div data-role="content">
+                       <ul data-role="listview">
+                               <li id="storage-info">Storage</li>
+                               <li id="battery-info">Battery</li>
+                               <li id="cpu-info">CPU</li>
+                               <li id="display-info">Display</li>
+                               <li id="orientation-info">Device orientation</li>
+                       </ul>
+               </div>
+       </div>
+
+       <div data-role="page" id="info">
+               <div data-role="header" data-position="fixed">
+                       <h1 id="info-title"></h1>
+               </div>
+               <div data-role="content">
+                       <ul data-role="listview" id="info-list">
+                       </ul>
+               </div>
+       </div>
 
 </body>
 </html>
index 3782913..7581f82 100644 (file)
  *      limitations under the License.
  */
 
-/*jslint devel: true*/
-/*global $*/
-
 //tizen-web-ui-fw configuration
-$(document).bind('mobileinit', function () {
-    'use strict';
-    $.mobile.loadingMessageTextVisible = false;
-    $.mobile.defaultPageTransition = "none";
-    // Disable context menu
-    $(document).bind('contextmenu', function (e) {
-        return false;
-    });
-    // Disable text selection
-    $(document).delegate('[data-role="page"]', 'pageinit', function (e) {
-        $.mobile.tizen.disableSelection($(e.target));
-    });
+$(document).bind("mobileinit", function() {
+       $.mobile.loadingMessageTextVisible = false;
+       $.mobile.defaultPageTransition = "none";
+       // Disable context menu
+       $(document).bind("contextmenu", function(e) {
+               return false;
+       });
+       // Disable text selection
+       $(document).delegate("[data-role='page']", "pageinit", function(e) {
+               $.mobile.tizen.disableSelection($(e.target));
+       });
 });
index 1e308b4..f9de595 100644 (file)
  *      limitations under the License.
  */
 
-/*jslint devel: true*/
-/*global $, tizen, window*/
-
-var gInfoTitle = '', gInfo = '', gBatteryListener;
+var gInfoTitle = "", gInfo = "", gBatteryListener;
+
+$(document).delegate("#main", "pageinit", function() {
+       $("#storage-info").bind("vclick", function() {
+               getSystemProperty("STORAGE", onStorageSuccess);
+               return false;
+       });
+       $("#battery-info").bind("vclick", function() {
+               getSystemProperty("BATTERY", onBatterySuccess);
+               return false;
+       });
+       $("#cpu-info").bind("vclick", function() {
+               getSystemProperty("CPU", onCpuInfoSuccess);
+               return false;
+       });
+       $("#display-info").bind("vclick", function() {
+               getSystemProperty("DISPLAY", onDisplaySuccess);
+               return false;
+       });
+
+       $("#orientation-info").bind("vclick", function() {
+               getSystemProperty("DEVICE_ORIENTATION", onOrientationSuccess);
+               return false;
+       });
+
+       $(window).on('tizenhwkey', function (e) {
+               if (e.originalEvent.keyName === "back") {
+                       if ($.mobile.activePage.attr('id') === 'main') {
+                               tizen.application.getCurrentApplication().exit();
+                       } else {
+                               history.back();
+                       }
+               }
+       });
+});
 
-$(document).delegate('#info', 'pageinit', function () {
-    'use strict';
-    $('#info').bind('pagebeforeshow', function () {
-        $('#info-title').html(gInfoTitle);
-        $('#info-list').html(gInfo).trigger('create').listview('refresh');
-    });
+$(document).delegate("#info", "pageinit", function() {
+       $("#info").bind("pagebeforeshow", function() {
+               $("#info-title").html(gInfoTitle);
+               $("#info-list").html(gInfo).trigger("create").listview("refresh");
+       });
 });
 
 function onError(e) {
-    'use strict';
-    alert('Error: ' + e.message);
+       alert("Error: " + e.message);
 }
 
 function make2lineListItem(title, value) {
-    'use strict';
-    return '<li class="ui-li-has-multiline ui-li-text-ellipsis">'
-        + title
-        + '<span class="ui-li-text-sub">'
-        + value
-        + '</span></li>';
+       return '<li class="ui-li-has-multiline ui-li-text-ellipsis">'
+                       + title
+                       + '<span class="ui-li-text-sub">'
+                       + value
+                       + '</span></li>';
 }
 
 function make1lineListItem(value) {
-    'use strict';
-    return '<li>' + value + '</li>';
+       return '<li>' + value + '</li>';
 }
 
 function makeDividerListItem(value) {
-    'use strict';
-    return '<li data-role="list-divider">' + value + '</li>';
+       return '<li data-role="list-divider">' + value + '</li>';
 }
 
 function onStorageSuccess(storages) {
-    'use strict';
-    var i;
-    gInfoTitle = 'Storages (' + storages.units.length + ')';
-    gInfo = '';
-    for (i = 0; i < storages.units.length; i = i + 1) {
-        gInfo += makeDividerListItem('Storage ' + (i + 1))
-            + make2lineListItem('Type', storages.units[i].type)
-            + make2lineListItem('Capacity',
-                Math.floor(storages.units[i].capacity / 1000000) + ' MB')
-            + make2lineListItem('Available capacity',
-                Math.floor(storages.units[i].availableCapacity / 1000000)
-                + ' MB')
-            + make2lineListItem('Removable',
-                (storages.units[i].isRemoveable === true ? 'Yes' : 'No'));
-    }
-
-    $.mobile.changePage('#info');
+       gInfoTitle = "Storages (" + storages.units.length + ")";
+       gInfo = "";
+       for (var i = 0; i < storages.units.length; i++) {
+               gInfo += makeDividerListItem("Storage " + (i + 1))
+                               + make2lineListItem("Type", storages.units[i].type)
+                               + make2lineListItem("Capacity", Math.floor(storages.units[i].capacity / 1000000) + " MB")
+                               + make2lineListItem("Available capacity", Math.floor(storages.units[i].availableCapacity / 1000000) + " MB")
+                               + make2lineListItem("Removable", (storages.units[i].isRemoveable == true ? "Yes" : "No"));
+       }
+
+       $.mobile.changePage("#info");
 }
 
 function onBatterySuccess(battery) {
-    'use strict';
-    gInfoTitle = 'Battery';
-    gInfo = make2lineListItem('Level', battery.level)
-        + make2lineListItem('Charging',
-            (battery.isCharging === true ? 'Yes' : 'No'));
+       gInfoTitle = "Battery";
+       gInfo = make2lineListItem("Level", battery.level)
+                       + make2lineListItem("Charging", (battery.isCharging == true ? "Yes" : "No"));
 
-    $.mobile.changePage('#info');
+       $.mobile.changePage("#info");
 }
 
 function onCpuInfoSuccess(cpu) {
-    'use strict';
-    gInfoTitle = 'CPU';
-    gInfo = make2lineListItem('Load', cpu.load);
+       gInfoTitle = "CPU";
+       gInfo = make2lineListItem("Load", cpu.load);
 
-    $.mobile.changePage('#info');
+       $.mobile.changePage("#info");
 }
 
 function onDisplaySuccess(display) {
-    'use strict';
-    gInfoTitle = 'Display';
-    gInfo = makeDividerListItem('Resolution')
-        + make2lineListItem('Width', display.resolutionWidth)
-        + make2lineListItem('Height', display.resolutionHeight)
-        + makeDividerListItem('Dots per inch')
-        + make2lineListItem('Horizontal', display.dotsPerInchWidth)
-        + make2lineListItem('Vertical', display.dotsPerInchHeight)
-        + makeDividerListItem('Physical size')
-        + make2lineListItem('Width', display.physicalWidth)
-        + make2lineListItem('Height', display.physicalHeight)
-        + makeDividerListItem('Brightness')
-        + make1lineListItem(display.brightness);
-
-    $.mobile.changePage('#info');
+       gInfoTitle = "Display";
+       gInfo = makeDividerListItem("Resolution")
+                       + make2lineListItem("Width", display.resolutionWidth)
+                       + make2lineListItem("Height", display.resolutionHeight)
+                       + makeDividerListItem("Dots per inch")
+                       + make2lineListItem("Horizontal", display.dotsPerInchWidth)
+                       + make2lineListItem("Vertical", display.dotsPerInchHeight)
+                       + makeDividerListItem("Physical size")
+                       + make2lineListItem("Width", display.physicalWidth)
+                       + make2lineListItem("Height", display.physicalHeight)
+                       + makeDividerListItem("Brightness")
+                       + make1lineListItem(display.brightness);
+
+       $.mobile.changePage("#info");
 }
 
 function onDeviceSuccess(device) {
-    'use strict';
-    gInfoTitle = 'Device';
-    gInfo = make2lineListItem('IMEI', device.imei)
-        + make2lineListItem('Model', device.model)
-        + make2lineListItem('Version', device.version)
-        + make2lineListItem('Vendor', device.vendor);
-
-    $.mobile.changePage('#info');
+       gInfoTitle = "Device";
+       gInfo = make2lineListItem("IMEI", device.imei)
+                       + make2lineListItem("Model", device.model)
+                       + make2lineListItem("Version", device.version)
+                       + make2lineListItem("Vendor", device.vendor);
+
+       $.mobile.changePage("#info");
 }
 
 function onOrientationSuccess(orientation) {
-    'use strict';
-    gInfoTitle = 'Device orientation';
-    gInfo = make2lineListItem('Status', orientation.status);
+       gInfoTitle = "Device orientation";
+       gInfo = make2lineListItem("Status", orientation.status);
 
-    $.mobile.changePage('#info');
+       $.mobile.changePage("#info");
 }
 
 function getSystemProperty(property, onSuccess) {
-    'use strict';
-    try {
-        tizen.systeminfo.getPropertyValue(property, onSuccess, onError);
-    } catch (e) {
-        alert('Exception: ' + e.message);
-    }
+       try {
+               tizen.systeminfo.getPropertyValue(property, onSuccess, onError);
+       } catch (e) {
+               alert("Exception: " + e.message);
+       }
 }
-
-$(document).delegate('#main', 'pageinit', function () {
-    'use strict';
-    $('#storage-info').bind('vclick', function () {
-        getSystemProperty('STORAGE', onStorageSuccess);
-        return false;
-    });
-    $('#battery-info').bind('vclick', function () {
-        getSystemProperty('BATTERY', onBatterySuccess);
-        return false;
-    });
-    $('#cpu-info').bind('vclick', function () {
-        getSystemProperty('CPU', onCpuInfoSuccess);
-        return false;
-    });
-    $('#display-info').bind('vclick', function () {
-        getSystemProperty('DISPLAY', onDisplaySuccess);
-        return false;
-    });
-
-    $('#orientation-info').bind('vclick', function () {
-        getSystemProperty('DEVICE_ORIENTATION', onOrientationSuccess);
-        return false;
-    });
-
-    $(window).on('tizenhwkey', function (e) {
-        if (e.originalEvent.keyName === 'back') {
-            if ($.mobile.activePage.attr('id') === 'main') {
-                tizen.application.getCurrentApplication().exit();
-            } else {
-                history.back();
-            }
-        }
-    });
-});
-