You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2014/04/23 20:57:55 UTC

[1/7] git commit: CB-6314 - Add StatusBar.isVisible support to Android

Repository: cordova-plugin-statusbar
Updated Branches:
  refs/heads/master bdbaf1295 -> 50febd81b


CB-6314 - Add StatusBar.isVisible support to Android


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/a6a4cf47
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/a6a4cf47
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/a6a4cf47

Branch: refs/heads/master
Commit: a6a4cf473b21056116f8a97e3cad583a57eafdf6
Parents: bdbaf12
Author: Andrey Kurdyumov <ka...@gmail.com>
Authored: Wed Mar 19 16:48:59 2014 +0600
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Wed Mar 19 18:18:56 2014 -0700

----------------------------------------------------------------------
 README.md                  |  2 +-
 src/android/StatusBar.java |  5 +++++
 www/statusbar.js           | 10 +++++-----
 3 files changed, 11 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/a6a4cf47/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 5c05a38..30c16ac 100644
--- a/README.md
+++ b/README.md
@@ -208,7 +208,7 @@ Supported Platforms
 -------------------
 
 - iOS
-
+- Android
 
 
     
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/a6a4cf47/src/android/StatusBar.java
----------------------------------------------------------------------
diff --git a/src/android/StatusBar.java b/src/android/StatusBar.java
index 24b018f..e3182a1 100644
--- a/src/android/StatusBar.java
+++ b/src/android/StatusBar.java
@@ -65,6 +65,11 @@ public class StatusBar extends CordovaPlugin {
         Log.v(TAG, "Executing action: " + action);
         final Activity activity = this.cordova.getActivity();
         final Window window = activity.getWindow();
+        if ("_ready".equals(action)) {
+            boolean statusBarVisible = (window.getAttributes().flags & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0;
+            callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK, statusBarVisible));
+        }
+
         if ("show".equals(action)) {
             this.cordova.getActivity().runOnUiThread(new Runnable() {
                 @Override

http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/a6a4cf47/www/statusbar.js
----------------------------------------------------------------------
diff --git a/www/statusbar.js b/www/statusbar.js
index 6f4e879..53e89fd 100644
--- a/www/statusbar.js
+++ b/www/statusbar.js
@@ -38,11 +38,6 @@ var namedColors = {
     "brown": "#A52A2A"
 };
 
-// prime it
-exec(function (res) {
-    StatusBar.isVisible = res;
-}, null, "StatusBar", "_ready", []);
-
 var StatusBar = {
 
     isVisible: true,
@@ -100,4 +95,9 @@ var StatusBar = {
 
 };
 
+// prime it
+exec(function (res) {
+    StatusBar.isVisible = res;
+}, null, "StatusBar", "_ready", []);
+
 module.exports = StatusBar;


[4/7] git commit: CB-6316 Added README.md which point to the new location for docs

Posted by ia...@apache.org.
CB-6316 Added README.md which point to the new location for docs


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/6ada08af
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/6ada08af
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/6ada08af

Branch: refs/heads/master
Commit: 6ada08af4d0ec3937eec77d8af38d4e6ef549c1e
Parents: cbee196
Author: Andrey Kurdyumov <ka...@gmail.com>
Authored: Thu Mar 20 14:04:42 2014 +0600
Committer: Andrey Kurdyumov <ka...@gmail.com>
Committed: Thu Mar 20 14:04:42 2014 +0600

----------------------------------------------------------------------
 README.md | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/6ada08af/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index e69de29..8b91de9 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,22 @@
+<!---
+ license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+-->
+
+# org.apache.cordova.statusbar
+
+Plugin documentation: [doc/index.md](doc/index.md)
\ No newline at end of file


[5/7] git commit: CB-6460: Update license headers

Posted by ia...@apache.org.
CB-6460: Update license headers


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/004b0853
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/004b0853
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/004b0853

Branch: refs/heads/master
Commit: 004b0853499d7806441fcac3976dec3353129736
Parents: 6ada08a
Author: Ian Clelland <ic...@chromium.org>
Authored: Wed Apr 16 16:22:26 2014 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Wed Apr 16 16:22:26 2014 -0400

----------------------------------------------------------------------
 plugin.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/004b0853/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 6a6c59b..9c65f53 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
 
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
     xmlns:rim="http://www.blackberry.com/ns/widgets"


[6/7] git commit: CB-6452 Updated version and RELEASENOTES.md for release 0.1.5

Posted by ia...@apache.org.
CB-6452 Updated version and RELEASENOTES.md for release 0.1.5


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/d9c9f0bc
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/d9c9f0bc
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/d9c9f0bc

Branch: refs/heads/master
Commit: d9c9f0bc6d0d83cd90d0dd7e3fe1bb7d1e9c83ef
Parents: 004b085
Author: Ian Clelland <ic...@chromium.org>
Authored: Thu Apr 17 10:53:20 2014 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Thu Apr 17 10:53:20 2014 -0400

----------------------------------------------------------------------
 plugin.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/d9c9f0bc/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 9c65f53..20088ea 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
     xmlns:rim="http://www.blackberry.com/ns/widgets"
     xmlns:android="http://schemas.android.com/apk/res/android"
     id="org.apache.cordova.statusbar"
-    version="0.1.4">
+    version="0.1.5">
     <name>StatusBar</name>
     <description>Cordova StatusBar Plugin</description>
     <license>Apache 2.0</license>


[2/7] git commit: CB-6316 Moved StatusBar plugin documentation to docs folder

Posted by ia...@apache.org.
CB-6316 Moved StatusBar plugin documentation to docs folder


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/563c7197
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/563c7197
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/563c7197

Branch: refs/heads/master
Commit: 563c71978a57e073bc857bb70d219a74540a9cc1
Parents: a6a4cf4
Author: Andrey Kurdyumov <ka...@gmail.com>
Authored: Thu Mar 20 13:55:57 2014 +0600
Committer: Andrey Kurdyumov <ka...@gmail.com>
Committed: Thu Mar 20 13:55:57 2014 +0600

----------------------------------------------------------------------
 README.md    | 214 ------------------------------------------------------
 doc/index.md | 214 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 214 insertions(+), 214 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/563c7197/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
deleted file mode 100644
index 30c16ac..0000000
--- a/README.md
+++ /dev/null
@@ -1,214 +0,0 @@
-StatusBar
-======
-
-> The `StatusBar` object provides some functions to customize the iOS and Android StatusBar.
-
-
-Preferences
------------
-
-#### config.xml
-
--  __StatusBarOverlaysWebView__ (boolean, defaults to true). On iOS 7, make the statusbar overlay or not overlay the WebView at startup.
-
-        <preference name="StatusBarOverlaysWebView" value="true" />
-            
-- __StatusBarBackgroundColor__ (color hex string, defaults to #000000). On iOS 7, set the background color of the statusbar by a hex string (#RRGGBB) at startup.
-
-        <preference name="StatusBarBackgroundColor" value="#000000" />
-
-Hiding at startup
------------
-
-During runtime you can use the StatusBar.hide function below, but if you want the StatusBar to be hidden at app startup, you must modify your app's Info.plist file.
-
-Add/edit these two attributes if not present. Set **"Status bar is initially hidden"** to **"YES"** and set **"View controller-based status bar appearance"** to **"NO"**. If you edit it manually without Xcode, the keys and values are:
-
-
-	<key>UIStatusBarHidden</key>
-	<true/>
-	<key>UIViewControllerBasedStatusBarAppearance</key>
-	<false/>
-
- 
-Methods
--------
-
-- StatusBar.overlaysWebView
-- StatusBar.styleDefault
-- StatusBar.styleLightContent
-- StatusBar.styleBlackTranslucent
-- StatusBar.styleBlackOpaque
-- StatusBar.backgroundColorByName
-- StatusBar.backgroundColorByHexString
-- StatusBar.hide
-- StatusBar.show
-
-Properties
---------
-
-- StatusBar.isVisible
-
-Permissions
------------
-
-#### config.xml
-
-            <feature name="StatusBar">
-                <param name="ios-package" value="CDVStatusBar" onload="true" />
-            </feature>
-
-StatusBar.overlaysWebView
-=================
-
-On iOS 7, make the statusbar overlay or not overlay the WebView.
-
-    StatusBar.overlaysWebView(true);
-
-Description
------------
-
-On iOS 7, set to false to make the statusbar appear like iOS 6. Set the style and background color to suit using the other functions.
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-Quick Example
--------------
-
-    StatusBar.overlaysWebView(true);
-    StatusBar.overlaysWebView(false);
-
-StatusBar.styleDefault
-=================
-
-Use the default statusbar (dark text, for light backgrounds).
-
-    StatusBar.styleDefault();
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-StatusBar.styleLightContent
-=================
-
-Use the lightContent statusbar (light text, for dark backgrounds).
-
-    StatusBar.styleLightContent();
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-StatusBar.styleBlackTranslucent
-=================
-
-Use the blackTranslucent statusbar (light text, for dark backgrounds).
-
-    StatusBar.styleBlackTranslucent();
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-StatusBar.styleBlackOpaque
-=================
-
-Use the blackOpaque statusbar (light text, for dark backgrounds).
-
-    StatusBar.styleBlackOpaque();
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-
-StatusBar.backgroundColorByName
-=================
-
-On iOS 7, when you set StatusBar.statusBarOverlaysWebView to false, you can set the background color of the statusbar by color name.
-
-    StatusBar.backgroundColorByName("red");
-
-Supported color names are:
-
-    black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown, clear
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-StatusBar.backgroundColorByHexString
-=================
-
-On iOS 7, when you set StatusBar.statusBarOverlaysWebView to false, you can set the background color of the statusbar by a hex string (#RRGGBB).
-
-    StatusBar.backgroundColorByHexString("#C0C0C0");
-
-
-Supported Platforms
--------------------
-
-- iOS
-
-StatusBar.hide
-=================
-
-Hide the statusbar.
-
-    StatusBar.hide();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Android
-
-StatusBar.show
-=================
-
-Shows the statusbar.
-
-    StatusBar.show();
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Android
-
-
-StatusBar.isVisible
-=================
-
-Read this property to see if the statusbar is visible or not.
-
-    if (StatusBar.isVisible) {
-    	// do something
-    }
-
-
-Supported Platforms
--------------------
-
-- iOS
-- Android
-
-
-    
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/563c7197/doc/index.md
----------------------------------------------------------------------
diff --git a/doc/index.md b/doc/index.md
new file mode 100644
index 0000000..30c16ac
--- /dev/null
+++ b/doc/index.md
@@ -0,0 +1,214 @@
+StatusBar
+======
+
+> The `StatusBar` object provides some functions to customize the iOS and Android StatusBar.
+
+
+Preferences
+-----------
+
+#### config.xml
+
+-  __StatusBarOverlaysWebView__ (boolean, defaults to true). On iOS 7, make the statusbar overlay or not overlay the WebView at startup.
+
+        <preference name="StatusBarOverlaysWebView" value="true" />
+            
+- __StatusBarBackgroundColor__ (color hex string, defaults to #000000). On iOS 7, set the background color of the statusbar by a hex string (#RRGGBB) at startup.
+
+        <preference name="StatusBarBackgroundColor" value="#000000" />
+
+Hiding at startup
+-----------
+
+During runtime you can use the StatusBar.hide function below, but if you want the StatusBar to be hidden at app startup, you must modify your app's Info.plist file.
+
+Add/edit these two attributes if not present. Set **"Status bar is initially hidden"** to **"YES"** and set **"View controller-based status bar appearance"** to **"NO"**. If you edit it manually without Xcode, the keys and values are:
+
+
+	<key>UIStatusBarHidden</key>
+	<true/>
+	<key>UIViewControllerBasedStatusBarAppearance</key>
+	<false/>
+
+ 
+Methods
+-------
+
+- StatusBar.overlaysWebView
+- StatusBar.styleDefault
+- StatusBar.styleLightContent
+- StatusBar.styleBlackTranslucent
+- StatusBar.styleBlackOpaque
+- StatusBar.backgroundColorByName
+- StatusBar.backgroundColorByHexString
+- StatusBar.hide
+- StatusBar.show
+
+Properties
+--------
+
+- StatusBar.isVisible
+
+Permissions
+-----------
+
+#### config.xml
+
+            <feature name="StatusBar">
+                <param name="ios-package" value="CDVStatusBar" onload="true" />
+            </feature>
+
+StatusBar.overlaysWebView
+=================
+
+On iOS 7, make the statusbar overlay or not overlay the WebView.
+
+    StatusBar.overlaysWebView(true);
+
+Description
+-----------
+
+On iOS 7, set to false to make the statusbar appear like iOS 6. Set the style and background color to suit using the other functions.
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+Quick Example
+-------------
+
+    StatusBar.overlaysWebView(true);
+    StatusBar.overlaysWebView(false);
+
+StatusBar.styleDefault
+=================
+
+Use the default statusbar (dark text, for light backgrounds).
+
+    StatusBar.styleDefault();
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+StatusBar.styleLightContent
+=================
+
+Use the lightContent statusbar (light text, for dark backgrounds).
+
+    StatusBar.styleLightContent();
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+StatusBar.styleBlackTranslucent
+=================
+
+Use the blackTranslucent statusbar (light text, for dark backgrounds).
+
+    StatusBar.styleBlackTranslucent();
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+StatusBar.styleBlackOpaque
+=================
+
+Use the blackOpaque statusbar (light text, for dark backgrounds).
+
+    StatusBar.styleBlackOpaque();
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+
+StatusBar.backgroundColorByName
+=================
+
+On iOS 7, when you set StatusBar.statusBarOverlaysWebView to false, you can set the background color of the statusbar by color name.
+
+    StatusBar.backgroundColorByName("red");
+
+Supported color names are:
+
+    black, darkGray, lightGray, white, gray, red, green, blue, cyan, yellow, magenta, orange, purple, brown, clear
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+StatusBar.backgroundColorByHexString
+=================
+
+On iOS 7, when you set StatusBar.statusBarOverlaysWebView to false, you can set the background color of the statusbar by a hex string (#RRGGBB).
+
+    StatusBar.backgroundColorByHexString("#C0C0C0");
+
+
+Supported Platforms
+-------------------
+
+- iOS
+
+StatusBar.hide
+=================
+
+Hide the statusbar.
+
+    StatusBar.hide();
+
+
+Supported Platforms
+-------------------
+
+- iOS
+- Android
+
+StatusBar.show
+=================
+
+Shows the statusbar.
+
+    StatusBar.show();
+
+
+Supported Platforms
+-------------------
+
+- iOS
+- Android
+
+
+StatusBar.isVisible
+=================
+
+Read this property to see if the statusbar is visible or not.
+
+    if (StatusBar.isVisible) {
+    	// do something
+    }
+
+
+Supported Platforms
+-------------------
+
+- iOS
+- Android
+
+
+    
\ No newline at end of file


[7/7] git commit: CB-6452 Actually added RELEASENOTES.md for release 0.1.5

Posted by ia...@apache.org.
CB-6452 Actually added RELEASENOTES.md for release 0.1.5


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/50febd81
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/50febd81
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/50febd81

Branch: refs/heads/master
Commit: 50febd81ba536eaa9db14454cfd73c914f6b49fa
Parents: d9c9f0b
Author: Ian Clelland <ic...@chromium.org>
Authored: Thu Apr 17 11:06:11 2014 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Thu Apr 17 11:06:11 2014 -0400

----------------------------------------------------------------------
 RELEASENOTES.md | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/50febd81/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
new file mode 100644
index 0000000..ef3c505
--- /dev/null
+++ b/RELEASENOTES.md
@@ -0,0 +1,28 @@
+<!--
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+# 
+# http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+-->
+# Release Notes
+
+### 0.1.5 (Apr 17, 2014) (First release as a core Cordova Plugin)
+* CB-6316: Added README.md which point to the new location for docs
+* CB-6316: Added license header to the documentation. Added README.md which point to the new location for docs
+* CB-6316: Moved StatusBar plugin documentation to docs folder
+* CB-6314: [android] Add StatusBar.isVisible support to Android
+* CB-6460: Update license headers


[3/7] git commit: CB-6316 Added license header to the documentation. Added README.md which point to the new location for docs

Posted by ia...@apache.org.
CB-6316 Added license header to the documentation. Added README.md which point to the new location for docs


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/cbee196f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/cbee196f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/cbee196f

Branch: refs/heads/master
Commit: cbee196f1d514cd516fd47fc924ae8185a73b956
Parents: 563c719
Author: Andrey Kurdyumov <ka...@gmail.com>
Authored: Thu Mar 20 14:03:01 2014 +0600
Committer: Andrey Kurdyumov <ka...@gmail.com>
Committed: Thu Mar 20 14:03:01 2014 +0600

----------------------------------------------------------------------
 README.md    |  0
 doc/index.md | 20 ++++++++++++++++++++
 2 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/cbee196f/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e69de29

http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/cbee196f/doc/index.md
----------------------------------------------------------------------
diff --git a/doc/index.md b/doc/index.md
index 30c16ac..403a891 100644
--- a/doc/index.md
+++ b/doc/index.md
@@ -1,3 +1,23 @@
+<!---
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+#org.apache.cordova.statusbar
+
 StatusBar
 ======