On Mar 27, 2012, at 6:06 PM, Igor Stasenko wrote: > this part is closely related to command-line arguments handling.. > > on windows things, which expected to work, like: > > vm image.image <pathToScript>.st > > fails to find the script, because it messing up with back/forward > slashes in path > and at the end it transforms an input into escaped slashes, which is > of course cannot be found in file system...
right now we use Urls there because it supports to add URL as a "file". vm imageimage http://myscript.com/phato.st I personally think we should remove that. If you want to load a file via the network, just write a local script that does that. If we remove the network support for script parameters, we will directly solve that problem. (and we simplify the whole startup logic, and we make the startup not depend on networking). http://code.google.com/p/pharo/issues/detail?id=4057 Marcus -- Marcus Denker -- http://marcusdenker.de
