Search the web
Sign In
New User? Sign Up
ajug · Australian Java Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4964 - 4993 of 7356   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4964
... I use Tapestry also. Similar architecture to JSF but without the JSP baggage. No IDE support required to be productive. Some learning curve involved...
Glen Stampoultzis
gstampoultzis
Offline Send Email
Jan 2, 2005
7:42 am
4965
Hi folks, I's sure I did once see a project which offered bytecode post-processing of 'javac -source 1.5' class files, such that they ran in earlier JDK's. But...
David Bullock
thunkmeister
Offline Send Email
Jan 3, 2005
7:01 am
4966
Hi David. I'm glad you brought this up. I was actually planning to post a question to the list about this topic. I'm a bit surprised that any external...
Brandon Franklin
CCerberus
Offline Send Email
Jan 3, 2005
7:10 am
4967
Hi, Can anyone give me a hint on how Yahoo Mail can provide the ability to list the possible addresses while we are typing the email address? If you have Yahoo...
stclaus_imi
Offline Send Email
Jan 3, 2005
7:14 am
4968
A hint: JavaScript Cheers. ... -- Anyone can hold the helm when the sea is calm...
Chris Harrison
chrisharrison.com.au@...
Send Email
Jan 4, 2005
12:35 am
4969
... Further hint: it is similar to how Google Suggest works. That is, Javascript plus iframes plus XmlHttpRequest. Further reading: Google Suggest...
Matt Quail
matt_quail
Online Now Send Email
Jan 4, 2005
12:50 am
4970
Hi, Thx for the hints. I knew it must use JavaScript. What I don't know are : 1. how it can create the effect of listbox/combobox while someone is still...
stclaus_imi
Offline Send Email
Jan 4, 2005
5:03 am
4971
... as far as google-suggest goes (and y! mail works the same way IIRC), it is not a real listbox/combobox. Instead, it is just a <input type="text"> that has...
Matt Quail
matt_quail
Online Now Send Email
Jan 4, 2005
5:28 am
4972
-=> Can anyone give me a hint on how Yahoo Mail can provide the ability to -=> list the possible addresses while we are typing the email address? Have a look...
McKenna, Simon (RGH)
simon.mckenna@...
Send Email
Jan 4, 2005
7:31 am
4973
I would like to load a PDF doucment in the browser when the user clicks a link. But at the same time I do not want to launch the Acrobat Reader. Can this be...
Senthil Kumar V
sensar@...
Send Email
Jan 5, 2005
12:47 am
4974
I was reading the discussion thread on server side that Paul pointed out and found it quite interesting. I was intrigued by XMLC and read a little more about...
Jon S Seymour
jseymour@...
Send Email
Jan 5, 2005
11:53 pm
4975
Just glancing at the server side article, it seems that XMLC moves view stuff back into the servlet (i.e. the Servlet is manipulating HTML tables). I don't...
Craig O'Shannessy
craigos_au
Offline Send Email
Jan 6, 2005
1:44 am
4976
We have used Barracuda a number of times, and found ti quite good. It's overkill for small projects, but makes sense with multiple developers working on...
Tom Adams
tomjadams007
Offline Send Email
Jan 6, 2005
6:12 am
4977
Hi Jon, I was playing around with XMLC back in 1999-2000. Because of it, I never got around to learning JSP. 8) It was very nice in separating content from...
Doug South
Doug.South@...
Send Email
Jan 6, 2005
7:06 am
4978
If separation of content and logic is your major concern, then have a look at PAJES (http://www.pajes.org). It is similar in approach to XMLC, but does not use...
Stephen Stevens
stephenstevens
Offline Send Email
Jan 6, 2005
9:19 pm
4979
AJUG, I wanted to thank all of you who joined the Java Information Group. Also thank you to the moderators for letting me post about our group on this group. ...
eric_boehme2002
Offline Send Email
Jan 7, 2005
1:38 am
4980
... Your curiosity is leading you in a good direction :-) I used XMLC back in 1998-ish, just around the time when the W3C broke the DOM with an unnecessary...
David Bullock
thunkmeister
Offline Send Email
Jan 7, 2005
5:37 am
4981
There is no way you could expect -source 1.5 -target 1.4 to work. It would mean that every 1.5 language construct would have to have a mapping to some...
Craig Day
craig@...
Send Email
Jan 10, 2005
9:49 am
4982
Another use of -source is to allow you to compile code in 1.5 that includes source level incompatibilities. For example having member variables called enum and...
David Zverina
david@...
Send Email
Jan 10, 2005
11:36 am
4983
So given the ability to use "source -1.4" to protect yourself, is there even any reason for a project to not go ahead and upgrade to Java 5.0? The company I'm...
Brandon Franklin
CCerberus
Offline Send Email
Jan 10, 2005
1:39 pm
4984
Hi all, I'm just in the process of putting an aggregation of content together for the Sun/James Gosling event in February similar to this: ...
Brendon Chase
brendonjchase
Offline Send Email
Jan 10, 2005
9:57 pm
4985
Given the issues with every single other major/minor release of a JDK, I'd wait until at least 5.0 update 3 before using it in production - possibly 5.1 update...
Matthew Johnson
johnsonmatt
Offline Send Email
Jan 10, 2005
10:19 pm
4986
I had the impression that 1.4.2 was significantly better (than 1.4.1) in this regard - did you find that? Regards, David...
David Coldrick
coldrick
Offline Send Email
Jan 11, 2005
12:46 am
4987
Absolutely. That's why I'm advocating a gradual adoption of 5.0....
Matthew Johnson
johnsonmatt
Offline Send Email
Jan 11, 2005
2:05 am
4988
... We're all with you there. The question is, 'how gradual'? From a development standpoint, one can start using 5.0 language features today, and run them on...
David Bullock
thunkmeister
Offline Send Email
Jan 11, 2005
4:55 am
4989
It is harder to maintain code that is written with two different styles. Does anyone know of the existence of parsers/generators that will turn 1.4.x looking...
Chris Murphy
cjmurphy@...
Send Email
Jan 11, 2005
5:36 am
4990
I wouldn't recommend any commerical project to adopting JDK 1.5 at this stage. I dont see any compelling benefits with the new language features to take on ...
Malcolm Edgar
malcolmedgar123
Offline Send Email
Jan 11, 2005
10:02 am
4991
... I am sure those features were included just to create sufficient cognitive dissonance to make the language more attractive to perl programmers. jon. ...
Jon S Seymour
jseymour@...
Send Email
Jan 11, 2005
10:46 am
4992
While that is, admittedly, an amusing little cartoon, it doesn't really make any argument as to how "autoboxing leads to NullPointerException", it simply...
Brandon Franklin
CCerberus
Offline Send Email
Jan 11, 2005
11:12 am
4993
... There's no different "look" about 5.0. There are simply additional facilities available, but they're still purely optional. -Brandon...
Brandon Franklin
CCerberus
Offline Send Email
Jan 11, 2005
11:13 am
Messages 4964 - 4993 of 7356   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help