summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthlo <t.lohmar@gmx.de>2013-02-01 22:11:11 +0100
committerthlo <t.lohmar@gmx.de>2013-02-01 22:11:11 +0100
commit3adf73ca0d66f2689118606e562ccf7807f525b4 (patch)
tree25609137e17fc60af10399a39f5b83a5f2a65064
parent03b23eec3f3c4f4d123ef0143ddddff096641770 (diff)
downloadvdr-plugin-smarttvweb-3adf73ca0d66f2689118606e562ccf7807f525b4.tar.gz
vdr-plugin-smarttvweb-3adf73ca0d66f2689118606e562ccf7807f525b4.tar.bz2
avoid fetching the descriptions of recordings and channels.
-rwxr-xr-xvdr-smarttvweb/web/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/vdr-smarttvweb/web/index.html b/vdr-smarttvweb/web/index.html
index f134ece..f396ed4 100755
--- a/vdr-smarttvweb/web/index.html
+++ b/vdr-smarttvweb/web/index.html
@@ -28,7 +28,7 @@ $(document).ready(function(){
$.mobile.loading('show');
Server.setSort(true);
- Server.fetchVideoList("/recordings.xml");
+ Server.fetchVideoList("/recordings.xml?mode=nodesc");
removeDomTree = function () {
// parent should not be deleted.
@@ -50,7 +50,7 @@ $(document).ready(function(){
$('#medbtn').removeClass('ui-btn-active');
$('#chnbtn').removeClass('ui-btn-active');
Server.setSort(true);
- Server.fetchVideoList("/recordings.xml");
+ Server.fetchVideoList("/recordings.xml?mode=nodesc");
break;
case 'med':
state = 'med';
@@ -66,7 +66,7 @@ $(document).ready(function(){
$('#medbtn').removeClass('ui-btn-active');
$('#recbtn').removeClass('ui-btn-active');
Server.setSort(false);
- Server.fetchVideoList("/channels.xml");
+ Server.fetchVideoList("/channels.xml?mode=nodesc");
break;
};
};