You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by jo...@apache.org on 2012/07/12 22:34:02 UTC

svn commit: r1360916 - /incubator/ctakes/site/trunk/lib/path.pm

Author: joes
Date: Thu Jul 12 20:34:02 2012
New Revision: 1360916

URL: http://svn.apache.org/viewvc?rev=1360916&view=rev
Log:
fixes for ctakes subdir

Modified:
    incubator/ctakes/site/trunk/lib/path.pm

Modified: incubator/ctakes/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/incubator/ctakes/site/trunk/lib/path.pm?rev=1360916&r1=1360915&r2=1360916&view=diff
==============================================================================
--- incubator/ctakes/site/trunk/lib/path.pm (original)
+++ incubator/ctakes/site/trunk/lib/path.pm Thu Jul 12 20:34:02 2012
@@ -1,39 +1,39 @@
-package path;
-
-# taken from django's url.py
-
-our @patterns = (
-	[qr!\.mdtext$!, single_narrative => { template => "single_narrative.html" }],
-
-	[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
-
-) ;
-
-# for specifying interdependencies between files
-
-our %dependencies = (
-    "/sitemap.html" => [ grep s!^content!!, glob "content/*.mdtext" ],
-);
-
-1;
-
-=head1 LICENSE
-
-           Licensed to the Apache Software Foundation (ASF) under one
-           or more contributor license agreements.  See the NOTICE file
-           distributed with this work for additional information
-           regarding copyright ownership.  The ASF licenses this file
-           to you under the Apache License, Version 2.0 (the
-           "License"); you may not use this file except in compliance
-           with the License.  You may obtain a copy of the License at
-
-             http://www.apache.org/licenses/LICENSE-2.0
-
-           Unless required by applicable law or agreed to in writing,
-           software distributed under the License is distributed on an
-           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-           KIND, either express or implied.  See the License for the
-           specific language governing permissions and limitations
-           under the License.
-
-
+package path;
+
+# taken from django's url.py
+
+our @patterns = (
+	[qr!\.mdtext$!, single_narrative => { template => "single_narrative.html" }],
+
+	[qr!/ctakes/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ],
+
+) ;
+
+# for specifying interdependencies between files
+
+our %dependencies = (
+    "/ctakes/sitemap.html" => [ grep s!^content!!, glob "content/ctakes/*.mdtext" ],
+);
+
+1;
+
+=head1 LICENSE
+
+           Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+
+             http://www.apache.org/licenses/LICENSE-2.0
+
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+