Custom Query (2449 matches)
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 | ||
| 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 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 | ||
| 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 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 | ||
| 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 |
|||
