| package path; | |
| use strict; | |
| use warnings; | |
| use ASF::Value; | |
| # The @patterns array is used to map filepaths to page treatments. Each | |
| # element must be an arrayref with 3 elements of its own: a regex pattern for | |
| # selecting filepaths, the name of the subroutine from view.pm which will be | |
| # invoked to generate the page, and a hashref of named parameters which will | |
| # be passed to the view subroutine. | |
| our @patterns = ( | |
| [qr!/index.md(text)?$!, | |
| basic => { template => "index.html" }] | |
| # ,[qr!/index-new.md(text)?$!, | |
| # basic => { template => "index-new.html" }] | |
| # ,[qr!/isis-in-pictures.md(text)?$!, | |
| # basic => { template => "isis-in-pictures.html" }] | |
| ,[qr!\.md(text)?$!, | |
| basic => { template => "basic.html" }] | |
| # an attempt (failed) to render something sensible for index pages... | |
| # ,[qr!\/$!, basic => { indexpage => "index.html", template => "basic.html" }] | |
| # ,[qr!/sitemap\.html$!, sitemap => { headers => { title => "Sitemap" }} ] | |
| ) ; | |
| # The %dependencies hash is used when building pages that reference or depend | |
| # upon other pages -- e.g. a sitemap, which depends upon the pages that it | |
| # links to. The keys for %dependencies are filepaths, and the values are | |
| # arrayrefs containing other filepaths. | |
| our %dependencies = ( | |
| # "/sitemap.html" => [ grep s!^content!!, 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. | |