1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-08-29 00:30:04 +02:00

* fixed problems with XAMPP on Windows (see dot.htaccess comments for instructions)

* fixed tree fade-in-fade-out effect for small displays ([issue #6](http://github.com/lrsjng/h5ai/issues/6))
* added custom scrollbar to tree ([issue #6](http://github.com/lrsjng/h5ai/issues/6))
* fixed broken links caused by URI encoding/decoding ([issue #9](http://github.com/lrsjng/h5ai/issues/9))
* added "empty" to localization (hope Google Translate did a good job here)
This commit is contained in:
Lars Jung
2011-07-24 15:25:43 +02:00
parent 2407cd50ce
commit 5708b2e38e
17 changed files with 263 additions and 101 deletions

View File

@@ -1,5 +1,5 @@
################################
# h5ai 0.9
# h5ai 0.10
# customized .htaccess
################################
@@ -8,7 +8,7 @@
# Options +FollowSymLinks
<IfModule mod_headers.c>
<IfModule headers_module>
################################
# cache images for 52 weeks
@@ -25,7 +25,13 @@
# style auto index
################################
<IfModule mod_autoindex.c>
################################
# IMPORTANT FOR XAMPP
# if you're running XAMPP you might need to replace the
# following line with
# <IfModule autoindex_color_module>
################################
<IfModule autoindex_module>
################################
# uncomment the following line to force directory listing
@@ -56,7 +62,7 @@
IndexOrderDefault Ascending Name
IndexOptions Type=text/html;h5ai=0.9
IndexOptions Type=text/html;h5ai=0.10
IndexOptions Charset=UTF-8
IndexOptions FancyIndexing
IndexOptions HTMLTable

File diff suppressed because one or more lines are too long

View File

@@ -11,7 +11,7 @@
<img class="techclass" src="/h5ai/images/html5-storage.png" alt="html5-storage" />
<img class="techclass" src="/h5ai/images/html5-css3.png" alt="html5-css3" />
</a>
<a href="http://larsjung.de/h5ai" target="_blank" title="h5ai 0.9">h5ai 0.9</a>
<a href="http://larsjung.de/h5ai" target="_blank" title="h5ai project page">h5ai 0.10</a>
<span class="l10n-footerUsing">using</span>
<a href="http://tiheum.deviantart.com/art/Faenza-Icons-173323228" target="_blank" title="icon theme for Gnome">Faenza icons</a>
</footer>

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>Directory index · styled with h5ai</title>
<meta name="h5ai-version" content="h5ai 0.9">
<meta name="h5ai-version" content="h5ai 0.10">
<meta name="description" content="Directory index styled with h5ai (http://larsjung.de/h5ai)">
<meta name="keywords" content="directory, index, autoindex, h5ai">
<link rel="shortcut icon" type="image/png" href="/h5ai/images/h5ai-16x16.png">

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
/*
* h5ai 0.9
* h5ai 0.10
* Options and localization
*/
@@ -80,7 +80,8 @@ h5aiLangs = {
columnLastModified: "Last modified",
columnSize: "Size",
footerUsing: "using",
parentDirectory: "Parent Directory"
parentDirectory: "Parent Directory",
empty: "empty"
},
"de": {
@@ -90,7 +91,8 @@ h5aiLangs = {
columnLastModified: "Geändert",
columnSize: "Größe",
footerUsing: "nutzt",
parentDirectory: "Übergeordnetes Verzeichnis"
parentDirectory: "Übergeordnetes Verzeichnis",
empty: "leer"
},
"fr": {
@@ -100,7 +102,8 @@ h5aiLangs = {
columnLastModified: "Dernière modification",
columnSize: "Taille",
footerUsing: "utilise",
parentDirectory: "Dossier parent"
parentDirectory: "Dossier parent",
empty: "vide"
},
"nl": {
@@ -110,7 +113,8 @@ h5aiLangs = {
columnLastModified: "Laatste wijziging",
columnSize: "Grootte",
footerUsing: "gebruikt",
parentDirectory: "Bovenliggende map"
parentDirectory: "Bovenliggende map",
empty: "lege"
},
"sv": {
@@ -120,7 +124,8 @@ h5aiLangs = {
columnLastModified: "Senast ändrad",
columnSize: "Filstorlek",
footerUsing: "använder",
parentDirectory: "Till överordnad mapp"
parentDirectory: "Till överordnad mapp",
empty: "tom"
},
"cs": {
@@ -130,7 +135,8 @@ h5aiLangs = {
columnLastModified: "Upraveno",
columnSize: "Velikost",
footerUsing: "používá",
parentDirectory: "Nadřazený adresář"
parentDirectory: "Nadřazený adresář",
empty: "prázdný"
},
"sk": {
@@ -140,7 +146,8 @@ h5aiLangs = {
columnLastModified: "Upravené",
columnSize: "Velkosť",
footerUsing: "používá",
parentDirectory: "Nadriadený priečinok"
parentDirectory: "Nadriadený priečinok",
empty: "prázdny"
}
};