On Mon, Apr 9, 2012 at 6:57 PM, Phil Charlesworth <[email protected]> wrote: > On 09/04/12 18:26, lkcl luke wrote: >> On Mon, Apr 9, 2012 at 5:42 PM, Peter Bittner<[email protected]> wrote: >> >>> DONE. I've now also removed (most of) the unused import statements for >>> logging as indicated above. >>> >>> Everybody happy now? >>> >> mwahahaahh :) >> > > A couple more small problems which perhaps should be fixed before a new > release. > > pygwt.getModuleBaseURL() always returns file:// on Windows > http://code.google.com/p/pyjamas/issues/detail?id=714
ok - that should really be properly fixed by using os.path (detect file:// at beginning). os.path has built-in detection for OS path separators, using os.path.split automatically does the right thing. os.path.join(os.path.split(foo)[:-1]) would do the job, but there's probably a single function which does the same thing. > Images used by Tree.py and DisclosurePanel.py are not found by pyjd. > http://code.google.com/p/pyjamas/issues/detail?id=715 yeahhh, this is really unavoidable. the "solutions" are worse than the problem. l.

