1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-08-10 07:54:00 +02:00

Minor changes.

This commit is contained in:
Lars Jung
2012-09-14 19:16:11 +02:00
parent 1aec23008e
commit 3cd11139a2
3 changed files with 15 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
"version": "0.22-dev", "version": "0.22-dev",
"description": "a modern HTTP web server index", "description": "a modern HTTP web server index",
"url": "http://larsjung.de/h5ai/", "url": "http://larsjung.de/h5ai/",
"author": "Lars Jung <lrsjng@gmail.com>", "author": "Lars Jung",
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -1,5 +1,6 @@
/* /*
{{pkg.name}} {{pkg.version}} {{pkg.name}} {{pkg.version}}
{{pkg.url}}
Configuration Configuration
options, types and localization options, types and localization

View File

@@ -1,9 +1,10 @@
<?php <?php
/* /*
* {{pkg.name}} {{pkg.version}} {{pkg.name}} {{pkg.version}}
* {{pkg.url}}
* PHP Configuration
* filesystem paths and file ignore rules PHP Configuration
filesystem paths and file ignore rules
*/ */
global $H5AI_CONFIG; global $H5AI_CONFIG;
@@ -11,16 +12,16 @@ global $H5AI_CONFIG;
$H5AI_CONFIG = array( $H5AI_CONFIG = array(
/* /*
* Files/folders that should not be listed. Specified Files/folders that should not be listed. Specified
* by the complete filename or by a regular expression. by the complete filename or by a regular expression.
* http://www.php.net/manual/en/function.preg-match.php http://www.php.net/manual/en/function.preg-match.php
*/ */
"IGNORE" => array(), "IGNORE" => array(),
"IGNORE_PATTERNS" => array("/^\\./", "/^_h5ai/"), "IGNORE_PATTERNS" => array("/^\\./", "/^_h5ai/"),
/* /*
* Folders that contain one of these files will be considered Folders that contain one of these files will be considered
* not to be h5ai indexed folders. not to be h5ai indexed folders.
*/ */
"INDEX_FILES" => array("index.html", "index.htm", "index.php") "INDEX_FILES" => array("index.html", "index.htm", "index.php")
); );