You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(75) |
Nov
(252) |
Dec
(418) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(659) |
Feb
(1039) |
Mar
(870) |
Apr
(235) |
May
(329) |
Jun
(251) |
Jul
(123) |
Aug
(119) |
Sep
(67) |
Oct
(194) |
Nov
(535) |
Dec
(133) |
2002 |
Jan
(122) |
Feb
(24) |
Mar
(29) |
Apr
(28) |
May
(16) |
Jun
(20) |
Jul
(11) |
Aug
(12) |
Sep
(13) |
Oct
(14) |
Nov
(23) |
Dec
(19) |
2003 |
Jan
(28) |
Feb
(170) |
Mar
(288) |
Apr
(211) |
May
(126) |
Jun
(166) |
Jul
(131) |
Aug
(102) |
Sep
(211) |
Oct
(301) |
Nov
(22) |
Dec
(6) |
2004 |
Jan
(14) |
Feb
(16) |
Mar
(7) |
Apr
|
May
(8) |
Jun
(25) |
Jul
(21) |
Aug
(2) |
Sep
(7) |
Oct
|
Nov
(2) |
Dec
(1) |
2005 |
Jan
(4) |
Feb
(2) |
Mar
(14) |
Apr
(24) |
May
(3) |
Jun
(7) |
Jul
(30) |
Aug
(5) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: Michael B. <mi...@mi...> - 2003-10-10 23:39:00
|
Hi, Tree and dragIcon thing does not work in Mac IE5 (I have no time to debug s= o don't even think of asking, Sorry! I I'm in hell with the IOS and foldermanager.js port. Damn things changed here). List widgets works fine. Mozilla mac, tree and list works fine but tree needs node height adjustments. I use X&Y mouse pointers for ALL my folder events when moving the folders i= n IOS (except for a small part of folderpane will rewrite later). I think all OS's works this way. Well that=B9s it from the mac side Michael > Hi! >=20 > I created Tree (with examples). It based in NodeItem widget. > List widget is rewrited for NodeItem (examples modified). > event.js modified (ondrop and ondragdrop is work ;). > DragEvent modified. Now the drop event make wvent over the mouse pointer = not > the layer. (The old is not work when the dragable layer is bigger the dro= p > layer) >=20 > ps: now I work for port the Tree implement dragIcon and make a Grid widge= t > (with resizable Cells) >=20 > Cow >=20 |
From: Michael B. <mi...@mi...> - 2003-10-10 23:38:48
|
Sorry for the late response I had to go to IKEA and buy extra sofa :) Ohh I see what you mean, That IE5 mac will not fire it's events over the html elements. Yep aware this, It refuses to bubble the event down it just sees the html elm and stops. I've tired and have no fix for this, it's the same for my button widget (and others) I don't think this is a problem with the api because the api 2.5+ has the same problem. I will not go into this here but Mac IE5 has MAJOR quirks concerning events and InsertAdjacentHTML and createElement when html elements are involved. If this is something that you REALY need I would use something like this. And use it for Mac IE5 specific only. dynapi.document.onmousemove = function(e){ var o = lyrWinIETop if( e.getPageX()>o.getPageX() && e.getPageX()<o.getPageX()+o.getWidth() && e.getPageY()>o.getPageY() && e.getPageY()<o.getPageY()+o.getHeight() ) { o.setBgColor(dynapi.functions.getRandomColor()); } } This will create the effect I think you where after. Michael > Hi Michael! > > Check out http://www.tiru.se/mobug.html > > What I get wierd is when using setBgColor() i think :) > > Check the example and you will c :) > > /Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On Behalf Of Michael > Bystrom > Sent: den 10 oktober 2003 08:15 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Layers and text > > > Show me with code what you mean! > > obj = dynapi.document.addChild( new DynLayer() ) > Etc... > > > I usually can fix mac things > Michael > > > > Den 03-10-10 08.05, skrev "Daniel Tiru" <de...@ti...>: > >> Hello developers! >> >> I would need yor expertice right now... >> >> I have found something, maybee its by design in some way, but i doubt >> it. >> >> If you add text to a layer, and add a event listner to the layer, say >> on mouseover and you change layer no2 bgcolor. >> >> If you add a layer over the textlayer, make it transparant and change >> the event listner to listen to mouseover on the new layer you will >> notice that when you move your mouse over the text of the bottomlayer >> no onmouseover event will be sent. However if you move your mose >> outside the text it will. This is fixed by set the top layer to show a > >> color, thought... the problem is then that you wont see the text :) So > >> you have to add a transparent gif. >> >> So now you will tell me, skip the top layer and it will work fine!? >> Yepp, if using windows and ie (havent tried alot so far) its working >> fine. If using IE on Mac it dont. :( The default for mac is to add >> layer and add text, the text dont_inherit_the_properties of the layer, > >> but making a "Mac-text-layer" or something so it wont work in the >> first case. >> >> Do anyone have a solution to implent into the dynlayer.js that will >> solve this? >> >> Regards >> Daniel |
From: Raymond I. <xw...@ya...> - 2003-10-10 20:55:55
|
Very nice work Háber. I'll implement your Drag-Drop using the mouse pointer instead or the layer size. Can't wait to see the grid. -- Raymond Irving --- Háber János <bo...@co...> wrote: > Hi! > > I created Tree (with examples). It based in NodeItem > widget. > List widget is rewrited for NodeItem (examples > modified). > event.js modified (ondrop and ondragdrop is work ;). > DragEvent modified. Now the drop event make wvent > over the mouse pointer not > the layer. (The old is not work when the dragable > layer is bigger the drop > layer) > > ps: now I work for port the Tree implement dragIcon > and make a Grid widget > (with resizable Cells) > > Cow > > ATTACHMENT part 2 application/x-zip name=dynapi.zip __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-10 20:53:35
|
Ok I see your point. Maybe we should trigger ondragdrop on the layer that's being dragged and dropped and trigger ondrop on the layer receiving the drop, correct? Or should we just use ondrop for both? -- Raymond Irving --- Daniel Tiru <de...@ti...> wrote: > Hi Raymond! > > I dont know really... I think both sounds good, but > as you realy dont > have to drag it, it could be ondrop, but if you drag > it, it would be > ondragdrop. So.. Well, can you explain what you did > wrong? Then i will > tell you if you are right or wrong. :) > > Regards > Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Raymond > Irving > Sent: den 10 oktober 2003 19:23 > To: DynAPI-Dev; DynApi-Help > Subject: [Dynapi-Dev] Change ondrop to ondragdrop > > > Hi Everyone, > > I think I've made a mistake with the event names. In > keeping with ondragstart, ondragmove, ondragend, > ondragover we should change ondrop to ondragdrop > > Everyone in agreement? > > PS. Some newer changes are coming that enable you to > do some great drag and drop features that is not > easy > to do without DynAPI :) > > > -- > Raymond Irving. > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product > search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. See the people > who have HELPED US provide better services: Click > here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. > See the people who have HELPED US provide better > services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-10-10 20:48:32
|
--- Daniel Tiru <de...@ti...> wrote: > Hi mate! > > This looks really neat, one question thought. Whats > the driffrences from > the old drag/drop stuff? I havent been looking into > it, but would be fun > to know what the diffrence is :) The first drag-drop demo only allows you to drag the actual layer. This new feature allows you to drag an icon of that layer. With this you could make any layer drag-able to any location within the doc. This feature makes it possible to do some really complex things like dragging an item from one window to another window, etc. You could even create a FileManager so you can drag files and folders to other locations. -- Raymond Irving > Cool thing, i like it, belive it will be very > useful. > > Regards > Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On > Behalf Of Raymond > Irving > Sent: den 10 oktober 2003 21:27 > To: DynAPI-Dev > Subject: [Dynapi-Dev] DragIcon Demo > > > Hello, > > Please checkout the proposed Drag Icon features for > DragEvent. > > http://www24.brinkster.com/dyntools/next/examples/demo.dragicon.html > > This new addition should make if easier to simulate > drag and drop the way it's done in desktop > applications. You should be able to drag icons (or > objects) anywhere on the document. > > Any comments, suggestions, questions? > > -- > Raymond Irving > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product > search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. See the people > who have HELPED US provide better services: Click > here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. > See the people who have HELPED US provide better > services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: <bo...@co...> - 2003-10-10 20:45:53
|
Hi! Raymond add me the dragIcon modified dragevent.js. I make my modification (drop on the mouse pointer) and examples (from Raymond). Cow |
From: Raymond I. <xw...@ya...> - 2003-10-10 20:44:39
|
SnapX - Sounds like a good thing to do. -- Raymond Irving --- Leif W <war...@us...> wrote: > Looks very nice. This feature is similar to what > was suggested I add to my > SnapX library some time ago, especially the lime > semi-transparent layer. I > wasn't sure how to do this before, but it would seem > the DragIcon widget > would compliment SnapX or any other widgets nicely. > My only concern is > about a text-selection that occurs in Mozilla, maybe > a bug. > > And thinking of my SnapX widget, I'm wondering if > there's a way I could > optionally have the snap check code trigger onmove > as well as on drag end, > such that the default is that it triggers on move, > but could also be set to > trigger only on drag end (i.e. after it's dropped, > then do a snap). The two > widgets would play nicely together I think. :-) > And as this is a more > general solution, it can be combined more easily > with other widgets. Well > done. > > Leif > > ----- Original Message ----- > From: "Raymond Irving" <xw...@ya...> > To: "DynAPI-Dev" <dyn...@li...> > Sent: Friday, October 10, 2003 3:27 PM > Subject: [Dynapi-Dev] DragIcon Demo > > > > Hello, > > > > Please checkout the proposed Drag Icon features > for > > DragEvent. > > > > > http://www24.brinkster.com/dyntools/next/examples/demo.dragicon.html > > > > This new addition should make if easier to > simulate > > drag and drop the way it's done in desktop > > applications. You should be able to drag icons (or > > objects) anywhere on the document. > > > > Any comments, suggestions, questions? > > > > -- > > Raymond Irving > > > > __________________________________ > > Do you Yahoo!? > > The New Yahoo! Shopping - with improved product > search > > http://shopping.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback > Program. > > SourceForge.net hosts over 70,000 Open Source > Projects. > > See the people who have HELPED US provide better > services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. > See the people who have HELPED US provide better > services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Leif W <war...@us...> - 2003-10-10 20:32:21
|
See below. ----- Original Message ----- From: "Háber János" <bo...@co...> To: <dyn...@li...> Sent: Friday, October 10, 2003 1:34 PM Subject: Re: [Dynapi-Dev] Change ondrop to ondragdrop > Hi! > > > I think I've made a mistake with the event names. In > > keeping with ondragstart, ondragmove, ondragend, > > ondragover we should change ondrop to ondragdrop > > > > Everyone in agreement? > > > > PS. Some newer changes are coming that enable you to > > do some great drag and drop features that is not easy > > to do without DynAPI :) > > I vote to on drop. > > the dragdorp is the name of the full event, the drop is a part of the dragdrop > event, is only the dropping Interesting. Some rhetorical questions come to mind... Is this a suggestion to have two events, "drop" and "dragdrop"? Is there a definite case where there is need of a "drop" event separate from a "dragdrop" event? Can something be dropped if it wasn't dragged (i.e. programmattically "lifted" and "dropped")? When would it be necessary to listen to a "dragdrop" event without the "drop" part? Leif > Cow > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: <bo...@co...> - 2003-10-10 20:08:44
|
Hi! I created Tree (with examples). It based in NodeItem widget. List widget is rewrited for NodeItem (examples modified). event.js modified (ondrop and ondragdrop is work ;). DragEvent modified. Now the drop event make wvent over the mouse pointer not the layer. (The old is not work when the dragable layer is bigger the drop layer) ps: now I work for port the Tree implement dragIcon and make a Grid widget (with resizable Cells) Cow |
From: Daniel T. <de...@ti...> - 2003-10-10 20:04:38
|
Hi Raymond! I dont know really... I think both sounds good, but as you realy dont have to drag it, it could be ondrop, but if you drag it, it would be ondragdrop. So.. Well, can you explain what you did wrong? Then i will tell you if you are right or wrong. :) Regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: den 10 oktober 2003 19:23 To: DynAPI-Dev; DynApi-Help Subject: [Dynapi-Dev] Change ondrop to ondragdrop Hi Everyone, I think I've made a mistake with the event names. In keeping with ondragstart, ondragmove, ondragend, ondragover we should change ondrop to ondragdrop Everyone in agreement? PS. Some newer changes are coming that enable you to do some great drag and drop features that is not easy to do without DynAPI :) -- Raymond Irving. __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Daniel T. <de...@ti...> - 2003-10-10 19:58:48
|
Hi mate! This looks really neat, one question thought. Whats the driffrences from the old drag/drop stuff? I havent been looking into it, but would be fun to know what the diffrence is :) Cool thing, i like it, belive it will be very useful. Regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: den 10 oktober 2003 21:27 To: DynAPI-Dev Subject: [Dynapi-Dev] DragIcon Demo Hello, Please checkout the proposed Drag Icon features for DragEvent. http://www24.brinkster.com/dyntools/next/examples/demo.dragicon.html This new addition should make if easier to simulate drag and drop the way it's done in desktop applications. You should be able to drag icons (or objects) anywhere on the document. Any comments, suggestions, questions? -- Raymond Irving __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Leif W <war...@us...> - 2003-10-10 19:56:29
|
Looks very nice. This feature is similar to what was suggested I add to my SnapX library some time ago, especially the lime semi-transparent layer. I wasn't sure how to do this before, but it would seem the DragIcon widget would compliment SnapX or any other widgets nicely. My only concern is about a text-selection that occurs in Mozilla, maybe a bug. And thinking of my SnapX widget, I'm wondering if there's a way I could optionally have the snap check code trigger onmove as well as on drag end, such that the default is that it triggers on move, but could also be set to trigger only on drag end (i.e. after it's dropped, then do a snap). The two widgets would play nicely together I think. :-) And as this is a more general solution, it can be combined more easily with other widgets. Well done. Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: "DynAPI-Dev" <dyn...@li...> Sent: Friday, October 10, 2003 3:27 PM Subject: [Dynapi-Dev] DragIcon Demo > Hello, > > Please checkout the proposed Drag Icon features for > DragEvent. > > http://www24.brinkster.com/dyntools/next/examples/demo.dragicon.html > > This new addition should make if easier to simulate > drag and drop the way it's done in desktop > applications. You should be able to drag icons (or > objects) anywhere on the document. > > Any comments, suggestions, questions? > > -- > Raymond Irving > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Raymond I. <xw...@ya...> - 2003-10-10 19:27:22
|
Hello, Please checkout the proposed Drag Icon features for DragEvent. http://www24.brinkster.com/dyntools/next/examples/demo.dragicon.html This new addition should make if easier to simulate drag and drop the way it's done in desktop applications. You should be able to drag icons (or objects) anywhere on the document. Any comments, suggestions, questions? -- Raymond Irving __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Leif W <war...@us...> - 2003-10-10 17:43:07
|
----- Original Message ----- From: "Kevin" <ke...@ke...> To: <dyn...@li...> Sent: Friday, October 10, 2003 1:18 PM Subject: Re: [Dynapi-Dev] SODA php prort > Hi Leif, > > Sorry I can't be more helpful. The soda connect envelope gets sent ok 200 > then nothing no httpd errors. Testing on Windows I get a Request Timeout > window (from somewhere) with additional info: > Parse error: parse error expecting T_STRING or T_VARIABLE or > T_NUM_STRING in ioelmsrv.soda.php on line 287 > I can't find were the above debug text is generated? The above error is coming from PHP. What's your server environment, btw? Anyways, as the parse error says, start looking on line 287. :-) Ok, I'll try and get this working today. > Which 1/3 doesn't work as that would be helpful to know. Is the try/catch > idea using assert ok? I like that but it's a bit advanced for me! Any ideas? The try/catch is sort of a kludge I was playing with. PHP 5 has try/catch in it, PHP 4 doesn't. It's VERY UGLY I admit, and doesn't really work 100%, but I was just trying it as a concept out of curiousity. The code stops working when it's not PHP anymore. ;-) (line 985 to be exact, ws__Var2SODA) But as you see, it might stop working with some minor or major bugs much sooner. :-\ (line 287, string concatenation assignment). Let me see what I can do right now. Leif > - > Kevin > > > The SODA PHP version isn't complete, it's about 2/3 translated code. ;-) > > Have you got access to your web server's error log files? I know the Apache > > server will report plenty of useful info from PHP such as line numbers, > > error type, etc.. > > > > Leif > > > > ----- Original Message ----- > > From: "Kevin" <ke...@ke...> > > To: "Dynapi-Dev" <Dyn...@li...> > > Sent: Wednesday, October 08, 2003 1:35 PM > > Subject: [Dynapi-Dev] SODA php prort > > > > > > > Hi, > > > > > > I was working on dynapi.util.datasource-paging.php as it didn't exist. > > Then being able to > > > choose the php or the asp version from the > > dynapi.util.datasource-paging.html example! > > > > > > But does ioelmsrv.soda.php port work as I haven't a clue why things aren't > > working. I > > > only fixed the easy stuff in ioelmsrv.php perhaps there are problems with > > wsDispatch? > > > > > > - > > > Kevin > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: SF.net Giveback Program. > > > SourceForge.net hosts over 70,000 Open Source Projects. > > > See the people who have HELPED US provide better services: > > > Click here: http://sourceforge.net/supporters.php > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > SourceForge.net hosts over 70,000 Open Source Projects. > > See the people who have HELPED US provide better services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://www.mail-archive.com/dyn...@li.../ > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: <bo...@co...> - 2003-10-10 17:35:12
|
Hi! > I think I've made a mistake with the event names. In > keeping with ondragstart, ondragmove, ondragend, > ondragover we should change ondrop to ondragdrop > > Everyone in agreement? > > PS. Some newer changes are coming that enable you to > do some great drag and drop features that is not easy > to do without DynAPI :) I vote to on drop. the dragdorp is the name of the full event, the drop is a part of the dragdrop event, is only the dropping Cow |
From: Raymond I. <xw...@ya...> - 2003-10-10 17:30:32
|
Hi Everyone, I think I've made a mistake with the event names. In keeping with ondragstart, ondragmove, ondragend, ondragover we should change ondrop to ondragdrop Everyone in agreement? PS. Some newer changes are coming that enable you to do some great drag and drop features that is not easy to do without DynAPI :) -- Raymond Irving. __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Kevin <ke...@ke...> - 2003-10-10 17:18:24
|
Hi Leif, Sorry I can't be more helpful. The soda connect envelope gets sent ok 200 then nothing no httpd errors. Testing on Windows I get a Request Timeout window (from somewhere) with additional info: Parse error: parse error expecting T_STRING or T_VARIABLE or T_NUM_STRING in ioelmsrv.soda.php on line 287 I can't find were the above debug text is generated? Which 1/3 doesn't work as that would be helpful to know. Is the try/catch idea using assert ok? I like that but it's a bit advanced for me! Any ideas? - Kevin > The SODA PHP version isn't complete, it's about 2/3 translated code. ;-) > Have you got access to your web server's error log files? I know the Apache > server will report plenty of useful info from PHP such as line numbers, > error type, etc.. > > Leif > > ----- Original Message ----- > From: "Kevin" <ke...@ke...> > To: "Dynapi-Dev" <Dyn...@li...> > Sent: Wednesday, October 08, 2003 1:35 PM > Subject: [Dynapi-Dev] SODA php prort > > > > Hi, > > > > I was working on dynapi.util.datasource-paging.php as it didn't exist. > Then being able to > > choose the php or the asp version from the > dynapi.util.datasource-paging.html example! > > > > But does ioelmsrv.soda.php port work as I haven't a clue why things aren't > working. I > > only fixed the easy stuff in ioelmsrv.php perhaps there are problems with > wsDispatch? > > > > - > > Kevin > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > SourceForge.net hosts over 70,000 Open Source Projects. > > See the people who have HELPED US provide better services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://www.mail-archive.com/dyn...@li.../ > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Leif W <war...@us...> - 2003-10-10 14:12:53
|
I think I see what you're talking about. In IE6 in Win2k (all most recent updates), the MacIE layer bg color changes (onmousemove event is heard) even when the mouse is moving over the text, but this is not the case for the WinIE layer. It's like when the mouse cursor changes from an arrow to an I, then IE stops sending mousemove events. Not sure how to work around this, but at least I can verify. :) Leif ----- Original Message ----- From: "Daniel Tiru" <de...@ti...> To: <dyn...@li...> Sent: Friday, October 10, 2003 3:44 AM Subject: RE: [Dynapi-Dev] Layers and text > Hi Michael! > > Check out http://www.tiru.se/mobug.html > > What I get wierd is when using setBgColor() i think :) > > Check the example and you will c :) > > /Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On Behalf Of Michael > Bystrom > Sent: den 10 oktober 2003 08:15 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Layers and text > > > Show me with code what you mean! > > obj = dynapi.document.addChild( new DynLayer() ) > Etc... > > > I usually can fix mac things > Michael > > > > Den 03-10-10 08.05, skrev "Daniel Tiru" <de...@ti...>: > > > Hello developers! > > > > I would need yor expertice right now... > > > > I have found something, maybee its by design in some way, but i doubt > > it. > > > > If you add text to a layer, and add a event listner to the layer, say > > on mouseover and you change layer no2 bgcolor. > > > > If you add a layer over the textlayer, make it transparant and change > > the event listner to listen to mouseover on the new layer you will > > notice that when you move your mouse over the text of the bottomlayer > > no onmouseover event will be sent. However if you move your mose > > outside the text it will. This is fixed by set the top layer to show a > > > color, thought... the problem is then that you wont see the text :) So > > > you have to add a transparent gif. > > > > So now you will tell me, skip the top layer and it will work fine!? > > Yepp, if using windows and ie (havent tried alot so far) its working > > fine. If using IE on Mac it dont. :( The default for mac is to add > > layer and add text, the text dont_inherit_the_properties of the layer, > > > but making a "Mac-text-layer" or something so it wont work in the > > first case. > > > > Do anyone have a solution to implent into the dynlayer.js that will > > solve this? > > > > Regards > > Daniel > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. See the people > who have HELPED US provide better services: Click here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |
From: Daniel T. <de...@ti...> - 2003-10-10 13:38:38
|
Hi Jacob, I would not call it intended :) I would call it a bug :) Regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Jacob Levy Sent: den 10 oktober 2003 15:35 To: dyn...@li... Cc: de...@ti... Subject: RE: [Dynapi-Dev] Layers and text Daniel With IE 6.0 on WinXP, the left rectangle changes color and the text stays visible when I move the mouse, and the right rectangle changes color but the text becomes invisible (hidden?) after the first mouse move. Is that the intended behavior? --JYL > Hi Michael! > > Check out http://www.tiru.se/mobug.html > > What I get wierd is when using setBgColor() i think :) > > Check the example and you will c :) > > /Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On Behalf Of Michael > Bystrom > Sent: den 10 oktober 2003 08:15 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Layers and text > > > Show me with code what you mean! > > obj = dynapi.document.addChild( new DynLayer() ) > Etc... > > > I usually can fix mac things > Michael > > > > Den 03-10-10 08.05, skrev "Daniel Tiru" <de...@ti...>: > >> Hello developers! >> >> I would need yor expertice right now... >> >> I have found something, maybee its by design in some way, but i doubt >> it. >> >> If you add text to a layer, and add a event listner to the layer, say >> on mouseover and you change layer no2 bgcolor. >> >> If you add a layer over the textlayer, make it transparant and change >> the event listner to listen to mouseover on the new layer you will >> notice that when you move your mouse over the text of the bottomlayer >> no onmouseover event will be sent. However if you move your mose >> outside the text it will. This is fixed by set the top layer to show >> a > >> color, thought... the problem is then that you wont see the text :) >> So > >> you have to add a transparent gif. >> >> So now you will tell me, skip the top layer and it will work fine!? >> Yepp, if using windows and ie (havent tried alot so far) its working >> fine. If using IE on Mac it dont. :( The default for mac is to add >> layer and add text, the text dont_inherit_the_properties of the >> layer, > >> but making a "Mac-text-layer" or something so it wont work in the >> first case. >> >> Do anyone have a solution to implent into the dynlayer.js that will >> solve this? >> >> Regards >> Daniel >> > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. See the people > who have HELPED US provide better services: Click here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. See the people > who have HELPED US provide better services: Click here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Jacob L. <jy...@mo...> - 2003-10-10 13:35:14
|
Daniel With IE 6.0 on WinXP, the left rectangle changes color and the text stays visible when I move the mouse, and the right rectangle changes color but the text becomes invisible (hidden?) after the first mouse move. Is that the intended behavior? --JYL > Hi Michael! > > Check out http://www.tiru.se/mobug.html > > What I get wierd is when using setBgColor() i think :) > > Check the example and you will c :) > > /Daniel > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...] On Behalf Of Michael > Bystrom > Sent: den 10 oktober 2003 08:15 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] Layers and text > > > Show me with code what you mean! > > obj = dynapi.document.addChild( new DynLayer() ) > Etc... > > > I usually can fix mac things > Michael > > > > Den 03-10-10 08.05, skrev "Daniel Tiru" <de...@ti...>: > >> Hello developers! >> >> I would need yor expertice right now... >> >> I have found something, maybee its by design in some way, but i doubt >> it. >> >> If you add text to a layer, and add a event listner to the layer, say >> on mouseover and you change layer no2 bgcolor. >> >> If you add a layer over the textlayer, make it transparant and change >> the event listner to listen to mouseover on the new layer you will >> notice that when you move your mouse over the text of the bottomlayer >> no onmouseover event will be sent. However if you move your mose >> outside the text it will. This is fixed by set the top layer to show a > >> color, thought... the problem is then that you wont see the text :) So > >> you have to add a transparent gif. >> >> So now you will tell me, skip the top layer and it will work fine!? >> Yepp, if using windows and ie (havent tried alot so far) its working >> fine. If using IE on Mac it dont. :( The default for mac is to add >> layer and add text, the text dont_inherit_the_properties of the layer, > >> but making a "Mac-text-layer" or something so it wont work in the >> first case. >> >> Do anyone have a solution to implent into the dynlayer.js that will >> solve this? >> >> Regards >> Daniel >> > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. See the people > who have HELPED US provide better services: Click here: > http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Daniel T. <de...@ti...> - 2003-10-10 07:44:42
|
Hi Michael! Check out http://www.tiru.se/mobug.html What I get wierd is when using setBgColor() i think :) Check the example and you will c :) /Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Michael Bystrom Sent: den 10 oktober 2003 08:15 To: dyn...@li... Subject: Re: [Dynapi-Dev] Layers and text Show me with code what you mean! obj = dynapi.document.addChild( new DynLayer() ) Etc... I usually can fix mac things Michael Den 03-10-10 08.05, skrev "Daniel Tiru" <de...@ti...>: > Hello developers! > > I would need yor expertice right now... > > I have found something, maybee its by design in some way, but i doubt > it. > > If you add text to a layer, and add a event listner to the layer, say > on mouseover and you change layer no2 bgcolor. > > If you add a layer over the textlayer, make it transparant and change > the event listner to listen to mouseover on the new layer you will > notice that when you move your mouse over the text of the bottomlayer > no onmouseover event will be sent. However if you move your mose > outside the text it will. This is fixed by set the top layer to show a > color, thought... the problem is then that you wont see the text :) So > you have to add a transparent gif. > > So now you will tell me, skip the top layer and it will work fine!? > Yepp, if using windows and ie (havent tried alot so far) its working > fine. If using IE on Mac it dont. :( The default for mac is to add > layer and add text, the text dont_inherit_the_properties of the layer, > but making a "Mac-text-layer" or something so it wont work in the > first case. > > Do anyone have a solution to implent into the dynlayer.js that will > solve this? > > Regards > Daniel > ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Dynapi-Dev mailing list Dyn...@li... http://www.mail-archive.com/dyn...@li.../ |
From: Michael B. <mi...@mi...> - 2003-10-10 06:14:57
|
Show me with code what you mean! obj = dynapi.document.addChild( new DynLayer() ) Etc... I usually can fix mac things Michael Den 03-10-10 08.05, skrev "Daniel Tiru" <de...@ti...>: > Hello developers! > > I would need yor expertice right now... > > I have found something, maybee its by design in some way, but i doubt it. > > If you add text to a layer, and add a event listner to the layer, say on > mouseover and you change layer no2 bgcolor. > > If you add a layer over the textlayer, make it transparant and change the > event listner to listen to mouseover on the new layer you will notice that > when you move your mouse over the text of the bottomlayer no onmouseover event > will be sent. However if you move your mose outside the text it will. This is > fixed by set the top layer to show a color, thought... the problem is then > that you wont see the text :) So you have to add a transparent gif. > > So now you will tell me, skip the top layer and it will work fine!? Yepp, if > using windows and ie (havent tried alot so far) its working fine. If using IE > on Mac it dont. :( The default for mac is to add layer and add text, the text > dont_inherit_the_properties of the layer, but making a "Mac-text-layer" or > something so it wont work in the first case. > > Do anyone have a solution to implent into the dynlayer.js that will solve > this? > > Regards > Daniel > |
From: Daniel T. <de...@ti...> - 2003-10-10 06:05:50
|
Hello developers! I would need yor expertice right now... I have found something, maybee its by design in some way, but i doubt it. If you add text to a layer, and add a event listner to the layer, say on mouseover and you change layer no2 bgcolor. If you add a layer over the textlayer, make it transparant and change the event listner to listen to mouseover on the new layer you will notice that when you move your mouse over the text of the bottomlayer no onmouseover event will be sent. However if you move your mose outside the text it will. This is fixed by set the top layer to show a color, thought... the problem is then that you wont see the text :) So you have to add a transparent gif. So now you will tell me, skip the top layer and it will work fine!? Yepp, if using windows and ie (havent tried alot so far) its working fine. If using IE on Mac it dont. :( The default for mac is to add layer and add text, the text dont_inherit_the_properties of the layer, but making a "Mac-text-layer" or something so it wont work in the first case. Do anyone have a solution to implent into the dynlayer.js that will solve this? Regards Daniel |
From: Kevin <ke...@ke...> - 2003-10-09 17:36:55
|
Hi, To unsubscribe from dynapi lists go to: http://sourceforge.net/mail/?group_id=5757 Click the list link you wish to unsubscribe from. You need your subscription email and type it in the field next to the "Edit Options" button then click the button. On the next page you will need your password and type it in the "Password" field and click the "Unsubscribe" button. - Kevin ----- Original Message ----- From: "Leif W" <war...@us...> To: "DynAPI-Dev" <dyn...@li...> Sent: Thursday, October 09, 2003 5:02 PM Subject: [Dynapi-Dev] Mailing list footer unsubscribe info? > I've noticed a few of these messages in the past few weeks, and if I wanted > to unsubscribe I think it's not that easy, unless I saved the initial > subscription confirmation email from many months ago. Is there any way we > can put a footer message at the end of each mail sent to the list, with some > instructions on how to unsubscribe? That would hopefully reduce the > "unsubscribe me please" line noise. > > Here's the format used on the moderate traffic list Apache users group. > > --------------------------------------------------------------------- > 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... > > Something like this would be nice. > > -----------separator------------------- > One-line description of list. > URL for list info. > Unsubscribe instructions. > Help instructions. > > > Leif > > > > ----- Original Message ----- > > From: donnaMarie glischinski > > To: dyn...@li... > > Sent: Wednesday, October 08, 2003 8:34 PM > > Subject: Re: [Dynapi-Help] IOElement and cross domain urls > > > > > > plaese don't send my anything anymore > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ |
From: Raymond I. <xw...@ya...> - 2003-10-09 17:32:49
|
--- Kevin <ke...@ke...> wrote: > I used to get spam on the Dynapi-Help list and > others. So > only on the Dynapi-Dev one now which seems spam > free. > Perhaps some nice person is cleaning it up for us? All spams now goes to the admin section before for review. The aministrator will then have to handle all the spams. Robert was the one who got the spam filter thing working. Many thanks to Robert for helping us out -- Raymond Irving > - > Kevin > > ----- Original Message ----- > From: "Michael Bystrom" <mi...@mi...> > To: <dyn...@li...> > Sent: Thursday, October 09, 2003 11:00 AM > Subject: Re: [Dynapi-Dev] E mail system > > > > > > Well I double checked it's not going to > [Dynapi-Dev] > > It's going through [Dynapi-Widgetdev] > > > > Michael > > > > > > > Hi Michael! > > > > > > I havent got any spam trought the list for > ages.. > > > > > > /Daniel > > > > > > -----Original Message----- > > > From: dyn...@li... > > > [mailto:dyn...@li...] > On Behalf Of Michael > > > Bystrom > > > Sent: den 9 oktober 2003 09:17 > > > To: dyn...@li... > > > Subject: [Dynapi-Dev] E mail system > > > > > > > > > Why is there so much span mail going through > this dynapi list server ??? > > > > > > Michal > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback > Program. > > SourceForge.net hosts over 70,000 Open Source > Projects. > > See the people who have HELPED US provide better > services: > > Click here: http://sourceforge.net/supporters.php > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > > http://www.mail-archive.com/dyn...@li.../ > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > SourceForge.net hosts over 70,000 Open Source > Projects. > See the people who have HELPED US provide better > services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |