On 2012-04-09 15:06, C Anthony Risinger wrote: > try looking into the pygwt:module<meta> tag processing done by bootstrap.js: > > var selectorURL = parts[0] + parts[1] + ".nocache.html"; > > ... you want to influence `parts`, because all other urls are relative to > that. Hmm. Yes, I tried: var selectorURL = '/my/absolute/media/path/' + parts[0] + parts[1] + ".nocache.html";
...which caused the module loading to break. > take a look at these: > > https://groups.google.com/d/msg/pyjamas-dev/4-42LlfiYPw/vHaxjXlD34sJ > https://groups.google.com/d/msg/pyjamas-dev/4-42LlfiYPw/JDLzuQauWSUJ > > ... and lmk if it won't do what you want. I read these links, and will attempt something like... <meta name="pygwt:module" content="/my/custom/location/on/some/server/pyjs"/> ...tonight. Thanks, Anthony.

