Custom Query (2447 matches)
Results (421 - 423 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#427 | Fixed | Specifiing a new config dir leads to permission denied error | ||
Description |
When starting the deluge daemon, there is an option to specify where the config directory is, but besides putting the log file there, the program ignores the option and tries to create it's own config dir in the users home directory. This way it is impossible to start it under SUSE during boot time, as then no HOME environmental variable is set, thus Deluge tries to create the .config folder in the file system root. (Even though it was specified to use a different folder). With just a quick look through, the problem seems to be in the configmanager.py file in the class constructor: the self.config_directory is always initialized to the *default* config dir, even though it was overridden on startup. In the daemon.py file the config dir variable is later set to the correct *new* config folder, but the execution never reaches this line (the overriding of the *default* config dir), as when it loads the *default* it already dies with a permission denied error. |
|||
#428 | Fixed | Ability to rename files within a torrent (including directories) | ||
Description |
Since libtorrent revision 2362, a rename_file function was added. Deluge should support renaming files within torrents when adding them. |
|||
#429 | Fixed | aboutDialog.py needs encoding | ||
Description |
when trying to open the about box, stdout complains that the file contains non-ascii characters in the aboutDialog.py file on line 64, the line contains credits to the translaters. seems like it should be a simple fix, except i dont know what encoding is needed or how to implement it. Linux 2.6.26-gentoo SMP PREEMPT Tue Aug 12 13:27:20 PDT 2008 i686 Intel(R) Pentium(R) 4 CPU 2.80GHz GenuineIntel GNU/Linux, python-2.5.2-r7, pygtk-2.12.1-r2 "Traceback (most recent call last):
SyntaxError: Non-ASCII character '\xd8' in file /usr/lib/python2.5/site-packages/deluge/ui/gtkui/aboutdialog.py on line 64, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details" |