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

Added basic options support. Refactored js.

This commit is contained in:
Lars Jung
2011-07-04 02:18:27 +02:00
parent b7387adfc8
commit b8fba3ac8e
15 changed files with 682 additions and 639 deletions

View File

@@ -1,5 +1,5 @@
################################
# h5ai 0.5.2
# h5ai 0.5.3
# customized .htaccess
################################
@@ -56,7 +56,7 @@
IndexOrderDefault Ascending Name
IndexOptions Type=text/html;h5ai=0.5.2
IndexOptions Type=text/html;h5ai=0.5.3
IndexOptions Charset=UTF-8
IndexOptions FancyIndexing
IndexOptions HTMLTable

View File

@@ -11,12 +11,13 @@
<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.5.2">h5ai</a>
<a href="http://larsjung.de/h5ai" target="_blank" title="h5ai 0.5.3">h5ai</a>
using
<a href="http://tiheum.deviantart.com/art/Faenza-Icons-173323228" target="_blank" title="icon theme for Gnome">Faenza icons</a>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>window.jQuery || document.write( '<script src="/h5ai/js/lib/jquery.min.js"><\/script>' )</script>
<script src="/h5ai/options.js"></script>
<script src="/h5ai/js/main.js"></script>
</body>
</html>

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.5.2">
<meta name="h5ai-version" content="h5ai 0.5.3">
<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

8
target/h5ai/options.js Normal file
View File

@@ -0,0 +1,8 @@
h5aiOptions = {
viewmodes: [ "icons", "details" ],
showTree: true,
folderStatus: {
"/develop/folder-types/phpsite/": 200
}
};