forked from verdnatura/hedera-web
Arreglado error en la arquitectura del paquete Debian
This commit is contained in:
parent
f56875a68a
commit
01e9a1e9c1
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.0-49) stable; urgency=low
|
||||
hedera-web (1.1-1) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ Homepage: http://www.verdnatura.es
|
|||
Vcs-Git: git://www.verdnatura.es/var/git/hedera-web
|
||||
|
||||
Package: hedera-web
|
||||
Architecture: any
|
||||
Architecture: all
|
||||
Depends: apache2, php5-mysql, php-vn-web
|
||||
Suggests: php-text-captcha, php5-imap, vn-image, tinymce
|
||||
Section: misc
|
||||
|
|
|
@ -91,6 +91,7 @@
|
|||
directory="catalog"
|
||||
subdir="200x200"
|
||||
show-full="true"
|
||||
full-dir="900x900"
|
||||
editable="true"/>
|
||||
<htk-column-text title="_Name" column="Article"/>
|
||||
<htk-column-text title="_Cat" renderer="featuresRender"/>
|
||||
|
|
|
@ -35,6 +35,21 @@ Htk.ColumnImage = new Class
|
|||
{
|
||||
type: Boolean
|
||||
,value: false
|
||||
},
|
||||
/**
|
||||
* Subdirectory where full image are allocated.
|
||||
**/
|
||||
fullDir:
|
||||
{
|
||||
type: String
|
||||
,set: function (x)
|
||||
{
|
||||
this._fullDir = x;
|
||||
}
|
||||
,get: function ()
|
||||
{
|
||||
return this._fullDir;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -112,8 +127,10 @@ Htk.ColumnImage = new Class
|
|||
|
||||
,onMouseOver: function (cell)
|
||||
{
|
||||
var fullDir = this._fullDir ? this._fullDir : 'full';
|
||||
|
||||
if (!cell.error)
|
||||
this.fullImage.show (this.basedir, cell.value);
|
||||
this.fullImage.show (this.basedir +'/'+ fullDir, cell.value);
|
||||
}
|
||||
|
||||
,onMouseOut: function ()
|
||||
|
|
|
@ -44,7 +44,7 @@ Htk.FullImage = new Class
|
|||
|
||||
,show: function (basedir, file)
|
||||
{
|
||||
var src = basedir +'/full/'+ file;
|
||||
var src = basedir +'/'+ file;
|
||||
|
||||
if (this.closed && this.src == src)
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue