From: Robert R. <rra...@ya...> - 2000-11-06 06:37:43
|
> Can this work between servers, as in two different ones? The whole Http > path? Actually this might solve my problem with not wanting to screw up > the CORE scripts with my own or anyone else's, by separating them across > servers. Never mind me, I'm just thinking out loud. There are security problems with acessing scripts accross servers, so that is not really an option. The new release should fix your problems. The structure has changed to look like this: lib/ dynapi/ api/ dynlayer.js,etc. ext/ So now you can put your own packages in the lib directory. So now when you use addLibrary you must use the package name with the class type. Like: DynAPI.addLibrary('mystuff.gui',['file1.js','file2.js']) Where mystuff is in the lib directory. Also, the file names do not include the package or class type anymore. So it would look like: lib/ dynapi/ ... mystuff/ gui/ file1.js file2.js This should allow you to separate your stuff from the main dynapi files. \\Robert -- |