mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-09-01 18:03:50 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
b097ac2b2d | ||
|
f047f94ad9 | ||
|
072f1c8158 | ||
|
ca19318671 | ||
|
c80c2b146a |
@@ -58,6 +58,12 @@ It profits from these great projects:
|
||||
## Changelog
|
||||
(**h5ai** uses [semantic versioning](http://semver.org/))
|
||||
|
||||
### v0.22.1 - *2012-10-16*
|
||||
|
||||
* bug fix concerning API requests in PHP mode
|
||||
* minor changes in responsive styles
|
||||
|
||||
|
||||
### v0.22 - *2012-10-14*
|
||||
|
||||
* general changes h5ai directory layout and configuration
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "h5ai",
|
||||
"version": "0.22",
|
||||
"version": "0.22.1",
|
||||
"description": "a modern HTTP web server index",
|
||||
"url": "http://larsjung.de/h5ai/",
|
||||
"author": "Lars Jung",
|
||||
|
@@ -1,18 +1,8 @@
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
#topbar {
|
||||
.view span {
|
||||
display: none;
|
||||
}
|
||||
body {
|
||||
margin: 8px;
|
||||
}
|
||||
#extended.view-icons {
|
||||
padding: 0;
|
||||
border: none;
|
||||
margin: 0 -14px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 350px) {
|
||||
#topbar {
|
||||
.crumb {
|
||||
display: none;
|
||||
@@ -20,6 +10,9 @@
|
||||
.current {
|
||||
display: block;
|
||||
}
|
||||
.view span {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
#extended.view-details {
|
||||
.header .label, .entry .label {
|
||||
@@ -29,11 +22,19 @@
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
#extended.view-icons {
|
||||
padding: 0;
|
||||
border: none;
|
||||
margin: 0 -14px;
|
||||
}
|
||||
#bottombar {
|
||||
.center {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
#tree {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
|
@@ -21,7 +21,8 @@ normalized_require_once("/server/php/inc/Entry.php");
|
||||
|
||||
$app = new App(APP_ABS_PATH, APP_ABS_HREF, ABS_HREF);
|
||||
|
||||
if (count($_REQUEST)) {
|
||||
// if (count($_REQUEST)) {
|
||||
if (array_key_exists("action", $_REQUEST)) {
|
||||
|
||||
header("Content-type: application/json");
|
||||
|
||||
|
Reference in New Issue
Block a user