You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crunch.apache.org by jo...@apache.org on 2012/09/16 20:07:30 UTC

svn commit: r1385334 - /incubator/crunch/site/trunk/lib/path.pm

Author: joes
Date: Sun Sep 16 18:07:30 2012
New Revision: 1385334

URL: http://svn.apache.org/viewvc?rev=1385334&view=rev
Log:
trivial change to generate site build

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

Modified: incubator/crunch/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/incubator/crunch/site/trunk/lib/path.pm?rev=1385334&r1=1385333&r2=1385334&view=diff
==============================================================================
--- incubator/crunch/site/trunk/lib/path.pm (original)
+++ incubator/crunch/site/trunk/lib/path.pm Sun Sep 16 18:07:30 2012
@@ -5,14 +5,14 @@ package path;
 our @patterns = (
 	[qr!\.mdtext$!, single_narrative => { template => "single_narrative.html" }],
 
-	[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
+	[qr!^/crunch/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
 
 ) ;
 
 # for specifying interdependencies between files
 
 our %dependencies = (
-    "/sitemap.html" => [ grep s!^content!!, glob "content/*.mdtext" ],
+    "/crunch/sitemap.html" => [ grep s!^content!!, glob "content/crunch/*.mdtext" ],
 );
 
 1;