You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(66) |
Feb
(52) |
Mar
(88) |
Apr
(27) |
May
(17) |
Jun
(18) |
Jul
(5) |
Aug
(12) |
Sep
(4) |
Oct
(4) |
Nov
(3) |
Dec
(3) |
2002 |
Jan
(6) |
Feb
|
Mar
|
Apr
(1) |
May
(5) |
Jun
(8) |
Jul
(8) |
Aug
(5) |
Sep
(8) |
Oct
(16) |
Nov
(6) |
Dec
(4) |
2003 |
Jan
(9) |
Feb
(5) |
Mar
(7) |
Apr
(6) |
May
(7) |
Jun
(12) |
Jul
(15) |
Aug
(17) |
Sep
(12) |
Oct
(16) |
Nov
(29) |
Dec
(27) |
2004 |
Jan
(65) |
Feb
(120) |
Mar
(50) |
Apr
(36) |
May
(21) |
Jun
(11) |
Jul
(20) |
Aug
(16) |
Sep
(11) |
Oct
(25) |
Nov
(22) |
Dec
(36) |
2005 |
Jan
(11) |
Feb
(25) |
Mar
(41) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Humberto G. <gon...@ma...> - 2006-01-19 19:48:23
|
<BODY><P>Here are the steps I used to create a widget:</P> <P><STRONG>Step1:</STRONG> Create a folder (<STRONG>../src/mywidgets</STRONG>) for the widgets</P> <P><STRONG>Step 2:</STRONG> Create a widget and save it as <STRONG>../src/mywidgets/myfirstwidget.js</STRONG></P> <P><FONT style="BACKGROUND-COLOR: palegoldenrod">function MyFirstWidget(text) {<BR> this.DynLayer = DynLayer;<BR> this.DynLayer(text);<BR> alert(text);<BR>}<BR></FONT><FONT style="BACKGROUND-COLOR: palegoldenrod">var p = dynapi.setPrototype('DynLayer','MyFirstWidget');</FONT></P> <P><STRONG>Step3:</STRONG> Add the codes below to the <STRONG>../src/ext/packages.js</STRONG> file</P><PRE><FONT style="BACKGROUND-COLOR: palegoldenrod">var p = dynapi.libary.path;<BR>dynapi.library.addPackage('dynapi.mywidgets',p);<BR>dynapi.library.add('dynapi.mywidgets.MyFirstWidget','myfirstwidget.js','DynLayer');<BR></FONT></PRE><PRE><STRONG>Step 4:</STRONG> Create an HTML document and save it to the <STRONG>examples</STRONG> folder</PRE><PRE><FONT style="BACKGROUND-COLOR: palegoldenrod"><html><BR><head><title>My First Widget</title><BR><script language="Javascript" src="../src/dynapi.js"></script><BR><script language="Javascript"><BR> dynapi.library.setPath('../src/');<BR> dynapi.include('dynapi.api');<BR> dynapi.include('dynapi.mywidgets.MyFirstWidget');<BR></script><BR><script language="Javascript"><BR><BR>dynapi.document.addChild(new MyFirstWidget('Ok');<BR></script><BR> </head><BR><body><BR></body><BR></html></FONT></PRE><PRE><FONT style="BACKGROUND-COLOR: white">However, the following error occurs: <FONT color=red>dynapi.document is null or not an object</FONT></FONT></PRE></BODY> |
From: Leif W <war...@us...> - 2005-11-15 11:53:19
|
> From: "A P" <the...@gm...> > Sent: 2005 November 15 Tuesday 00:39 > > hopefully this time it will get posted ! Posted without any intervention! I discarded the other that is contained herein. >> From: A P <the...@gm...> >> Date: Nov 15, 2005 12:26 AM >> 1) yes..I did try it out :-) ...but did not work for me. >> According to this document : >> http://www.enomaly.net/dynapi/docs/docs/examples.htmlcomponents.html We keep a copy of the releases at http://dynapi.sourceforge.net/releases/ and also the CVS version (dynapi3x). Current is 3.0.0-beta2. >> this may or may not work.. >> I tried adding a HTMLButton as to the document directly but it dit >> not work.. >> >> I guess I will spend some time on this...else I will work out some >> basic widgets myself >> and see if I can drag&Drop them on my workspace layer Sorry I'm not much help at the moment. I'm doing some major drive and data shuffling at home this week, so I can't readily access anything for tests. I hope to be done with data migration today and begin OS setup and have that working tommorrow. But we'll see. Leif |
From: A P <the...@gm...> - 2005-11-15 05:39:12
|
hopefully this time it will get posted ! ---------- Forwarded message ---------- From: A P <the...@gm...> Date: Nov 15, 2005 12:26 AM Subject: Re: [DynAPI-WidgetDev] HTMLWidgets and drag-drop question To: dyn...@li... Hi Leif , thanks for replying.... I think I *am* subsribed to the list...thats where I have addressed this ..and the manual request also threw me off...dont know what happened... Anyway , I hope this one goes thru ! Regarding your suggestions : 1) yes..I did try it out :-) ...but did not work for me. According to this document : http://www.enomaly.net/dynapi/docs/docs/examples.htmlcomponents.html this may or may not work.. I tried adding a HTMLButton as to the document directly but it dit not work= .. I guess I will spend some time on this...else I will work out some basic widgets myself and see if I can drag&Drop them on my workspace layer thanks Pat On 11/14/05, Leif W <war...@us...> wrote: > > From: "A P" <the...@gm...> > > Sent: 2005 November 14 Monday 18:19 > > > > > Hi All , > > > > I have been playing with the latest 3.0 beta and am highly impressed ! > > I would like to use DynAPI Objects to create a online IDE for basic > > Page layout design... > > I am sure there are some there but there are too complex for what I am > > trying to do. > > > > My question is : Can I use the HTML* Widgets *outside* the > > TemplateManager ? > > Hmm, I check in dynapi/src/ext/packages.js and don't see any > dependencies. I double check in dynapi/examples/ and I don't see any > dependencies, except for the "Image Frame" example. My wild guess is > that they're independent. But try it and see! > > > I dont want to create a template . All I want is a layer on which I > > can drag and drop the HTML* widgets on to it. > > Basically I want to create a "pallette" of few HTML Widgets ( > > textbox,dropdowns,buttons etc) > > and then drag-drop them onto a "workspace" layer. > > > > Hence , there wont be any TemplateManager. Is this supported ? Can I > > do this without using any template ? My next question is : is > > drag&drop supported with these HTML* widgets ? > > Hmm, well, widgets are objects, create instances, tweak properties, ok. > But to get back the source? Hmm. Since you're trying something new, > make it a new widget built upon existing widgets. Your Pallette widget > might be the interface, with buttons or menu options to create and > destroy instances of other objects. And the workspace area is where you > can combine elements, configure, and I am guessing that eventually > you'll want to export things. > > > Otherwise I will have to create my own version of the HTML Widgets > > using DynLayers...hate to start from there as there is such a good > > library present. :-) > > > > What I am trying to achieve is a very basic HTML Page builder where a > > user can drag a HTML widget on the workspace and edit the properties.. > > This will be later used for code generation to generate the backend > > code for any UI framework.. > > It sounds like an interesting idea! Try some things, one step at a > time, and build upon that. If you get something satisfactory, share it. > > > thanks for any suggestions.. > > Pat > > Subscribe to the list, so your posts do not get delayed by manual > approval, which is also a risk for being mistaken as spam, as I quickly > go through the lists every day and this is only the 2nd mail this year > that was not subscribed and was in fact not spam, versus the several > hundred spams. ;-) > > > Leif > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the JBoss Inc. Get Certified Today > Register for a JBoss Training Course. Free Certification Exam > for All Training Attendees Through End of 2005. For more info visit: > http://ads.osdn.com/?ad_id=3D7628&alloc_id=3D16845&op=3Dclick > _______________________________________________ > DynAPI-WidgetDev mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > |
From: Leif W <war...@us...> - 2005-11-15 04:45:07
|
> From: "A P" <the...@gm...> > Sent: 2005 November 14 Monday 18:19 > > Hi All , > > I have been playing with the latest 3.0 beta and am highly impressed ! > I would like to use DynAPI Objects to create a online IDE for basic > Page layout design... > I am sure there are some there but there are too complex for what I am > trying to do. > > My question is : Can I use the HTML* Widgets *outside* the > TemplateManager ? Hmm, I check in dynapi/src/ext/packages.js and don't see any dependencies. I double check in dynapi/examples/ and I don't see any dependencies, except for the "Image Frame" example. My wild guess is that they're independent. But try it and see! > I dont want to create a template . All I want is a layer on which I > can drag and drop the HTML* widgets on to it. > Basically I want to create a "pallette" of few HTML Widgets ( > textbox,dropdowns,buttons etc) > and then drag-drop them onto a "workspace" layer. > > Hence , there wont be any TemplateManager. Is this supported ? Can I > do this without using any template ? My next question is : is > drag&drop supported with these HTML* widgets ? Hmm, well, widgets are objects, create instances, tweak properties, ok. But to get back the source? Hmm. Since you're trying something new, make it a new widget built upon existing widgets. Your Pallette widget might be the interface, with buttons or menu options to create and destroy instances of other objects. And the workspace area is where you can combine elements, configure, and I am guessing that eventually you'll want to export things. > Otherwise I will have to create my own version of the HTML Widgets > using DynLayers...hate to start from there as there is such a good > library present. :-) > > What I am trying to achieve is a very basic HTML Page builder where a > user can drag a HTML widget on the workspace and edit the properties.. > This will be later used for code generation to generate the backend > code for any UI framework.. It sounds like an interesting idea! Try some things, one step at a time, and build upon that. If you get something satisfactory, share it. > thanks for any suggestions.. > Pat Subscribe to the list, so your posts do not get delayed by manual approval, which is also a risk for being mistaken as spam, as I quickly go through the lists every day and this is only the 2nd mail this year that was not subscribed and was in fact not spam, versus the several hundred spams. ;-) Leif |
From: A P <the...@gm...> - 2005-11-14 23:19:18
|
Hi All , I have been playing with the latest 3.0 beta and am highly impressed ! I would like to use DynAPI Objects to create a online IDE for basic Page layout design... I am sure there are some there but there are too complex for what I am trying to do. My question is : Can I use the HTML* Widgets *outside* the TemplateManager= ? I dont want to create a template . All I want is a layer on which I can drag and drop the HTML* widgets on to it. Basically I want to create a "pallette" of few HTML Widgets ( textbox,dropdowns,buttons etc) and then drag-drop them onto a "workspace" layer. Hence , there wont be any TemplateManager. Is this supported ? Can I do this without using any template ? My next question is : is drag&drop supported with these HTML* widgets ? Otherwise I will have to create my own version of the HTML Widgets using DynLayers...hate to start from there as there is such a good library present. :-) What I am trying to achieve is a very basic HTML Page builder where a user can drag a HTML widget on the workspace and edit the properties.. This will be later used for code generation to generate the backend code for any UI framework.. thanks for any suggestions.. Pat |
From: Leif W <war...@us...> - 2005-04-05 17:01:59
|
Hello, Many of you may have subscribed to this list ages ago. The list has not bee maintained for a few years. I've locked down the mailing list to reduce and hopefully eliminate spam messages. There is new activity with the DynAPI project. If you are interested in learning more, check out last month's discussion on DynAPI-Dev and this months discussions on DynAPI-Admin mailing lists. If you want to unsubscribe, follow the link below and try and do it yourself. Send a message to Dyn...@li... with "help" in the subject or body, without the quotes. You'll probably need to reset your password to be able to unsubscribe yourself. If all else fails, contact me, send a copy of the entire email as you receive it, full headers, and I'll remove you from the list, no problem. Leif |
From: Leif W <war...@us...> - 2004-04-25 16:30:05
|
Here's my response (forgot to send to list). ----- Original Message ----- From: "Leif W" <war...@us...> To: ""Parmeshwar Arewar"" <dre...@ya...> Sent: Sunday, April 25, 2004 12:21 PM Subject: Re: [[Dynapi-Widgetdev] plz unsubscribe me] > Actually, disregard the GNU Mailman docs, as SourceForce has things set > up differently. The email from SourceForge (obtained by sending an > email to dyn...@li... with subject > "help" [without quotes]) explains how to unsubscribe by email. > > Send this command (as the subject line) to the same *-request* address. > If you lost your password, go to > https://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev and > request your password to be sent to you. > > unsubscribe <password> [address] > > Unsubscribe from the mailing list. Your password must match > the one you gave when you subscribed. If you are trying to > unsubscribe from a different address than the one you > subscribed from, you may specify it in the 'address' field. > > Leif > > ----- Original Message ----- > From: "Leif W" <war...@us...> > To: "Parmeshwar Arewar" <dre...@ya...> > Sent: Sunday, April 25, 2004 9:59 AM > Subject: Re: [[Dynapi-Widgetdev] plz unsubscribe me] > > > Hello, > > You can unsubscribe yourself. It is explained in multiple locations: 1) > in an > email when you subscribe, and 2) at the GNU Mailman website (read the > GNU > Mailman docs). I have just created a Hotmail account, subscribed and > unsubscribed myself successfully. > > 1) If you still have your original subscription emails, you are told two > ways > how to unsubscribe: > > https://lists.sourceforge.net/lists/options/dynapi-widgetdev/dream_param%40yahoo.co.in > > OR > > Send an email to dyn...@li... with the > word > "help" (without quotes) in the subject, or message body. The help email > will > have all the information you need. > > If you don't have the original email, it is a trivial matter to do what > I just > did: create a temporary hotmail account, subscribe, and read the > instructions. > > 2) http://www.list.org/mailman-member/node14.html > > So send email from the account which is subscribed (this is important!), > to > dyn...@li... . > > Remember, if you have subscribed to more than one list, you will have to > unsubscribe from each list. Just change the list name in the email TO > or URL > example. > > > Leif > > Parmeshwar Arewar <dre...@ya...> wrote: > > > R/s, > > I'm no more intersted inyour group. > > Plz unsubscribe me.. > > Parmeshwar > > > > > > Parmeshwar M.Arewar > > BE(IT) > > S.G.G.S.College Of Engg. & Tech., > > Vishnupuri,Nanded-431606 > > > > > > > > Yahoo! India Matrimony: Find your partner online. > |
From: Wofong Z. <zhe...@ya...> - 2004-04-14 14:06:43
|
Hi all, I have implemented a tree menu widget which looks similar as the file explorer in windows. I have tested on IE6.0 and Netscape7.1, and it looks ok for me. The link is as following: http://www.geocities.com/gsqrjws/treetest.html The issue remained is the image loading and source code compressing. Viewing the tree locally wouldn't be any problem, while viewing via internet would be a bit problem if the network is lag. cheers, huafeng __________________________________ Do you Yahoo!? Yahoo! Tax Center - File online by April 15th http://taxes.yahoo.com/filing.html |
From: <adv...@eo...> - 2004-02-10 05:25:24
|
Your mail to 'Advanced-swing' with the subject Hello Is being held until the list moderator can review it for approval. The reason it is being held: Post by non-member to a members-only list Either the message will get posted to the list, or you will receive notification of the moderator's decision. |
From: <own...@LI...> - 2004-02-07 21:06:52
|
--> Error description: Error-For: K12...@LI... Error-Code: 3 Error-Text: No such list. Error-End: One error reported. |
From: <Pos...@Ca...> - 2004-02-07 12:17:01
|
****** Message from InterScan E-Mail VirusWall NT ****** Sent >>> RCPT TO: <mi...@be...> Received <<< 550 Invalid recipient: <mi...@be...> Could not deliver mail to this user. mi...@be... ***************** End of message *************** |
From: <gz...@ey...> - 2004-02-07 06:20:14
|
值此新春之际,视点网(http://www.163j.com)全面推出特价服务: [ 虚拟主机 ] 普及A型 50M空间 60元/年 纯HTML空间 经济A型 100M空间 140元/年 支持ASP 标准A型 200M空间 240元/年 支持ASP、ACCESS 专业A型 320M空间 560元/年 支持ASP、ACCESS、MSSQL …… [ 域名注册 ] 国际域名 80元/年 .com/.net/.org 国内域名 220元/年 .cn/.com.cn/.net.cn/.org.cn …… 更多详细资料,请访问视点网:http://www.163j.com 热线电话:020-38900002 ---------------------------------------------------------- 如果您不希望收到本邮件,请到这里退订:http://view.remove.cn 2004-02-14 11:47:01 |
From: <MAI...@IW...> - 2004-02-01 17:18:38
|
WARNING: The email with the above subject heading contained a virus which could not be cleaned. Please contact your network administrator |
From: postmaster - 2004-01-31 10:17:21
|
Sender, InterScan has detected virus(es) in your e-mail attachment. Date: Sat, 31 Jan 2004 12:17:46 +0200 Method: Mail From: <dyn...@li...> To: je...@ba... File: document.bat Action: deleted Virus: WORM_MYDOOM.A |
From: Info W. B. <inf...@bo...> - 2004-01-31 05:40:47
|
Dear Sirs, Please read this letter through up to the end. In this letter we offer you mutually advantageous co-operation. Having opened in Azerbaijan representation or branch of your Company you can reach still the big successes in business. Below we present you advantages of Azerbaijan before other countries: 1.Last ten years the greatest quantity of investments among the countries CIA has been enclosed in Azerbaijan. Now many foreign companies there are in Azerbaijan. 2.Costs in Azerbaijan it is much less, than in other CIA countries. The rent, habitation, the ground payments, energy, taxes, telecommunication services, a labour, construction works is much cheaper than in CIA countries. 3.Azerbaijan it is rich country with ground and underground resources, and in many areas there are no competitions. 4.Azerbaijan is a gate to Asia and Europe, is in the center of the Great Silk way. 5.Being in Azerbaijan you can easily leave on the markets of other CIA countries. 6.Our company can advertise your goods and services between more than 100 million users and companies. 7.The main thing in Azerbaijan it is stability and the foreign companies have a comprehensive support at a level of the state Government. At last ten years many foreign companies have achieved the big successes in Azerbaijan. 8.Azerbaijan it is rich also with natural resources, here there are nine of eleven climatic zones existing in the world. If you want to make sure and to see everything by your own eyes, we invite you to visit our country and to open here the representation. We are always ready to co-operation with you and ready to help you. We are ready to represent here your companies interests. Please send your offers on our e-mail address: g_...@az... With thanks and best regards, ACE Group g_...@az... |
From: <sea...@li...> - 2004-01-27 17:05:54
|
›œû®«Õ%&$›ÄXÝ^¡ ‚¦äïyÀ“Ÿ«‚LV”I¹Å\d‹Œç‰;5avH¾.“ ø„›P,ûž±Écäwj1ÃÉ`Nb;uª¨`£Þfb¯”"ó-ؘ.· ,É-˜}ëÛëvç#̆ÎÉQdbhH®vŸ…vßœ¿R-ƒ“Þ‡g]7q3Zuòù£Œõò UW(ø _~º<-ò”Ó®]“ W BÏ•Aìë:×ÔòúH}oN‹M^Ê ©ÆæA3<C¸f¢Bä3"]aòóÁ¥ÔÇmñF¤ÌÞó¸²W*¹ÈG)ß—G·¹r÷‚iÖšë“-FÄAÔ>Î%šŸ”½z‡~Ź*ˆR¦±¢ÙÊšÆÊ“£&t±ˆ5WHì)–}|xˆ&mê› úÆ-õ\i¦]洆ЖáOZAƒšïƒk¯ZòÕúNZ a ¿bìâ_óOëoÅB•ZìS´;øZä¼ÙN ½&ÆM¿®ÏðxôeC vµ†¶Wš±OÉ`Ï›ŠeK!Úø{ôÁßÞÔb'8xÞˆ4v”P)|~hš·‚ÎÎDóWŽuoNb|zËs«´°?’À ìã½Ø ’Ãm>ê.'gV?“2£„¨ˆáÝÃÍfFB“8tÖ~‚6PÌ'v¢eT:'½¡0Ý„4EXc‚v#h)a’ô/‡º•ÞI0¡…þ;Ù×w‡ÛºfÑ|k˜•H{“;Õ‘Mò,:beÚÕï—©¾¸w²nŽfaW<õ_{'bŠÏ$³õ Õ{Tª93þeüm‘¨©®2ó´Q•dpÂÊÀtôÛi"‡ûܦŸµt¿_—`Ÿ¾ž~Hu;_mc|ÛÂ?‰‹J(8ó0s-–SjN „Œ³ÝÍž% wleÓ‘*õ‡»—;bÙ¹Šl^×,gFÐ,SÙ{¢[åûµH¦îví§øÌ©¦øïÇÁ3<÷$\·÷~rÝàGYiìÎ ª¤†ò|uj›LÄ%²!‚Gþlüçi¨šÕiJ†ù{½Rœ†\(JRFÑ¢?0Y¾ÔñÀÉ_žòý‹ù/ñF”»¬¾¼NÍñÙVˆ´µôå~w~L¿ÊeÀd÷m&%’ *\SV„™ Ä ©K‚hØÉ\vìöï·¶¡\…®":{©–[5CÓh:Dr-»hˆñ‘¡ m¿H °)ÃrûõÔ;T^ìdû'ÂËŠ#l%Py4§ÄÓdÝ÷Üò†˜öçq{•ØÚ&µ}ÜS% °ùûü‹tïjO’úSÆxÊö¿¬¥½Û :þN³«´5Îo¹>Tƒgb‘}û ?V}Š\¯©ôI¯ã¢Ë2Dƒ¡ùߪã’å«xd¾Ç]l¾ÝmòS~O ¬MP’¨¶µ¤XæÞÐÏîó¬¦D^ízBMðk¤34>(Wü‘ç‡^“d6éj^°]”{ÖL° ¥ÂxWˆR‹²R.‡"\ÈÝÛ½ãüm0æê<yqI$•±b¢yÊKJî05eØô'Ñ™²”*ÝÛA\S²M,„Ü 4_äå‘èF®Æj“îÎ.26X5ñ P¾X`Ck!4*’-d÷ôTNµÃÒ9Êx’þ‰»†YJ|!á§Âàu³ÁlüaÞRcãWœÏêdÔMž?|ÌHÄüÍrÇän50&•ùŒšŽ1!¢ËãìwCéäã7sž‡Š™Js•? ÜiÚ˜¦ßÁVš^–*´‡,Îot"".gþ멸½Ÿ{dïíðaZ‹CÙöŒ#ÏžI|)¯ú¦Jr÷±»½ûÌ}$ç¼ÛàRƘŒ÷BêB ˵å,p°Ž4ç)¾ž¾rçà8AΉm6®R`î šùùëŠÖ¤ÔìÇÀžO;ùÀ«Z¨ a˜3S—mñ†pÊ2«GkÁSw/.¡®ÈöqÄg¸xm’Ê×ÚÇà¾~dz÷AØCç×Fj¤Ije(g?ôÏBãÛ۱߳QÌØ›yƒ?^ñÏDÁf}Jp\rñÍí¶‹´ü„O‡EtʤÔÃn_1²3r\¬]2ü¹Ñ·µ #’}#¥ôK¤No'uœ3Ñ*çl#–g¶V„8O~C|ø{c3v<Ä/Ç_´ÕÕT•µÈ° Ïß•ÜÊœ_ é½U¼á$ÁáGÇv[F ?.›¾é§å³(Wœ°>ò5Zð)^[w¿ã4÷ðÄca… –ùI½YyÊ ¨Ø¡kó*Õ¦uË6 YúHw¦ìOõþ»‡S¤D ÖPã©Ú$Úf;±_³&«±åXBuÀöí'¨'qsÈm¼VñBŠ`EWÜC«4BÛËŸ ðžæq⿪ä0Íq¡æQ»§]] Pw,‘’È nH×FlŒ„évÔÞÕ_kÀj`¹]Æau’ü$Ba}†ÎAêx »U ût¸ôpYÞ$4Oè^¼r±ËëF\9áØÇßêõÃÔ]–J"E§Þ3J6M‰©<¢¼—Øt§Œ•ÄòË×Ê0ËœÎÅ A±zi¨>lú$À-ž/ÛÛqsÌûöGÛø ½¯‰wÔÐO›þ½È„ÓÃ'Ý’øÕi7Xðò¨«#½s½ÉÐb–ì©ú‹á%}ÑîY‹aBjCÀ˜3ôI;… íHžg–º«¶Ñ ãÖ9,èà‰9~nTõãeþoç—B„ÑQ¦JµïÏe<‚:õÓ´ä§j’ZÈüËgôb!ɵ… |QQ\,8·Ž&`³7悽{ ’ç–ÑÄ`v±P³ºåíÁömâF9‹¼0™½šŽìlé_{>jGÅèÅv•¢Ä)oËHø ð^#±!º_£o-"2*D,3‰Uº0Äüß°Ïõvê(¨Ë%–0ˆÓEÏß8Ÿ°¯q¬RÄýv¬ ”®ëhŸPåÍøYi}xùMóò±{ÎDPQ?…iÛ„î`>2IF3¥,ÈN4>à jBV׬OŒZd<ùüÈ .ËL±NèüÀ›žYñ-ž¨"6H%8ÍÊ`§%¤ ó[ðÌÚikX Úé/&ñ(í¹ïÉ8ÁŽ'ˆ”vû%VÊ9>÷dbc&$h#‡˜ñ™N³ çIò|3†y)Å |
From: <her...@ya...> - 2004-01-27 13:29:09
|
The message cannot be represented in 7-bit ASCII encoding and has been sent as a binary attachment. |
From: Leif W <war...@us...> - 2003-10-09 17:10:43
|
(Sorry if you get this multiple times). I tried going here ( http://cvs.sourceforge.net/viewcvs.py/dynapi/ ) just now, and after about 3 minutes, I got this messages in Mozilla Firebird: [Title] 502 Bad Gateway Bad Gateway The proxy server received an invalid response from an upstream server. Never saw that before. Something messed up at SourceForge. The developer access to cvs is working fine. When I try to login manually anonymously I get a connection refused: [Thu 10/09/2003@13:06:10.89] F:\temp\language\tmp -> "d:\Program Files\TortoiseCVS\cvs.exe" -d:pserver:ano...@cv...:/cvsroot /dynapi login Logging in to :pserver:ano...@cv...:2401:/cvsroot/dynapi CVS password: anonymous cvs [login aborted]: unrecognized auth response from cvs.sourceforge.net: M PserverBackend::PserverBackend() Connect (Connection refused) [Thu 10/09/2003@13:06:18.68] F:\temp\language\tmp -> Leif ----- Original Message ----- From: "Háber János" <bo...@co...> To: <dyn...@li...> Sent: Thursday, October 09, 2003 6:32 AM Subject: [Dynapi-Widgetdev] CVS access > Hi! > I try to use yesterday the SF.net CVS Browse but it's not work. Same as cvs > (native) acces... > > Any idea? > 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-Widgetdev mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > |
From: <bo...@co...> - 2003-10-09 10:33:17
|
Hi! I try to use yesterday the SF.net CVS Browse but it's not work. Same as cvs (native) acces... Any idea? Cow |
From: <bo...@co...> - 2003-10-01 14:38:58
|
Hi! The Dynapi 3.0 have list and label widget? (And tree) Cow |
From: <dre...@ya...> - 2003-06-29 05:08:15
|
Respected sir, I have studied widgets /examples from ur site..& have studied it from "netwindows.org"..but finding it too difficult..how can i efficiently debug the codes... If possible,i would like to have some efficient debugging techniques... Regards.. Parmeshwar Arewar B.E.(IT) S.G.G.S.COE&T,NANDED, MAHARASHTRA, COUNTRY:INDIA-431606 ________________________________________________________________________ Send free SMS using the Yahoo! Messenger. Go to http://in.mobile.yahoo.com/new/pc/ |
From: Dan W. <dy...@da...> - 2003-06-16 16:49:22
|
On Mon, 2003-06-16 at 11:45, Simon Hutchinson wrote: > Hi, > > Im brand new to Dynapi and have created a simple layer with a list added > as a child. > I have been trying and failing to change the font size of the text of > the list items. > > have tried using the css property of the layer (after it has been > written to the document) > > myLayer.css.fontSize = "2" Well, at least with css, that should be: myLayer.css.fontSize = "12pt"; (or whatever size, you can't use the sizes that you would use in the font tag. you have to do either point sizes, or percentages of the default size, say 2em (=200% for the fontsize at least) for twice the default size. > > and also the css property of the list. > > Can anybody please point me in the right direction. > > Cheers > > Si > -- Dan Willemsen <dy...@da...> |
From: Simon H. <sim...@mi...> - 2003-06-16 16:44:41
|
Hi, Im brand new to Dynapi and have created a simple layer with a list added = as a child. I have been trying and failing to change the font size of the text of=20 the list items. have tried using the css property of the layer (after it has been=20 written to the document) myLayer.css.fontSize =3D "2" and also the css property of the list. Can anybody please point me in the right direction. Cheers Si =20 =20 =20 =20 =20 --=20 =20 Merlin Information Systems Limited,=20 =20 Merlin House, Gawcott Road, Buckingham, United Kingdom. MK18 1TN =20 Tel: +44 (0) 1280 824331 Fax: +44 (0) 1280 824112 =20 =20 http://www.misgl.com =20 Provider of IT Services and Online Portal Support Services.=20 =20 =20 =20 Confidentiality: =20 The information contained in this email (including any attachments) is = confidential and is intended solely for the use of the named addressee. = Access, copying or re-use of the information in it by any other person = is not authorised. If you are not the intended recipient, please notify = us immediately by telephone or by e-mail to ad...@mi... =20 =20 =20 =20 *** This mail has been scanned for viruses *** =20 =20 |
From: Greg A. <gal...@Th...> - 2002-12-13 14:46:52
|
Does anyone know of an example of dragging a dynlayer across frames? I = noticed in the release notes for 2.5.6 that a related bug had been fixed = but I've never seen an example or test where this was done. I am using = the IE only dragDrop() for now which works great but to Netscape. Any = pointers appreciated. In case anyone reads this who worked on DynAPI I = really like this library. I have learned a ton from studying the code! Greg Aldridge |
From: Greg A. <gal...@Th...> - 2002-12-09 20:50:40
|
Does anyone know if calendar.js has been modified for dynapi2? If not we = are going to do it but don't want to repeat completed work. Thanks. Greg Aldridge |