f...
Content-type: text/plain
Author: damoxc
Revision: 5882
Log:
update the ChangeLog so andar doesn't beat me up
fix displaying tracker urls with & in the url in the gtkui
Diff:
Modified: branches/1.2_RC/ChangeLog
===================================================================
--- branches/1.2_RC/ChangeLog 2009-10-27 10:57:47 UTC (rev 5881)
+++ branches/1.2_RC/ChangeLog 2009-10-27 11:07:30 UTC (rev 5882)
@@ -1,7 +1,16 @@
=== Deluge 1.2.0_rc3 (In Development) ===
==== Core ====
* Fix #1047 move completed does not work if saving to non default path
-
+
+==== GtkUI ====
+ * replace & with & in the details tab to ensure there are no markup
errors
+
+==== Web ====
+ * Fix #1046 changing auto managed via the details tab
+ * Fix setting torrent options when adding
+ * Fix setting file priorities when adding
+ * HTML escape the field values on the details tab
+
=== Deluge 1.2.0_rc2 (25 October 2009) ===
==== GtkUI ====
* Fix path errors when adding torrents externally in Windows
Modified: branches/1.2_RC/deluge/ui/gtkui/details_tab.py
===================================================================
--- branches/1.2_RC/deluge/ui/gtkui/details_tab.py 2009-10-27 10:57:47 UTC
(rev 5881)
+++ branches/1.2_RC/deluge/ui/gtkui/details_tab.py 2009-10-27 11:07:30 UTC
(rev 5882)
@@ -105,9 +105,9 @@
if widget[0].get_text() != txt:
if widget[2][0] == 'comment' and is_url(txt):
- widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt))
+ widget[0].set_markup('<a href="%s">%s</a>' % (txt,
txt.replace('&', '&')))
else:
- widget[0].set_markup(txt)
+ widget[0].set_markup(txt.replace('&', '&'))
def clear(self):
for widget in self.label_widgets:
Modified: trunk/deluge/ui/gtkui/details_tab.py
===================================================================
--- trunk/deluge/ui/gtkui/details_tab.py 2009-10-27 10:57:47 UTC (rev
5881)
+++ trunk/deluge/ui/gtkui/details_tab.py 2009-10-27 11:07:30 UTC (rev
5882)
@@ -105,9 +105,9 @@
if widget[0].get_text() != txt:
if widget[2][0] == 'comment' and is_url(txt):
- widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt))
+ widget[0].set_markup('<a href="%s">%s</a>' % (txt,
txt.replace('&', '&')))
else:
- widget[0].set_markup(txt)
+ widget[0].set_markup(txt.replace('&', '&'))
def clear(self):
for widget in self.label_widgets:
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---