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/23 20:14:41 UTC

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

Author: joes
Date: Sun Mar 23 19:14:41 2014
New Revision: 1580573

URL: http://svn.apache.org/r1580573
Log:
comments

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=1580573&r1=1580572&r2=1580573&view=diff
==============================================================================
--- thrift/cms-site/trunk/lib/path.pm (original)
+++ thrift/cms-site/trunk/lib/path.pm Sun Mar 23 19:14:41 2014
@@ -5,10 +5,10 @@ use strict;
 use warnings;
 
 my %thrift_args = (
-    conf       => Load(join "", <DATA>),
-    preprocess => 1,
-    repo       => 'thrift.git',
-    template   => 'default.html',
+    conf       => Load(join "", <DATA>), # make config __DATA__ below available in conf argument
+    preprocess => 1,                     # generally enable template preprocessing of .md files
+    repo       => 'thrift.git',          # set snippet default git repo
+    template   => 'default.html',        # set common template argument (mainly for .md files)
 );
 
 
@@ -51,7 +51,7 @@ walk_content_tree {
     }
 };
 
-delete $dependencies{"/index.html"}; # the home page doesn't depend on anything else
+delete $dependencies{"/index.html"}; # the home page really doesn't depend on anything else
 
 1;