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

Compare commits

...

4 Commits

Author SHA1 Message Date
Lars Jung
e5b7ee6125 Added tr translation. 2011-07-30 13:19:28 +02:00
Lars Jung
e70d9029d2 Added es translation. 2011-07-30 12:35:51 +02:00
Lars Jung
b561082bca Updated build process and readme. 2011-07-29 13:52:51 +02:00
Lars Jung
ae464169a6 Updated readme. 2011-07-29 03:25:48 +02:00
7 changed files with 60 additions and 21 deletions

View File

@@ -1,22 +1,26 @@
# h5ai v0.12   ·   a beautified Apache index
# h5ai
h5ai tries to make browsing files on a Apache HTTP server more comfortable. It makes use of the
built-in autoindex module of Apache and adds styles and functionality to the page generated by
this module.
For installation instructions and documentation have a look at the [project page](http://larsjung.de/h5ai).
There is also a [sample folder](http://larsjung.de/h5ai/sample).
* [Download, docs and demo](http://larsjung.de/h5ai)
* [Sources at GitHub](http://github.com/lrsjng/h5ai)
[h5ai](http://larsjung.de/h5ai) is provided under the terms of the MIT License.
It uses
[HTML5 Boilerplate](http://html5boilerplate.com),
[jQuery](http://jquery.com),
[Modernizr](http://www.modernizr.com) and
[Faenza icon set](http://tiheum.deviantart.com/art/Faenza-Icons-173323228),
please respect their rights.
h5ai is provided under the terms of the [MIT License](http://github.com/lrsjng/h5ai/blob/master/LICENSE.txt).
It uses the [Faenza icon set](http://tiheum.deviantart.com/art/Faenza-Icons-173323228) (GPL license).
## Changelog
### v0.12.3
*2011-07-30*
* added tr translation by [Batuhan Icoz](http://github.com/batuhanicoz/h5ai)
### v0.12.2
*2011-07-30*
* added es translation by Jose David Calderon Serrano
### v0.12.1
*2011-07-29*

View File

@@ -3,7 +3,7 @@ custom = true
# project
project.name = h5ai
project.version = 0.12.1
project.version = 0.12.3
# src

View File

@@ -2,7 +2,7 @@
<project
name="h5ai"
basedir="."
default="build"
default="release"
xmlns:scripp="antlib:de.larsjung.scripp.ant"
>
<target name="init">
@@ -26,35 +26,48 @@
</target>
<target name="build" depends="clean">
<target name="build-prepare" depends="clean">
<mkdir dir="${build.dir}" />
<copy todir="${build.dir}">
<fileset dir="${src.dir}" />
<fileset file="LICENSE.txt" />
<fileset file="README.md" />
</copy>
<copy file="LICENSE.txt" todir="${build.dir}" />
<replace dir="${build.dir}">
<replacefilter token="%BUILD%" value="${build.label}" />
<replacefilter token="%BUILD_NAME%" value="${project.name}" />
<replacefilter token="%BUILD_VERSION%" value="${project.version}" />
<replacefilter token="%BUILD_STAMP%" value="${build.stamp}" />
</replace>
</target>
<target name="build" depends="build-prepare">
<scripp.dir dir="${build.dir}/h5ai/css" />
<scripp.dir dir="${build.dir}/h5ai/js" />
</target>
<!-- release -->
<target name="build-uncompressed" depends="build-prepare">
<scripp.dir dir="${build.dir}/h5ai/css" compress="false" />
<scripp.dir dir="${build.dir}/h5ai/js" compress="false" />
</target>
<target name="release" depends="build">
<mkdir dir="${release.dir}" />
<zip destfile="${release.dir}/${project.name}-${project.version}.zip" basedir="${build.dir}" />
<tar destfile="${release.dir}/${project.name}-${project.version}.tar" basedir="${build.dir}"/>
<gzip destfile="${release.dir}/${project.name}-${project.version}.tar.gz" src="${release.dir}/${project.name}-${project.version}.tar"/>
<delete file="${release.dir}/${project.name}-${project.version}.tar" />
<zip destfile="${release.dir}/${project.name}-${project.version}.zip" basedir="${build.dir}" />
</target>
<macrodef name="scripp.dir">
<attribute name="dir" />
<attribute name="compress" default="true" />
<sequential>
<scripp:process>
<scripp:process compress="@{compress}">
<fileset dir="@{dir}" includes="**/*.less,**/*.css,**/*.js" excludes="inc/**/*,**/*.min.css,**/*.min.js" />
<globmapper from="*.less" to="*.css" />
<globmapper from="*.css" to="*.css" />

Binary file not shown.

BIN
release/h5ai-0.12.3.tar.gz Normal file

Binary file not shown.

View File

@@ -148,6 +148,28 @@ h5aiLangs = {
footerUsing: "používá",
parentDirectory: "Nadriadený priečinok",
empty: "prázdny"
},
"es": {
viewDetails: "Detalles",
viewIcons: "Íconos",
columnName: "Nombre",
columnLastModified: "Última modificación",
columnSize: "Tamaño",
footerUsing: "usando",
parentDirectory: "Directorio superior",
empty: "vacío"
},
"tr": {
viewDetails: "detaylar",
viewIcons: "ikonlar",
columnName: "İsim",
columnLastModified: "Son Düzenleme",
columnSize: "Boyut",
footerUsing: "kullanıyor",
parentDirectory: "Üst Dizin",
empty: "boş"
}
};