3 # Copyright (C) 2006 Jason Woofenden
5 # This file is part of wfpl.
7 # wfpl is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU Lesser General Public License as published by the Free
9 # Software Foundation; either version 2.1 of the License, or (at your option)
12 # wfpl is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with wfpl; if not, write to the Free Software Foundation, Inc., 51
19 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 # This file facilitates making a site with mixed PHP and html files. All URLs
23 # have the .html extension. One benefit of this is that you can change static
24 # html files to php scripts without having to update links.
26 # This script will pull the filename from the URL. It looks for a file with
27 # that name, and for one with the same basename, but with the .php extension
28 # and acts accordingly:
30 #--------------------------------------------#
31 # | .php file exists | no .php file #
32 #--------+--------------------+--------------#
33 # .html | load html file as | pass html #
34 # file | a template and run | file through #
35 # exists | run the php file | as is #
36 #--------+--------------------+--------------#
38 # .html | run php file | display 404 #
40 #--------------------------------------------#
44 # To activate this script in a directory, you'll need to:
46 # 1) make a symbolic link to (or copy of) this file in your directory. and
48 # 3) Set your webserver to run this script instead of html files. Here's how to
49 # do that with apache: put something like the following in you your .htaccess
50 # file (where /foo/ is the part of the url between the hostname and the
51 # filename.) The example below would work for this url:
52 # http://example.com/foo/bar.html
55 # RewriteRule ^$ /foo/run.php
56 # RewriteRule ^foo/[^/]*\.html$ /foo/run.php
58 require_once('code/wfpl/file_run.php');
59 require_once('code/wfpl/http.php');
60 require_once('code/wfpl/template.php');
62 if(file_exists('code/config.php')) {
63 file_run('code/config.php');
66 function run_php($basename = false) {
68 $basename = $_SERVER['REDIRECT_URL'];
69 $basename = ereg_replace('.*/', '', $basename);
70 $basename = ereg_replace('\.html$', '', $basename);
76 $html_file = "$basename.html";
77 $php_file = "$basename.php";
79 $html_exists = file_exists($html_file);
80 $php_exists = file_exists($php_file);
82 if(!$php_exists && !$html_exists) {
83 header('HTTP/1.0 404 File Not Found');
84 if(file_exists('404.php') || file_exists('404.html')) {
87 echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>404</title></head><body><h1>404 File Not Found</h1></body></html>';
91 # If there's no template.html we don't want to parse $html_file.
92 if($html_exists && !$php_exists && !file_exists('template.html')) {
98 tem_load_new($html_file);
102 # files can return a basename or URL of a page to be run/displayed
103 $other = file_run($php_file);
105 if(strpos($other, ':')) {
109 if(substr($other, 0, 2) == './') {
110 redirect(ereg_replace('/[^/]*$', substr($other, 1), this_url()));
117 $sub_names = tem_top_sub_names();
118 foreach($sub_names as $sub_name) {
123 # Check for $GLOBALS['wfpl_template'] because it might have been set (or unset) by the php script.
124 if($GLOBALS['wfpl_template']) {
125 if(file_exists('template.html')) {
127 $tem->load("template.html");
128 $sections = tem_top_subs();
129 if($sections) foreach($sections as $name => $val) {
130 $tem->set($name, $val);
133 if(file_exists("$basename.css")) {
134 $tem->set('css_link', "$basename.css");
135 $tem->sub('css_links');
138 $GLOBALS['wfpl_template'] = $tem;
141 if(function_exists('display_messages')) {