Bugs fixed; version up 43/23243/1
authorWenchao Wang <wenchao.wang@intel.com>
Fri, 20 Jun 2014 09:36:16 +0000 (17:36 +0800)
committerWenchao Wang <wenchao.wang@intel.com>
Fri, 20 Jun 2014 09:36:16 +0000 (17:36 +0800)
Fixed TZDate constructor overload issue

Change-Id: I46f5e3d5faed24ebb65098e74f606f8c8d710b6b
Signed-off-by: Wenchao Wang <wenchao.wang@intel.com>
package/changelog
package/pkginfo.manifest
web/cache.manifest
web/ripple.js

index 36e7201..9e6c40f 100644 (file)
@@ -1,3 +1,7 @@
+* 2.0.37
+- Updated Time module
+- Bugs fixing
+== wenchao.wang <wenchao.wang@intel.com> 2014-06-20 17:30
 * 2.0.36
 - New Locale module implementation
 - Bugs fixing
index efa905c..2baef41 100644 (file)
@@ -1,4 +1,4 @@
-Version:2.0.36
+Version:2.0.37
 Maintainer:hyeongseok heo <hyeong-seok.heo@samsung.com>, gyeongseok seo <gyeongseok.seo@samsung.com>, jihoon song <jihoon80.song@samsung.com>, changhyun lee <changhyun1.lee@samsung.com>, bonyong lee <bonyong.lee@samsung.com>
 
 Package:websimulator-core
index aa7fe76..ef49829 100644 (file)
@@ -107,4 +107,4 @@ images/AboutLogo.png
 images/refreshIcon.png
 images/ui-bg-hashed.png
 images/tizen-sdk-menu.png
-# Manifest build date: Fri Jun 06 2014 17:16:16 GMT+0800 (CST)
\ No newline at end of file
+# Manifest build date: Fri Jun 20 2014 17:30:20 GMT+0800 (CST)
\ No newline at end of file
index bdd608a..0aa00c2 100644 (file)
@@ -1,5 +1,5 @@
 /*! 
-  Ripple Mobile Environment Emulator v0.9.8 :: Built On Fri Jun 06 2014 17:16:14 GMT+0800 (CST)
+  Ripple Mobile Environment Emulator v0.9.8 :: Built On Fri Jun 20 2014 17:30:18 GMT+0800 (CST)
 
                                 Apache License
                            Version 2.0, January 2004
@@ -91370,6 +91370,11 @@ function TZDate (dt) {
                 throw new WebAPIException(errorcode.TYPE_MISMATCH_ERR);
             } else {
                 d = new Date(arguments[0], arguments[1], arguments[2], hour, min, sec, msec);
+                if (arguments[7] !== undefined) {
+                    tzid = arguments[7];
+                } else {
+                    tzid = time.getLocalTimezone();
+                }
             }
         }
     }