ajax-user Mailing List for Ajax - A-quality JAva eXtensions
Brought to you by:
vamp201
You can subscribe to this list here.
2003 |
Jan
(3) |
Feb
|
Mar
|
Apr
(5) |
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joaquin H. <joa...@er...> - 2008-03-31 15:06:34
|
Hi there I am trying to get a value form the mysql DB. I have in the highnumber.js: var high = new Ajax.Request('highnumberdb.php'); an in the highnumberdb.php: <?php $con = mysql_connect('127.0.0.1', '****', '*****'); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("*****", $con); $sql="SELECT MAX(cloneref) FROM com_clone_list"; $result = mysql_query($sql); $row = mysql_result($result,0); mysql_close($con); echo $row; ?> And my request never goes back to var high, why? (I also tried with return $row instead of echo $row) Thanks |
From: Arun <aru...@gm...> - 2007-10-14 04:17:05
|
Hi, I have an advertisement engine in my product. An Advertisement engine basically allows users to add advertisement to our site, and we will display it as the header on our site. I have an admin page which allows to enter all the required fields. I need to rotate the ads in a timely fashion. Also I would like to generate some javascript which can be pasted in any site and let others have our ads , if they had registered. And they can get money on a per click basis. Is there any Ajax utility api which can cover all these. -- Thanks Arun George |
From: wang s. <o-...@se...> - 2007-02-26 04:22:36
|
Hello I want to develop a GUI tool. It runs in server side. It looks like that it has a sheet with several cells like exele. When you drag the bottom of the cell, it can be extended. Who can tell me how I can develop it. Thank you very much in advance. Wang Suya wang suya |
From: wang s. <o-...@se...> - 2007-02-26 02:17:50
|
Hello I want to develop a GUI tool. It runs in server side. It looks like that it has a sheet with several cells like exele. When you drag the bottom of the cell, it can be extended. Who can tell me how I can develop it. Thank you very much in advance. Wang Suya wang suya |
From: Monte H. <mon...@gm...> - 2006-04-16 22:27:42
|
Thanks, Arnaud. I'll keep the sourceforge cssparser in mind for when my needs grow. As it turned out, my current project scope was simplified, and I wrote a small parser in javascript. --Monte Subject: RE: [ajax-user] CSS Parser and docs? Date: Fri, 14 Apr 2006 08:46:12 +0200 From: "Tamaillon Arnaud" To: "Monte Hayward" Cc: "Tamaillon Arnaud" Hello ! You could try cssparser ( http://sourceforge.net/projects/cssparser). It = =3D is far more compliant with the CSS format. However, the project seems =3D not to be maintained. It is less performant than Cypress (almost 10 =3D times slower), but it's because it handles much more of the CSS format =3D than Cypress. There are some things that could be enhanced in cssparser, = =3D but it does the work. Arnaud |
From: Tamaillon A. <Arn...@at...> - 2006-04-14 06:47:43
|
Hello ! =20 You could try cssparser ( http://sourceforge.net/projects/cssparser). It = is far more compliant with the CSS format. However, the project seems = not to be maintained. It is less performant than Cypress (almost 10 = times slower), but it's because it handles much more of the CSS format = than Cypress. There are some things that could be enhanced in cssparser, = but it does the work. =20 Arnaud -----Message d'origine----- De : aja...@li... = [mailto:aja...@li...]De la part de Monte = Hayward Envoy=E9 : jeudi 13 avril 2006 22:45 =C0 : aja...@li... Objet : [ajax-user] CSS Parser and docs? Does anyone know of a decent open-source utility for parsing CSS? I want to be able to parse a style sheet and extract attribute values by = attribute name. Something like this: CSSstylesheet css =3D new CSSstylesheet(" all.css"); Rule rules[] =3D css.getRules(); for(int i=3D0;i<rules.length();i++){ currRule =3D rules[i]; System.out.println(currRule.getSelector() + "\n" + = currRule.getAttributeValue("margin-left"));=20 } I tried Cypress, but found that there were about 20 classes with no = substantive javadocs or usage examples. The other CSS parser I found was distributed as a Windows DLL, which is = incompatible with the usage environment.=20 Thanks. --=20 Monte Hayward http://www.rootlet.blogspot.com=20 |
From: Monte H. <mon...@gm...> - 2006-04-13 20:44:35
|
Does anyone know of a decent open-source utility for parsing CSS? I want to be able to parse a style sheet and extract attribute values by attribute name. Something like this: CSSstylesheet css =3D new CSSstylesheet("all.css"); Rule rules[] =3D css.getRules(); for(int i=3D0;i<rules.length();i++){ currRule =3D rules[i]; System.out.println(currRule.getSelector() + "\n" + currRule.getAttributeValue("margin-left")); } I tried Cypress, but found that there were about 20 classes with no substantive javadocs or usage examples. The other CSS parser I found was distributed as a Windows DLL, which is incompatible with the usage environment. Thanks. -- Monte Hayward http://www.rootlet.blogspot.com |
From: <gam...@ma...> - 2005-12-17 22:07:46
|
Hello, I'm having a problem with passing non-ASCII parameters using XMLHttpRequest. The encoding of the page where the request is made is windows-1256, however, parameters are encoded differently when sent to the server using XMLHttpRequest. I've tried using escape() & encodeURIComponent() on the parameters before adding them to the URL, but it didn't help. escape() returns a unicode string, while encodeURIComponent() uses some other multibyte encoding. Instead of using XMLHttpRequest, I tried submitting the parameters using a form on the same page, and they were indeed sent in the page encoding (windows-1256). It seems that XMLHttpRequest has to be instructed to do something (or may be not do?) when sending the parameters, but I wasn't able to find anything relevant in its methods so far... Any help would be appreciated... TIA, Mahmoud Al Gammal ---------- This message was sent from a MailNull anti-spam account. You can get your free account and take control over your email by visiting the following URL. http://mailnull.com/ |
From: <jo...@da...> - 2005-11-23 07:02:36
|
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>JOB TITLE: <SPAN style="mso-spacerun: yes"> </SPAN>Web Developer</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT size=3><FONT face="Times New Roman">LOCATION:<SPAN style="mso-spacerun: yes"> </SPAN><st1:place w:st="on"><st1:City w:st="on">Mountain View</st1:City>, <st1:State w:st="on">CA</st1:State></st1:place></FONT></FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face="Times New Roman" size=3> </FONT></o:p></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>DESCRIPTION:</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>We are seeking highly-motivated software engineers for various positions developing web applications.<SPAN style="mso-spacerun: yes"> </SPAN>Look, there are some great big companies out there where you could have a nice easy job.<SPAN style="mso-spacerun: yes"> </SPAN>But if you eschew that mentality and seek an opportunity to get into the driver's seat, then this is the place you want to work.<SPAN style="mso-spacerun: yes"> </SPAN>Here you will have the opportunity to pioneer a whole new category of Internet applications for the enterprise and innovate with emerging web technologies.<SPAN style="mso-spacerun: yes"> </SPAN>If you believe creating great software requires "getting into the heart and mind of the user," then let us know why you think you're the best candidate for this unique opportunity.</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face="Times New Roman" size=3> </FONT></o:p></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>We are a VC-backed stealth-mode startup headquartered in <st1:place w:st="on"><st1:City w:st="on">Mountain View</st1:City>, <st1:State w:st="on">CA</st1:State></st1:place>.</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face="Times New Roman" size=3> </FONT></o:p></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>EXPERIENCE:</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* Java Servlet/JSP or equivalent</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><SPAN lang=FR style="mso-ansi-language: FR"><FONT size=3><FONT face="Times New Roman">* Web technologies (HTML, AJAX, DHTML, JavaScript, CSS)<o:p></o:p></FONT></FONT></SPAN></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* Persistence layer experience (e.g. Hibernate)</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* Relational databases a plus (MySQL, Oracle, SQL Server, PostgreSQL)</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face="Times New Roman" size=3> </FONT></o:p></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>QUALIFICATIONS:</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* BS or higher in Computer Science</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* 3-5 years of software engineering experience</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* Outstanding communication and teamwork skills</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* Passion for science, technology, and innovation</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>* High degree of integrity, passion and drive</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face="Times New Roman" size=3> </FONT></o:p></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face="Times New Roman" size=3>Send resume and cover letter to jo...@da... with subject line "Web Developer".<SPAN style="mso-spacerun: yes"> </SPAN>US work authorization required.</FONT></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face="Times New Roman" size=3> </FONT></o:p></P> |
From: Gary E. <gar...@ya...> - 2005-10-17 07:19:52
|
Hello Gerald Thank you for your response and as requested here is my sourceforge UserId gevely Please add me to the Ajax project as indicated in your previous response. From your email, am I correct in assuming that once you have added me to the project that you would like me to publish my changes and make them available as the new distribution? Regards Gary --- Gerald Bauer <ge...@va...> wrote: > Hello Gary Evely, > > > We have attached files for the Caramel, Cypress > and > > Houston libraries which have been updated with an > > LGPL > > distribution. It is our understanding that > legally > > the license agreement that has to be complied with > > is > > the one attached to the downloaded package, which > > currently indicates GPL. In order for us to be > able > > to > > legally use your libraries under the LGPL license > we > > need a new distribution. > > > > Therefore, can you please either update the > download > > package with these libraries or if this is not > > possible, then can you please distribute these > files > > back to us. > > > > We would like to use these libraries and it is > > likely > > that we could contribute to the Ajax Project in > the > > future (specifically to the Cypress project). > > > > We intend to make an initial monetary donation of > > $200 > > to the Ajax Project via the Sourceforge website > > early > > next week. > > Thank you for your efforts. I invite you to send > me > your sourceforge ID so I can add you to the Ajax > project and so you can publish/release the new > distro > packages using the LGPL. > > - Gerald > ___________________________________________________________ To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre. http://uk.security.yahoo.com |
From: Gerald B. <ge...@va...> - 2005-10-03 17:18:31
|
Hello, just a reminder that the sourceforge Ajax project got setup before the Ajax craze and refers not to "Asynchronous Javascript and XML" but stands for "A-Quality Java Extensions." Please, stop spamming the ajax-user mailinglist with postings about "Asynchronous Javascript and XML". - Gerald |
From: <jo...@da...> - 2005-10-03 07:05:59
|
Hi AJAX Innovators, We recently set up a group on Meetup.com for people to actually meet and talk about different AJAX issues. Got a cool demo? Looking for an AJAX job? Want to eat some twinkies? Come to the first AJAX Innovators Meetup! Event Details: When: Friday, October 7, 2005 at 3:00 PM Where: The Landmark / 2087 Landings Drive / Mountain View, CA 94043 / 650-968-4741 To join the AJAX Innovators Meetup group, follow this link: http://web.meetup.com/4/t/if Cheers, Darth Dex |
From: <jo...@da...> - 2005-09-30 06:20:32
|
JOB TITLE: AJAX Innovator LOCATION: Mountain View, CA DESCRIPTION: Want to transform the world of search? We are seeking a highly-motivated software developer to lead web applications development. The ideal candidate is an enthusiastic and entrepreneurial software engineer with startup experience who feels passionately about making software highly usable. You would feel right at home with us if you believe creating great web applications requires "getting into the mind and heart of the user". Headquartered in Mountain View, we are privately held and VC-backed. REQUIRED TECHNICAL EXPERIENCE: * Java Servlet/JSP or equivalent * Web application experience (HTML, AJAX, DHTML, JavaScript, JSP) * Relational database experience (MySQL, Oracle, SQL Server, Postgres SQL, DB2) * Persistence layer experience (e.g. Hibernate) * Human Computer Interaction (HCI) * Full product lifecycle * Natural Language Processing (NLP) and/or Search experience a plus QUALIFICATIONS: * BS or higher in Computer Science * 3-5 years of software engineering experience * Outstanding communication and teamwork skills * Passion for broad areas of science, technology, and innovation * Startup experience * High degree of integrity, passion and drive Send resume and cover letter to jo...@da... with subject line "AJAX Innovator". US work authorization required. KEYWORDS: o Search Engine / Search Engines o Internet Search o Web Applications Engineer o Software Developer o User Interface o Human Computer Interaction (HCI) |
From: Gary E. <gar...@ya...> - 2005-09-21 08:15:32
|
Hello Based on your previous response would you therefore be happy for us to update the source distributions to reflect the correct licensing policy and then publish these changes back to the project. Regards Gary ___________________________________________________________ To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre. http://uk.security.yahoo.com |
From: Gerald B. <ge...@va...> - 2005-09-15 18:34:13
|
Hello Gary Evely, > The response below seems to contradict both the > header > in the source files of the distribution (which state > GPL licensing) and the Sourceforge project pages and > this list (which state Apache v2.0 licensing). > > Can someone please confirm what the actual licensing > is and tell me if the headers in the source files > need > to match the license, because my belief is that we > must comply with the license specified in the > headers > of the source files of the distribution that we > have. I haven't yet had a chance to update the sources to reflect the new licensing policy. As stated before all Ajax projects are licensed under the GNU Library/Lesser GPL (LGPL) and you can use them for free even in commercial settings. Note, however, that the LGPL requires that you contribute changes to the libraries themselves back to the project. Let me know if this answers your question. - Gerald |
From: Gary E. <gar...@ya...> - 2005-09-15 07:55:45
|
Hi, The response below seems to contradict both the header in the source files of the distribution (which state GPL licensing) and the Sourceforge project pages and this list (which state Apache v2.0 licensing). Can someone please confirm what the actual licensing is and tell me if the headers in the source files need to match the license, because my belief is that we must comply with the license specified in the headers of the source files of the distribution that we have. Regards Gary --- geraldbauer2005 <ger...@ya...> wrote: --------------------------------- Hello Gary, > We are currently making use of the Caramel, Cypress and Houston > projects of the Ajax project. The Sourceforge download page says that > these all use the Apache V2.0 license and this is the basis on which > we have used them. Upon further investigation of the actual source > files provided in the distribution, it seems that these still have the > original GPL license specified in the headers. Please can you clarify > whether these are projects actually use the Apache V2.0 or the GPL > license. All Ajax projects are licensed under the GNU Library/Lesser GPL (LGPL) and you can use them for free even in commercial settings. Note, however, that the LGPL requires that you contribute changes to the libraries themselves back to the project. Let me know if this answers your question. I also invite you to send future posting to the Ajax mailinglist online @ http://lists.sourceforge.net/lists/listinfo/ajax-user - Gerald --------------------------------- YAHOO! GROUPS LINKS Visit your group "vamp-user" on the web. To unsubscribe from this group, send an email to: vam...@ya... Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- ___________________________________________________________ To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre. http://uk.security.yahoo.com |
From: Gerald B. <ge...@va...> - 2005-01-04 18:38:57
|
Hello, Just to let you know that if anyone is interested in my Java Web Start consulting services or Venus Application Publisher installation offerings or any of the sourceforge hosted open source Web Start tools and libraries (including Apollo) you can now engage me through my new employer SchemaSoft. You can find out more about SchemaSoft online @ http://schemasoft.com - Gerald -------------------- Gerald Bauer Lopica - All Things Web Start | http://lopica.sourceforge.net Web Start Forum | http://webstartforum.com Web Start News Wire | http://webstartnews.com Web Start F.A.Q. | http://webstartfaq.com |
From: Gerald B. <ge...@va...> - 2004-07-15 18:20:32
|
Hello Paulo Soares, > I see that cypress does the parsing but has no > mechanism to resolve the > final style by looking at the inherited and current > html tags. Is there > something available or do I have to make one? Cypress does just the parsing. It's up to you to store the css properties and handle the cascade. For an example on how to use Cypress see the Luxor source code online @ http://cvs.sourceforge.net/viewcvs.py/luxor-xul/luxor/src/luxor/css - Gerald ------------------- Gerald Bauer XUL Alliance | http://xul.sourceforge.net United XAML | http://xaml.sourceforge.net Interested in hiring Gerald Bauer? Yes, I'm available. If you know of an opportunity, please contact me today. |
From: Paulo S. <ps...@co...> - 2004-07-15 18:03:24
|
I see that cypress does the parsing but has no mechanism to resolve the final style by looking at the inherited and current html tags. Is there something available or do I have to make one? Best Regards, Paulo Soares |
From: Gerald B. <ge...@va...> - 2004-07-15 15:19:28
|
Hello Paulo Soares, > I'm developing an html to pdf parser in iText and I > want to add some > support for css. I found out cypress but I don't > know if I should use > the version in the file release or the version in > the CVS. I invite you to use the CVS version and contribute any changes you might have back to Cypress. Anakreon Mejdi has commited some changes for supporting external stylesheets a couple of weeks ago. So the CVS version is the latest and greatest Cypress version. Keep us informed how it goes and if you decide to use Cypress. - Gerald ------------------- Gerald Bauer XUL Alliance | http://xul.sourceforge.net United XAML | http://xaml.sourceforge.net Interested in hiring Gerald Bauer? Yes, I'm available. If you know of an opportunity, please contact me today. |
From: Paulo S. <ps...@co...> - 2004-07-15 14:49:50
|
I'm developing an html to pdf parser in iText and I want to add some support for css. I found out cypress but I don't know if I should use the version in the file release or the version in the CVS. Best Regards, Paulo Soares |
From: Gerald B. <ge...@va...> - 2004-02-23 14:55:41
|
Hello, Thanks to everybody for casting your vote in the Memphis Sun online poll asking: "What license do you prefer for the Luxor XUL toolkit?". Here's the final standing: * 36 votes (53%) - Apache-Style License * 16 votes (24%) - GNU General Public License (GPL) * 8 votes (12%) - GNU Lesser/Library General Public License (LGPL) * 6 votes ( 9%) - GNU General Public License (GPL)+Link Clause * 2 votes ( 3%) - Mozilla-Style Public License (MPL) * 0 votes ( 0%) - Eclipse-Style Common Public License (CPL) * 0 votes ( 0%) - Sun-Style Look-Don't-Touch License * 0 votes ( 0%) - "Classic" Commercial License * 0 votes ( 0%) - Other (Please Add Comments Below) From now on the Luxor XUL toolkit and all its libraries such as Apollo, Caramel, Cypress, Rachel, Salsa, Houston and so on will use the Apache 2.0 license. Please allow a couple of weeks to get the websites updated to reflect the new licensing policy. Full story @ http://luxor-xul.sourceforge.net/sun/2004/02/license_poll_closed_luxor_xul_toolkit_now_apache_20_licensed.html - Gerald |
From: Gerald B. <ge...@va...> - 2004-02-13 11:19:31
|
Hello, I invite you to cast your vote in the Memphis Sun online poll if you care about whether to switch to an Apache-Style license or whether to keep using the GNU GPL with a possible link clause/exception. Here's the standing as of February 13th: * 31 votes (60%) - Apache-Style License * 8 votes (15%) - GNU General Public License (GPL) * 6 votes (12%) - GNU General Public License (GPL)+Link Clause * 5 votes (10%) - GNU Lesser/Library General Public License (LGPL) * 2 votes ( 4%) - Others You can find the pollstation online @ http://luxor-xul.sourceforge.net/sun/2004/02/poll_what_license_do_you_prefer_for_the_luxor_xul_toolkit.html Note that I will close the poll in about two weeks so hurry before its too late. I also invite you to post any arguments pro or contra Apache or GNU GPL. - Gerald |
From: Gerald B. <ge...@va...> - 2004-02-06 09:16:41
|
Hello, I plan to switch the license for the Luxor XUL toolkit and all its libraries such as Apollo, Caramel, Cypress, Rachel, Salsa and so on. If you support the change I invite you to cast your vote in the Memphis Sun online poll asking "What license do you prefer for the Luxor XUL toolkit?" The license line-up includes: * GNU General Public License (GPL) * GNU General Public License (GPL)+Link Clause * GNU Lesser/Library General Public License (LGPL) * Apache-Style License * Eclipse-Style Common Public License (CPL) * Mozilla-Style Public License (MPL) * Sun-Style Look-Don't-Touch License * "Classic" Commercial License * Other (Please Add Comments Below) You can find the the online pollstation @ http://luxor-xul.sourceforge.net/sun/2004/02/poll_what_license_do_you_prefer_for_the_luxor_xul_toolkit.html - Gerald |
From: stanley k. <sta...@fa...> - 2003-10-30 20:34:45
|
do you have anything like that? i'm just trying to see if your javabean web browser app will take a web page with javascript in it . . . i'm not a complete newbie but i don't know enough to get your app to even run . . . --=20 stanley kagan sta...@fa... --=20 http://www.fastmail.fm - And now for something completely different=85 |