Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (553 - 555 of 2449)

Ticket Resolution Summary Owner Reporter
#1918 Fixed [Win32] Drag'n'Drop not working Calum Calum
Description

"file:///C:/The.torrent" becomes "C:\C:\The.torrent"

Problem was introduced with this commit: 00900fef

Solution will be something like the code below but will need better testing to ensure both Linux and Windows compatibility.

if urlparse(arg).scheme == "file":
    os.path.abspath(url2pathname(urlparse(arg).path))
else:
    path = os.path.abspath(arg)

http://en.wikipedia.org/wiki/File_URI_scheme

#1923 Fixed Add option for Full Allocation (without sparse files) Calum
Description

Discussion and current workaround: http://forum.deluge-torrent.org/viewtopic.php?f=8&t=37349

lt python binding for full allocation is:

lt.storage_mode_t(0)

http://www.rasterbar.com/products/libtorrent/manual.html#storage-allocation

#1938 Fixed AttributeError: 'NoneType' object has no attribute 'send_request' Calum
Description

Found two bugs with the same AttributeError that need investigating.

https://bugzilla.redhat.com/show_bug.cgi?id=666616

https://bugs.launchpad.net/ubuntu/+source/deluge/+bug/756388

Traceback (most recent call last):
  File "/usr/lib/pymodules/python2.7/deluge/ui/gtkui/menubar.py", line 256, in on_menuitem_quitdaemon_activate
    self.window.quit(shutdown=True)
  File "/usr/lib/pymodules/python2.7/deluge/ui/gtkui/mainwindow.py", line 163, in quit
    client.daemon.shutdown()
  File "/usr/lib/pymodules/python2.7/deluge/ui/client.py", line 504, in __call__
    return self.daemon.call(self.base, *args, **kwargs)
  File "/usr/lib/pymodules/python2.7/deluge/ui/client.py", line 310, in call
    self.protocol.send_request(request)
AttributeError: 'NoneType' object has no attribute 'send_request'
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.