You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mu...@apache.org on 2015/07/21 23:19:01 UTC

[4/4] cordova-registry-web git commit: fix rel path issues

fix rel path issues


Project: http://git-wip-us.apache.org/repos/asf/cordova-registry-web/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-registry-web/commit/3640a6bb
Tree: http://git-wip-us.apache.org/repos/asf/cordova-registry-web/tree/3640a6bb
Diff: http://git-wip-us.apache.org/repos/asf/cordova-registry-web/diff/3640a6bb

Branch: refs/heads/master
Commit: 3640a6bba2e412f13e74f9715ce3972711faff1e
Parents: b026244
Author: Murat Sutunc <su...@gmail.com>
Authored: Tue Jul 21 14:18:55 2015 -0700
Committer: Murat Sutunc <su...@gmail.com>
Committed: Tue Jul 21 14:18:55 2015 -0700

----------------------------------------------------------------------
 attachments/npm/developers.html       |   2 +-
 attachments/npm/etc/browserconfig.xml |  12 +++++++++
 attachments/npm/etc/favicon.ico       | Bin 0 -> 15086 bytes
 attachments/npm/etc/manifest.json     |  41 +++++++++++++++++++++++++++++
 attachments/npm/faq.html              |   2 +-
 attachments/npm/index.html            |  38 +++++++++++++-------------
 attachments/npm/js/app.js             |  12 +++++----
 npm-search/src/developers.html        |   2 +-
 npm-search/src/etc/browserconfig.xml  |   8 +++---
 npm-search/src/etc/manifest.json      |  12 ++++-----
 npm-search/src/faq.html               |   2 +-
 npm-search/src/index.html             |  38 +++++++++++++-------------
 12 files changed, 112 insertions(+), 57 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-registry-web/blob/3640a6bb/attachments/npm/developers.html
----------------------------------------------------------------------
diff --git a/attachments/npm/developers.html b/attachments/npm/developers.html
index edb1762..f7622c7 100644
--- a/attachments/npm/developers.html
+++ b/attachments/npm/developers.html
@@ -3,7 +3,7 @@
   <head>
     <meta http-equiv='Content-type' content='text/html; charset=utf-8'>
     <title>Cordova Search Website</title>
-    <link rel="stylesheet" href="/css/styles.css" />
+    <link rel="stylesheet" href="css/styles.css" />
   </head>
 
   <body>

http://git-wip-us.apache.org/repos/asf/cordova-registry-web/blob/3640a6bb/attachments/npm/etc/browserconfig.xml
----------------------------------------------------------------------
diff --git a/attachments/npm/etc/browserconfig.xml b/attachments/npm/etc/browserconfig.xml
new file mode 100644
index 0000000..d0d633f
--- /dev/null
+++ b/attachments/npm/etc/browserconfig.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+  <msapplication>
+    <tile>
+      <square70x70logo src="img/mstile-70x70.png"/>
+      <square150x150logo src="img/mstile-150x150.png"/>
+      <square310x310logo src="img/mstile-310x310.png"/>
+      <wide310x150logo src="img/mstile-310x150.png"/>
+      <TileColor>#da532c</TileColor>
+    </tile>
+  </msapplication>
+</browserconfig>

http://git-wip-us.apache.org/repos/asf/cordova-registry-web/blob/3640a6bb/attachments/npm/etc/favicon.ico
----------------------------------------------------------------------
diff --git a/attachments/npm/etc/favicon.ico b/attachments/npm/etc/favicon.ico
new file mode 100644
index 0000000..365e772
Binary files /dev/null and b/attachments/npm/etc/favicon.ico differ

http://git-wip-us.apache.org/repos/asf/cordova-registry-web/blob/3640a6bb/attachments/npm/etc/manifest.json
----------------------------------------------------------------------
diff --git a/attachments/npm/etc/manifest.json b/attachments/npm/etc/manifest.json
new file mode 100644
index 0000000..e72ce16
--- /dev/null
+++ b/attachments/npm/etc/manifest.json
@@ -0,0 +1,41 @@
+{
+	"name": "Cordova npm Search",
+	"icons": [
+		{
+			"src": "img\/android-chrome-36x36.png",
+			"sizes": "36x36",
+			"type": "image\/png",
+			"density": "0.75"
+		},
+		{
+			"src": "img\/android-chrome-48x48.png",
+			"sizes": "48x48",
+			"type": "image\/png",
+			"density": "1.0"
+		},
+		{
+			"src": "img\/android-chrome-72x72.png",
+			"sizes": "72x72",
+			"type": "image\/png",
+			"density": "1.5"
+		},
+		{
+			"src": "img\/android-chrome-96x96.png",
+			"sizes": "96x96",
+			"type": "image\/png",
+			"density": "2.0"
+		},
+		{
+			"src": "img\/android-chrome-144x144.png",
+			"sizes": "144x144",
+			"type": "image\/png",
+			"density": "3.0"
+		},
+		{
+			"src": "img\/android-chrome-192x192.png",
+			"sizes": "192x192",
+			"type": "image\/png",
+			"density": "4.0"
+		}
+	]
+}

http://git-wip-us.apache.org/repos/asf/cordova-registry-web/blob/3640a6bb/attachments/npm/faq.html
----------------------------------------------------------------------
diff --git a/attachments/npm/faq.html b/attachments/npm/faq.html
index 53854f9..55a69b8 100644
--- a/attachments/npm/faq.html
+++ b/attachments/npm/faq.html
@@ -3,7 +3,7 @@
   <head>
     <meta http-equiv='Content-type' content='text/html; charset=utf-8'>
     <title>Cordova Search Website</title>
-    <link rel="stylesheet" href="/css/styles.css" />
+    <link rel="stylesheet" href="css/styles.css" />
   </head>
 
   <body>

http://git-wip-us.apache.org/repos/asf/cordova-registry-web/blob/3640a6bb/attachments/npm/index.html
----------------------------------------------------------------------
diff --git a/attachments/npm/index.html b/attachments/npm/index.html
index 51e974f..971d117 100644
--- a/attachments/npm/index.html
+++ b/attachments/npm/index.html
@@ -4,25 +4,25 @@
     <meta http-equiv='Content-type' content='text/html; charset=utf-8'>
     <meta name='description' content='This website is used to search the apache cordova plugins hosted on npm. The plugins can be searched across titles, descriptions, authors, platforms and licenses. You can also view the download counts for each plugin. The page also displays platforms supported, version and last updated day for the cordova plugins.'>
     <title>Cordova Plugin NPM Search</title>
-    <link rel="stylesheet" href="/css/styles.css" />
-    <link rel="apple-touch-icon" sizes="57x57" href="/img/apple-touch-icon-57x57.png">
-    <link rel="apple-touch-icon" sizes="60x60" href="/img/apple-touch-icon-60x60.png">
-    <link rel="apple-touch-icon" sizes="72x72" href="/img/apple-touch-icon-72x72.png">
-    <link rel="apple-touch-icon" sizes="76x76" href="/img/apple-touch-icon-76x76.png">
-    <link rel="apple-touch-icon" sizes="114x114" href="/img/apple-touch-icon-114x114.png">
-    <link rel="apple-touch-icon" sizes="120x120" href="/img/apple-touch-icon-120x120.png">
-    <link rel="apple-touch-icon" sizes="144x144" href="/img/apple-touch-icon-144x144.png">
-    <link rel="apple-touch-icon" sizes="152x152" href="/img/apple-touch-icon-152x152.png">
-    <link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon-180x180.png">
-    <link rel="icon" type="image/png" href="/img/favicon-32x32.png" sizes="32x32">
-    <link rel="icon" type="image/png" href="/img/android-chrome-192x192.png" sizes="192x192">
-    <link rel="icon" type="image/png" href="/img/favicon-96x96.png" sizes="96x96">
-    <link rel="icon" type="image/png" href="/img/favicon-16x16.png" sizes="16x16">
-    <link rel="manifest" href="/img/manifest.json">
-    <link rel="shortcut icon" href="/img/favicon.ico">
+    <link rel="stylesheet" href="css/styles.css" />
+    <link rel="apple-touch-icon" sizes="57x57" href="img/apple-touch-icon-57x57.png">
+    <link rel="apple-touch-icon" sizes="60x60" href="img/apple-touch-icon-60x60.png">
+    <link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png">
+    <link rel="apple-touch-icon" sizes="76x76" href="img/apple-touch-icon-76x76.png">
+    <link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png">
+    <link rel="apple-touch-icon" sizes="120x120" href="img/apple-touch-icon-120x120.png">
+    <link rel="apple-touch-icon" sizes="144x144" href="img/apple-touch-icon-144x144.png">
+    <link rel="apple-touch-icon" sizes="152x152" href="img/apple-touch-icon-152x152.png">
+    <link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon-180x180.png">
+    <link rel="icon" type="image/png" href="img/favicon-32x32.png" sizes="32x32">
+    <link rel="icon" type="image/png" href="img/android-chrome-192x192.png" sizes="192x192">
+    <link rel="icon" type="image/png" href="img/favicon-96x96.png" sizes="96x96">
+    <link rel="icon" type="image/png" href="img/favicon-16x16.png" sizes="16x16">
+    <link rel="manifest" href="etc/manifest.json">
+    <link rel="shortcut icon" href="etc/favicon.ico">
     <meta name="msapplication-TileColor" content="#da532c">
-    <meta name="msapplication-TileImage" content="/img/mstile-144x144.png">
-    <meta name="msapplication-config" content="/img/browserconfig.xml">
+    <meta name="msapplication-TileImage" content="img/mstile-144x144.png">
+    <meta name="msapplication-config" content="etc/browserconfig.xml">
     <meta name="theme-color" content="#ffffff">
   </head>
 
@@ -47,7 +47,7 @@
     </div>
     <div class="header-placeholder"></div>
     <div id="container"></div>
-    <script src="/js/app.js"></script>
+    <script src="js/app.js"></script>
     <script>
       (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
       (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),


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