You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by ah...@apache.org on 2012/11/27 23:37:46 UTC

svn commit: r1414448 - /incubator/streams/site/trunk/lib/path.pm

Author: ahart
Date: Tue Nov 27 22:37:46 2012
New Revision: 1414448

URL: http://svn.apache.org/viewvc?rev=1414448&view=rev
Log:
progress towards initial path.pm

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

Modified: incubator/streams/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/incubator/streams/site/trunk/lib/path.pm?rev=1414448&r1=1414447&r2=1414448&view=diff
==============================================================================
--- incubator/streams/site/trunk/lib/path.pm (original)
+++ incubator/streams/site/trunk/lib/path.pm Tue Nov 27 22:37:46 2012
@@ -0,0 +1,29 @@
+package path;
+
+# Django-style URL dispatching
+our @patterns = (
+	[qr!\.mdtext$!, single_narrative => { template => "skeleton.html" }],
+) ;
+
+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.
+
+