You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2012/03/14 20:30:16 UTC

[1/2] spec commit: tweaks to layout for new api specific test pages

Updated Branches:
  refs/heads/master d2427406c -> 7de19632a


tweaks to layout for new api specific test pages


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/commit/7de19632
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/tree/7de19632
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/diff/7de19632

Branch: refs/heads/master
Commit: 7de19632a08c4dba00eacf5b7cf9ec50f59a5f6e
Parents: 80cb3bd
Author: Fil Maj <ma...@gmail.com>
Authored: Wed Mar 14 12:29:48 2012 -0700
Committer: Fil Maj <ma...@gmail.com>
Committed: Wed Mar 14 12:29:48 2012 -0700

----------------------------------------------------------------------
 autotest/index.html               |    2 +-
 autotest/pages/accelerometer.html |    1 +
 autotest/pages/all.html           |    1 +
 autotest/pages/battery.html       |    1 +
 autotest/pages/camera.html        |    1 +
 autotest/pages/capture.html       |    1 +
 autotest/pages/compass.html       |    1 +
 autotest/pages/contacts.html      |    1 +
 autotest/pages/device.html        |    1 +
 autotest/pages/file.html          |    1 +
 autotest/pages/geolocation.html   |    1 +
 autotest/pages/media.html         |    1 +
 autotest/pages/network.html       |    1 +
 autotest/pages/notification.html  |    1 +
 autotest/pages/storage.html       |    1 +
 phonegap.js                       |    1 +
 16 files changed, 16 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/index.html
----------------------------------------------------------------------
diff --git a/autotest/index.html b/autotest/index.html
index 8d62f4f..b55425d 100755
--- a/autotest/index.html
+++ b/autotest/index.html
@@ -7,7 +7,7 @@
     <title>Cordova API Specs</title>
 
     <link rel="stylesheet" href="../master.css" type="text/css" media="screen" title="no title" charset="utf-8">
-
+    <script type="text/javascript" src="../phonegap.js"></script>
   </head>
   <body id="stage" class="theme">
     <h1>Cordova API Specs</h1>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/accelerometer.html
----------------------------------------------------------------------
diff --git a/autotest/pages/accelerometer.html b/autotest/pages/accelerometer.html
index fa4cec9..5a8c02c 100644
--- a/autotest/pages/accelerometer.html
+++ b/autotest/pages/accelerometer.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Accelerometer API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/all.html
----------------------------------------------------------------------
diff --git a/autotest/pages/all.html b/autotest/pages/all.html
index d2564d1..09fa27d 100644
--- a/autotest/pages/all.html
+++ b/autotest/pages/all.html
@@ -52,6 +52,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: All API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/battery.html
----------------------------------------------------------------------
diff --git a/autotest/pages/battery.html b/autotest/pages/battery.html
index 58c43b8..72d6929 100644
--- a/autotest/pages/battery.html
+++ b/autotest/pages/battery.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Battery API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/camera.html
----------------------------------------------------------------------
diff --git a/autotest/pages/camera.html b/autotest/pages/camera.html
index f49e896..434de2a 100644
--- a/autotest/pages/camera.html
+++ b/autotest/pages/camera.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Camera API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/capture.html
----------------------------------------------------------------------
diff --git a/autotest/pages/capture.html b/autotest/pages/capture.html
index 885ab23..4e50fdd 100644
--- a/autotest/pages/capture.html
+++ b/autotest/pages/capture.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Capture API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/compass.html
----------------------------------------------------------------------
diff --git a/autotest/pages/compass.html b/autotest/pages/compass.html
index 4963219..015f9d0 100644
--- a/autotest/pages/compass.html
+++ b/autotest/pages/compass.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Compass API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/contacts.html
----------------------------------------------------------------------
diff --git a/autotest/pages/contacts.html b/autotest/pages/contacts.html
index 0175d37..ca9fe54 100644
--- a/autotest/pages/contacts.html
+++ b/autotest/pages/contacts.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Contacts API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/device.html
----------------------------------------------------------------------
diff --git a/autotest/pages/device.html b/autotest/pages/device.html
index d2da684..59c7023 100644
--- a/autotest/pages/device.html
+++ b/autotest/pages/device.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Device API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/file.html
----------------------------------------------------------------------
diff --git a/autotest/pages/file.html b/autotest/pages/file.html
index bbc9110..a5c0794 100644
--- a/autotest/pages/file.html
+++ b/autotest/pages/file.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: File API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/geolocation.html
----------------------------------------------------------------------
diff --git a/autotest/pages/geolocation.html b/autotest/pages/geolocation.html
index 9d2a0da..4886f98 100644
--- a/autotest/pages/geolocation.html
+++ b/autotest/pages/geolocation.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Geolocation API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/media.html
----------------------------------------------------------------------
diff --git a/autotest/pages/media.html b/autotest/pages/media.html
index c88a956..5223305 100644
--- a/autotest/pages/media.html
+++ b/autotest/pages/media.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Media API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/network.html
----------------------------------------------------------------------
diff --git a/autotest/pages/network.html b/autotest/pages/network.html
index e8be0d3..fd230ab 100644
--- a/autotest/pages/network.html
+++ b/autotest/pages/network.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Network API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/notification.html
----------------------------------------------------------------------
diff --git a/autotest/pages/notification.html b/autotest/pages/notification.html
index d790f73..4cd54e8 100644
--- a/autotest/pages/notification.html
+++ b/autotest/pages/notification.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Notification API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/autotest/pages/storage.html
----------------------------------------------------------------------
diff --git a/autotest/pages/storage.html b/autotest/pages/storage.html
index 801636a..f472c3b 100644
--- a/autotest/pages/storage.html
+++ b/autotest/pages/storage.html
@@ -39,6 +39,7 @@
     </script>
   </head>
     <body>
+        <a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
         <h1 id="qunit-header">Cordova: Storage API Specs</h1>
         <h2 id="qunit-banner"></h2>
         <h2 id="qunit-userAgent"></h2>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-mobile-spec/blob/7de19632/phonegap.js
----------------------------------------------------------------------
diff --git a/phonegap.js b/phonegap.js
index da0bf17..70da4bf 100755
--- a/phonegap.js
+++ b/phonegap.js
@@ -1,3 +1,4 @@
+document.write('<script type="text/javascript" charset="utf-8" src="../../phonegap-1.3.0.js"></script>');
 document.write('<script type="text/javascript" charset="utf-8" src="../phonegap-1.3.0.js"></script>');
 document.write('<script type="text/javascript" charset="utf-8" src="phonegap-1.3.0.js"></script>');