Search the web
Sign In
New User? Sign Up
waterlanguage · Water Language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 668 - 700 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
668
For those of you who missed the recent Tri-XML Conference, we have posted the presentation, "Teaching Web Services and XML with the Water Language" at...
rnilsson1
Offline Send Email
Aug 9, 2005
8:17 pm
669
Why doesn't the following statement produce an error? <set some_thing=<thing x="5"=integer/> /> Bill Schorn...
willschorn
Offline Send Email
Sep 5, 2005
12:59 am
670
from p. 73-74 in the book "Water" <set data_string= <string> Mike,Plusch,Wellesley,MA Christopher,Fry,Lexington,MA </string> /> data_string.<to_objects/> ...
willschorn
Offline Send Email
Sep 7, 2005
12:23 am
671
Bill, What version of Water/SteamXML are you running? From your code, it looks like it should give you the output you expect. A second thing to watch for is...
Merrick Stemen
merrick_stemen
Offline Send Email
Sep 8, 2005
2:51 am
672
... Merrick Thanks for your reply. I'm using a trial version that I downloaded on Aug 29 2005. Product name: Steam XML IDE Water version: 4.0 beta-10...
William N. Schorn
willschorn
Offline Send Email
Sep 8, 2005
3:58 am
673
Bill, I went back and dug up my version 4.0-beta 10 trial--the IDE it was linked to on my machine was 354 days past its trial period! So, after waiting for 5...
Merrick Stemen
merrick_stemen
Offline Send Email
Sep 8, 2005
12:09 pm
674
... Merrick Pertaining to the "MC" problem. Your 'Hmmm' response was well placed. I rekeyed the entry and it too correctly produced "MC". I went back to my...
William N. Schorn
willschorn
Offline Send Email
Sep 8, 2005
5:22 pm
675
Bill, I am glad you tracked down the problem so quickly. I can't count the number of hours I've spent trying to debug code that had no problems but bad data. ...
Merrick Stemen
merrick_stemen
Offline Send Email
Sep 9, 2005
2:07 am
676
Why does this give a run time error? [Runtime Error A call to grocery_list received illegal unnamed arg with source: >] <defclass grocery_list...
Susan G. Conger
s1g2conger
Offline Send Email
Nov 7, 2005
5:34 pm
677
Susan, Try this (note the keyword 'rest'): <defclass grocery_list store_name=required rest /> <defclass grocery_item name=required quantity=1/> <grocery_list ...
Merrick Stemen
merrick_stemen
Offline Send Email
Nov 8, 2005
6:39 am
679
That did it. Are there any other on-line resources for learning the language. It is kind of frustrating to try examples in the book and have them not work....
Susan G. Conger
s1g2conger
Offline Send Email
Nov 8, 2005
5:06 pm
680
Susan, There are a few places to check sample code. One place is at http://www.watercode.org/ also http://www.watercode.com/ You could also look over the Quick...
Merrick Stemen
merrick_stemen
Offline Send Email
Nov 9, 2005
12:34 am
681
I see a lot of examples of how to convert Water's HTML objects into strings, but I can't find any examples of how to convert a string of HTML into hypertext...
skramer072
Offline Send Email
Nov 10, 2005
1:07 pm
682
Yes, it is natural in Water to convert HTML into Water objects. In fact, you just execute the string because the HTML tags are defined already. "<b> hi...
Mike Plusch
pluschli
Offline Send Email
Nov 10, 2005
1:39 pm
683
Here's some code using the example you gave: <!-- Set up web resource --> <set x=<web "http://citeseer.ist.psu.edu/Kobayashi00information.html"/> /> <!--...
Merrick Stemen
merrick_stemen
Offline Send Email
Nov 11, 2005
6:14 am
685
I'm trying to find something analogous to a sleep() function in Water. I would like to be able to stop processing for a given number of seconds. Is there...
skramer072
Offline Send Email
Nov 15, 2005
1:40 am
686
This will wait for 1 second: thread.<wait_until_time 1000/> Here's the doc on Water's threading model: ...
Mike Plusch
pluschli
Offline Send Email
Nov 15, 2005
1:42 am
688
how do i find the position of a double quote ' " ' using key_of...
wesisa
Online Now Send Email
Nov 21, 2005
1:24 am
689
'one "two" three'.<key_of '"'/> 'one "two" three'.<key_of <string>"</string> /> 'one "two" three'.<key_of "&quot;" />...
pluschli
Offline Send Email
Nov 21, 2005
2:00 am
690
And don't forget: 'one "two" three'.<key_of char.34 /> _Merrick...
Merrick Stemen
merrick_stemen
Offline Send Email
Nov 21, 2005
3:09 am
691
Hi, I am new to Water and just investigating at the moment. When building a web application would it be normal to use the more dynamic water based CSS as...
JohnECobo
Offline Send Email
Jan 7, 2006
1:53 am
692
Is Water meant for web applications where one must retain session paramaters (logged in with user id = xyz, preferences, user role, etc.) If so, how does...
JohnECobo
Offline Send Email
Jan 7, 2006
1:54 am
693
Are there any water experts in England ? Particularly near Cambridge or London ? Thanks, JC...
JohnECobo
Offline Send Email
Jan 7, 2006
1:54 am
694
... Either works. ... send the link tag with the rest of your html code in Water. use an absolute url. <link rel="stylesheet" type="text/css" ...
Merrick Stemen
merrick_stemen
Offline Send Email
Jan 12, 2006
4:56 am
695
Hi, I need help to setclass path for 3rd party jar/classes or own classes without putting them into JRE lib/ext directory. Please help on this. Thanks &...
K Venkata Giri Babu
vgirik
Offline Send Email
May 4, 2006
2:29 pm
696
Here's a link to the Java forum that tells how to add files to the classpath dynamically. This code should be able to be used in a <java />.<execute> block to...
Merrick Stemen
merrick_stemen
Offline Send Email
May 12, 2006
2:20 am
697
Here's an example I hacked together shortly after you posted the question. The first part just retrieves the class; the second part calls a couple of methods...
Merrick Stemen
merrick_stemen
Offline Send Email
May 12, 2006
2:37 am
698
Hi Stemen, Thanks for your quick solution. It is great. Best regards Venkat ... From: Merrick Stemen To: waterlanguage@yahoogroups.com Sent: Friday, May 12,...
K.Venkata Giri Babu
vgirik
Offline Send Email
May 12, 2006
10:08 am
699
The monthlyBoston Water Users Group meeting will be next Tuesday, May 30 at 7:00 PM in Cambridge, MA. We willdemonstrate methods for combining our previously...
rnilsson1
Offline Send Email
May 26, 2006
2:12 pm
700
The monthly Boston Water Users Group meeting will be next Tuesday, June 27 at 7:00 PM in Cambridge, MA. Planned for the agenda are demonstrations of new Water...
rnilsson1
Offline Send Email
Jun 22, 2006
10:43 pm
Messages 668 - 700 of 741   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