Custom Query (2447 matches)
Results (541 - 543 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1074 | Fixed | [PATCH] Hex encoded magent uris can't be added from gtkui | ||
Description |
See spec for magnet details. The gtkui assumes all magent uri hashes are base32 encoded. Patch fixes this by only recoding 32 character hashes. Still missing is any user feedback if adding the torrent fails. eg base64.b32decode fails |
|||
#1075 | Fixed | Changing priority on a whole folder doesn't work | ||
Description |
Version: trunk OS: Debian Lenny Changing the priority of files from the web interface works fine for single files and multiple files selected with holding the Ctrl key. It doesn't work at all when trying to change priority on a whole folder inside the torrent though. Neither does holding down Shift to select multiple files/folders. Both these things work in the GTK interface, so they should work in the web interface as well. |
|||
#1076 | Fixed | [webui] 1.2.x - impossible to reverse proxy with apache | ||
Description |
The 1.1.x webui included a command-switch to dynamically change the webroot - that is, prefix all urls and redirects with a base url (did it work for all headers/cookies, or only redirects?). See http://forum.deluge-torrent.info/viewtopic.php?f=7&t=10165&st=0&sk=t&sd=a#p53605 1.2.x does not offer this, and because 1.2.x uses ajax/xmlhttprequest it is not possible to reverse proxy deluge-web behind apache, for several reasons: 1) Javascript does not preserve the REFERER Header. Apache mod_rewrite rules such as the following will no longer work. RewriteCond %{HTTP_REFERER} protocol://some.website.uri:port/deluge/.* RewriteCond %{REQUEST_URI} ^/deluge/.* RewriteRule /(.*) /deluge/$1 [PT] (notice that without tracking the Referer, Rewrite rules most likely would conflict with other webapps) 2) Apache substitute filters are somewhat broken. The following will not work (to rewrite the urls in the xml[ajax],css,javascript,and html) FilterProvider text_inflate inflate resp=Content-Type $text FilterChain +text_inflate FilterProvider html_sed sed resp=Content-Type $html FilterChain +html_sed OutputSed s#url(["']\(["']\{1,\}\)["'])#url(/deluge\1)# FilterProvider js_sed sed resp=Content-Type $javascript FilterChain +js_sed OutputSed s#'\(\(/[a-zA-Z]\{1,\}\)\{1,\}/[a-zA-Z]\{1,\}\.[a-zA-Z]\{2,3\}\)'#'/deluge\1'# FilterProvider xml_sed sed resp=Content-Type $xml FilterChain +xml_sed OutputSed s#\(\(/[a-zA-Z]\{1,\}\)\{1,\}/[a-zA-Z]\{1,\}\.[a-zA-Z]\{2,3\}\)#/deluge\1# FilterProvider css_sed sed resp=Content-Type $css FilterChain +css_sed OutputSed s#url(\([)]\{1,\}\))#url(/deluge\1)# FilterProvider text_deflate deflate resp=Content-Type $text FilterChain +text_deflate (notice in this case the limitation with mod_proxy_html: it does not parse inline css. That's why it is also necessary to rewrite the html.) This is why I'm asking for a 1.2.x re-implementation of this very critical 1.1.x feature. |