You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/09/10 21:03:51 UTC

[1/3] docs commit: Added whitespace to bottom of docs

Repository: cordova-docs
Updated Branches:
  refs/heads/cordova-website ff7f97ce1 -> 7c30e8c6f


Added whitespace to bottom of docs


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/538f3e3b
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/538f3e3b
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/538f3e3b

Branch: refs/heads/cordova-website
Commit: 538f3e3bc3e8051d6bc996c4d91f123c050cc37e
Parents: ff7f97c
Author: riknoll <ri...@microsoft.com>
Authored: Thu Sep 10 09:35:32 2015 -0700
Committer: riknoll <ri...@microsoft.com>
Committed: Thu Sep 10 09:35:32 2015 -0700

----------------------------------------------------------------------
 www/static/css-src/_docs.scss | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/538f3e3b/www/static/css-src/_docs.scss
----------------------------------------------------------------------
diff --git a/www/static/css-src/_docs.scss b/www/static/css-src/_docs.scss
index cd1957f..8897e58 100644
--- a/www/static/css-src/_docs.scss
+++ b/www/static/css-src/_docs.scss
@@ -1,4 +1,6 @@
 .docs {
+    margin-bottom: 20px;
+
     .site-toc-title {
         font-weight: 300;
         font-size: 22px;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/3] docs commit: Fixed typo in tools section of main page

Posted by db...@apache.org.
Fixed typo in tools section of main page


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/7c30e8c6
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/7c30e8c6
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/7c30e8c6

Branch: refs/heads/cordova-website
Commit: 7c30e8c6f5b008e597e50b9a31e6e3238548d91b
Parents: 88ab49a
Author: riknoll <ri...@microsoft.com>
Authored: Thu Sep 10 10:46:17 2015 -0700
Committer: riknoll <ri...@microsoft.com>
Committed: Thu Sep 10 10:46:17 2015 -0700

----------------------------------------------------------------------
 www/_includes/tools_and_showcase.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/7c30e8c6/www/_includes/tools_and_showcase.html
----------------------------------------------------------------------
diff --git a/www/_includes/tools_and_showcase.html b/www/_includes/tools_and_showcase.html
index 232836f..d3cbfcc 100644
--- a/www/_includes/tools_and_showcase.html
+++ b/www/_includes/tools_and_showcase.html
@@ -1,7 +1,7 @@
 <div class="container">
     <div class="row showcase_section_intro">
         <div class="col-md-12 text-center">
-            <h1>Codorva Tools</h1>
+            <h1>Cordova Tools</h1>
             <h2>Work with Cordova even more efficiently</h2>
         </div>
     </div>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/3] docs commit: Added warning for HTTPS search results

Posted by db...@apache.org.
Added warning for HTTPS search results


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/88ab49a1
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/88ab49a1
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/88ab49a1

Branch: refs/heads/cordova-website
Commit: 88ab49a17e9d17e80eed68f41c4299579e5dd1fe
Parents: 538f3e3
Author: riknoll <ri...@microsoft.com>
Authored: Thu Sep 10 09:54:08 2015 -0700
Committer: riknoll <ri...@microsoft.com>
Committed: Thu Sep 10 10:10:01 2015 -0700

----------------------------------------------------------------------
 www/static/plugins/app.js | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/88ab49a1/www/static/plugins/app.js
----------------------------------------------------------------------
diff --git a/www/static/plugins/app.js b/www/static/plugins/app.js
index 2707d13..065ddd2 100755
--- a/www/static/plugins/app.js
+++ b/www/static/plugins/app.js
@@ -421,6 +421,13 @@ var App = React.createClass({
                 <PlatformButton platform={platform} keyword={keyword} initiallyActive={active}/>
             );
         }
+        var listContent = null;
+        if(window.location.protocol !== "https:") {
+            listContent = <PluginList plugins={this.state.searchResults} />;
+        } else {
+            var httpUrl = window.location.href.replace("https://", "http://");
+            listContent = <div className="alert alert-warning" role="alert">Search results are not currently supported over HTTPS. Please visit this page <a href={httpUrl}>using HTTP</a></div>;
+        }
         return (
             <div>
                 <div className="container">
@@ -473,7 +480,7 @@ var App = React.createClass({
                         </div>
                     </div>
                 </div>
-                <PluginList plugins={this.state.searchResults} />
+                {listContent}
                 <div className="row plugin-search-credit">
                     Search results powered by <a href="http://npmsearch.com/">npmsearch.com</a>
                 </div>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org