You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jo...@apache.org on 2014/03/18 16:19:34 UTC

svn commit: r1578950 - /thrift/cms-site/trunk/lib/path.pm

Author: joes
Date: Tue Mar 18 15:19:34 2014
New Revision: 1578950

URL: http://svn.apache.org/r1578950
Log:
pedant

Modified:
    thrift/cms-site/trunk/lib/path.pm

Modified: thrift/cms-site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/thrift/cms-site/trunk/lib/path.pm?rev=1578950&r1=1578949&r2=1578950&view=diff
==============================================================================
--- thrift/cms-site/trunk/lib/path.pm (original)
+++ thrift/cms-site/trunk/lib/path.pm Tue Mar 18 15:19:34 2014
@@ -8,13 +8,13 @@ use warnings;
 my $conf = Load(join "", <DATA>);
 
 our @patterns = (
-    [qr!^/docs.md(?:text)?$!, dir_wrapper => {
+    [qr!^/docs\.md(?:text)?$!, dir_wrapper => {
         conf     => $conf,
         template => 'default.html',
         view     => 'single_narrative',
         dir      => "/docs/", # trailing slash required
     }],
-    [qr!^/sitemap.html$!, sitemap => {conf => $conf, headers => { title => "Sitemap" }}],
+    [qr!^/sitemap\.html$!, sitemap => {conf => $conf, headers => { title => "Sitemap" }}],
     [qr/\.md(?:text)?$/, single_narrative => {conf => $conf, template => 'default.html'}],
 );