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

« back to all changes in this revision

Viewing changes to deluge/ui/webui/templates/ajax/render/html/tab_options.html

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-11-13 02:39:45 UTC
  • mfrom: (4.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091113023945-te1bybo2912ejzuc
Tags: 1.2.0~rc3-4
* debian/control: bump build-dep on python-setuptools to (>= 0.6c9).
* debian/patches:
  - 25_r5921_fastresume_files.patch
    new, should fix problems with fresh configs;
  - 30_r5931_ipc_lockfile.patch:
    new, should fix an issue where Deluge will fail to start if there is a
    stale ipc lockfile. (Closes: #555849)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<form>
2
 
        <fieldset>
3
 
                <legend>$_('Bandwidth')</legend>
4
 
                <label>$_('Max Download Speed')</label><input type="text" name="max_download_speed" size="3" /> KiB/s<br />
5
 
                <label>$_('Max Upload Speed')</label><input type="text" name="max_upload_speed" size="3" /> KiB/s<br />
6
 
                <label>$_('Max Connections')</label><input type="text" name="max_connections" size="3" /><br />
7
 
                <label>$_('Max Upload Slots')</label><input type="text" name="max_upload_slots" size="3" /><br />
8
 
        </fieldset>
9
 
 
10
 
        <fieldset>
11
 
                <legend>$_('Queue')</legend>
12
 
                <label><input type="checkbox" name="is_auto_managed" />$_('Auto Managed')</label><br />
13
 
                <label><input type="checkbox" name="stop_at_ratio" />$_('Stop seed at ratio')</label><input type="text" name="stop_ratio" size="3" value="2.00" /><br />
14
 
                <label><input type="checkbox" name="remove_at_ratio" />$_('Remove at ratio')</label><br />
15
 
        </fieldset>
16
 
 
17
 
        <fieldset>
18
 
                <legend>$_('General')</legend>
19
 
                <label><input type="checkbox" name="private" />$_('Private')</label><br />
20
 
                <label><input type="checkbox" name="prioritize_first_last" />$_('Prioritize First/Last')</label><br />
21
 
                <input type="button" name="edit_trackers" value="$_('Edit Trackers')" class="deluge_button" /><br />
22
 
                <input type="button" name="reset_options" value="$_('Reset')" class="deluge_button" />
23
 
                <input type="button" name="apply_options" value="$_('Apply')" class="deluge_button" /><br/>
24
 
        </fieldset>
25
 
</form>
26
 
<br style="clear: both;" />