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 18:03:45 UTC

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

Author: joes
Date: Tue Mar 18 17:03:44 2014
New Revision: 1578966

URL: http://svn.apache.org/r1578966
Log:
ignore page dirs

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=1578966&r1=1578965&r2=1578966&view=diff
==============================================================================
--- thrift/cms-site/trunk/lib/path.pm (original)
+++ thrift/cms-site/trunk/lib/path.pm Tue Mar 18 17:03:44 2014
@@ -31,7 +31,7 @@ our @patterns = (
 
 my @mdfiles;
 find({ wanted => sub {
-         if (/\.md(?:text)?$/) {
+         if (/\.md(?:text)?$/ and ! m!\.page/!) {
              s/^.*content//;
              push @mdfiles, $_;
          }