Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[PR-153] tweak to include PL_AUTO in list of selectable encodings.
  • Loading branch information
adamsutton committed Oct 12, 2012
1 parent cdc5109 commit 2b6bd47
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions src/webui/static/app/dvb.js
Expand Up @@ -459,17 +459,25 @@ tvheadend.dvb_services = function(adapterId) {
mode : 'local',
store : new Ext.data.SimpleStore({
fields : [ 'key', 'value' ],
data : [ [ null, 'auto' ], [ 'ISO6937', 'ISO6937' ],
[ 'ISO8859-1', 'ISO8859-1' ], [ 'ISO8859-2', 'ISO8859-2' ],
[ 'ISO8859-3', 'ISO8859-3' ], [ 'ISO8859-4', 'ISO8859-4' ],
[ 'ISO8859-5', 'ISO8859-5' ], [ 'ISO8859-6', 'ISO8859-6' ],
[ 'ISO8859-7', 'ISO8859-7' ], [ 'ISO8859-8', 'ISO8859-8' ],
[ 'ISO8859-9', 'ISO8859-9' ], [ 'ISO8859-10', 'ISO8859-10' ],
data : [
[ null, 'auto' ],
[ 'ISO6937', 'ISO6937' ],
[ 'ISO8859-1', 'ISO8859-1' ],
[ 'ISO8859-2', 'ISO8859-2' ],
[ 'ISO8859-3', 'ISO8859-3' ],
[ 'ISO8859-4', 'ISO8859-4' ],
[ 'ISO8859-5', 'ISO8859-5' ],
[ 'ISO8859-6', 'ISO8859-6' ],
[ 'ISO8859-7', 'ISO8859-7' ],
[ 'ISO8859-8', 'ISO8859-8' ],
[ 'ISO8859-9', 'ISO8859-9' ],
[ 'ISO8859-10', 'ISO8859-10' ],
[ 'ISO8859-11', 'ISO8859-11' ],
[ 'ISO8859-12', 'ISO8859-12' ],
[ 'ISO8859-13', 'ISO8859-13' ],
[ 'ISO8859-14', 'ISO8859-14' ],
[ 'ISO8859-15', 'ISO8859-15' ] ]
[ 'ISO8859-15', 'ISO8859-15' ],
[ 'PL_AUTO', 'Polish Fixup' ]
}),
typeAhead : true,
lazyRender : true,
Expand Down

0 comments on commit 2b6bd47

Please sign in to comment.