~cmiller/ubuntu/quantal/deluge/fix-parameter-move-storage

« back to all changes in this revision

Viewing changes to deluge/ui/web/js/Deluge.Preferences.Interface.js

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-12-24 00:57:59 UTC
  • mfrom: (4.1.9 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091224005759-ifkuzevkdqqx4jle
Tags: 1.2.0~rc5-1
* New upstream version.
  - fix startup with fresh configs. (Closes: #560384)
* debian/control: drop useless dependencies on dbus for deluge-gtk.
* fix_manifest_in.patch: dropped, file MANIFEST.in has been deleted by
  upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
                        xtype: 'fieldset',
53
53
                        border: false,
54
54
                        title: _('Interface'),
55
 
                        style: 'margin-bottom: 5px; padding-bottom: 5px; padding-top: 5px',
 
55
                        style: 'margin-bottom: 0px; padding-bottom: 5px; padding-top: 5px',
56
56
                        autoHeight: true,
57
57
                        labelWidth: 1,
58
58
                        defaultType: 'checkbox'
59
59
                });
60
60
                optMan.bind('show_session_speed', fieldset.add({
61
61
                        name: 'show_session_speed',
 
62
                        height: 22,
62
63
                        fieldLabel: '',
63
64
                        labelSeparator: '',
64
65
                        boxLabel: _('Show session speed in titlebar')
65
66
                }));
66
67
                optMan.bind('sidebar_show_zero', fieldset.add({
67
68
                        name: 'sidebar_show_zero',
 
69
                        height: 22,
68
70
                        fieldLabel: '',
69
71
                        labelSeparator: '',
70
72
                        boxLabel: _('Show filters with zero torrents')
71
73
                }));
72
74
                optMan.bind('sidebar_show_trackers', fieldset.add({
73
75
                        name: 'sidebar_show_trackers',
 
76
                        height: 22,
74
77
                        fieldLabel: '',
75
78
                        labelSeparator: '',
76
79
                        boxLabel: _('Show trackers with zero torrents')
125
128
                        xtype: 'fieldset',
126
129
                        border: false,
127
130
                        title: _('Server'),
128
 
                        style: 'margin-top: 5px; padding-top: 5px; margin-bottom: 0px; padding-bottom: 0px',
 
131
                        style: 'margin-top: 0px; padding-top: 0px; margin-bottom: 0px; padding-bottom: 0px',
129
132
                        autoHeight: true,
130
133
                        labelWidth: 110,
131
134
                        defaultType: 'uxspinner',
157
160
                        xtype: 'checkbox',
158
161
                        name: 'https',
159
162
                        hideLabel: true,
160
 
                        width: 320,
161
 
                        boxLabel: _('Use SSL (paths relative to the Deluge config folder)')
 
163
                        width: 280,
 
164
                        height: 22,
 
165
                        boxLabel: _('Use SSL (paths relative to Deluge config folder)')
162
166
                }));
163
167
                this.httpsField.on('check', this.onSSLCheck, this);
164
168
                this.pkeyField = optMan.bind('pkey', fieldset.add({
253
257
                this.certField.setDisabled(!checked);
254
258
        }
255
259
});
256
 
Deluge.Preferences.addPage(new Ext.deluge.preferences.Interface());
 
 
b'\\ No newline at end of file'
 
260
Deluge.Preferences.addPage(new Ext.deluge.preferences.Interface());