You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2012/11/26 15:49:06 UTC

svn commit: r1413659 - /isis/site/trunk/lib/path.pm

Author: danhaywood
Date: Mon Nov 26 14:49:06 2012
New Revision: 1413659

URL: http://svn.apache.org/viewvc?rev=1413659&view=rev
Log:
working on isis documentation page

Modified:
    isis/site/trunk/lib/path.pm

Modified: isis/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/isis/site/trunk/lib/path.pm?rev=1413659&r1=1413658&r2=1413659&view=diff
==============================================================================
--- isis/site/trunk/lib/path.pm (original)
+++ isis/site/trunk/lib/path.pm Mon Nov 26 14:49:06 2012
@@ -11,12 +11,12 @@ use ASF::Value;
 
 our @patterns = (
 
-	[qr!/index.md(text)?$!, basic => { template => "index.html" }],
+	[qr!/index.md(text)?$!, basic => { template => "index.html" }]
 
-	[qr!\.md(text)?$!, basic => { template => "basic.html" }],
-#	[qr!/$!, basic => { indexpage => "index.html", template => "basic.html" }],
+	,[qr!\.md(text)?$!, basic => { template => "basic.html" }]
+#	,[qr!/$!, basic => { indexpage => "index.html", template => "basic.html" }]
   
-	[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
+#	,[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ]
 
 ) ;
 
@@ -26,7 +26,7 @@ our @patterns = (
 # arrayrefs containing other filepaths.
 
 our %dependencies = (
-    "/sitemap.html" => [ grep s!^content!!, glob "content/*.md" ],
+#    "/sitemap.html" => [ grep s!^content!!, glob "content/*.md" ]
 );
 
 1;