change themes b...
Content-type: text/plain
Author: damoxc
Revision: 5064
Log:
fix semi-colon in the login window
change themes back to a static.File resource
Diff:
Modified: trunk/deluge/ui/web/js/deluge-login.js
===================================================================
--- trunk/deluge/ui/web/js/deluge-login.js 2009-04-16 19:36:30 UTC (rev
5063)
+++ trunk/deluge/ui/web/js/deluge-login.js 2009-04-16 19:38:54 UTC (rev
5064)
@@ -101,7 +101,7 @@
iconCls:
'x-deluge-icon-warning'
});
}
- }.bindWithEvent(this);
+ }.bindWithEvent(this)
});
},
Modified: trunk/deluge/ui/web/server.py
===================================================================
--- trunk/deluge/ui/web/server.py 2009-04-16 19:36:30 UTC (rev 5063)
+++ trunk/deluge/ui/web/server.py 2009-04-16 19:38:54 UTC (rev 5064)
@@ -226,7 +226,7 @@
self.putChild("json", JSON())
self.putChild("upload", Upload())
self.putChild("render", Render())
- self.putChild("themes", LookupResource("Themes", rpath("themes")))
+ self.putChild("themes", static.File(rpath("themes")))
self.putChild("tracker", Tracker())
def getChild(self, path, request):
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---