Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 2449)

Ticket Resolution Summary Owner Reporter
#2117 Duplicate Wrong path separator is sent to unix daemon from windows gui Winand
Description

Install daemon on unix-based os with slash separator. Connect to daemon from Windows gtkui. Open Add torrent dialog. Paths within torrent are separated with Windows native backslash ("\"). When task is sent to daemon it takes backslashes as part of filename.

I made a dirty hack so all native seps are replaced with slash before sending task to deluged. But we cannot know that slash is native for remote daemon, so this is not a good solution.

while row != None:
    torrent_id = self.torrent_liststore.get_value(row, 0)
    filename = self.torrent_liststore.get_value(row, 2).replace(os.path.sep, '/') #WA

This is discussed here http://forum.deluge-torrent.org/viewtopic.php?f=12&t=36329

#2129 Fixed Empty filename can be set in Add Torrent dialog Winand
Description

http://img513.imageshack.us/img513/7489/96061100.png

http://img689.imageshack.us/img689/9073/42590981.png

http://img100.imageshack.us/img100/4579/96045639.png

So file has the same name as folder.

#2130 Fixed Same name can be given to different files in Add Torrent dialog Winand
Description

In this case the first file disappeared, and the second file was downloaded with the size of the first one. (So it is being played with artifacts)

http://img17.imageshack.us/img17/7084/71771119.png

http://img338.imageshack.us/img338/2079/69756830.png

http://img16.imageshack.us/img16/2350/70864654.png

Note: See TracQuery for help on using queries.