You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/03/22 20:10:22 UTC

svn commit: r1084300 - /incubator/libcloud/site/trunk/lib/path.pm

Author: tomaz
Date: Tue Mar 22 19:10:22 2011
New Revision: 1084300

URL: http://svn.apache.org/viewvc?rev=1084300&view=rev
Log:
Fix some paths.

Modified:
    incubator/libcloud/site/trunk/lib/path.pm

Modified: incubator/libcloud/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/incubator/libcloud/site/trunk/lib/path.pm?rev=1084300&r1=1084299&r2=1084300&view=diff
==============================================================================
--- incubator/libcloud/site/trunk/lib/path.pm (original)
+++ incubator/libcloud/site/trunk/lib/path.pm Tue Mar 22 19:10:22 2011
@@ -11,8 +11,8 @@ use warnings;
 our @patterns = (
     [ qr!index\.mdtext$!, basic => { template => "index.html" } ],
     [ qr!\.mdtext$!, basic => { template => "basic.html" } ],
-    [ qr!^/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
-    [ qr!^/exports/index\.html$!, exports => {} ],
+    [ qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
+    [ qr!/exports/index\.html$!, exports => {} ],
 );
 
 
@@ -22,7 +22,7 @@ our @patterns = (
 # arrayrefs containing other filepaths.
 
 our %dependencies = (
-    "/sitemap.html" => [ grep s!^content!!, glob "content/libcloud/*.mdtext"
+    "/libcloud/sitemap.html" => [ grep s!^content!!, glob "content/libcloud/*.mdtext"
     ],
 );