Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (631 - 633 of 2449)

Ticket Resolution Summary Owner Reporter
#2233 WontFix Deluge client assumes uses local file system when connected to server over ssh tunnel rpglover64
Description

I am using Deluge 1.3.5 with libtorrent 0.15.9.0 for the gtk frontend as well as for the server backend.

If I use ssh -L 58846:localhost:58846 server to forward the deluge port and connect to the server's deluged process with the gtk frontend, and then try to set the download directory, it lets me browse the directory tree on the client, not on the server.

Worse, it the download directory that has been set does not exist on the client, the client changes it.

#2251 WontFix iOS 6 Caching WebUI json POST requests Damien Churchill Torawk
Description

It would seem that iOS is caching the requests to the webui's json interface. This is causing the UI to show what seems like a playback or recorded view of the progress of the torrents -- since it's showing the cached requests which oddly isn't always the same but seemingly changing and eventually sorts it self out. But I see day old torrents randomly for awhile first.

I found this on how iOS's Safari is caching in v6:

No Cache-Control or Expires headers = iOS6 Safari will cache
Cache-Control max-age=0 and an immediate Expires = iOS6 Safari will cache
Cache-Control: no-cache = iOS6 Safari will NOT cache

via http://stackoverflow.com/a/12516555 which has some more details.

And it seems to be new with iOS 6.

I was able to fix it locally with a single line change to json_api.py

@@ -274,6 +274,7 @@ class JSON(resource.Resource, component.
     def _send_response(self, request, response):
         response = json.dumps(response)
         request.setHeader("content-type", "application/x-json")
+        request.setHeader("cache-control","no-cache")
         request.write(compress(response, request))
         request.finish()

This was seen with 1.3.5 on Ubuntu installed via the ppa.

#2252 WontFix Handle magnet:// links Damien Churchill Mathieu Rochette
Description

I'm not talking about supporting magnet, I know it's already possible. What I would like is for Deluge to register[1][2] itself as an handler for magnet:// links. That way clicking a magnet:// link would automatically open[3] deluge webui, open the 'Add torrents' popup if it's not already opened and add the magnet torrent (as if clicking on '+Url', pasting the magnet link and clicking 'ok'). The user would just have to click 'Add' to validate the action.

[1] https://developer.mozilla.org/en/docs/Web-based_protocol_handlers [2] http://updates.html5rocks.com/2011/06/Registering-a-custom-protocol-handler [3] or switch to it if already open, I guess the browser is the one making decision here

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.