You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Leif W <war...@us...> - 2003-09-09 18:48:32
|
Gavin, I keep a personal coy of the CVS which I update manually every few days. I just made sure I had a clean CVS after updating, and made a zip archive with date and time in the filename. If your need is great and the SourceForge site isn't working for you for some reason (although it just worked for me as a developer), you can try and get my copy. I've got a virus scanner running, so I am at least 99.9% sure the code won't be contaminated. URL: http://dynapi.kicks-ass.net/ The site may go down at any moment, as I am in the process of working out some hardware issues with my firewall (at least 1 stick of bad RAM, but which stick, and how many if more than one?). But everything is up most of the time otherwise. Leif ----- Original Message ----- From: "Gavin O' Gorman" <gav...@ma...> To: <dyn...@li...> Sent: Tuesday, September 09, 2003 12:07 PM Subject: RE: [Dynapi-Help] The New DynAPI Components are Here! Check out CVS > > -----Original Message----- > > From: dyn...@li... > > [mailto:dyn...@li...]On Behalf Of Raymond > > Irving > > Sent: 09 September 2003 16:40 > > To: DynAPI-Dev; DynApi-Help > > Subject: [Dynapi-Help] The New DynAPI Components are Here! Check out CVS > > > > > > Hello Everyone, > > > > I've managed to finally upload the components that I > > have been working on. They're currently in the alpha > > stage so don't expect them to work flawlessly accross > > browsers. > > Great, > > I'm eager to test them out. I'm unable to log in via anonymous cvs however. > Anyone else having any trouble ? The snapshot won't update til later. (When > I'm home without internet access !) > > --[gavin]@:{~} >cvs -d:pserver:ano...@cv...:/cvsroot/dynapi > login 16:59:11 > Tue 9 > Logging in to :pserver:ano...@cv...:2401/cvsroot/dynapi > CVS password: > cvs [login aborted]: connect to cvs.sourceforge.net(66.35.250.207):2401 > failed: Connection refused > -- > > Cheers, > Gav > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Gavin O' G. <gav...@ma...> - 2003-09-09 16:05:54
|
> -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Raymond > Irving > Sent: 09 September 2003 16:40 > To: DynAPI-Dev; DynApi-Help > Subject: [Dynapi-Help] The New DynAPI Components are Here! Check out CVS > > > Hello Everyone, > > I've managed to finally upload the components that I > have been working on. They're currently in the alpha > stage so don't expect them to work flawlessly accross > browsers. Great, I'm eager to test them out. I'm unable to log in via anonymous cvs however. Anyone else having any trouble ? The snapshot won't update til later. (When I'm home without internet access !) --[gavin]@:{~} >cvs -d:pserver:ano...@cv...:/cvsroot/dynapi login 16:59:11 Tue 9 Logging in to :pserver:ano...@cv...:2401/cvsroot/dynapi CVS password: cvs [login aborted]: connect to cvs.sourceforge.net(66.35.250.207):2401 failed: Connection refused -- Cheers, Gav |
From: Raymond I. <xw...@ya...> - 2003-09-09 15:40:12
|
Hello Everyone, I've managed to finally upload the components that I have been working on. They're currently in the alpha stage so don't expect them to work flawlessly accross browsers. Please have a thorough look at them along with the other changes like getContentWidth/Height etc and let us know what we should or should not do. Please look at the new StyleManager approach to creating components and let us have a discussion on this. Can we come up with other means of doing the same thing or is the StyleManager way ok? Here's some info from the quickrefs about the StyleManager Library: StyleManager makes it possible to change the look-and-feel of any DynLayer component by just simply changing the style of the component. Styles can also be used to change or enhance the behavior of a component without having to create or load a different class or library. For example: The Button component provides a set of basic input/output functions which in and of themselves do not generate any user interface. For the Button to be of any use to the user a style must be applied that will render a user interface. In times past if the user wants to use a FlatButton, an ImageButton and a normal PushButton, he/she would have to load and create three different objects: var btn1 = new FlatButton(); var btn2 = new ImageButton(); var btn3 = new PushButton(); With Style Manager only one Button Class is required and the necessary styles: var btn1 = new Button(null,10,10,100,100); var btn2 = new Button(null,110,10,100,100,'ButtonFlat'); var btn3 = newButton(null,220,10,100,100,'ButtonImage'); 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 |
From: Leif W <war...@us...> - 2003-09-09 13:15:54
|
Sometimes I think Bugzilla should be the name of the browser not the resolution software. ;-) Guess we could all mail the person this bug was assigned to, and the QA contacts, and say hey, we still got a bug needs fixing, and we have a lot of users affected by this, please fix it. Squeaky wheel gets the oil... squeakiest wheel gets ignored. Make sure not to over-complain. ;-) Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Monday, September 08, 2003 9:59 AM Subject: Re: [Dynapi-Help] Dynapi 3x error message question > > Oh no! Don't tell me that Mozilla still has not fixed > this bug! > > This is a major pain! What can we do? Can we complain > to Mozilla? > > -- > Raymond Irving > > > --- Leif W <war...@us...> wrote: > > I tried Mozilla 1.5 beta and the same bug still > > exists. :-\ > > > > ----- Original Message ----- > > From: "Leif W" <war...@us...> > > To: <dyn...@li...> > > Sent: Sunday, September 07, 2003 11:57 PM > > Subject: Re: [Dynapi-Help] Dynapi 3x error message > > question > > > > > > > Hi, > > > > > > After searching through my local copy of all the > > mail messages to the > > > list -- I had remembered seeing this before -- I > > found that it's due to a > > > bug in Mozilla 1.4 (since the beta versions, and > > apparently across windows > > > and linux platforms alike). A bug report was > > filed with Mozilla, and the > > > response was it was a dulicate report of the > > original bug report > > referenced > > > below. Apparently they haven't fixed this yet. > > Have you tried with > > Mozilla > > > 1.5? > > > > > > http://bugzilla.mozilla.org/show_bug.cgi?id=208427 > > > > > > Here's some code that allows you to reproduce the > > error (and so test newer > > > browsers). > > > > > > <script> > > > function scan(e,elm) { > > > var r = e.relatedTarget; > > > while(r && r.parentNode){ > > > r = r.parentNode > > > //alert(r) > > > } > > > } > > > </script> > > > <div id="dv" > > > style="position:absolute;left:100;top:100"> > > > <form name="frm"> > > > <input type="textbox" name="tbox" value="test..." > > > onmouseover="scan(event,this)" > > > onmouseout="scan(event,this)"> > > > </form> > > > </div> > > > > > > A complete listing of the archive can be found > > here: > > > > > > > > > http://www.mail-archive.com/dynapi-dev%40lists.sourceforge.net/msg05839.html > > > > > > Leif > > > > > > ----- Original Message ----- > > > From: <ml...@id...> > > > To: <dyn...@li...> > > > Sent: Sunday, September 07, 2003 10:27 PM > > > Subject: [Dynapi-Help] Dynapi 3x error message > > question > > > > > > > > > > > > > > What are these messages? I get a lot of them > > from mozilla 1.4 under > > > > linux. > > > > > > > > > > > > Error: [Exception... "'Permission denied to get > > property > > > HTMLDivElement.parentNode' when calling method: > > > [nsIDOMEventListener::handleEvent]" nsresult: > > "0x8057001e > > > (NS_ERROR_XPC_JS_THREW_STRING)" location: > > "<unknown>" data: no] > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This sf.net email is sponsored by:ThinkGeek > > > > Welcome to geek heaven. > > > > http://thinkgeek.com/sf > > > > _______________________________________________ > > > > Dynapi-Help mailing list > > > > Dyn...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > 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 > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Raymond I. <xw...@ya...> - 2003-09-09 04:14:45
|
Oh no! Don't tell me that Mozilla still has not fixed this bug! This is a major pain! What can we do? Can we complain to Mozilla? -- Raymond Irving --- Leif W <war...@us...> wrote: > I tried Mozilla 1.5 beta and the same bug still > exists. :-\ > > ----- Original Message ----- > From: "Leif W" <war...@us...> > To: <dyn...@li...> > Sent: Sunday, September 07, 2003 11:57 PM > Subject: Re: [Dynapi-Help] Dynapi 3x error message > question > > > > Hi, > > > > After searching through my local copy of all the > mail messages to the > > list -- I had remembered seeing this before -- I > found that it's due to a > > bug in Mozilla 1.4 (since the beta versions, and > apparently across windows > > and linux platforms alike). A bug report was > filed with Mozilla, and the > > response was it was a dulicate report of the > original bug report > referenced > > below. Apparently they haven't fixed this yet. > Have you tried with > Mozilla > > 1.5? > > > > http://bugzilla.mozilla.org/show_bug.cgi?id=208427 > > > > Here's some code that allows you to reproduce the > error (and so test newer > > browsers). > > > > <script> > > function scan(e,elm) { > > var r = e.relatedTarget; > > while(r && r.parentNode){ > > r = r.parentNode > > //alert(r) > > } > > } > > </script> > > <div id="dv" > > style="position:absolute;left:100;top:100"> > > <form name="frm"> > > <input type="textbox" name="tbox" value="test..." > > onmouseover="scan(event,this)" > > onmouseout="scan(event,this)"> > > </form> > > </div> > > > > A complete listing of the archive can be found > here: > > > > > http://www.mail-archive.com/dynapi-dev%40lists.sourceforge.net/msg05839.html > > > > Leif > > > > ----- Original Message ----- > > From: <ml...@id...> > > To: <dyn...@li...> > > Sent: Sunday, September 07, 2003 10:27 PM > > Subject: [Dynapi-Help] Dynapi 3x error message > question > > > > > > > > > > What are these messages? I get a lot of them > from mozilla 1.4 under > > > linux. > > > > > > > > > Error: [Exception... "'Permission denied to get > property > > HTMLDivElement.parentNode' when calling method: > > [nsIDOMEventListener::handleEvent]" nsresult: > "0x8057001e > > (NS_ERROR_XPC_JS_THREW_STRING)" location: > "<unknown>" data: no] > > > > > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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 |
From: Raymond I. <xw...@ya...> - 2003-09-09 04:05:51
|
Hi, Is this list working? -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Leif W <war...@us...> - 2003-09-08 05:22:25
|
I tried Mozilla 1.5 beta and the same bug still exists. :-\ ----- Original Message ----- From: "Leif W" <war...@us...> To: <dyn...@li...> Sent: Sunday, September 07, 2003 11:57 PM Subject: Re: [Dynapi-Help] Dynapi 3x error message question > Hi, > > After searching through my local copy of all the mail messages to the > list -- I had remembered seeing this before -- I found that it's due to a > bug in Mozilla 1.4 (since the beta versions, and apparently across windows > and linux platforms alike). A bug report was filed with Mozilla, and the > response was it was a dulicate report of the original bug report referenced > below. Apparently they haven't fixed this yet. Have you tried with Mozilla > 1.5? > > http://bugzilla.mozilla.org/show_bug.cgi?id=208427 > > Here's some code that allows you to reproduce the error (and so test newer > browsers). > > <script> > function scan(e,elm) { > var r = e.relatedTarget; > while(r && r.parentNode){ > r = r.parentNode > //alert(r) > } > } > </script> > <div id="dv" > style="position:absolute;left:100;top:100"> > <form name="frm"> > <input type="textbox" name="tbox" value="test..." > onmouseover="scan(event,this)" > onmouseout="scan(event,this)"> > </form> > </div> > > A complete listing of the archive can be found here: > > http://www.mail-archive.com/dynapi-dev%40lists.sourceforge.net/msg05839.html > > Leif > > ----- Original Message ----- > From: <ml...@id...> > To: <dyn...@li...> > Sent: Sunday, September 07, 2003 10:27 PM > Subject: [Dynapi-Help] Dynapi 3x error message question > > > > > > What are these messages? I get a lot of them from mozilla 1.4 under > > linux. > > > > > > Error: [Exception... "'Permission denied to get property > HTMLDivElement.parentNode' when calling method: > [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e > (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no] > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > |
From: Leif W <war...@us...> - 2003-09-08 03:56:28
|
Hi, After searching through my local copy of all the mail messages to the list -- I had remembered seeing this before -- I found that it's due to a bug in Mozilla 1.4 (since the beta versions, and apparently across windows and linux platforms alike). A bug report was filed with Mozilla, and the response was it was a dulicate report of the original bug report referenced below. Apparently they haven't fixed this yet. Have you tried with Mozilla 1.5? http://bugzilla.mozilla.org/show_bug.cgi?id=208427 Here's some code that allows you to reproduce the error (and so test newer browsers). <script> function scan(e,elm) { var r = e.relatedTarget; while(r && r.parentNode){ r = r.parentNode //alert(r) } } </script> <div id="dv" style="position:absolute;left:100;top:100"> <form name="frm"> <input type="textbox" name="tbox" value="test..." onmouseover="scan(event,this)" onmouseout="scan(event,this)"> </form> </div> A complete listing of the archive can be found here: http://www.mail-archive.com/dynapi-dev%40lists.sourceforge.net/msg05839.html Leif ----- Original Message ----- From: <ml...@id...> To: <dyn...@li...> Sent: Sunday, September 07, 2003 10:27 PM Subject: [Dynapi-Help] Dynapi 3x error message question > > What are these messages? I get a lot of them from mozilla 1.4 under > linux. > > > Error: [Exception... "'Permission denied to get property HTMLDivElement.parentNode' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no] > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: <ml...@id...> - 2003-09-08 02:28:36
|
What are these messages? I get a lot of them from mozilla 1.4 under linux. Error: [Exception... "'Permission denied to get property HTMLDivElement.parentNode' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no] |
From: <an...@co...> - 2003-09-06 08:52:46
|
hi Daniel, I vote php! I think it's more flessible than asp. Maybe asp has a more efficient OOP, but will be avaible php5 soon (you can already download the beta version from the site). if you need help ... I'm here :) antonio Il Thu, 4 Sep 2003 11:23:20 +0200 "Daniel Tiru" <de...@ti...> ha scritto: > Hi folks! > > What programming language do you think we should use for the development > of the homepage? Should we vote or do we have any options? > > Myself cant help out with PHP if that will be the language of our choise > and if we use asp i know some people wont be able to help out with that > either... > > What do you say? > Regards > Daniel > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Leif W <war...@us...> - 2003-09-05 23:11:56
|
No problems, I'm pretty easygoing about the list, as I think the others are. :) The message just got spilled onto the help list during some fervent posting. I don't answer much because I don't know too much. :) Poor excuse, I know. But I try and answer if I might know, or if it's something I actually wrote (then I know it). I'm working on the IOElement stuff, converting some ASP scripts to PHP and Perl (slowly, but surely). Technically I don't know any ASP and never wrote any original ASP code, so I'm learning it bass-ackwards. ;-) There's been some chatter on the Dev list about homepage revisioning going on, and the question was proposed about a possible change of ISPs, but it looks like SourceForge will meet all our needs for now. And the usual chatter about bugs and changes and such. Not sure if I can even name all the current active developers, or past contributors. Maybe an idea for the project, keep an ongoing list of developers based on "who's comfortable editing which files", and remove stale names if they haven't contributed in several months to any file in the project, and check daily to send an alert of orphaned files. Something like that would be a good way to generate statistics about which files are being developed the most and by whom. Leif ----- Original Message ----- From: "Matthias Foschepoth" <m.f...@iq...> To: <dyn...@li...> Sent: Friday, September 05, 2003 3:45 AM Subject: RE: [Dynapi-Help] Homepage I've nothing against this discussion. But I found no information that you were talking about the dynapi homepage. It all sounds to me like "Hi everybody, what color do you think I should paint my bicycle?" - without describing the bicycle and my skill of being a painter at all. In the first posting by Daniel there was no hint about that. And, sorry for that, even when DynApi is an excellent tool for the creation and manipulation of layers - I don' know the names of all the developers ;-) Since my subscription to this mailing list last month there where only answeres by Raymond Irving. Best regards, Matthias > -----Original Message----- > From: Leif W [mailto:war...@us...] > Sent: Friday, September 05, 2003 12:45 AM > To: dyn...@li... > Subject: Re: [Dynapi-Help] Homepage > > > I'm trying to move this thread over to the Dev list, as > someone didn't like the line noise. ;-) So I'll post there. > > Thanks. > > Leif > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/d> ynapi-help > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Raymond I. <xw...@ya...> - 2003-09-05 15:59:39
|
Ok. I think it should be ok to add a setOpacity() function for DynLayer to the fader library, correct? -- Raymond Irving --- "Goss, Lucas" <LG...@sh...> wrote: > I looked at the fader.js code to see if I could > create a function that sets the opacity for a layer, > but I can't get it to work and I'm not even really > sure what to add to get it to work. > So what do I need to modify to be able to set the > opacity for a layer? > I know I can use a css style and use setClass(...), > this works but I would like to do it through the > DynLayer class. > > Thanks, > Lucas > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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 |
From: Raymond I. <xw...@ya...> - 2003-09-05 15:58:06
|
Hi, This had something to with ill formed HTML, the <THEAD> and <TBODY> tags Remember that ns4 is a very strange browser. This should work in ns4,ie,moz,opera, etc: <script language="javascript"> var tableHtml = '<TABLE BORDER="1" WIDTH="100%"><TR><TD>User</TD><TD>Type</TD><TD>Device</TD><TD>Number</TD><TD>Time</TD><TD>Priority</TD><TD>Trust</TD><TD>Timeout</TD></TR>{@ROWS}</TABLE>'; var table = new AutoTable( tableHtml, 10,100,null,null,'#EEEEEE',null,'ROWS',dynapi.document ); table.addRow("<TR><TD>Jason</TD><TD>Home</TD><TD>SIP</TD><TD>2415</TD></TR>" ); </script> -- Raymond Irving --- ml...@id... wrote: > > > Works as I expect in mozilla 1.4, ns6.2 and IE 6 and > IE5 but not netscape 4.7 > [win or linux]. > > Under ns47 I get a small bar about where I expect > the template to draw. > > > <html> > <!-- $Id: index.html,v 1.8 2003/08/14 11:00:30 jason > Exp $ --> > <head> > > <style type="text/css"> > DIV.title { text.align: center; font-weight: bold; > color: green } > EM { text.align: center; font-weight: bold; color: > blue } > DIV.ExtensionCommandStack { background: #FFFFFF } > DIV.ExtensionCommandStack { background: #FFFFFF } > </style> > > <title>Testing dynamic table growth.</title> > <Script language="Javascript" > src="dynapi3x/src/dynapi.js"></Script> > > <Script language="Javascript"> > dynapi.library.setPath('dynapi3x/src/') > dynapi.library.include('dynapi.library'); > dynapi.library.include('dynapi.api'); > dynapi.library.include('TemplateManager'); > dynapi.library.include('HTMLListbox'); > dynapi.library.include('HTMLButton'); > dynapi.library.include('HTMLTextBox'); > dynapi.library.include('BorderManager'); > dynapi.library.include('HTMLContainer'); > > function > AutoTable(html,x,y,w,h,color,image,addField,parent) > { > this.tmpl = new Template(html,x,y,w,h,color,image); > this.tmpl.setAutoSize(true); > this.nextField = addField; > this.count = 0; > this.parent = parent; > this.parent.addChild(this.tmpl); > } > > AutoTable.prototype.addRow = function(html) { > var nextName = '' + this.nextField + '' + > this.count; > this.count++; > this.tmpl.addField(nextName,this.nextField,html); > this.nextField = nextName; > } > > > > > DynAPI.onLoad(init); > function init() > { > > > } > </Script> > > <Script language="Javascript" > src="autotable.js"></Script> > </head> > <body> > <script > language="javascript">dynapi.document.insertAllChildren();</script> > <script language="javascript"> > var tableHtml = '<TABLE BORDER="1" > WIDTH="100%"><THEAD><TR><TH>User</TH><TH>Type</TH><TH>Device</TH><TH>Number</TH><TH>Time</TH><TH>Priority</TH><TH>Trust</TH><TH>Timeout</TH></TR><TBODY>{@ROWS}</TABLE>'; > var table = new AutoTable( tableHtml, 10, > 100,null,null,'#EEEEEE',null,'ROWS',dynapi.document > ); > table.addRow( > "<TR><TD>Jason</TD><TD>Home</TD><TD>SIP</TD><TD>2415</TD></TR>" > ); > </script> > </body> > </html> > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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 |
From: Matthias F. <m.f...@iq...> - 2003-09-05 07:45:31
|
I've nothing against this discussion. But I found no information that you were talking about the dynapi homepage. It all sounds to me like "Hi everybody, what color do you think I should paint my bicycle?" - without describing the bicycle and my skill of being a painter at all. In the first posting by Daniel there was no hint about that. And, sorry for that, even when DynApi is an excellent tool for the creation and manipulation of layers - I don' know the names of all the developers ;-) Since my subscription to this mailing list last month there where only answeres by Raymond Irving. Best regards, Matthias > -----Original Message----- > From: Leif W [mailto:war...@us...]=20 > Sent: Friday, September 05, 2003 12:45 AM > To: dyn...@li... > Subject: Re: [Dynapi-Help] Homepage >=20 >=20 > I'm trying to move this thread over to the Dev list, as=20 > someone didn't like the line noise. ;-) So I'll post there. >=20 > Thanks. >=20 > Leif >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf=20 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li...=20 > https://lists.sourceforge.net/lists/listinfo/d> ynapi-help >=20 |
From: Leif W <war...@us...> - 2003-09-04 22:44:26
|
I'm trying to move this thread over to the Dev list, as someone didn't like the line noise. ;-) So I'll post there. Thanks. Leif |
From: Leif W <war...@us...> - 2003-09-04 21:31:42
|
It sounds like a cool application of the DynAPI. Would you consider releasing a very simplified, generalized version for example purposes or a demo, for the DynAPI examples pages? I think it would be a good addition. In any case, best of luck, and if someone else who reads this thread has some more input on the topic than I've given, please share it. Leif ----- Original Message ----- From: <ml...@id...> To: <dyn...@li...> Sent: Thursday, September 04, 2003 4:24 PM Subject: Re: [Dynapi-Help] 3x api and text boxes - semi solved > > > My app is an editor for a complex dataset. > > Basically it presents a list box of choices, on selection of choices, > a set of listboxes and user inputs pop into existance to the right, > for the various sub choices that are available given that selection > > Since the available options are driven by the choices the user makes, > the select and text boxes come and go as the user interacts with the > system. > > This is driven out of an xml file which defines the choice space. > The forms are never submitted as such, instead the data is read out > and the main display is updated. That display gets submitted back to > the host. > > I will have to make the application modal. > > > > ----- Original Message ----- > > From: <ml...@id...> > > To: <dyn...@li...> > > Sent: Thursday, September 04, 2003 3:16 PM > > Subject: Re: [Dynapi-Help] 3x api and text boxes - semi solved > > > > > > > > > > I did some more checking. > > > > > > 1) all of the text boxes had the same element name > > > 2) using getElm() on the HTMLTextBox, returned the same object [as by > > > '=='] on all of the textbox's with the same name. > > > > > > 3) changing the names to be relatively unique, solved the problem. > > > > > > My list boxes just happened to have different element names. > > > > > > -- > > > > > > I think this is a problem, because it becomes hard to make 'widgets' > > > that can be replicated on the page, if the element names have to be > > > unique. > > > > I think this is the same for most browsers and HTML in general. How is a > > browser supposed to distinguish one element from another if they all have > > the same name? It can't. When the form is submitted to a server, how is > > the server side supposed to know about mutiple values assigned to the same > > name? It can't. Generally speaking, but you can do it in Perl - sometimes. > > Likewise with the DynAPI, if all DynLayers had the same name, then the API > > wouldn't work. That's why the API automagically assigns unique names to > > each DynLayer. Something like this would have to be implemented if you want > > to have automatic generation of unique names for form elements, or just keep > > track of them manually in the code. It's difficult to understand the > > problem without an example, though. > > > > Leif > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: C K. <cki...@ne...> - 2003-09-04 21:29:25
|
I think the choice for client-side scripting should be obvious. The whole site should serve as a working example of DynAPI. As for server-side processing, that would depend on the web server we decide on using. I've mentioned that I have web space available for 4 more domains with unlimited space and resource utilization on an IIS 5 server, which includes ASP, .Net, Java, PHP, and CGI(C++ exe, Perl, VB exe). Anyone else have hosting ideas? Christopher Kissinger Web Development Consultant Net Industries, Inc. www.netindustries.net >>> -----Original Message----- >>> From: dyn...@li... >>> [mailto:dyn...@li...] On Behalf >>> Of Daniel Tiru >>> Sent: Thursday, September 04, 2003 6:13 AM >>> To: dyn...@li... >>> Subject: RE: [Dynapi-Help] Homepage >>> >>> >>> Sorry mate, wrong list :) >>> >>> /Tiru >>> >>> -----Original Message----- >>> From: dyn...@li... >>> [mailto:dyn...@li...] On Behalf >>> Of Matthias Foschepoth >>> Sent: den 4 september 2003 13:08 >>> To: dyn...@li... >>> Subject: RE: [Dynapi-Help] Homepage >>> >>> >>> > Hi folks! >>> > >>> > What programming language do you think we should use for the >>> > development of the homepage? Should we vote or do we >>> have any options? >>> > >>> > Myself cant help out with PHP if that will be the >>> language of our >>> > choise and if we use asp i know some people wont be able >>> to help out >>> > with that either... >>> > >>> >>> Hi! >>> >>> Am I wrong and didn't subscribed to mailing list about >>> DynApi? What Homepage you're talking about? DynApi works >>> client sided. PHP, Perl and databases server sided. >>> >>> Best regards, >>> >>> Matthias >>> >>> >>> ------------------------------------------------------- >>> This sf.net email is sponsored by:ThinkGeek >>> Welcome to geek heaven. >>> http://thinkgeek.com/sf >>> _______________________________________________ >>> Dynapi-Help mailing list >>> Dyn...@li... >>> >>> https://lists.sourceforge.net/lists/listinfo/dynapi-help >>> >>> >>> >>> |
From: <ml...@id...> - 2003-09-04 20:24:52
|
My app is an editor for a complex dataset. Basically it presents a list box of choices, on selection of choices, a set of listboxes and user inputs pop into existance to the right, for the various sub choices that are available given that selection Since the available options are driven by the choices the user makes, the select and text boxes come and go as the user interacts with the system. This is driven out of an xml file which defines the choice space. The forms are never submitted as such, instead the data is read out and the main display is updated. That display gets submitted back to the host. I will have to make the application modal. > ----- Original Message ----- > From: <ml...@id...> > To: <dyn...@li...> > Sent: Thursday, September 04, 2003 3:16 PM > Subject: Re: [Dynapi-Help] 3x api and text boxes - semi solved > > > > > > I did some more checking. > > > > 1) all of the text boxes had the same element name > > 2) using getElm() on the HTMLTextBox, returned the same object [as by > > '=='] on all of the textbox's with the same name. > > > > 3) changing the names to be relatively unique, solved the problem. > > > > My list boxes just happened to have different element names. > > > > -- > > > > I think this is a problem, because it becomes hard to make 'widgets' > > that can be replicated on the page, if the element names have to be > > unique. > > I think this is the same for most browsers and HTML in general. How is a > browser supposed to distinguish one element from another if they all have > the same name? It can't. When the form is submitted to a server, how is > the server side supposed to know about mutiple values assigned to the same > name? It can't. Generally speaking, but you can do it in Perl - sometimes. > Likewise with the DynAPI, if all DynLayers had the same name, then the API > wouldn't work. That's why the API automagically assigns unique names to > each DynLayer. Something like this would have to be implemented if you want > to have automatic generation of unique names for form elements, or just keep > track of them manually in the code. It's difficult to understand the > problem without an example, though. > > Leif > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Leif W <war...@us...> - 2003-09-04 19:34:54
|
----- Original Message ----- From: <ml...@id...> To: <dyn...@li...> Sent: Thursday, September 04, 2003 3:16 PM Subject: Re: [Dynapi-Help] 3x api and text boxes - semi solved > > I did some more checking. > > 1) all of the text boxes had the same element name > 2) using getElm() on the HTMLTextBox, returned the same object [as by > '=='] on all of the textbox's with the same name. > > 3) changing the names to be relatively unique, solved the problem. > > My list boxes just happened to have different element names. > > -- > > I think this is a problem, because it becomes hard to make 'widgets' > that can be replicated on the page, if the element names have to be > unique. I think this is the same for most browsers and HTML in general. How is a browser supposed to distinguish one element from another if they all have the same name? It can't. When the form is submitted to a server, how is the server side supposed to know about mutiple values assigned to the same name? It can't. Generally speaking, but you can do it in Perl - sometimes. Likewise with the DynAPI, if all DynLayers had the same name, then the API wouldn't work. That's why the API automagically assigns unique names to each DynLayer. Something like this would have to be implemented if you want to have automatic generation of unique names for form elements, or just keep track of them manually in the code. It's difficult to understand the problem without an example, though. Leif |
From: <ml...@id...> - 2003-09-04 19:16:51
|
I did some more checking. 1) all of the text boxes had the same element name 2) using getElm() on the HTMLTextBox, returned the same object [as by '=='] on all of the textbox's with the same name. 3) changing the names to be relatively unique, solved the problem. My list boxes just happened to have different element names. -- I think this is a problem, because it becomes hard to make 'widgets' that can be replicated on the page, if the element names have to be unique. |
From: <ml...@id...> - 2003-09-04 18:47:49
|
More info on my text box problem. BTW, I don't have it with HTMLListBoxes, amendments to them go to the correct list box. My app is pretty complex and I can't readily section this bit out at present. Anyway, I originally had my components in a template. I took them out because I add and remove the components depending on user interaction. If they are in the template, the focus and current selection's are lost when you generate the template. |
From: <ml...@id...> - 2003-09-04 18:04:33
|
How do you wrap a GroupManger worth of HTML Components within a form? > Hi, > > See below: > > --- ml...@id... wrote: > > > > I have an application that creates a number of > > HTMLTextBox components. > > > > I don't wrap them in a form, if I need to, I can > > change my > > application. > > I think you should wrap them in a <form> > > > My problem is that when the text is set from > > javascript, all sets go > > to the first created text box. > > Could you provide an example of the problem? > > -- > Raymond Irving > > > > > Here is a bit of a log, including the name of the > > HTMLTextBox ala the > > tostring method. > > > > Setting 1 DynObject.all.DynObject63 to Username, > > prior text :: > > Text now is : Username > > Setting 2 DynObject.all.DynObject71 to 3:mobile for > > Mobile > > Setting 2 DynObject.all.DynObject73 to Mobile, prior > > text :Username: > > Text now is : Mobile > > Setting 3 DynObject.all.DynObject81 to 1:Auto for > > Auto > > Setting 4 DynObject.all.DynObject92 to 555 555 1212, > > prior text :Mobile: > > Text now is : 555 555 1212 > > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > 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 > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Raymond I. <xw...@ya...> - 2003-09-04 16:50:06
|
So sorry to see you leave :( http://lists.sourceforge.net/lists/listinfo/dynapi-help To change your subscription (set options like digest and delivery modes, get a reminder of your password, or unsubscribe from Dynapi-Help), enter your subscription email address: -- Raymond Irving --- Miguel Sola <sol...@ya...> wrote: > Hi! > > I would like to unsubscribe from the dynapi mailing > list. > > thank you for your time, > > Miguel > > > > > > ___________________________________________________ > Yahoo! Messenger - Nueva versión GRATIS > Super Webcam, voz, caritas animadas, y más... > http://messenger.yahoo.es > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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 |
From: <sol...@ya...> - 2003-09-04 16:02:57
|
Hi! I would like to unsubscribe from the dynapi mailing list. thank you for your time, Miguel ___________________________________________________ Yahoo! Messenger - Nueva versión GRATIS Super Webcam, voz, caritas animadas, y más... http://messenger.yahoo.es |
From: Raymond I. <xw...@ya...> - 2003-09-04 15:11:15
|
Hi, See below: --- ml...@id... wrote: > > I have an application that creates a number of > HTMLTextBox components. > > I don't wrap them in a form, if I need to, I can > change my > application. I think you should wrap them in a <form> > My problem is that when the text is set from > javascript, all sets go > to the first created text box. Could you provide an example of the problem? -- Raymond Irving > > Here is a bit of a log, including the name of the > HTMLTextBox ala the > tostring method. > > Setting 1 DynObject.all.DynObject63 to Username, > prior text :: > Text now is : Username > Setting 2 DynObject.all.DynObject71 to 3:mobile for > Mobile > Setting 2 DynObject.all.DynObject73 to Mobile, prior > text :Username: > Text now is : Mobile > Setting 3 DynObject.all.DynObject81 to 1:Auto for > Auto > Setting 4 DynObject.all.DynObject92 to 555 555 1212, > prior text :Mobile: > Text now is : 555 555 1212 > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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 |