You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/07/13 04:37:07 UTC

svn commit: r1502736 - in /cordova/site: README.md _config.yml bin/serve.rb public/artwork.html public/blog/2013/07/11/cordova-has-a-blog.html public/blog/index.html public/index.html public/rss.xml

Author: agrieve
Date: Sat Jul 13 02:37:07 2013
New Revision: 1502736

URL: http://svn.apache.org/r1502736
Log:
- Use a fully qualified baseurl so that the RSS file works properly.
- Added warning message to "rake serve" about needing to run "rake build" before committing
- Add instructions on how to fix up svn after 'rake build' deletes some .svn directories


Modified:
    cordova/site/README.md
    cordova/site/_config.yml
    cordova/site/bin/serve.rb
    cordova/site/public/artwork.html
    cordova/site/public/blog/2013/07/11/cordova-has-a-blog.html
    cordova/site/public/blog/index.html
    cordova/site/public/index.html
    cordova/site/public/rss.xml

Modified: cordova/site/README.md
URL: http://svn.apache.org/viewvc/cordova/site/README.md?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/README.md (original)
+++ cordova/site/README.md Sat Jul 13 02:37:07 2013
@@ -73,3 +73,13 @@ How to deploy the website
 - the website is automatically updated on each commit.
 - the website should update within seconds.
 
+After running "rake build", run "svn status". You'll notice it looks like:
+
+~       public/blog/2013
+M       public/blog/index.html
+
+To fix the ~, run the following commands:
+
+svn update --depth files --force public/blog/*
+svn update --depth files --force public/blog/*/* public/blog/*/*/*
+

Modified: cordova/site/_config.yml
URL: http://svn.apache.org/viewvc/cordova/site/_config.yml?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/_config.yml (original)
+++ cordova/site/_config.yml Sat Jul 13 02:37:07 2013
@@ -1,4 +1,4 @@
-baseurl:
+baseurl: http://cordova.apache.org
 name: Apache Cordova
 description: Apache Cordova is a set of device APIs that allow a web mobile app developer to access native device function from JavaScript.
 source:      www

Modified: cordova/site/bin/serve.rb
URL: http://svn.apache.org/viewvc/cordova/site/bin/serve.rb?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/bin/serve.rb (original)
+++ cordova/site/bin/serve.rb Sat Jul 13 02:37:07 2013
@@ -3,7 +3,10 @@
 system( "lessc www/css/_master.less > public/css/master.css" )
 
 puts "Server running at http://localhost:4000/'"
-system( "jekyll serve --watch" )
+puts "\033[31m*** WARNING: You must run 'rake build' before committing changes. ***"
+puts "*** 'rake serve' sets URL paths to point to localhost! ***\033[m"
+
+system( "jekyll serve --watch --baseurl ''" )
 
 
 

Modified: cordova/site/public/artwork.html
URL: http://svn.apache.org/viewvc/cordova/site/public/artwork.html?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/public/artwork.html (original)
+++ cordova/site/public/artwork.html Sat Jul 13 02:37:07 2013
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-    <link rel="SHORTCUT ICON" href="/favicon.ico"/>
+    <link rel="SHORTCUT ICON" href="http://cordova.apache.org/favicon.ico"/>
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -12,13 +12,13 @@
     -->
     <title>Apache Cordova</title>
     <!-- syntax highlighting CSS -->
-    <link rel="stylesheet" href="/css/syntax.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/syntax.css">
     <!-- Custom CSS -->
-    <link rel="stylesheet" href="/css/main.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/main.css">
 
     <!-- Cordova CSS -->
-    <link rel="stylesheet" type="text/css" href="/css/master.css">
-    <script src="/js/smooth.pack.js" type="text/javascript"></script>
+    <link rel="stylesheet" type="text/css" href="http://cordova.apache.org/css/master.css">
+    <script src="http://cordova.apache.org/js/smooth.pack.js" type="text/javascript"></script>
     <script type="text/javascript">
       var _gaq = _gaq || [];
       _gaq.push(['_setAccount', 'UA-94271-30']);
@@ -37,23 +37,23 @@
 </a>
 <div id="header">
     <div class="wrap">
-        <a class="logo" href="/#top"></a>
+        <a class="logo" href="http://cordova.apache.org/#top"></a>
         <div class="menu">
-            <a href="/#about">About</a>
-            <a href="/#news">News</a>
-            <a href="/#contribute">Contribute</a>
-            <a href="/#mailing-list">Mailing List</a>
-            <a href="/#download">Download</a>
-            <a href="/#links">Quick Links</a>
+            <a href="http://cordova.apache.org/#about">About</a>
+            <a href="http://cordova.apache.org/#news">News</a>
+            <a href="http://cordova.apache.org/#contribute">Contribute</a>
+            <a href="http://cordova.apache.org/#mailing-list">Mailing List</a>
+            <a href="http://cordova.apache.org/#download">Download</a>
+            <a href="http://cordova.apache.org/#links">Quick Links</a>
         </div>
         <form class="menu-dropdown">
             <select onchange="location = this.options[this.selectedIndex].value;">
-                <option value="/#about">About</option>
-                <option value="/#news">News</option>
-                <option value="/#contribute">Contribute</option>
-                <option value="/#mailing-list">Mailing List</option>
-                <option value="/#download">Download</option>
-                <option value="/#links">Quick Links</option>
+                <option value="http://cordova.apache.org/#about">About</option>
+                <option value="http://cordova.apache.org/#news">News</option>
+                <option value="http://cordova.apache.org/#contribute">Contribute</option>
+                <option value="http://cordova.apache.org/#mailing-list">Mailing List</option>
+                <option value="http://cordova.apache.org/#download">Download</option>
+                <option value="http://cordova.apache.org/#links">Quick Links</option>
             </select>
         </form>
     </div>
@@ -115,7 +115,7 @@
         <div class="list-container">
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#about">About Cordova<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#about">About Cordova<span></span></a></li>
 
                 
                 <li><a href="http://projects.apache.org/projects/cordova.html">Apache Project Page<span></span></a></li>
@@ -123,12 +123,12 @@
                 <li><a href="http://www.apache.org/licenses/LICENSE-2.0">License<span></span></a></li>
                 
 
-                <li><a href="/artwork.html">Artwork<span></span></a></li>
+                <li><a href="http://cordova.apache.org/artwork.html">Artwork<span></span></a></li>
             </ul>
 
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#download">Download<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#download">Download<span></span></a></li>
                 <li><a href="http://cordova.apache.org/docs/en/2.9.0/">Documentation<span></span></a></li>
 
                 
@@ -139,7 +139,7 @@
                 <li><a href="http://wiki.apache.org/cordova/">Wiki<span></span></a></li>
                 
 
-                <li><a href="/index.html#mailing-list">Mailing List<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#mailing-list">Mailing List<span></span></a></li>
             </ul>
 
             <ul class="list quick-links last">

Modified: cordova/site/public/blog/2013/07/11/cordova-has-a-blog.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/2013/07/11/cordova-has-a-blog.html?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/public/blog/2013/07/11/cordova-has-a-blog.html (original)
+++ cordova/site/public/blog/2013/07/11/cordova-has-a-blog.html Sat Jul 13 02:37:07 2013
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-    <link rel="SHORTCUT ICON" href="/favicon.ico"/>
+    <link rel="SHORTCUT ICON" href="http://cordova.apache.org/favicon.ico"/>
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -12,13 +12,13 @@
     -->
     <title>Apache Cordova Gets an Official Blog</title>
     <!-- syntax highlighting CSS -->
-    <link rel="stylesheet" href="/css/syntax.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/syntax.css">
     <!-- Custom CSS -->
-    <link rel="stylesheet" href="/css/main.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/main.css">
 
     <!-- Cordova CSS -->
-    <link rel="stylesheet" type="text/css" href="/css/master.css">
-    <script src="/js/smooth.pack.js" type="text/javascript"></script>
+    <link rel="stylesheet" type="text/css" href="http://cordova.apache.org/css/master.css">
+    <script src="http://cordova.apache.org/js/smooth.pack.js" type="text/javascript"></script>
     <script type="text/javascript">
       var _gaq = _gaq || [];
       _gaq.push(['_setAccount', 'UA-94271-30']);
@@ -37,23 +37,23 @@
 </a>
 <div id="header">
     <div class="wrap">
-        <a class="logo" href="/#top"></a>
+        <a class="logo" href="http://cordova.apache.org/#top"></a>
         <div class="menu">
-            <a href="/#about">About</a>
-            <a href="/#news">News</a>
-            <a href="/#contribute">Contribute</a>
-            <a href="/#mailing-list">Mailing List</a>
-            <a href="/#download">Download</a>
-            <a href="/#links">Quick Links</a>
+            <a href="http://cordova.apache.org/#about">About</a>
+            <a href="http://cordova.apache.org/#news">News</a>
+            <a href="http://cordova.apache.org/#contribute">Contribute</a>
+            <a href="http://cordova.apache.org/#mailing-list">Mailing List</a>
+            <a href="http://cordova.apache.org/#download">Download</a>
+            <a href="http://cordova.apache.org/#links">Quick Links</a>
         </div>
         <form class="menu-dropdown">
             <select onchange="location = this.options[this.selectedIndex].value;">
-                <option value="/#about">About</option>
-                <option value="/#news">News</option>
-                <option value="/#contribute">Contribute</option>
-                <option value="/#mailing-list">Mailing List</option>
-                <option value="/#download">Download</option>
-                <option value="/#links">Quick Links</option>
+                <option value="http://cordova.apache.org/#about">About</option>
+                <option value="http://cordova.apache.org/#news">News</option>
+                <option value="http://cordova.apache.org/#contribute">Contribute</option>
+                <option value="http://cordova.apache.org/#mailing-list">Mailing List</option>
+                <option value="http://cordova.apache.org/#download">Download</option>
+                <option value="http://cordova.apache.org/#links">Quick Links</option>
             </select>
         </form>
     </div>
@@ -69,7 +69,7 @@
     <div class="post">
     <p>Cordova now has a Blog! Look here to stay up-to-date with what&#8217;s happening with the project. There is a major release <a href='https://issues.apache.org/jira/browse/CB/fixforversion/12322491'>3.0</a> just around the corner (July 19, 2013), and we are really excited about it!</p>
 
-<p>Be sure to <a href='/rss.xml'>subscribe</a> using RSS</p>
+<p>Be sure to <a href='http://cordova.apache.org/rss.xml'>subscribe</a> using RSS</p>
     </div>
 </div>
 
@@ -94,7 +94,7 @@
         <div class="list-container">
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#about">About Cordova<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#about">About Cordova<span></span></a></li>
 
                 
                 <li><a href="http://projects.apache.org/projects/cordova.html">Apache Project Page<span></span></a></li>
@@ -102,12 +102,12 @@
                 <li><a href="http://www.apache.org/licenses/LICENSE-2.0">License<span></span></a></li>
                 
 
-                <li><a href="/artwork.html">Artwork<span></span></a></li>
+                <li><a href="http://cordova.apache.org/artwork.html">Artwork<span></span></a></li>
             </ul>
 
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#download">Download<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#download">Download<span></span></a></li>
                 <li><a href="http://cordova.apache.org/docs/en/2.9.0/">Documentation<span></span></a></li>
 
                 
@@ -118,7 +118,7 @@
                 <li><a href="http://wiki.apache.org/cordova/">Wiki<span></span></a></li>
                 
 
-                <li><a href="/index.html#mailing-list">Mailing List<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#mailing-list">Mailing List<span></span></a></li>
             </ul>
 
             <ul class="list quick-links last">

Modified: cordova/site/public/blog/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/index.html?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/public/blog/index.html (original)
+++ cordova/site/public/blog/index.html Sat Jul 13 02:37:07 2013
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-    <link rel="SHORTCUT ICON" href="/favicon.ico"/>
+    <link rel="SHORTCUT ICON" href="http://cordova.apache.org/favicon.ico"/>
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -12,13 +12,13 @@
     -->
     <title>Apache Cordova Blog</title>
     <!-- syntax highlighting CSS -->
-    <link rel="stylesheet" href="/css/syntax.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/syntax.css">
     <!-- Custom CSS -->
-    <link rel="stylesheet" href="/css/main.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/main.css">
 
     <!-- Cordova CSS -->
-    <link rel="stylesheet" type="text/css" href="/css/master.css">
-    <script src="/js/smooth.pack.js" type="text/javascript"></script>
+    <link rel="stylesheet" type="text/css" href="http://cordova.apache.org/css/master.css">
+    <script src="http://cordova.apache.org/js/smooth.pack.js" type="text/javascript"></script>
     <script type="text/javascript">
       var _gaq = _gaq || [];
       _gaq.push(['_setAccount', 'UA-94271-30']);
@@ -37,23 +37,23 @@
 </a>
 <div id="header">
     <div class="wrap">
-        <a class="logo" href="/#top"></a>
+        <a class="logo" href="http://cordova.apache.org/#top"></a>
         <div class="menu">
-            <a href="/#about">About</a>
-            <a href="/#news">News</a>
-            <a href="/#contribute">Contribute</a>
-            <a href="/#mailing-list">Mailing List</a>
-            <a href="/#download">Download</a>
-            <a href="/#links">Quick Links</a>
+            <a href="http://cordova.apache.org/#about">About</a>
+            <a href="http://cordova.apache.org/#news">News</a>
+            <a href="http://cordova.apache.org/#contribute">Contribute</a>
+            <a href="http://cordova.apache.org/#mailing-list">Mailing List</a>
+            <a href="http://cordova.apache.org/#download">Download</a>
+            <a href="http://cordova.apache.org/#links">Quick Links</a>
         </div>
         <form class="menu-dropdown">
             <select onchange="location = this.options[this.selectedIndex].value;">
-                <option value="/#about">About</option>
-                <option value="/#news">News</option>
-                <option value="/#contribute">Contribute</option>
-                <option value="/#mailing-list">Mailing List</option>
-                <option value="/#download">Download</option>
-                <option value="/#links">Quick Links</option>
+                <option value="http://cordova.apache.org/#about">About</option>
+                <option value="http://cordova.apache.org/#news">News</option>
+                <option value="http://cordova.apache.org/#contribute">Contribute</option>
+                <option value="http://cordova.apache.org/#mailing-list">Mailing List</option>
+                <option value="http://cordova.apache.org/#download">Download</option>
+                <option value="http://cordova.apache.org/#links">Quick Links</option>
             </select>
         </form>
     </div>
@@ -63,16 +63,16 @@
 
 
         <div class="site">
-<h1>Blog Posts</h1><a href="/rss.xml">Subscribe</a>
+<h1>Blog Posts</h1><a href="http://cordova.apache.org/rss.xml">Subscribe</a>
 <ul class="posts">
   
     <li>
     <span>11 Jul 2013</span> &raquo;
-    <a href="/blog/2013/07/11/cordova-has-a-blog.html">Apache Cordova Gets an Official Blog</a>
+    <a href="http://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html">Apache Cordova Gets an Official Blog</a>
     </li>
   
 </ul>
-<a href="http://feed1.w3.org/check.cgi?url=/rss.xml"><img src="/images/valid-rss-rogers.png" alt="[Valid RSS]" title="Validate my RSS feed" /></a>
+<a href="http://feed1.w3.org/check.cgi?url=http://cordova.apache.org/rss.xml"><img src="http://cordova.apache.org/images/valid-rss-rogers.png" alt="[Valid RSS]" title="Validate my RSS feed" /></a>
 </div>
 
 
@@ -95,7 +95,7 @@
         <div class="list-container">
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#about">About Cordova<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#about">About Cordova<span></span></a></li>
 
                 
                 <li><a href="http://projects.apache.org/projects/cordova.html">Apache Project Page<span></span></a></li>
@@ -103,12 +103,12 @@
                 <li><a href="http://www.apache.org/licenses/LICENSE-2.0">License<span></span></a></li>
                 
 
-                <li><a href="/artwork.html">Artwork<span></span></a></li>
+                <li><a href="http://cordova.apache.org/artwork.html">Artwork<span></span></a></li>
             </ul>
 
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#download">Download<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#download">Download<span></span></a></li>
                 <li><a href="http://cordova.apache.org/docs/en/2.9.0/">Documentation<span></span></a></li>
 
                 
