summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2009-05-17 15:38:16 +0000
committerAndreas Brachold <vdr07@deltab.de>2009-05-17 15:38:16 +0000
commit51dd5a7c110ea373577373bc98e9a2510fd8a686 (patch)
tree0dfe1015a909a00f19af72b1b65cb5eb98893315
parent96c7358d7c1ab7690c90ae937ceab077b355918e (diff)
downloadxxv-51dd5a7c110ea373577373bc98e9a2510fd8a686.tar.gz
xxv-51dd5a7c110ea373577373bc98e9a2510fd8a686.tar.bz2
* xstyle: Update links to documentations
* jason: music use integer to sort tracks
-rw-r--r--skins/jason/music.js6
-rw-r--r--skins/xstyle/mainmenu.inc4
2 files changed, 4 insertions, 6 deletions
diff --git a/skins/jason/music.js b/skins/jason/music.js
index 3c629f4..810ad2b 100644
--- a/skins/jason/music.js
+++ b/skins/jason/music.js
@@ -15,12 +15,12 @@ Ext.xxv.musicStore = function() {
,autoLoad:{params:{start:0, limit:configuration.pageSize}}
,reader: new Ext.xxv.jsonReader({
fields: [
- {name: 'id', type: 'string'}
+ {name: 'id', type: 'int'}
,{name: 'artist', type: 'string'}
,{name: 'album', type: 'string'}
,{name: 'title', type: 'string'}
- ,{name: 'track', type: 'string'}
- ,{name: 'year', type: 'string'}
+ ,{name: 'track', type: 'int'}
+ ,{name: 'year', type: 'int'}
,{name: 'duration', type: 'string'}
,{name: 'genre', type: 'string'}
,{name: 'comment', type: 'string'}
diff --git a/skins/xstyle/mainmenu.inc b/skins/xstyle/mainmenu.inc
index 6b1ad95..775012f 100644
--- a/skins/xstyle/mainmenu.inc
+++ b/skins/xstyle/mainmenu.inc
@@ -164,11 +164,9 @@ var myBar = new WebFXMenuBar;
<?% IF allow('more') %?>
var info = new WebFXMenu;
- info.add(new WebFXMenuItem("<?% gettext("News") %?>", "?cmd=more&data=NEWS"));
info.add(new WebFXMenuItem("<?% gettext("History") %?>", "?cmd=more&data=CHANGELOG"));
info.add(new WebFXMenuItem("<?% gettext("License") %?>", "?cmd=more&data=COPYING"));
- info.add(new WebFXMenuItem("<?% gettext("Readme") %?>", "?cmd=more&data=<?% gettext('Readme') FILTER upper %?>"));
- info.add(new WebFXMenuItem("<?% gettext("Tutorial") %?>", "?cmd=more&data=TUTORIAL"));
+ info.add(new WebFXMenuItem("<?% gettext("Readme") %?>", "?cmd=more&data=README"));
myBar.add(new WebFXMenuButton("<?% gettext("Documentation") %?>",null,null,info));
<?% END %?>