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: Brian H. <bg...@ke...> - 2003-09-19 20:25:58
|
Thank you for the below code, and it helped me get a little closer to my goal.. Anyone who thinks this could be better please let me know or if I am doing things right.... function ZoomObject(ImgSourceName,H,W){ this.DynLayer = DynLayer; this.DynLayer(); if(ImgSourceName==null){ return; } else { this.ImgSrc= ImgSourceName}; this.Img = []; var o = this; if(document.images){ this.Imgid = (document.images.length) ? document.images.length++:0; this.Img[this.Imgid] = new Image( (W)?W:null, (H)?H:null ); this.Img[this.Imgid].src = this.ImgSrc; this.Img[this.Imgid].onerror = function(){ alert("Error");}; this.setHTML(this.setImgHTML()); this._LoadedOnPage(); //delay just a bit. } this.css = null; // } var x = dynapi.setPrototype('ZoomObject','DynLayer'); x._LoadedOnPage = function(){ if(document.images){ if(document.images[this.Imgid] == null){ dynapi.document.addChild(this); setTimeout(this+"._LoadedOnPage()", 100); } else if( document.images[this.Imgid].complete == false){ setTimeout(this+"._LoadedOnPage()", 100); } else if( document.images[this.Imgid].complete == true){ this.setSize(document.images[this.Imgid].width,document.images[this.Imgid].h eight); this.css = document.images[this.Imgid]; this.reSize(); //alert("Loaded On Page"); } } } x.reSize = function(){ this.css.width = 100; this.css.height = 200; } x.setImgHTML = function(){ return "<img name=xImage" + this.Imgid + " id=xImage" + this.Imgid +" src=" + this.Img[this.Imgid].src + " onClick=alert(document.images[0]);>"; } -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: Wednesday, September 17, 2003 6:18 PM To: dyn...@li... Subject: RE: [Dynapi-Help] dynapi.functions.getImage() two functions. Try this: var x1 = dynapi.functions.getImage('a.gif',10,10); for(var i in dynapi.ximages){ img = dynapi.ximages[i]; if(x1==img && img.complete){ //code here } } -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Can you give an example, Here is what I did and > return undef.. > > > alert(dynapi.ximages[0]); > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Raymond Irving > Sent: Wednesday, September 17, 2003 11:22 AM > To: dyn...@li... > Subject: Re: [Dynapi-Help] > dynapi.functions.getImage() two functions. > > > All should work in IE. I think NS6+,Moz,Opera does > not > work too well with the img.complete property of the > Image object, correct? > > I think you can loop through dynapi.ximages and test > for the .complete or .failed property to see if the > image was loaded or has failed. > > -- > Raymond Irving > > --- Brian Hayes <bg...@ke...> wrote: > > Hello, > > > > I have spent the past week tiring to > > take advantage of the > > captureImageProgrss(fn) feature, but without > > success. I either get mixed > > results or no results when using this feature. > > > > Example: The code below only seems to work some of > > the time.. > > > > //var oBase = this; //Get Back to this > > from the below > > function.... > > > > > //dynapi.functions.captureImageProgress(IsNextImageCompleted) > > //dynapi.functions.setImageTTL(150000) > > > > > //function > > IsNextImageCompleted(completed,failed,total){ > > // if(completed < > > total){oBase.ShowWaitObject(true);;} // Not done > > loading. > > // > > if((completed+failed)==total) { // We got > > failures. > > // var > > a=dynapi.functions.getFailedImages(); > > // for(var > > i=0;i<a.length;i++){ > > // > > a[i].reload(); > > // } > > // } > > // if (completed == total) { > > //Once completed then > > switch our visible layer with our count number, or > > the next number up. > > // > > if(oBase.getLevels() < > > oBase.getZoomCount()){ ; } else { > > oBase.switchImageLayerVisible(); }; > > // > > oBase.ShowWaitObject(false); //Hide all Wait/Stop > > objects... > > // > > oBase.switchImageLayerVisible(); > > // }; // we got them all. > > //} > > > > But, the bigger issue that I have is that I need > to > > be able to run code > > differently based on which image is downloaded. So > I > > would need to be > > able to do two of the obove, but different actions > > based on which one > > gets loaded... Not to mention, attempting to a > > custom function such as: > > But only works in IE, and not NS 7.0 ?? Any help > > would be greatly > > appreciated. > > > > p.BuildZoomLayer = function(whichLayer){ > > > if(this.Images[whichLayer].SRC.complete > > == false ){ // Our > > Image is NOT loaded... CALL ME and Check Again. > > this._ZTimer = > > > window.setTimeout(this+".BuildZoomLayer("+whichLayer+")",100); > > } else { // We loaded our image.. > > this._ZTimer = null; > > > this.Images[whichLayer].DOM > > = > > document.images[this.Images[whichLayer].ID]; // > set > > our DOM Object from > > out image object. > > } > > > > } > > > > > __________________________________ > 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 > > > > > ------------------------------------------------------- > 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-17 22:17:55
|
Try this: var x1 = dynapi.functions.getImage('a.gif',10,10); for(var i in dynapi.ximages){ img = dynapi.ximages[i]; if(x1==img && img.complete){ //code here } } -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Can you give an example, Here is what I did and > return undef.. > > > alert(dynapi.ximages[0]); > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Raymond Irving > Sent: Wednesday, September 17, 2003 11:22 AM > To: dyn...@li... > Subject: Re: [Dynapi-Help] > dynapi.functions.getImage() two functions. > > > All should work in IE. I think NS6+,Moz,Opera does > not > work too well with the img.complete property of the > Image object, correct? > > I think you can loop through dynapi.ximages and test > for the .complete or .failed property to see if the > image was loaded or has failed. > > -- > Raymond Irving > > --- Brian Hayes <bg...@ke...> wrote: > > Hello, > > > > I have spent the past week tiring to > > take advantage of the > > captureImageProgrss(fn) feature, but without > > success. I either get mixed > > results or no results when using this feature. > > > > Example: The code below only seems to work some of > > the time.. > > > > //var oBase = this; //Get Back to this > > from the below > > function.... > > > > > //dynapi.functions.captureImageProgress(IsNextImageCompleted) > > //dynapi.functions.setImageTTL(150000) > > > > > //function > > IsNextImageCompleted(completed,failed,total){ > > // if(completed < > > total){oBase.ShowWaitObject(true);;} // Not done > > loading. > > // > > if((completed+failed)==total) { // We got > > failures. > > // var > > a=dynapi.functions.getFailedImages(); > > // for(var > > i=0;i<a.length;i++){ > > // > > a[i].reload(); > > // } > > // } > > // if (completed == total) { > > //Once completed then > > switch our visible layer with our count number, or > > the next number up. > > // > > if(oBase.getLevels() < > > oBase.getZoomCount()){ ; } else { > > oBase.switchImageLayerVisible(); }; > > // > > oBase.ShowWaitObject(false); //Hide all Wait/Stop > > objects... > > // > > oBase.switchImageLayerVisible(); > > // }; // we got them all. > > //} > > > > But, the bigger issue that I have is that I need > to > > be able to run code > > differently based on which image is downloaded. So > I > > would need to be > > able to do two of the obove, but different actions > > based on which one > > gets loaded... Not to mention, attempting to a > > custom function such as: > > But only works in IE, and not NS 7.0 ?? Any help > > would be greatly > > appreciated. > > > > p.BuildZoomLayer = function(whichLayer){ > > > if(this.Images[whichLayer].SRC.complete > > == false ){ // Our > > Image is NOT loaded... CALL ME and Check Again. > > this._ZTimer = > > > window.setTimeout(this+".BuildZoomLayer("+whichLayer+")",100); > > } else { // We loaded our image.. > > this._ZTimer = null; > > > this.Images[whichLayer].DOM > > = > > document.images[this.Images[whichLayer].ID]; // > set > > our DOM Object from > > out image object. > > } > > > > } > > > > > __________________________________ > 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 > > > > > ------------------------------------------------------- > 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: Brian H. <bg...@ke...> - 2003-09-17 21:59:21
|
Can you give an example, Here is what I did and return undef.. alert(dynapi.ximages[0]); -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: Wednesday, September 17, 2003 11:22 AM To: dyn...@li... Subject: Re: [Dynapi-Help] dynapi.functions.getImage() two functions. All should work in IE. I think NS6+,Moz,Opera does not work too well with the img.complete property of the Image object, correct? I think you can loop through dynapi.ximages and test for the .complete or .failed property to see if the image was loaded or has failed. -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Hello, > > I have spent the past week tiring to > take advantage of the > captureImageProgrss(fn) feature, but without > success. I either get mixed > results or no results when using this feature. > > Example: The code below only seems to work some of > the time.. > > //var oBase = this; //Get Back to this > from the below > function.... > > //dynapi.functions.captureImageProgress(IsNextImageCompleted) > //dynapi.functions.setImageTTL(150000) > > //function > IsNextImageCompleted(completed,failed,total){ > // if(completed < > total){oBase.ShowWaitObject(true);;} // Not done > loading. > // > if((completed+failed)==total) { // We got > failures. > // var > a=dynapi.functions.getFailedImages(); > // for(var > i=0;i<a.length;i++){ > // > a[i].reload(); > // } > // } > // if (completed == total) { > //Once completed then > switch our visible layer with our count number, or > the next number up. > // > if(oBase.getLevels() < > oBase.getZoomCount()){ ; } else { > oBase.switchImageLayerVisible(); }; > // > oBase.ShowWaitObject(false); //Hide all Wait/Stop > objects... > // > oBase.switchImageLayerVisible(); > // }; // we got them all. > //} > > But, the bigger issue that I have is that I need to > be able to run code > differently based on which image is downloaded. So I > would need to be > able to do two of the obove, but different actions > based on which one > gets loaded... Not to mention, attempting to a > custom function such as: > But only works in IE, and not NS 7.0 ?? Any help > would be greatly > appreciated. > > p.BuildZoomLayer = function(whichLayer){ > if(this.Images[whichLayer].SRC.complete > == false ){ // Our > Image is NOT loaded... CALL ME and Check Again. > this._ZTimer = > window.setTimeout(this+".BuildZoomLayer("+whichLayer+")",100); > } else { // We loaded our image.. > this._ZTimer = null; > this.Images[whichLayer].DOM > = > document.images[this.Images[whichLayer].ID]; // set > our DOM Object from > out image object. > } > > } > __________________________________ 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-17 20:31:02
|
Yes it does. For browsers that does not support XMLHttpRequest object Java is used -- Raymond Irving --- Doug Melvin <do...@cr...> wrote: > Does the filereader work in NS4? > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: "DynAPI-Dev" <dyn...@li...>; > "DynApi-Help" > <dyn...@li...> > Sent: Wednesday, September 17, 2003 1:13 PM > Subject: [Dynapi-Help] Getting Templates from the > Server > > > > > > 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 > > > > > > > ------------------------------------------------------- > > 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 > > > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system > (http://www.grisoft.com). > Version: 6.0.515 / Virus Database: 313 - Release > Date: 9/1/03 > > > > ------------------------------------------------------- > 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: Doug M. <do...@cr...> - 2003-09-17 17:56:46
|
Does the filereader work in NS4? ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: "DynAPI-Dev" <dyn...@li...>; "DynApi-Help" <dyn...@li...> Sent: Wednesday, September 17, 2003 1:13 PM Subject: [Dynapi-Help] Getting Templates from the Server > > 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 > > > ------------------------------------------------------- > 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 > --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.515 / Virus Database: 313 - Release Date: 9/1/03 |
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:12:03
|
Why not use DynLayers? And then use lyr.setHTML() var lyr = new DynLayer() lyr.setHTML('html here'); -- Raymond Irving --- Robin Becker <ro...@re...> wrote: > I have a working page which assigns the contents of > one div to another > using > > function getDiv(ID){ > if(document.getElementById) return > document.getElementById(ID); > return document.all[ID]; > } > ...... > getDIV('dst').innerHTML = getDIV('src').innerHTML; > ...... > > > Now the client wants this to work with NS4. My > questions are > > 1) Is NS4 dynamic in any sense or must all the > layers be properly sized > and positioned? > In the existing DOM style scheme we just copy the > html across and the > browser resizes etc. > > 2) Is there any way to use an existing layer as an > editable source of > the html or must I have javascript strings to do a > write? In the current > system we just make DIV's which are hidden and at > the top left so are > directly editable with standard HTML tools. > -- > Robin Becker > > > ------------------------------------------------------- > 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: Robin B. <ro...@re...> - 2003-09-17 16:36:08
|
I have a working page which assigns the contents of one div to another using function getDiv(ID){ if(document.getElementById) return document.getElementById(ID); return document.all[ID]; } ...... getDIV('dst').innerHTML = getDIV('src').innerHTML; ...... Now the client wants this to work with NS4. My questions are 1) Is NS4 dynamic in any sense or must all the layers be properly sized and positioned? In the existing DOM style scheme we just copy the html across and the browser resizes etc. 2) Is there any way to use an existing layer as an editable source of the html or must I have javascript strings to do a write? In the current system we just make DIV's which are hidden and at the top left so are directly editable with standard HTML tools. -- Robin Becker |
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:22:24
|
All should work in IE. I think NS6+,Moz,Opera does not work too well with the img.complete property of the Image object, correct? I think you can loop through dynapi.ximages and test for the .complete or .failed property to see if the image was loaded or has failed. -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Hello, > > I have spent the past week tiring to > take advantage of the > captureImageProgrss(fn) feature, but without > success. I either get mixed > results or no results when using this feature. > > Example: The code below only seems to work some of > the time.. > > //var oBase = this; //Get Back to this > from the below > function.... > > //dynapi.functions.captureImageProgress(IsNextImageCompleted) > //dynapi.functions.setImageTTL(150000) > > //function > IsNextImageCompleted(completed,failed,total){ > // if(completed < > total){oBase.ShowWaitObject(true);;} // Not done > loading. > // > if((completed+failed)==total) { // We got > failures. > // var > a=dynapi.functions.getFailedImages(); > // for(var > i=0;i<a.length;i++){ > // > a[i].reload(); > // } > // } > // if (completed == total) { > //Once completed then > switch our visible layer with our count number, or > the next number up. > // > if(oBase.getLevels() < > oBase.getZoomCount()){ ; } else { > oBase.switchImageLayerVisible(); }; > // > oBase.ShowWaitObject(false); //Hide all Wait/Stop > objects... > // > oBase.switchImageLayerVisible(); > // }; // we got them all. > //} > > But, the bigger issue that I have is that I need to > be able to run code > differently based on which image is downloaded. So I > would need to be > able to do two of the obove, but different actions > based on which one > gets loaded... Not to mention, attempting to a > custom function such as: > But only works in IE, and not NS 7.0 ?? Any help > would be greatly > appreciated. > > p.BuildZoomLayer = function(whichLayer){ > if(this.Images[whichLayer].SRC.complete > == false ){ // Our > Image is NOT loaded... CALL ME and Check Again. > this._ZTimer = > window.setTimeout(this+".BuildZoomLayer("+whichLayer+")",100); > } else { // We loaded our image.. > this._ZTimer = null; > this.Images[whichLayer].DOM > = > document.images[this.Images[whichLayer].ID]; // set > our DOM Object from > out image object. > } > > } > __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Brian H. <bg...@ke...> - 2003-09-17 02:01:39
|
Hello, I have spent the past week tiring to take advantage of the captureImageProgrss(fn) feature, but without success. I either get mixed results or no results when using this feature. Example: The code below only seems to work some of the time.. //var oBase = this; //Get Back to this from the below function.... //dynapi.functions.captureImageProgress(IsNextImageCompleted) //dynapi.functions.setImageTTL(150000) //function IsNextImageCompleted(completed,failed,total){ // if(completed < total){oBase.ShowWaitObject(true);;} // Not done loading. // if((completed+failed)==total) { // We got failures. // var a=dynapi.functions.getFailedImages(); // for(var i=0;i<a.length;i++){ // a[i].reload(); // } // } // if (completed == total) { //Once completed then switch our visible layer with our count number, or the next number up. // if(oBase.getLevels() < oBase.getZoomCount()){ ; } else { oBase.switchImageLayerVisible(); }; // oBase.ShowWaitObject(false); //Hide all Wait/Stop objects... // oBase.switchImageLayerVisible(); // }; // we got them all. //} But, the bigger issue that I have is that I need to be able to run code differently based on which image is downloaded. So I would need to be able to do two of the obove, but different actions based on which one gets loaded... Not to mention, attempting to a custom function such as: But only works in IE, and not NS 7.0 ?? Any help would be greatly appreciated. p.BuildZoomLayer = function(whichLayer){ if(this.Images[whichLayer].SRC.complete == false ){ // Our Image is NOT loaded... CALL ME and Check Again. this._ZTimer = window.setTimeout(this+".BuildZoomLayer("+whichLayer+")",100); } else { // We loaded our image.. this._ZTimer = null; this.Images[whichLayer].DOM = document.images[this.Images[whichLayer].ID]; // set our DOM Object from out image object. } } |
From: Leif W <war...@us...> - 2003-09-17 00:27:27
|
Hi I've taken the snippet of code, wrapped it in a basic HTML page, and opened it in 4 browsers all next to each other, and took a screenshot. http://dynapi.kicks-ass.net/DynAPI_CVSROOT/test/div_clip_test/div_clip_test.gif (45kb, 1600x1200). Clockwise from top-left corner is Mozilla 1.5 beta, Mozilla Firebird 0.6.1, Opera 7.11, Internet Explorer 6). Both Mozillas don't clip the first, and both clip the second, so they're acting the same, which is little surprise. Opera 7.11 clips the text but displays the <div> as if the text were still there. (HUH? WTF?) Internet Explorer 6 doesn't seem to clip anything, it merely "shrink-wraps" the <div> to the text. So the trick then becomes, when doing things with CSS in the API, (either as API developers or API users) what else can we do to make things look as much the same as possible? This would seem to be a big problem to handle, but maybe there's some simple ways to work around it. Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Wednesday, September 10, 2003 12:48 PM Subject: Re: [Dynapi-Help] Problem with setClip > > Hi, > > It would appear to me that you can't clip relatively > positioned layers: > > <div > style="position:relative;clip:rect(0px,50px,50px,0px); > width:100;height:100;background-color:yellow"> Some > Text Here sf f af eq f eqf e qf eqf eqfffffffeqfeqf > eq f eqf eqf</div> > <div > style="position:absolute;clip:rect(0px,50px,50px,0px); > left:150px;top:150px;width:100;height:100;background-color:green"> > Some Text Here sf f af eq f eqf e qf eqf > eqfffffffeqfeqf eq f eqf eqf</div> > > > -- > Raymond Irving > > --- Daniel Tiru <de...@ti...> wrote: > > Hi! > > > > I have found a problem with the templatemanager and > > setting a clip on a > > layer added to the templatemanager,maybee i am doing > > something wrong, > > but the layer in the template dont get clipped. > > > > Attatched is my examplepage. > > > > Best regards > > Daniel > > > > -----Original Message----- > > From: dyn...@li... > > [mailto:dyn...@li...] On > > Behalf Of Gavin O' > > Gorman > > Sent: den 10 september 2003 10:14 > > To: dyn...@li... > > Subject: RE: [Dynapi-Help] The New DynAPI Components > > are Here! Check out > > CVS > > > > > > > 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 > > > > Leif, > > Thanks very much for that, I appreciate the effort ! > > I ended up just > > downloading it this morning from the daily snapshot > > folder which seems > > to have been updated properly. > > > > Thanks again, > > Gavin > > > > > > > > > ------------------------------------------------------- > > 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 > > > > > ATTACHMENT part 2 application/octet-stream > name=tm_clip.zip > > > > __________________________________ > 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-14 21:13:19
|
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: Bruce T. <blu...@ya...> - 2003-09-12 18:18:11
|
Thanks Raymond, I actually did syumble across it after a few google searches. So far, no need to use DynAPI. But that's not to say I won't in the future. Raymond Irving <xw...@ya...> wrote: Try this: http://www.xs4all.nl/~ppk/js/index.html -- Raymond Irving --- Bruce Tennant wrote: > Does anyone know where a list of differences between > browsers CSS/DHTML implementations might be compiled > at? I'm mainly concerned with the current set (DOM, > IE 5.5+, NS 6+). I know some sizing w/borders and > stuff are handled different between IE and > Mozilla/NS. > > I'd like to see a list and then determine if I > should use DynAPI for my current project. It > currently doesn't do much dynamic layers stuff, so > DynAPI would seem overkill. > > Thanks > > -Bruce Tennant > > > > www.bluewolverine.com > > --------------------------------- > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site > design software __________________________________ 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 www.bluewolverine.com --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software |
From: Raymond I. <xw...@ya...> - 2003-09-12 13:22:51
|
Try this: http://www.xs4all.nl/~ppk/js/index.html -- Raymond Irving --- Bruce Tennant <blu...@ya...> wrote: > Does anyone know where a list of differences between > browsers CSS/DHTML implementations might be compiled > at? I'm mainly concerned with the current set (DOM, > IE 5.5+, NS 6+). I know some sizing w/borders and > stuff are handled different between IE and > Mozilla/NS. > > I'd like to see a list and then determine if I > should use DynAPI for my current project. It > currently doesn't do much dynamic layers stuff, so > DynAPI would seem overkill. > > Thanks > > -Bruce Tennant > > > > www.bluewolverine.com > > --------------------------------- > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site > design software __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Brian H. <bg...@ke...> - 2003-09-11 11:57:20
|
That worked!! thanks you for the help, and here is the code used.. <SCRIPT LANGUAGE="JavaScript"> <!-- var zoomi = dynapi.functions.getImage("Zoom-Object.gif",null,null); var Layer = new DynLayer(zoomi.getHTML({name:'test'}),0,0,400,400,null); Layer.setVisible(false); dynapi.functions.captureImageProgress(fn) dynapi.functions.setImageTTL(15000) function fn(completed,failed,total){ if(completed < total){ Layer.setVisible(false);} // Not done loading. if((completed+failed)==total) { // We got failures. var a=dynapi.functions.getFailedImages(); for(var i=0;i<a.length;i++){ a[i].reload(); } } if (completed == total) { Layer.setVisible(true); var test = document.images['test']; // With this we can do what we need with the image element. //test.height = 100; // This will only work in IE, but can be done via a <a onclick> tag.. }; // we got them all. } dynapi.document.addChild(Layer); //--> </SCRIPT> -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: Wednesday, September 10, 2003 7:17 PM To: dyn...@li... Subject: Re: [Dynapi-Help] Doing to images what can be done do DynLayer Hi Brian, Because you can have multiple copies of the same images loaded at the same time we did not allow you to bind the inserted image with the one create using getImage(). But here's a workaround var Layer = new DynLayer(zoomi.getHTML({name:'zoomi'}),0,0,800,800,null); .... .... // when loaded you should be able // to get the image object call zoomi var img = document.images['zoomi']; img.height = 100; -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Hello, I am relatively new to the dynapi project, > but as open source > projects go, this one has captured the attention of > several. With that > said and (Excellent job guys/girls) I do have a > question and statement. > > I have been studying and writing code using the > dynapi 3x for about > three week solid, and although my JS skills are > lacking, I have managed > to get up to speed in programming using this api. > See: > www.keyout.com/keyout/test.cfm. as you can see from > this, my goal is a > simple one, but complicate one as well. > > The question: How do you do to images as you do to > layers? > > Example: > > This.Lyr = new > DynLayer(null,0,0,100,100,"e0e0e0"); > > From this you can: this.Lyr.setSize(250,250); > Or animate the growth via some math and calling the > same funtion until > you reach your desired W and H. > > But for images? I have tried to simulate this, and > have done so, but > extending outside the dynapi library. So, if > possible could some one > show me how or guild me on this on how it can be > done with images? > > This is from some of the example, but the image does > not change on load. > Unless I use the document.images[0] object. > > dynapi.library.include('dynapi.api'); > > dynapi.library.include('dynapi.functions.Image'); > > dynapi.library.include('dynapi.functions.system'); > > var zoomi = > dynapi.functions.getImage("/Keyout/Keyout/Zoom-Object.gif",null,null,{al > ias:"test"}); > var Layer = new > DynLayer(zoomi.getHTML(),0,0,800,800,null); > Layer.setVisible(false); > dynapi.document.addChild(Layer); > > > > dynapi.functions.captureImageProgress(fn) > dynapi.functions.setImageTTL(15000) > > function fn(completed,failed,total){ > if(completed < total){ > Layer.setVisible(false);} > // Not done loading. > > if((completed+failed)==total) { // > We got failures. > var > a=dynapi.functions.getFailedImages(); > for(var > i=0;i<a.length;i++){ > > a[i].reload(); > } > } > if (completed == total) { > //We gotem all so do > something usefull. > > Layer.setVisible(true); //hide layer > untill images are loaded.. > var test = > dynapi.ximages['test']; > test.height = > 100; > }; // we got them all. > } > > __________________________________ 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-10 23:17:02
|
Hi Brian, Because you can have multiple copies of the same images loaded at the same time we did not allow you to bind the inserted image with the one create using getImage(). But here's a workaround var Layer = new DynLayer(zoomi.getHTML({name:'zoomi'}),0,0,800,800,null); .... .... // when loaded you should be able // to get the image object call zoomi var img = document.images['zoomi']; img.height = 100; -- Raymond Irving --- Brian Hayes <bg...@ke...> wrote: > Hello, I am relatively new to the dynapi project, > but as open source > projects go, this one has captured the attention of > several. With that > said and (Excellent job guys/girls) I do have a > question and statement. > > I have been studying and writing code using the > dynapi 3x for about > three week solid, and although my JS skills are > lacking, I have managed > to get up to speed in programming using this api. > See: > www.keyout.com/keyout/test.cfm. as you can see from > this, my goal is a > simple one, but complicate one as well. > > The question: How do you do to images as you do to > layers? > > Example: > > This.Lyr = new > DynLayer(null,0,0,100,100,"e0e0e0"); > > From this you can: this.Lyr.setSize(250,250); > Or animate the growth via some math and calling the > same funtion until > you reach your desired W and H. > > But for images? I have tried to simulate this, and > have done so, but > extending outside the dynapi library. So, if > possible could some one > show me how or guild me on this on how it can be > done with images? > > This is from some of the example, but the image does > not change on load. > Unless I use the document.images[0] object. > > dynapi.library.include('dynapi.api'); > > dynapi.library.include('dynapi.functions.Image'); > > dynapi.library.include('dynapi.functions.system'); > > var zoomi = > dynapi.functions.getImage("/Keyout/Keyout/Zoom-Object.gif",null,null,{al > ias:"test"}); > var Layer = new > DynLayer(zoomi.getHTML(),0,0,800,800,null); > Layer.setVisible(false); > dynapi.document.addChild(Layer); > > > > dynapi.functions.captureImageProgress(fn) > dynapi.functions.setImageTTL(15000) > > function fn(completed,failed,total){ > if(completed < total){ > Layer.setVisible(false);} > // Not done loading. > > if((completed+failed)==total) { // > We got failures. > var > a=dynapi.functions.getFailedImages(); > for(var > i=0;i<a.length;i++){ > > a[i].reload(); > } > } > if (completed == total) { > //We gotem all so do > something usefull. > > Layer.setVisible(true); //hide layer > untill images are loaded.. > var test = > dynapi.ximages['test']; > test.height = > 100; > }; // we got them all. > } > > __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Brian H. <bg...@ke...> - 2003-09-10 19:05:12
|
Hello, I am relatively new to the dynapi project, but as open source projects go, this one has captured the attention of several. With that said and (Excellent job guys/girls) I do have a question and statement. I have been studying and writing code using the dynapi 3x for about three week solid, and although my JS skills are lacking, I have managed to get up to speed in programming using this api. See: www.keyout.com/keyout/test.cfm. as you can see from this, my goal is a simple one, but complicate one as well. The question: How do you do to images as you do to layers? Example: This.Lyr = new DynLayer(null,0,0,100,100,"e0e0e0"); From this you can: this.Lyr.setSize(250,250); Or animate the growth via some math and calling the same funtion until you reach your desired W and H. But for images? I have tried to simulate this, and have done so, but extending outside the dynapi library. So, if possible could some one show me how or guild me on this on how it can be done with images? This is from some of the example, but the image does not change on load. Unless I use the document.images[0] object. dynapi.library.include('dynapi.api'); dynapi.library.include('dynapi.functions.Image'); dynapi.library.include('dynapi.functions.system'); var zoomi = dynapi.functions.getImage("/Keyout/Keyout/Zoom-Object.gif",null,null,{al ias:"test"}); var Layer = new DynLayer(zoomi.getHTML(),0,0,800,800,null); Layer.setVisible(false); dynapi.document.addChild(Layer); dynapi.functions.captureImageProgress(fn) dynapi.functions.setImageTTL(15000) function fn(completed,failed,total){ if(completed < total){ Layer.setVisible(false);} // Not done loading. if((completed+failed)==total) { // We got failures. var a=dynapi.functions.getFailedImages(); for(var i=0;i<a.length;i++){ a[i].reload(); } } if (completed == total) { //We gotem all so do something usefull. Layer.setVisible(true); //hide layer untill images are loaded.. var test = dynapi.ximages['test']; test.height = 100; }; // we got them all. } |
From: Bruce T. <blu...@ya...> - 2003-09-10 17:05:47
|
Does anyone know where a list of differences between browsers CSS/DHTML implementations might be compiled at? I'm mainly concerned with the current set (DOM, IE 5.5+, NS 6+). I know some sizing w/borders and stuff are handled different between IE and Mozilla/NS. I'd like to see a list and then determine if I should use DynAPI for my current project. It currently doesn't do much dynamic layers stuff, so DynAPI would seem overkill. Thanks -Bruce Tennant www.bluewolverine.com --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software |
From: Raymond I. <xw...@ya...> - 2003-09-10 16:48:11
|
Hi, It would appear to me that you can't clip relatively positioned layers: <div style="position:relative;clip:rect(0px,50px,50px,0px); width:100;height:100;background-color:yellow"> Some Text Here sf f af eq f eqf e qf eqf eqfffffffeqfeqf eq f eqf eqf</div> <div style="position:absolute;clip:rect(0px,50px,50px,0px); left:150px;top:150px;width:100;height:100;background-color:green"> Some Text Here sf f af eq f eqf e qf eqf eqfffffffeqfeqf eq f eqf eqf</div> -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hi! > > I have found a problem with the templatemanager and > setting a clip on a > layer added to the templatemanager,maybee i am doing > something wrong, > but the layer in the template dont get clipped. > > Attatched is my examplepage. > > Best regards > Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Gavin O' > Gorman > Sent: den 10 september 2003 10:14 > To: dyn...@li... > Subject: RE: [Dynapi-Help] The New DynAPI Components > are Here! Check out > CVS > > > > 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 > > Leif, > Thanks very much for that, I appreciate the effort ! > I ended up just > downloading it this morning from the daily snapshot > folder which seems > to have been updated properly. > > Thanks again, > Gavin > > > > ------------------------------------------------------- > 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 > > ATTACHMENT part 2 application/octet-stream name=tm_clip.zip __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Daniel T. <de...@ti...> - 2003-09-10 12:57:01
|
Hi! I have found a problem with the templatemanager and setting a clip on a layer added to the templatemanager,maybee i am doing something wrong, but the layer in the template dont get clipped. Attatched is my examplepage. Best regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Gavin O' Gorman Sent: den 10 september 2003 10:14 To: dyn...@li... Subject: RE: [Dynapi-Help] The New DynAPI Components are Here! Check out CVS > 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 Leif, Thanks very much for that, I appreciate the effort ! I ended up just downloading it this morning from the daily snapshot folder which seems to have been updated properly. Thanks again, Gavin ------------------------------------------------------- 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-10 08:17:28
|
> 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 Leif, Thanks very much for that, I appreciate the effort ! I ended up just downloading it this morning from the daily snapshot folder which seems to have been updated properly. Thanks again, Gavin |
From: Leif W <war...@us...> - 2003-09-09 23:38:32
|
If you notice the difference between the timestamp on this message (1442) and the time it arrives (1925), you'll see there's nearly a 5 hour lag time between when I sent it and when it arrived. Must be a problem with my ISP again. Well at least it's still better than snailmail, right? Leif P.S. Since there seems to be so much problems with SF public CVS server (and the lag time of one day before it's a zip archive), I'll volunteer to put a zip up either on my home or on my ISP's webspace (MUCH faster connection) for those who can't wait. P.P.S. I'll also look into automating this process, but don't hold your breath. :o (could set up a cron job in Linux to run cvs update, zip the snapshot, and run an ftp session if I put the zip elsewhere). P.P.P.S. On second thought, automating this by doing frequent CVS updates (i.e. every 15 min) might be a bad idea, overworking their servers and possibly clobbering any of my ongoing work. But I can still put up a zip within the first minutes to be used for the first few days until SF's CVS catches up. ----- Original Message ----- From: "Leif W" <war...@us...> To: <dyn...@li...> Sent: Tuesday, September 09, 2003 2:42 PM Subject: Re: [Dynapi-Help] The New DynAPI Components are Here! Check out CVS > 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 > > > > > > > > > ------------------------------------------------------- > 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: Dan W. <dy...@da...> - 2003-09-09 19:56:56
|
On Tue, 2003-09-09 at 11:07, Gavin O' Gorman wrote: > 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 > -- Yes, I even consider this 'normal' with the sourceforge cvs servers lately. The public anonymous ones are at least a day old, and often do not connect, like you had above, your best bet is to get the snapshot, or find a developer willing to mail/etc. it to you. Dan Willemsen -- Dan Willemsen <dy...@da...> |