You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by br...@apache.org on 2015/01/29 09:50:16 UTC

svn commit: r1655549 - /incubator/taverna/site/trunk/lib/path.pm.original

Author: brenninc
Date: Thu Jan 29 08:50:15 2015
New Revision: 1655549

URL: http://svn.apache.org/r1655549
Log:
added backup copy of original path.pm just in case

Added:
    incubator/taverna/site/trunk/lib/path.pm.original   (with props)

Added: incubator/taverna/site/trunk/lib/path.pm.original
URL: http://svn.apache.org/viewvc/incubator/taverna/site/trunk/lib/path.pm.original?rev=1655549&view=auto
==============================================================================
--- incubator/taverna/site/trunk/lib/path.pm.original (added)
+++ incubator/taverna/site/trunk/lib/path.pm.original Thu Jan 29 08:50:15 2015
@@ -0,0 +1,39 @@
+package path;
+
+# taken from django's url.py
+
+our @patterns = (
+	[qr!\.md(?:text)?$!, 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"), glob "content/*.md" ],
+);
+
+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.
+
+

Propchange: incubator/taverna/site/trunk/lib/path.pm.original
------------------------------------------------------------------------------
    svn:eol-style = native