Implement AbsolutePath and IEConditionalComments filters. Add an xc namespace (urn...
[xhtml-compiler.git] / config.default.php
blobbde8a05502f81d8724646d99ba8390e07c8e8b92
1 <?php
3 // DO NOT EDIT THIS FILE!
4 // Values set here can be overridden using config.php
6 // after making changes to config.php, run
7 // htaccess-builder to put your changes into effect
9 // allowed directories, use 0: non-recursive; 1: recursive.
10 // Directories specified here are relative to the parent directory, since
11 // this application is neatly cordoned off into a subdirectory and shouldn't
12 // actually contain any HTML files. Trailing slashes are optional, but
13 // directory MUST exist
14 $allowed_dirs = array('' => 0);
16 //** Controls directory indexing:
17 // true (default) : all directories are assumed to have an index at the
18 // value of $directory_index, if that index is not present, a 404 error
19 // is emitted, rather than a directory listing
20 // false : all directories are assumed to have no index, and Apache
21 // mod_rewrite will not intercept calls to directories unless
22 // explicitly told to via ?purge=1. This means you will be able
23 // to use Apache's built-in directory listings, but an index will
24 // not be automatically regenerated
25 // associative array : an associative array of directory names to the
26 // above values for fine-grained control. If an entry is not in the
27 // the list, XHTML Compiler will assume "true".
28 // Note: it is not currently possible to control the behavior of
29 // subdirectories of directories in which recursion is allowed
30 $indexed_dirs = true;
32 //** Name of file that is a directory's index
33 // Note: there is no support for multiple possible indexes, as Apache
34 // does, and it is currently impossible to use Apache's own DocumentIndex
35 // directive.
36 $directory_index = 'index.html';
38 // ** Path to web root of the parent of XHTML Compiler's install library
39 // If you installed XHTML Compiler at /xhtml-compiler, nothing needs to
40 // be done. If you installed it at /subdir/xhtml-compiler, you need
41 // to set this variable to /subdir. MUST NOT have trailing slash
42 $web_path = '';