From: C K. <cki...@ne...> - 2003-07-28 18:19:35
|
I'm not saying you guys should do anything, I'm just telling you what I = did :-) =20 However, if I say my software is supported in an entire major version without users looking deeper into the docs for minor version coverage, = then it had better or I'm in trouble. That's why I use NN 4.03 and why I = ported DynAPI 3 to it. =20 Don't get me wrong, I too dream of a day when all we need is the DOM, = but until then, cross-browser means v4+. =20 I was going to say that I could submit my code or a change log, but then = in future versions you would be supporting this hated version, which it = seems is not desired. I just think if a function returns an explicit value sometimes, it should return an explicit value all of the time. Not every single function. =20 As I said, I just made those simple changes and everything up to MotionX worked fine. =20 Is every property and method in the API demonstrated in the examples? =20 If so, it would give me a good idea of what needs to be done. =20 Kudos to great work! I'll just keep mutating the API to my down-level = specs. =20 |
From: todd a. m. <vze...@ve...> - 2003-08-02 01:53:05
|
Hello IN addition to being a test of whether I can post a question to this = list, I have a question! ... Please give some advice on the BEST way to Load and Save a file, in = DynAPI 3. Which hopefully works (easily?) locally, as well as from a server??? simple??? THANKS Todd. I mean an arbitrary file. I'd like to read (to a layer?) parse some = data and save it....easily! big files too? (text). gratsia |
From: Bruce T. <blu...@ya...> - 2003-08-02 02:10:23
|
Don't think that's possible with just DynAPI. Java script won't allow you to modify files, security issues. You'll need something like php on the server or Java applets on the client. --- todd and mara <vze...@ve...> wrote: > Hello > IN addition to being a test of whether I can post a question to this > list, > I have a question! > ... > Please give some advice on the BEST way to Load and Save a file, in > DynAPI 3. > Which hopefully works (easily?) locally, as well as from a server??? > simple??? THANKS > Todd. > I mean an arbitrary file. I'd like to read (to a layer?) parse some > data and save it....easily! > big files too? (text). > gratsia > > > ===== www.bluewolverine.com __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Jesse V. <je...@6t...> - 2003-08-03 20:07:09
|
Yeah, JavaScript alone won't let you contact the server.....but, you can check out stuff like this: http://www.ashleyit.com/rs/main.htm It's a JavaScript remote scripting tool. Under the covers, it just creates a div that submits a form to the server, but it works nicely and gives you a way to conact the server without the whole page reloading. I'm using the JS / PHP version right now, and it works nicely. You can have your Javascript "call" a PHP function, which would read the file, then return the contents to another Javascript function. Jesse Bruce Tennant wrote: >Don't think that's possible with just DynAPI. Java script won't allow >you to modify files, security issues. > >You'll need something like php on the server or Java applets on the >client. > > >--- todd and mara <vze...@ve...> wrote: > > >>Hello >>IN addition to being a test of whether I can post a question to this >>list, >>I have a question! >>... >>Please give some advice on the BEST way to Load and Save a file, in >>DynAPI 3. >>Which hopefully works (easily?) locally, as well as from a server??? >>simple??? THANKS >>Todd. >>I mean an arbitrary file. I'd like to read (to a layer?) parse some >>data and save it....easily! >>big files too? (text). >>gratsia >> >> >> >> >> > > >===== >www.bluewolverine.com > >__________________________________ >Do you Yahoo!? >Yahoo! SiteBuilder - Free, easy-to-use web site design software >http://sitebuilder.yahoo.com > > >------------------------------------------------------- >This SF.Net email sponsored by: Free pre-built ASP.NET sites including >Data Reports, E-commerce, Portals, and Forums are available now. >Download today and enter to win an XBOX or Visual Studio .NET. >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Raymond I. <xw...@ya...> - 2003-08-04 17:18:11
|
Hi, Another solution would be to use IOElement's GEt, POST and UPLOAD methods along with some server-side scripting to download or upload your files. In the future an IOElement FileManager will make it easier to create, save and download files. -- Raymond Irving --- Jesse Vitrone <je...@6t...> wrote: > Yeah, JavaScript alone won't let you contact the > server.....but, you > can check out stuff like this: > > http://www.ashleyit.com/rs/main.htm > > It's a JavaScript remote scripting tool. Under the > covers, it just > creates a div that submits a form to the server, but > it works nicely and > gives you a way to conact the server without the > whole page reloading. > I'm using the JS / PHP version right now, and it > works nicely. > > You can have your Javascript "call" a PHP function, > which would read the > file, then return the contents to another Javascript > function. > > Jesse > > Bruce Tennant wrote: > > >Don't think that's possible with just DynAPI. Java > script won't allow > >you to modify files, security issues. > > > >You'll need something like php on the server or > Java applets on the > >client. > > > > > >--- todd and mara <vze...@ve...> wrote: > > > > > >>Hello > >>IN addition to being a test of whether I can post > a question to this > >>list, > >>I have a question! > >>... > >>Please give some advice on the BEST way to Load > and Save a file, in > >>DynAPI 3. > >>Which hopefully works (easily?) locally, as well > as from a server??? > >>simple??? THANKS > >>Todd. > >>I mean an arbitrary file. I'd like to read (to a > layer?) parse some > >>data and save it....easily! > >>big files too? (text). > >>gratsia > >> > >> > >> > >> > >> > > > > > >===== > >www.bluewolverine.com > > > >__________________________________ > >Do you Yahoo!? > >Yahoo! SiteBuilder - Free, easy-to-use web site > design software > >http://sitebuilder.yahoo.com > > > > > >------------------------------------------------------- > >This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > >Data Reports, E-commerce, Portals, and Forums are > available now. > >Download today and enter to win an XBOX or Visual > Studio .NET. > >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > >_______________________________________________ > >Dynapi-Help mailing list > >Dyn...@li... > >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |