You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(75) |
Nov
(252) |
Dec
(418) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(659) |
Feb
(1039) |
Mar
(870) |
Apr
(235) |
May
(329) |
Jun
(251) |
Jul
(123) |
Aug
(119) |
Sep
(67) |
Oct
(194) |
Nov
(535) |
Dec
(133) |
2002 |
Jan
(122) |
Feb
(24) |
Mar
(29) |
Apr
(28) |
May
(16) |
Jun
(20) |
Jul
(11) |
Aug
(12) |
Sep
(13) |
Oct
(14) |
Nov
(23) |
Dec
(19) |
2003 |
Jan
(28) |
Feb
(170) |
Mar
(288) |
Apr
(211) |
May
(126) |
Jun
(166) |
Jul
(131) |
Aug
(102) |
Sep
(211) |
Oct
(301) |
Nov
(22) |
Dec
(6) |
2004 |
Jan
(14) |
Feb
(16) |
Mar
(7) |
Apr
|
May
(8) |
Jun
(25) |
Jul
(21) |
Aug
(2) |
Sep
(7) |
Oct
|
Nov
(2) |
Dec
(1) |
2005 |
Jan
(4) |
Feb
(2) |
Mar
(14) |
Apr
(24) |
May
(3) |
Jun
(7) |
Jul
(30) |
Aug
(5) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: Jacob L. <jy...@mo...> - 2003-09-17 19:02:07
|
OK, so templates are like mega-widgets, grouping together a bunch of DynAPI widgets. Cool, and very impressive example with the calendar. Is it possible to update the template after its set? That is, let's say I get another template from the server and then do tmpl.setHTML(newHTML), will that update the layout to the new template? Any other requirements so as not to leak memory (like destroying something before calling setHTML again)? Thanks! --JYL |
From: Jacob L. <jy...@mo...> - 2003-09-17 18:59:10
|
Stupid question -- I got the latest nightly snapshot and searched for the various server-side implementations, couldn't find anything. Can someone provide a pointer for that? Thanks! --JYL |
From: Leif W <war...@us...> - 2003-09-17 17:37:14
|
Here's something that may be of interest especially to the European contributors interested in the continuation of free software projects such as the DynAPI. At the very least, go sign this protest petition, regardless of nationality. Protest against Software Patents at following URL : http://petition.eurolinux.org/index_html?LANG=en Leif ----- Original Message ----- From: "vincent blondel" <vin...@ch...> To: <de....@sk...>; <pas...@in...>; <jea...@in...>; <vin...@in...>; <luc...@in...>; <fab...@in...>; <ala...@in...>; <han...@in...>; <phi...@in...>; <noe...@al...>; <aut...@gn...>; <cou...@li...>; <dri...@li...>; <gat...@li...>; <gib...@ww...>; <gno...@gn...>; <us...@ht...>; <net...@li...>; <lin...@vg...>; <blf...@li...>; <lf...@li...>; <lfs...@li...>; <lin...@si...>; <ope...@li...>; <pro...@li...>; <qm...@li...>; <sa...@li...>; <squ...@sq...>; <xin...@li...> Sent: Wednesday, September 17, 2003 1:13 PM Subject: [users@httpd] action week against EU software patent plans > Hello Linux supporters! > > Surely you know the deadly danger imposed on free software by software > patents. Under the influence of the patent lobby, the European Parliament is > about to pass a directive allowing extremely broad software patentability -- > harming not only GNU/Linux and free software in general, but also imposing > danger on every programmer, web publisher, computer user, and severly > demaging the European economy. > > For more info, please take a look at > > http://www.debian.org/ > http://www.knoppix.org/ > http://swpat.ffii.org/ > > Protest against Software Patents at following URL : > http://petition.eurolinux.org/index_html?LANG=en > > > > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server Project. > See <URL:http://httpd.apache.org/userslist.html> for more info. > To unsubscribe, e-mail: use...@ht... > " from the digest: use...@ht... > For additional commands, e-mail: use...@ht... > > > |
From: Raymond I. <xw...@ya...> - 2003-09-17 17:13:32
|
TemplateManager makes it eaiser for us to add both text and DynLayers to an HTML document, but downloading the HTML document for the most part requires a sever-side script to open and send the resulting HTML back to the client as a JavaScript string (when using IOElement). The FileReader class makes it much easier to download template files from the server. No more embedding of bulky HTML code inside the main document or using server-side scripts. var tp = new Template(); var fl = new FileReader(function(){ // load file from server var str = fl.read('mytemplate.html'); tp.setHTML(str); }); -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-17 17:10:37
|
Sure -- Raymond Irving --- Aaron Shafovaloff <aar...@ya...> wrote: > Can you include this within the documentation? > > --- Raymond Irving <xw...@ya...> wrote: > > > > With DynAPI 3.0 it's now very easy to add a > > configuration file to your web apps. > > > > By using the IOElementSoda Class you can easily > > convert a JavaScript Object into and xml document > as > > shown below: > > > > var ini = { > > usecart:false, > > color:'red', > > timeout:5 > > }; > > > > dynapi.debug.print(IOElement.ws_Var2SODA(ini)); > > > > Which should display: > > > > <soda> > > <o0> > > <a1> > > <s2>usecart|color|timeout</s2> > > <r1/> > > <a2> > > <b3>false</b3> > > <r2/> > > <s3>red</s3> > > <r2/> > > <i3>5</i3> > > </a2> > > </a1> > > </o0> > > </soda> > > > > > > You can then save the SODA Object to a file on the > > server. For example config.ini > > > > Later you could then reopen the config.ini file > and > > convert it back into a JavaScript Object: > > > > var fl = new FileReader(function(){ > > var str = fl.read('config.ini'); // load file > from > > server > > var ini = IOElement.ws_SODA2Var(str); > > // now we can use the ini object > > if(ini.color) document.bgcolor = ini.color; > > }); > > > > > > > > Any comments? > > > > -- > > Raymond Irving > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! SiteBuilder - Free, easy-to-use web site > design software > > http://sitebuilder.yahoo.com > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > ===== > Aaron Shafovaloff > aarondot.com > fallennotforsaken.com > > "It is truth alone that capacitates any soul to > glorify God." ~John Owen > > "Justification is an act. It is not a work, or a > series of acts. It is not progressive. The weakest > believer and the strongest saint are alike equally > justified. Justification admits no degrees. A man is > either wholly justified or wholly condemned in the > sight of God." ~William Plumer > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site > design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Aaron S. <aar...@ya...> - 2003-09-17 16:53:23
|
Can you include this within the documentation? --- Raymond Irving <xw...@ya...> wrote: > > With DynAPI 3.0 it's now very easy to add a > configuration file to your web apps. > > By using the IOElementSoda Class you can easily > convert a JavaScript Object into and xml document as > shown below: > > var ini = { > usecart:false, > color:'red', > timeout:5 > }; > > dynapi.debug.print(IOElement.ws_Var2SODA(ini)); > > Which should display: > > <soda> > <o0> > <a1> > <s2>usecart|color|timeout</s2> > <r1/> > <a2> > <b3>false</b3> > <r2/> > <s3>red</s3> > <r2/> > <i3>5</i3> > </a2> > </a1> > </o0> > </soda> > > > You can then save the SODA Object to a file on the > server. For example config.ini > > Later you could then reopen the config.ini file and > convert it back into a JavaScript Object: > > var fl = new FileReader(function(){ > var str = fl.read('config.ini'); // load file from > server > var ini = IOElement.ws_SODA2Var(str); > // now we can use the ini object > if(ini.color) document.bgcolor = ini.color; > }); > > > > Any comments? > > -- > Raymond Irving > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ ===== Aaron Shafovaloff aarondot.com fallennotforsaken.com "It is truth alone that capacitates any soul to glorify God." ~John Owen "Justification is an act. It is not a work, or a series of acts. It is not progressive. The weakest believer and the strongest saint are alike equally justified. Justification admits no degrees. A man is either wholly justified or wholly condemned in the sight of God." ~William Plumer __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-17 15:40:35
|
With DynAPI 3.0 it's now very easy to add a configuration file to your web apps. By using the IOElementSoda Class you can easily convert a JavaScript Object into and xml document as shown below: var ini = { usecart:false, color:'red', timeout:5 }; dynapi.debug.print(IOElement.ws_Var2SODA(ini)); Which should display: <soda> <o0> <a1> <s2>usecart|color|timeout</s2> <r1/> <a2> <b3>false</b3> <r2/> <s3>red</s3> <r2/> <i3>5</i3> </a2> </a1> </o0> </soda> You can then save the SODA Object to a file on the server. For example config.ini Later you could then reopen the config.ini file and convert it back into a JavaScript Object: var fl = new FileReader(function(){ var str = fl.read('config.ini'); // load file from server var ini = IOElement.ws_SODA2Var(str); // now we can use the ini object if(ini.color) document.bgcolor = ini.color; }); Any comments? -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-17 15:23:53
|
Well I think we need to test all the examples in DynAPI to make sure that they work. -- Raymond Irving --- Leif W <war...@us...> wrote: > Hi, > > I was just going to try and go through the NEW > examples pages and try and > fix small problems and point out problems I can't > fix... but there's so many > pages, and some of the older pages maybe haven't > been looked at in a while, > so how about I go through all of them? Or do you > have specific files you'd > want me to poke through? I'll need to play with > StyleManager a bit more to > be able to contribute to that discussion. > > Leif > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: "DynAPI-Dev" <dyn...@li...>; > "DynApi-Help" > <dyn...@li...> > Sent: Tuesday, September 09, 2003 11:40 AM > Subject: [Dynapi-Dev] The New DynAPI Components are > Here! Check out CVS > > [snip] > > > Changes > > ------------- > > [*] Update quickrefs (See docs/docs/quickref.html) > > [+] Added new examples (See > > examples/dynapi.gui.*.html) > > > > [+] Add Explorer Component > > [+] Add Button Component > > [+] Add CheckBox Component > > [+] Add RadioButton Component > > [+] Add Knob Component > > [+] Add ListBox Component > > [+] Add ViewPane Component > > [+] Add ScrollBar Component > > [+] Add Marquee Component > > [+] Add ProgressBar Component > > [+] Add StyleManager Library > > [+] Add PoolManager Library > > [+] Add setOpacity() and getOpacity() to Fader > Library > > [-] Fix HTMLListbox getItem() bug > > [*] Rename dynapi.util.ioelement-sync.html to > > dynapi.util.ioelement-soda.sync.html > > [*] Remove dynapi.util.ioelement-soda-nsync.html > > example > > [-] Fix text column bug in HTMLTextArea > > [+] Add "event" argument to HTMLComponent inline > > events > > [*] Modify getContentWidth/Height for all browsers > > [*] Call adjustSize whenever a layer is removed. > > [*] Move component images from ext/images to > > gui/images > > [+] Add setAutoSize() to DynLayer > > [+] Add getBlueBrint() to DynLayerInline > > > > > > -- > > Raymond Irving > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! SiteBuilder - Free, easy-to-use web site > design software > > http://sitebuilder.yahoo.com > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-17 14:54:03
|
--- Jacob Levy <jy...@mo...> wrote: > * Are the 3.0 APIs solidly defined enough for me to > start writing the > generation library? IMO I would say yes. There might be one and two minor changes but those IMO should not affect your application. > * I haven't figured out templates and couldnt find a > lot of documentation. > Do I need to worry about that or is that only for > widget writers? Templates are for everyone. You can see the examples in the examples/ folder > * Also, I havent figured out the client-server > communications via > IOObject. I didnt find any server implementations in > languages I > understand (Tcl, PHP). If there's a PHP > implementation perhaps I can snarf > that and retrofit it for tclhttp. IOElement Server-Side is currently available in VBScript, JScript, PHP and Perl. I even have a Visual Basic Module of IOElement Server-Side that I'm using inside a DLL program. With IOElement client-side scripts information is sent to the client as regular POST and GET methods. See docs/docs/quickref.ioelement-basics.html for more information. -- Raymond Irving > This is already too long so I'll stop now. I can > write a lot more about my > use scenario, if you ask :) > > --JYL > > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-17 14:43:18
|
In DynAPI 3.0 there is a Graphics Widget. I think the these feature could be added to the Graphics Widget. Any plans on doing so or are you going to create a new widget? -- Raymond Irving --- Michael Bystrom <mi...@mi...> wrote: > Let there be Lines | Wednesday, September 17, 2003 > > I forgot this one... > > This is a little project I worked on a while back, > it¹s sorta a vector > drawing app. And it works perfectly fine, but ONLY > on Macintosh... I has > something to do with the way that windows renders > it¹s images in the > browser. I¹t WAY COOL though, I has flash like > features like rubber band > snapping and you can move all the connected nodes so > you can make 3d like > dragable stuff... > > Now I¹ve tried to use SVG and Flash and then > manipulate the pluggins, but > there is that problem with pluggins and DynAPI. > > Well I¹ve included some screen shots so you can see > what it should look > like, If you have a Macintosh just download the code > and install Well you > can do that anyway even if you have a Windows > System. > > Line requires IOS 0.2 > > I was really happy when I got it working the way I > wanted I had great plans > for it like a graph bar system etc. > > I have I idea of how to fix this but it would > include WAY to much work, so > now I turn it over to you guys to see if you can > come up with some Ideas > > Screen shoots and code http://www.michaelbystrom.com > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Michael B. <mi...@mi...> - 2003-09-17 14:06:52
|
Let there be Lines | Wednesday, September 17, 2003 I forgot this one... This is a little project I worked on a while back, it=B9s sorta a vector drawing app. And it works perfectly fine, but ONLY on Macintosh... I has something to do with the way that windows renders it=B9s images in the browser. I=B9t WAY COOL though, I has flash like features like rubber band snapping and you can move all the connected nodes so you can make 3d like dragable stuff...=20 Now I=B9ve tried to use SVG and Flash and then manipulate the pluggins, but there is that problem with pluggins and DynAPI. Well I=B9ve included some screen shots so you can see what it should look like, If you have a Macintosh just download the code and install Well you can do that anyway even if you have a Windows System. Line requires IOS 0.2 I was really happy when I got it working the way I wanted I had great plans for it like a graph bar system etc. I have I idea of how to fix this but it would include WAY to much work, so now I turn it over to you guys to see if you can come up with some Ideas Screen shoots and code http://www.michaelbystrom.com |
From: Michael B. <mi...@mi...> - 2003-09-17 13:22:52
|
IOS 0.2 Release | Wednesday, September 17, 2003 Due to requests I=B9ve added a Window Manager to the IOS. This will let you grab you windows in a menu bar. New script to add: dynapi.include("bystrom.ios.windowmanager.js") You load this feature by simply adding this code inside the onload function= : dynapi.onLoad =3D function() { IOS.loadWindowManager() // The rest of the code. } I have no online version right now but you can see a screen shoot. But you can download the new version http://www.michaelbystrom.com Due to the scrollbar (Mozilla and IE) clipping problem I think I will start to load IOS in a external window but shutting off the scrollbars. You can see this in the =B3ios/index.html=B2 test. I=B9ve also fixed some bug here and there. I=B9ve started to port the IOS and DynEditor to the DynAPI 3.x, this may time a little longer since there are A LOT of new things in the API. Michael |
From: Jacob L. <jy...@mo...> - 2003-09-17 04:15:31
|
Hi I'm new here (but not new to JavaScript), I've been lurking here for a week or so, and I'm very impressed with DynAPI 3.0, especially the new widgets in the nightly snapshots. Just awesome. And the editor. And IOS. So much cool stuff. Let me tell you a bit about my plans, how I hope to use DynAPI 3.0: I am planning on generating dynamic pages containing DynAPI user interfaces from a httpd, so I'll probably be releasing a library for generating the pages as a separate project. Then, the pages will communicate via IOObjects or a simpler mechanism like jsrs (http://www.ashleyit.com/rs/jsrs/test.htm) with the server. That is, I intend to use the DynAPI user interface as a view on webapps running on my server. The server is tclhttpd (http://www.tcl.tk/software/tclhttpd/) and the programming language I intend to write the generator library in is Tcl. I have a demo of jsrs communicating with my server, running at http://mod3.net:8888/jsrs22/test.htm, so I have a proof of concept that this back-n-forth communication is possible. You can check it out, it just shows a bit of what can be done with this kind of setup. So given that scenario, I have a few questions: * Are the 3.0 APIs solidly defined enough for me to start writing the generation library? * I haven't figured out templates and couldnt find a lot of documentation. Do I need to worry about that or is that only for widget writers? * Also, I havent figured out the client-server communications via IOObject. I didnt find any server implementations in languages I understand (Tcl, PHP). If there's a PHP implementation perhaps I can snarf that and retrofit it for tclhttp. This is already too long so I'll stop now. I can write a lot more about my use scenario, if you ask :) --JYL |
From: Leif W <war...@us...> - 2003-09-16 22:46:49
|
Hi, I was just going to try and go through the NEW examples pages and try and fix small problems and point out problems I can't fix... but there's so many pages, and some of the older pages maybe haven't been looked at in a while, so how about I go through all of them? Or do you have specific files you'd want me to poke through? I'll need to play with StyleManager a bit more to be able to contribute to that discussion. Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: "DynAPI-Dev" <dyn...@li...>; "DynApi-Help" <dyn...@li...> Sent: Tuesday, September 09, 2003 11:40 AM Subject: [Dynapi-Dev] The New DynAPI Components are Here! Check out CVS [snip] > Changes > ------------- > [*] Update quickrefs (See docs/docs/quickref.html) > [+] Added new examples (See > examples/dynapi.gui.*.html) > > [+] Add Explorer Component > [+] Add Button Component > [+] Add CheckBox Component > [+] Add RadioButton Component > [+] Add Knob Component > [+] Add ListBox Component > [+] Add ViewPane Component > [+] Add ScrollBar Component > [+] Add Marquee Component > [+] Add ProgressBar Component > [+] Add StyleManager Library > [+] Add PoolManager Library > [+] Add setOpacity() and getOpacity() to Fader Library > [-] Fix HTMLListbox getItem() bug > [*] Rename dynapi.util.ioelement-sync.html to > dynapi.util.ioelement-soda.sync.html > [*] Remove dynapi.util.ioelement-soda-nsync.html > example > [-] Fix text column bug in HTMLTextArea > [+] Add "event" argument to HTMLComponent inline > events > [*] Modify getContentWidth/Height for all browsers > [*] Call adjustSize whenever a layer is removed. > [*] Move component images from ext/images to > gui/images > [+] Add setAutoSize() to DynLayer > [+] Add getBlueBrint() to DynLayerInline > > > -- > Raymond Irving > > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Raymond I. <xw...@ya...> - 2003-09-16 15:34:34
|
Hi Leif, Sorry to hear that you're not feeling well. Just take it easy and get sufficient rest and you will get well soon. Take good care. -- Raymond Irving --- Leif W <war...@us...> wrote: > Just getting back to the list activity. I was away > this weekend, and it > figures, there's suddenly all this activity, which > is a good thing. :D > Then come Monday I'm not feeling too good, hot and > dizzy. It's all I can do > to stay in the chair (fell off once already). ;-) > Trying to catch up on > all the emails from this (and other lists). But > can't sit at computer for > hours like I usually do, so maybe responses come in > a day or two. > > Regards, > > Leif > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-16 15:32:48
|
Hi, How about adding an XML class to the DynAPI library that allows us to use xml documents in ns4+,ie4+,moz,opera7+,etc? example: var xml = new XMLDoc(); var fl = new FileReader(function(){ var str = fl.read('customers.xml'); xml.loadXML(str); var node = xml.selectNode('/tag1/tag/a/b/c'); if(node) alert(node.getText()); }); -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-16 15:30:49
|
We're planning on having the development as a branch of the dynapi cvs. I think it will be upgraded to support dynapi 3.0 -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hi! > > I have lost the thred during the last messages and > wonder if someone > could just tell me quickly what will be done with > the editor? Will it be > upgraded to 3x for example? > > Please just write a few lines and tell me. > > Regards > Daniel > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Daniel T. <de...@ti...> - 2003-09-16 07:50:07
|
Hi! I have lost the thred during the last messages and wonder if someone could just tell me quickly what will be done with the editor? Will it be upgraded to 3x for example? Please just write a few lines and tell me. Regards Daniel |
From: Michael B. <mi...@mi...> - 2003-09-16 07:01:02
|
Den 03-09-15 15.14, skrev "Raymond Irving" <xw...@ya...>: > > We will support both inner and outer borders in border > manager. So which ever way the use wants it then they > got it. Perfectly prefect Michael |
From: Leif W <war...@us...> - 2003-09-15 23:18:58
|
Just getting back to the list activity. I was away this weekend, and it figures, there's suddenly all this activity, which is a good thing. :D Then come Monday I'm not feeling too good, hot and dizzy. It's all I can do to stay in the chair (fell off once already). ;-) Trying to catch up on all the emails from this (and other lists). But can't sit at computer for hours like I usually do, so maybe responses come in a day or two. Regards, Leif |
From: Raymond I. <xw...@ya...> - 2003-09-15 19:33:55
|
--- Kevin <ke...@ke...> wrote: > > I agree. I meant the technique setInnerBorder uses > with Highlighters > can be done in setOuterBorder for NS4 only (will the > new auto size > stuff fix parent layer's increased dimensions??) and > use CSS and > FixBoxModel for all other browsers. When layer are used as borders they are anchored to their parent. The new autosize feature only adjust the size of the layer whenever its content has been modified. I think there is a problem with the Frame objects and the autosize function. This I think has something to do with the way in which parent/child relationships are altered and the setSize functions. > > Mmm Currently the third param is used for corner > images. > > Also using layers setBorder already does: > setBorder([0,0,2],'dotted.gif') // dotted underline > etc. > setBorder(2,'double.gif',['tr-double.gif','br-double.gif','bl-double.gif','tl-double.gif']) > // well > you can do anything you like in ns4 using this but > the gifs have to be made in the correct > color! > > How were you going to get color and style in ns4? > Without having a colored layer for > each dot or dash :( NS4 will only support solid style using dynlayers. For dotted lines in ns4 a user can use the image section. > > Perhaps change my setBorder to setOuterBorder > (change examples) and work > on a new all singing and dancing > setBorder(([t,r,b,l],[t,r,b,l],*styleORcornerimagearray) > Also my defaulting mechanism may break so I wouldn't > want to go in there again :) > Currently setBorder detects a '.' in the second or > third param arrays to mean an image or > solid color. > > *styleORcornerimagearray='solid' || 'inset' || > 'outset' || ... || [ > 'tr.gif','br.gif','bl.gif','tl.gif' ] > > eg. > For ns4 'inset' would use layers and > 'horizInset.gif' and 'vertInset.gif' and > predetermined > corner inset images. If not a known 'style' string > use the array of corner images. Sounds good to me. I will make the necessary changes to the BorderManager once I've fiqured out a way to neatly fix the FixBoxModel stuff inside DynAPI without having to wait for the layers to be created. -- Raymond Irving > - > Kevin > > > > > > I'm assuming the FixBoxModel code is doing > something > > > similar to the previously posted: > > > http://jscript.dk/Util/BoxModelFix/ > > > so all browsers have outer borders? I haven't > had > > > much > > > time to delv into this lately. > > > > Yes it is > > > > -- > > Raymond Irving > > > - > > > Kevin > > > > > > > > > > > -- > > > > Raymond Irving > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! SiteBuilder - Free, easy-to-use web site > design software > > http://sitebuilder.yahoo.com > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Kevin <ke...@ke...> - 2003-09-15 17:07:41
|
"Raymond Irving" <xw...@ya...> wrote: > > --- Kevin <ke...@ke...> wrote: > > The setInnerBorder code could be changed now to add > > the > > Highlighters as correct outer dimensions for NS4 > > (would > > the new auto size stuff take care of the parents > > increased > > size?). > > I would not want to modify the setInnerBorder() > function as it should only be used to create inner > borders. I agree. I meant the technique setInnerBorder uses with Highlighters can be done in setOuterBorder for NS4 only (will the new auto size stuff fix parent layer's increased dimensions??) and use CSS and FixBoxModel for all other browsers. > > Add the above suggested NS4 code to new setCSSBorder > > (default solid style) and put it in the > > bordermanager.js file > > with the FixBoxModel code. If setCSSBorder is called > > on > > a layer do a dynapi.onLoad FixBoxModel for that > > layer if > > not already added? > > I'm thinging about modifing setBorder() to support > both css and layer style borders: > > example > > setBorder(1,'black','solid') // css, layers for ns4 > setBorder(1,'black','dotted') // css, layers for ns4 > setBorder(1,'black','double') // css, layers for ns4 > setBorder(1,'black','groove') // css, layers for ns4 > setBorder(1,'black','layer') // use dynlayers > setBorder(1,'black','image') // use images Mmm Currently the third param is used for corner images. Also using layers setBorder already does: setBorder([0,0,2],'dotted.gif') // dotted underline etc. setBorder(2,'double.gif',['tr-double.gif','br-double.gif','bl-double.gif','tl-double.gif']) // well you can do anything you like in ns4 using this but the gifs have to be made in the correct color! How were you going to get color and style in ns4? Without having a colored layer for each dot or dash :( > where solid will be the default and we could still do > things like setBorder([t,r,b,l],[t,r,b,l],style) > > What do you think? Perhaps change my setBorder to setOuterBorder (change examples) and work on a new all singing and dancing setBorder(([t,r,b,l],[t,r,b,l],*styleORcornerimagearray) Also my defaulting mechanism may break so I wouldn't want to go in there again :) Currently setBorder detects a '.' in the second or third param arrays to mean an image or solid color. *styleORcornerimagearray='solid' || 'inset' || 'outset' || ... || [ 'tr.gif','br.gif','bl.gif','tl.gif' ] eg. For ns4 'inset' would use layers and 'horizInset.gif' and 'vertInset.gif' and predetermined corner inset images. If not a known 'style' string use the array of corner images. - Kevin > > > I'm assuming the FixBoxModel code is doing something > > similar to the previously posted: > > http://jscript.dk/Util/BoxModelFix/ > > so all browsers have outer borders? I haven't had > > much > > time to delv into this lately. > > Yes it is > > -- > Raymond Irving > > - > > Kevin > > > > > > > > -- > > > Raymond Irving > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Kevin <ke...@ke...> - 2003-09-15 17:07:40
|
Hi, Just tested dynapi.util.ioelement-post.html in IE6. No values are returned when using the get option. - Kevin. |
From: Raymond I. <xw...@ya...> - 2003-09-15 13:22:39
|
Hello Everyone, With the new dynapi.util.FileReader class it's now easier to read the content of any file on the server with just a few lines of codes: var fl = new FileReader(init); function init(){ var url = 'dynapi.util.filereader.xml'; var str = fl.read(url); alert(str); } That it! See the dynapi.util.filereader.html example Check out CVS or wait for the nightly snapshot -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-09-15 13:21:28
|
--- Kevin <ke...@ke...> wrote: > The setInnerBorder code could be changed now to add > the > Highlighters as correct outer dimensions for NS4 > (would > the new auto size stuff take care of the parents > increased > size?). I would not want to modify the setInnerBorder() function as it should only be used to create inner borders. > Add the above suggested NS4 code to new setCSSBorder > (default solid style) and put it in the > bordermanager.js file > with the FixBoxModel code. If setCSSBorder is called > on > a layer do a dynapi.onLoad FixBoxModel for that > layer if > not already added? I'm thinging about modifing setBorder() to support both css and layer style borders: example setBorder(1,'black','solid') // css, layers for ns4 setBorder(1,'black','dotted') // css, layers for ns4 setBorder(1,'black','double') // css, layers for ns4 setBorder(1,'black','groove') // css, layers for ns4 setBorder(1,'black','layer') // use dynlayers setBorder(1,'black','image') // use images where solid will be the default and we could still do things like setBorder([t,r,b,l],[t,r,b,l],style) What do you think? > I'm assuming the FixBoxModel code is doing something > similar to the previously posted: > http://jscript.dk/Util/BoxModelFix/ > so all browsers have outer borders? I haven't had > much > time to delv into this lately. Yes it is -- Raymond Irving > - > Kevin > > > > > -- > > Raymond Irving > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |