You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by am...@apache.org on 2012/10/30 10:51:50 UTC

svn commit: r1403646 - /cayenne/site/cms/trunk/lib/path.pm

Author: amaniatis
Date: Tue Oct 30 09:51:50 2012
New Revision: 1403646

URL: http://svn.apache.org/viewvc?rev=1403646&view=rev
Log:
Add plain html processing

Modified:
    cayenne/site/cms/trunk/lib/path.pm

Modified: cayenne/site/cms/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/cayenne/site/cms/trunk/lib/path.pm?rev=1403646&r1=1403645&r2=1403646&view=diff
==============================================================================
--- cayenne/site/cms/trunk/lib/path.pm (original)
+++ cayenne/site/cms/trunk/lib/path.pm Tue Oct 30 09:51:50 2012
@@ -3,7 +3,7 @@ use ASF::Value;
 
 our @patterns = (
 	[qr!\.mdtext$!, single_narrative => { template => "markdown.html" }],
-
+  [qr!\.html$!, single_narrative => { template => "plain_html.html" }],
 ) ;
 
 1;