diff --git a/src/_h5ai/config.js b/src/_h5ai/config.js
index 3292a649..d0b7035e 100644
--- a/src/_h5ai/config.js
+++ b/src/_h5ai/config.js
@@ -25,8 +25,8 @@ var H5AI_CONFIG = {
*
* This is disabled by default.
*/
- "customHeader": false,
- "customFooter": false,
+ "customHeader": "_h5ai.header.html",
+ "customFooter": "_h5ai.footer.html",
/*
* An array of view modes the user may choose from. Currently there
@@ -105,13 +105,13 @@ var H5AI_CONFIG = {
* Requires PHP on the server.
* Show thumbnails for image files.
*/
- "showThumbs": false,
+ "showThumbs": true,
/*
* Requires PHP on the server.
* Enable zipped download of selected entries.
*/
- "zippedDownload": false
+ "zippedDownload": true
},
diff --git a/src/_h5ai/php/config.php b/src/_h5ai/config.php
similarity index 81%
rename from src/_h5ai/php/config.php
rename to src/_h5ai/config.php
index 8602b824..f901fa31 100644
--- a/src/_h5ai/php/config.php
+++ b/src/_h5ai/config.php
@@ -12,9 +12,9 @@ $H5AI_CONFIG = array();
/*
* This configuration assumes that h5ai is installed
* in the webroot directory of the Apache server.
+ * Assumed to end with a slash.
*/
-$H5AI_CONFIG["H5AI_ROOT"] = dirname(dirname(__FILE__));
-$H5AI_CONFIG["DOCUMENT_ROOT"] = dirname($H5AI_CONFIG["H5AI_ROOT"]);
+$H5AI_CONFIG["ROOT_ABS_PATH"] = dirname(dirname(str_replace('\\', '/', __FILE__)));
/*
* Files/folders that should not be listed. Specified
diff --git a/src/_h5ai/php/api.php b/src/_h5ai/php/api.php
index c997b7d6..c3d12b30 100644
--- a/src/_h5ai/php/api.php
+++ b/src/_h5ai/php/api.php
@@ -1,5 +1,23 @@
getOptions();
+
function fail($code, $msg, $cond = true) {
if ($cond) {
@@ -21,12 +39,6 @@ function checkKeys($keys) {
list($action) = checkKeys(array("action"));
-require_once "config.php";
-require_once "inc/H5ai.php";
-$h5ai = new H5ai();
-$options = $h5ai->getOptions();
-
-
if ($action === "httpcodes") {
list($hrefs) = checkKeys(array("hrefs"));
@@ -55,10 +67,10 @@ else if ($action === "thumb") {
fail(0, "thumbs are disabled", !$options["showThumbs"]);
list($srcAbsHref, $width, $height, $mode) = checkKeys(array("href", "width", "height", "mode"));
- require_once "inc/Thumbnail.php";
- require_once "inc/Image.php";
+ require_h5ai("/php/inc/Thumbnail.php");
+ require_h5ai("/php/inc/Image.php");
- $srcAbsPath = $h5ai->getDocRoot() . rawurldecode($srcAbsHref);
+ $srcAbsPath = $h5ai->getRootAbsPath() . rawurldecode($srcAbsHref);
if (!Thumbnail::isUsable()) {
Image::showImage($srcAbsPath);
@@ -82,7 +94,7 @@ else if ($action === "tree") {
list($href) = checkKeys(array("href"));
- require_once "inc/Tree.php";
+ require_h5ai("/php/inc/Tree.php");
$absHref = trim($href);
$absPath = $h5ai->getAbsPath($absHref);
@@ -99,7 +111,7 @@ else if ($action === "zip") {
fail(0, "zipped download is disabled", !$options["zippedDownload"]);
list($hrefs) = checkKeys(array("hrefs"));
- require_once "inc/ZipIt.php";
+ require_h5ai("/php/inc/ZipIt.php");
$zipit = new ZipIt($h5ai);
diff --git a/src/_h5ai/php/inc/Cache.php b/src/_h5ai/php/inc/Cache.php
index 45015e86..0a507a41 100644
--- a/src/_h5ai/php/inc/Cache.php
+++ b/src/_h5ai/php/inc/Cache.php
@@ -7,18 +7,22 @@
##############################################
class Cache {
+
private $dir;
+
function __construct($dir) {
$this->dir = $dir;
}
+
private function _name($key) {
return $this->dir . "/" . sha1($key);
}
+
public function get($key, $expiration = 3600) {
if (!is_dir($this->dir) || !is_writable($this->dir)) {
@@ -55,6 +59,7 @@ class Cache {
return $cache;
}
+
public function set($key, $data) {
if (!is_dir($this->dir) || !is_writable($this->dir)) {
@@ -78,6 +83,7 @@ class Cache {
return true;
}
+
public function clear($key) {
$cache_path = $this->_name($key);
diff --git a/src/_h5ai/php/inc/Crumb.php b/src/_h5ai/php/inc/Crumb.php
index 2f415750..9d10ab00 100644
--- a/src/_h5ai/php/inc/Crumb.php
+++ b/src/_h5ai/php/inc/Crumb.php
@@ -1,8 +1,10 @@
h5ai = $h5ai;
@@ -11,13 +13,14 @@ class Crumb {
$href = $h5ai->getAbsHref();
while ($href !== "/" && $href !== "//") {
$this->parts[] = $href;
- $href = dirname($href) . "/";
+ $href = safe_dirname($href, true);
}
$this->parts[] = "/";
$this->parts = array_reverse($this->parts);
}
+
public function toHtml() {
$html = "";
diff --git a/src/_h5ai/php/inc/Customize.php b/src/_h5ai/php/inc/Customize.php
index 689977c3..967770f0 100644
--- a/src/_h5ai/php/inc/Customize.php
+++ b/src/_h5ai/php/inc/Customize.php
@@ -1,8 +1,10 @@
getAbsPath();
@@ -11,19 +13,22 @@ class Customize {
$this->customFooter = $options["customFooter"] ? $absPath . "/" . $options["customFooter"] : false;
}
+
public function getHeader() {
return $this->getContent($this->customHeader, "header");
}
+
public function getFooter() {
return $this->getContent($this->customFooter, "footer");
}
+
private function getContent($file, $tag) {
- return (is_string($file) && file_exists($file)) ? ("<" . $tag . ">" . file_get_contents($file) . "" . $tag . ">") : "";
+ return (is_string($file) && file_exists($file)) ? ("<$tag>" . file_get_contents($file) . "$tag>") : "";
}
}
diff --git a/src/_h5ai/php/inc/Extended.php b/src/_h5ai/php/inc/Extended.php
index ed941635..f2b8ee7c 100644
--- a/src/_h5ai/php/inc/Extended.php
+++ b/src/_h5ai/php/inc/Extended.php
@@ -1,11 +1,13 @@
h5ai = $h5ai;
@@ -27,11 +29,13 @@ class Entry {
$this->thumbTypes = array("bmp", "gif", "ico", "image", "jpg", "png", "tiff");
}
+
public function isFolder() {
return $this->isFolder;
}
+
public function toHtml() {
$classes = "entry " . ($this->isFolder ? "folder " : "file ") . $this->type;
@@ -80,8 +84,10 @@ class Entry {
class Extended {
+
private $h5ai, $parent, $content;
+
public function __construct($h5ai) {
$this->h5ai = $h5ai;
@@ -90,12 +96,13 @@ class Extended {
$this->loadContent();
}
+
private function loadContent() {
if ($this->h5ai->getAbsHref() !== "/") {
$options = $this->h5ai->getOptions();
- $parentPath = dirname($this->h5ai->getAbsPath());
- $parentHref = dirname($this->h5ai->getAbsHref());
+ $parentPath = safe_dirname($this->h5ai->getAbsPath());
+ $parentHref = safe_dirname($this->h5ai->getAbsHref(), true);
$label = $options["setParentFolderLabels"] === true ? $this->h5ai->getLabel($parentHref) : "Parent Directory";
$this->parent = new Entry($this->h5ai, $parentPath, $parentHref, "folder-parent", $label);
}
@@ -110,6 +117,7 @@ class Extended {
}
}
+
public function toHtml() {
$html = "\n";
@@ -129,6 +137,7 @@ class Extended {
return $html;
}
+
public function generateHeaders() {
$html = "\t