@@ -119,7 +119,7 @@
                 <li><a href="http://wiki.apache.org/cordova/">Wiki<span></span></a></li>
                 
 
-                <li><a href="/index.html#mailing-list">Mailing List<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#mailing-list">Mailing List<span></span></a></li>
             </ul>
 
             <ul class="list quick-links last">

Modified: cordova/site/public/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/index.html?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/public/index.html (original)
+++ cordova/site/public/index.html Sat Jul 13 02:37:07 2013
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-    <link rel="SHORTCUT ICON" href="/favicon.ico"/>
+    <link rel="SHORTCUT ICON" href="http://cordova.apache.org/favicon.ico"/>
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -12,13 +12,13 @@
     -->
     <title>Apache Cordova</title>
     <!-- syntax highlighting CSS -->
-    <link rel="stylesheet" href="/css/syntax.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/syntax.css">
     <!-- Custom CSS -->
-    <link rel="stylesheet" href="/css/main.css">
+    <link rel="stylesheet" href="http://cordova.apache.org/css/main.css">
 
     <!-- Cordova CSS -->
-    <link rel="stylesheet" type="text/css" href="/css/master.css">
-    <script src="/js/smooth.pack.js" type="text/javascript"></script>
+    <link rel="stylesheet" type="text/css" href="http://cordova.apache.org/css/master.css">
+    <script src="http://cordova.apache.org/js/smooth.pack.js" type="text/javascript"></script>
     <script type="text/javascript">
       var _gaq = _gaq || [];
       _gaq.push(['_setAccount', 'UA-94271-30']);
@@ -37,23 +37,23 @@
 </a>
 <div id="header">
     <div class="wrap">
-        <a class="logo" href="/#top"></a>
+        <a class="logo" href="http://cordova.apache.org/#top"></a>
         <div class="menu">
-            <a href="/#about">About</a>
-            <a href="/#news">News</a>
-            <a href="/#contribute">Contribute</a>
-            <a href="/#mailing-list">Mailing List</a>
-            <a href="/#download">Download</a>
-            <a href="/#links">Quick Links</a>
+            <a href="http://cordova.apache.org/#about">About</a>
+            <a href="http://cordova.apache.org/#news">News</a>
+            <a href="http://cordova.apache.org/#contribute">Contribute</a>
+            <a href="http://cordova.apache.org/#mailing-list">Mailing List</a>
+            <a href="http://cordova.apache.org/#download">Download</a>
+            <a href="http://cordova.apache.org/#links">Quick Links</a>
         </div>
         <form class="menu-dropdown">
             <select onchange="location = this.options[this.selectedIndex].value;">
-                <option value="/#about">About</option>
-                <option value="/#news">News</option>
-                <option value="/#contribute">Contribute</option>
-                <option value="/#mailing-list">Mailing List</option>
-                <option value="/#download">Download</option>
-                <option value="/#links">Quick Links</option>
+                <option value="http://cordova.apache.org/#about">About</option>
+                <option value="http://cordova.apache.org/#news">News</option>
+                <option value="http://cordova.apache.org/#contribute">Contribute</option>
+                <option value="http://cordova.apache.org/#mailing-list">Mailing List</option>
+                <option value="http://cordova.apache.org/#download">Download</option>
+                <option value="http://cordova.apache.org/#links">Quick Links</option>
             </select>
         </form>
     </div>
@@ -98,9 +98,9 @@
   <h2>News <a href="/rss.xml" style="font-size:12pt; margin-left:10px">Subscribe</a></h2>
   <ul class="posts">
     
-      <li><span>11 Jul 2013</span> &raquo; <a href="/blog/2013/07/11/cordova-has-a-blog.html">Apache Cordova Gets an Official Blog</a>
+      <li><span>11 Jul 2013</span> &raquo; <a href="http://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html">Apache Cordova Gets an Official Blog</a>
       <p>Cordova now has a Blog! Look here to stay up-to-date with what&#8217;s happening with the project. There is a major release <a href='https://issues.apache.org/jira/browse/CB/fixforversion/12322491'>3.0</a> just around the corner (July 19, 2013), and we are really excited about it!</p>
-      <a href="/blog/2013/07/11/cordova-has-a-blog.html">Read More...</a>
+      <a href="http://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html">Read More...</a>
     
 
   </ul>
