mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-10 07:16:50 +02:00
Fixed problems with ' in links
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# h5ai v0.10   ·   a beautified Apache index
|
# h5ai v0.10.1   ·   a beautified Apache index
|
||||||
|
|
||||||
h5ai aims to make browsing files on a Apache HTTP server more comfortable.
|
h5ai aims to make browsing files on a Apache HTTP server more comfortable.
|
||||||
See the [live demo](http://larsjung.de/h5ai/sample).
|
See the [live demo](http://larsjung.de/h5ai/sample).
|
||||||
@@ -20,6 +20,12 @@ please respect their rights.
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### v0.10.1
|
||||||
|
*2011-07-24*
|
||||||
|
|
||||||
|
* fixed problems with ' in links
|
||||||
|
|
||||||
|
|
||||||
### v0.10
|
### v0.10
|
||||||
*2011-07-24*
|
*2011-07-24*
|
||||||
|
|
||||||
|
@@ -3,7 +3,7 @@ custom = true
|
|||||||
|
|
||||||
# project
|
# project
|
||||||
project.name = h5ai
|
project.name = h5ai
|
||||||
project.version = 0.10
|
project.version = 0.10.1
|
||||||
|
|
||||||
|
|
||||||
# src
|
# src
|
||||||
|
@@ -227,7 +227,8 @@ var Path = function ( pathCache, folder, tableRow ) {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$html.addClass( this.isFolder ? "folder" : "file" );
|
$html.addClass( this.isFolder ? "folder" : "file" );
|
||||||
var $a = $( "<a href='" + this.absHref + "'><img src='/h5ai/images/crumb.png' alt='>' />" + this.label + "</a>" );
|
var $a = $( "<a><img src='/h5ai/images/crumb.png' alt='>' />" + this.label + "</a>" );
|
||||||
|
$a.attr( "href", this.absHref );
|
||||||
$a.click( $.proxy( function() { this.onClick( "crumb" ); }, this ) );
|
$a.click( $.proxy( function() { this.onClick( "crumb" ); }, this ) );
|
||||||
$a.hover( $.proxy( function() { this.onHoverIn( "crumb" ); }, this ), $.proxy( function() { this.onHoverOut( "crumb" ); }, this ) );
|
$a.hover( $.proxy( function() { this.onHoverIn( "crumb" ); }, this ), $.proxy( function() { this.onHoverOut( "crumb" ); }, this ) );
|
||||||
$html.append( $a );
|
$html.append( $a );
|
||||||
@@ -267,7 +268,8 @@ var Path = function ( pathCache, folder, tableRow ) {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$html.addClass( this.isFolder ? "folder" : "file" );
|
$html.addClass( this.isFolder ? "folder" : "file" );
|
||||||
var $a = $( "<a href='" + this.absHref + "' />" ).appendTo( $html );
|
var $a = $( "<a />" ).appendTo( $html );
|
||||||
|
$a.attr( "href", this.absHref );
|
||||||
$a.click( $.proxy( function() { this.onClick( "extended" ); }, this ) );
|
$a.click( $.proxy( function() { this.onClick( "extended" ); }, this ) );
|
||||||
$a.hover( $.proxy( function() { this.onHoverIn( "extended" ); }, this ), $.proxy( function() { this.onHoverOut( "extended" ); }, this ) );
|
$a.hover( $.proxy( function() { this.onHoverIn( "extended" ); }, this ), $.proxy( function() { this.onHoverOut( "extended" ); }, this ) );
|
||||||
|
|
||||||
@@ -314,10 +316,11 @@ var Path = function ( pathCache, folder, tableRow ) {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$html.addClass( this.isFolder ? "folder" : "file" );
|
$html.addClass( this.isFolder ? "folder" : "file" );
|
||||||
var $a = $( "<a href='" + this.absHref + "' />" )
|
var $a = $( "<a />" )
|
||||||
.appendTo( $html )
|
.appendTo( $html )
|
||||||
.append( $( "<span class='icon'><img src='" + this.icon16 + "' /></span>" ) )
|
.append( $( "<span class='icon'><img src='" + this.icon16 + "' /></span>" ) )
|
||||||
.append( $( "<span class='label'>" + this.label + "</span>" ) );
|
.append( $( "<span class='label'>" + this.label + "</span>" ) );
|
||||||
|
$a.attr( "href", this.absHref );
|
||||||
$a.click( $.proxy( function() { this.onClick( "tree" ); }, this ) );
|
$a.click( $.proxy( function() { this.onClick( "tree" ); }, this ) );
|
||||||
$a.hover( $.proxy( function() { this.onHoverIn( "tree" ); }, this ), $.proxy( function() { this.onHoverOut( "tree" ); }, this ) );
|
$a.hover( $.proxy( function() { this.onHoverIn( "tree" ); }, this ), $.proxy( function() { this.onHoverOut( "tree" ); }, this ) );
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
################################
|
################################
|
||||||
# h5ai 0.10
|
# h5ai 0.10.1
|
||||||
# customized .htaccess
|
# customized .htaccess
|
||||||
################################
|
################################
|
||||||
|
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
|
|
||||||
IndexOrderDefault Ascending Name
|
IndexOrderDefault Ascending Name
|
||||||
|
|
||||||
IndexOptions Type=text/html;h5ai=0.10
|
IndexOptions Type=text/html;h5ai=0.10.1
|
||||||
IndexOptions Charset=UTF-8
|
IndexOptions Charset=UTF-8
|
||||||
IndexOptions FancyIndexing
|
IndexOptions FancyIndexing
|
||||||
IndexOptions HTMLTable
|
IndexOptions HTMLTable
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
<img class="techclass" src="/h5ai/images/html5-storage.png" alt="html5-storage" />
|
<img class="techclass" src="/h5ai/images/html5-storage.png" alt="html5-storage" />
|
||||||
<img class="techclass" src="/h5ai/images/html5-css3.png" alt="html5-css3" />
|
<img class="techclass" src="/h5ai/images/html5-css3.png" alt="html5-css3" />
|
||||||
</a>
|
</a>
|
||||||
<a href="http://larsjung.de/h5ai" target="_blank" title="h5ai project page">h5ai 0.10</a>
|
<a href="http://larsjung.de/h5ai" target="_blank" title="h5ai project page">h5ai 0.10.1</a>
|
||||||
<span class="l10n-footerUsing">using</span>
|
<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>
|
<a href="http://tiheum.deviantart.com/art/Faenza-Icons-173323228" target="_blank" title="icon theme for Gnome">Faenza icons</a>
|
||||||
</footer>
|
</footer>
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Directory index · styled with h5ai</title>
|
<title>Directory index · styled with h5ai</title>
|
||||||
<meta name="h5ai-version" content="h5ai 0.10">
|
<meta name="h5ai-version" content="h5ai 0.10.1">
|
||||||
<meta name="description" content="Directory index styled with h5ai (http://larsjung.de/h5ai)">
|
<meta name="description" content="Directory index styled with h5ai (http://larsjung.de/h5ai)">
|
||||||
<meta name="keywords" content="directory, index, autoindex, h5ai">
|
<meta name="keywords" content="directory, index, autoindex, h5ai">
|
||||||
<link rel="shortcut icon" type="image/png" href="/h5ai/images/h5ai-16x16.png">
|
<link rel="shortcut icon" type="image/png" href="/h5ai/images/h5ai-16x16.png">
|
||||||
|
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* h5ai 0.10
|
* h5ai 0.10.1
|
||||||
* Options and localization
|
* Options and localization
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user