1)I had a set of “.js” files in a particular Directory structure.
2)I NEED to store them locally with my smalltalk image and need not want to host them seperately.
3) I DONT need to keep them inside the smalltalk image, with the WAFileLibrary.
Please let me know how the following code needs to be modified for my requirement.
anHtmlRoot javascript url: ‘http://www.google.com/jsapi’.
Something like the following..?
anHtmlRoot javascript url: “/myfolder/MyFile.js”
Help
Varun Isac
You can indeed write:
but it’s better to use:
Which allows you to setup the path as a configuration parameter. More on that in the Seaside book.
To serve the actual file, there are two options:
machine)
webserver
For the latter option, you can load the Seaside-Filesystem package from the Seaside30LGPL repository. Once loaded, you can define an ‘external directory’ handler for your ‘myFolder’ directory using the Seaside config tool and that handler will serve the files from the disk.