Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 2449)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#506 Fixed Can't add torrents andar Zae
Description

When I use the add torrent dialog nothing happens. I click the torrent file I want to add and the browse dialog closes but then nothing happens.

#3085 Duplicate Unable to launch 2.0 beta 1 on MacOS zachberger
Description

When double clicking Deluge.app deluge does not open. When running from the command line pygtk appears to be missing.

> ./Deluge.app/Contents/MacOS/deluge
Traceback (most recent call last):
  File "/Users/zachberger/Desktop/t/./Deluge.app/Contents/MacOS/Deluge-bin", line 11, in <module>
    load_entry_point('deluge==2.0b1', 'gui_scripts', 'deluge-gtk')()
  File "/Users/cas/gtk/inst/lib/python2.7/site-packages/deluge-2.0b1-py2.7.egg/deluge/ui/gtkui/__init__.py", line 50, in start
  File "/Users/cas/gtk/inst/lib/python2.7/site-packages/deluge-2.0b1-py2.7.egg/deluge/ui/gtkui/__init__.py", line 34, in start
  File "/Users/cas/gtk/inst/lib/python2.7/site-packages/deluge-2.0b1-py2.7.egg/deluge/ui/gtkui/gtkui.py", line 19, in <module>
ImportError: No module named pygtk
#2875 Fixed WebUI Json dumps Error yueyoum
Description

when upload torrent via the web ui which the torrent's content contains CJK (Chinese, Japanese, Korea) and not encoding by UTF8,

An Error will occurred at https://github.com/deluge-torrent/deluge/blob/develop/deluge/ui/web/json_api.py#L213

The error message is:

[ERROR   ] 11:59:38 json_api:271 'utf8' codec can't decode byte 0xe5 in position 0: invalid continuation byte
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/deluge/ui/web/json_api.py", line 293, in render
    d = self._on_json_request(request)
  File "/usr/lib/python2.7/dist-packages/deluge/ui/web/json_api.py", line 265, in _on_json_request
    return self._send_response(request, response)
  File "/usr/lib/python2.7/dist-packages/deluge/ui/web/json_api.py", line 276, in _send_response
    response = json.dumps(response)
  File "/usr/lib/python2.7/json/__init__.py", line 243, in dumps
    return _default_encoder.encode(obj)
  File "/usr/lib/python2.7/json/encoder.py", line 207, in encode
    chunks = self.iterencode(o, _one_shot=True)
  File "/usr/lib/python2.7/json/encoder.py", line 270, in iterencode
    return _iterencode(o, 0)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe5 in position 0: invalid continuation byte

I try to change response = json.dumps(response) to response = json.dumps(response, ensure_ascii=False), this can fix the error.

The torrent in the attach file.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.