@@ -310,7 +310,7 @@
         <div class="list-container">
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#about">About Cordova<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#about">About Cordova<span></span></a></li>
 
                 
                 <li><a href="http://projects.apache.org/projects/cordova.html">Apache Project Page<span></span></a></li>
@@ -318,12 +318,12 @@
                 <li><a href="http://www.apache.org/licenses/LICENSE-2.0">License<span></span></a></li>
                 
 
-                <li><a href="/artwork.html">Artwork<span></span></a></li>
+                <li><a href="http://cordova.apache.org/artwork.html">Artwork<span></span></a></li>
             </ul>
 
             <ul class="list quick-links">
                 <li class="corner"></li>
-                <li><a href="/index.html#download">Download<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#download">Download<span></span></a></li>
                 <li><a href="http://cordova.apache.org/docs/en/2.9.0/">Documentation<span></span></a></li>
 
                 
@@ -334,7 +334,7 @@
                 <li><a href="http://wiki.apache.org/cordova/">Wiki<span></span></a></li>
                 
 
-                <li><a href="/index.html#mailing-list">Mailing List<span></span></a></li>
+                <li><a href="http://cordova.apache.org/index.html#mailing-list">Mailing List<span></span></a></li>
             </ul>
 
             <ul class="list quick-links last">

Modified: cordova/site/public/rss.xml
URL: http://svn.apache.org/viewvc/cordova/site/public/rss.xml?rev=1502736&r1=1502735&r2=1502736&view=diff
==============================================================================
--- cordova/site/public/rss.xml (original)
+++ cordova/site/public/rss.xml Sat Jul 13 02:37:07 2013
@@ -3,15 +3,15 @@
 <channel>
         <title>Apache Cordova</title>
         <description>Apache Cordova - Apache Cordova is a set of device APIs that allow a web mobile app developer to access native device function from JavaScript.</description>
-        <atom:link href="/rss.xml" rel="self" type="application/rss+xml" />
-        <link>/rss.xml</link>
-        <lastBuildDate>Thu, 11 Jul 2013 17:51:15 -0400</lastBuildDate>
-        <pubDate>Thu, 11 Jul 2013 17:51:15 -0400</pubDate>
+        <atom:link href="http://cordova.apache.org/rss.xml" rel="self" type="application/rss+xml" />
+        <link>http://cordova.apache.org/rss.xml</link>
+        <lastBuildDate>Fri, 12 Jul 2013 22:33:17 -0400</lastBuildDate>
+        <pubDate>Fri, 12 Jul 2013 22:33:17 -0400</pubDate>
         <ttl>1800</ttl>
         <image>
-            <url></url>
+            <url>http://cordova.apache.org</url>
             <title>Apache Cordova</title>
-            <link>/rss.xml</link>
+            <link>http://cordova.apache.org/rss.xml</link>
             <width>128</width>
             <height>128</height>
             <description>Apache Cordova is a set of device APIs that allow a web mobile app developer to access native device function from JavaScript.</description>
@@ -22,9 +22,9 @@
                 <title>Apache Cordova Gets an Official Blog</title>
                 <description>&lt;p&gt;Cordova now has a Blog! Look here to stay up-to-date with what&amp;#8217;s happening with the project. There is a major release &lt;a href='https://issues.apache.org/jira/browse/CB/fixforversion/12322491'&gt;3.0&lt;/a&gt; just around the corner (July 19, 2013), and we are really excited about it!&lt;/p&gt;
 
-&lt;p&gt;Be sure to &lt;a href='/rss.xml'&gt;subscribe&lt;/a&gt; using RSS&lt;/p&gt;</description>
-                <link>/blog/2013/07/11/cordova-has-a-blog.html</link>
-                <guid>/blog/2013/07/11/cordova-has-a-blog</guid>
+&lt;p&gt;Be sure to &lt;a href='http://cordova.apache.org/rss.xml'&gt;subscribe&lt;/a&gt; using RSS&lt;/p&gt;</description>
+                <link>http://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html</link>
+                <guid>http://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog</guid>
                 <pubDate>Thu, 11 Jul 2013 15:45:04 -0400</pubDate>
         </item>