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.

Messages

  Messages Help
Advanced
Messages 435 - 465 of 724   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
435
Here's a snippet of code to connect to a Microsoft SQL Server 2003 database. I had to download Microsoft's SQL Server JDBC Driver from Microsoft's website, and...
merrick_stemen
Offline Send Email
Aug 28, 2003
5:40 am
436
<!-- This code is modified for Water version 3.11 beta. --> <set result= <vector <thing ContactName="Neither 3.4 beta, nor 3.11 beta detected." /> /> /> <if> ...
merrick_stemen
Offline Send Email
Aug 28, 2003
10:47 pm
437
There are now four short example Water programs posted at the Waterlanguage.org site. The URL is http://www.waterlanguage.org/examples.html The examples...
rnilsson1
Offline Send Email
Aug 31, 2003
7:02 am
438
Below is a new string_max type definition with some test cases. The name was chosen to sort with string in documentation. Can anyone suggest data-safe code for...
jconnejconne
Offline Send Email
Sep 3, 2003
12:41 am
439
Problem: A longer description field was copied into a shorter description field and truncated to the max length for the shorter field. The shorter field now...
jconnejconne
Offline Send Email
Sep 25, 2003
3:17 pm
440
Announcement for the next BostonWater User Group http://www.bostonwater.org SOAP and Water Tue, Sep 30, 2003 7:00pm Water Request is a new Water solution that...
pluschli
Offline Send Email
Sep 25, 2003
8:01 pm
441
I'm a student in Ted Selker's class at the Media Lab and have a basic question about file I/O: I have a vector of vectors of strings, e.g.: <set...
pluschli
Offline Send Email
Sep 25, 2003
8:32 pm
442
Scott, Here's the answer to your question-- You wrote:----- <set myvector=<vector <vector "foo" "bar"/> <vector "baz" "qux"/> /> /> I want to be able to write...
pluschli
Offline Send Email
Sep 25, 2003
8:34 pm
443
I have an ASCII-text file I am parsing that has multiple lines of data that follow a particular pattern, e.g., '[Site "Rome, Italy"]', or '[Result "true"]' I...
merrick_stemen
Offline Send Email
Sep 26, 2003
3:58 am
444
hi All what is the future of this language? junaidurrehman...
Junaidurrehman
junaidrehman...
Offline Send Email
Sep 29, 2003
2:08 pm
445
Merrick, Regarding vectors and text streams, you wrote: Something like this: '[Site "Rome, Italy"]'.<matches info_line_pattern /> would return: <vector "Site"...
Bushman, Peter D
pdbush67
Offline Send Email
Sep 29, 2003
2:09 pm
446
... As the co-creator of the Water language, I'll take the first stab at answering this question. The future is hard to predict, but Alan Kay said it best: ...
pluschli
Offline Send Email
Sep 29, 2003
3:32 pm
447
A new and improved Water Pattern will released in final form this November 25th and presented at the Boston Water meeting. It will support subpattern matching...
pluschli
Offline Send Email
Sep 30, 2003
4:19 am
448
Here's a quick example I put together using some code Mr. Plusch kindly sent my way. I ran this under Water version 3.10.1. My regex_string variable is global;...
merrick_stemen
Offline Send Email
Oct 1, 2003
2:52 am
449
I want to thank everyone for Tuesday night's insightful discussion about how Web Services can be built using the Water language. I was especially impressed...
bobr04
Offline Send Email
Oct 3, 2003
12:32 pm
450
In other technologies, there's a clear separation of the data from the logic. With Water and ConciseXML, the data and the logic are one entity. Doesn't this...
bobr04
Offline Send Email
Oct 5, 2003
12:00 pm
451
One of the things mentioned at the Sept. 30th meeting of the Boston Water User Group, was the complexity of the existing XML technologies. Jay had with him a...
bobr04
Offline Send Email
Oct 5, 2003
12:01 pm
452
Since XML can be mapped directly to objects (using DOM or some other parser), can't you just store the objects in some sort of object-oriented database? I...
Rich Caloggero
richcaloggero
Offline Send Email
Oct 6, 2003
5:29 pm
453
... one ... Sometimes its good to separate your program into what you think of as "data" and what you think of as "code". If you can identify such pieces of...
cfry0
Offline Send Email
Oct 6, 2003
5:39 pm
455
Fry, Thanks, I can see your point - Water can allow you the freedom to design the code in such a way that it can be more reusable than other current platforms....
bobr04
Offline Send Email
Oct 13, 2003
12:49 am
456
I've read a couple of notes recently about XML traffic driving organizations to upgrade their networks. (See: SearchWebServices.com). Most of their concerns...
bobr04
Offline Send Email
Oct 13, 2003
3:05 am
457
Looking toward the relatively near future (three to ten years) there will be a compelling need for a processing language that is specifically designed to use...
John Flynn
johnflynnbass
Offline Send Email
Oct 13, 2003
3:45 pm
458
... Yes, Water and ConciseXML were designed to handle the situations that currently require the set of special-purpose languages of RDF, OWL, RDF Schema,...
pluschli
Offline Send Email
Oct 21, 2003
6:20 pm
459
... The verbosity of XML has restricted the places where XML can be used and there have been a number of approaches trying to deal with this problem. Ideally,...
pluschli
Offline Send Email
Oct 21, 2003
6:40 pm
460
I just noticed to my horror that Water is not represented on this excellent web site comparing various programming languages by writing a program that writes...
kellycoinguy
Offline Send Email
Oct 29, 2003
4:14 am
461
I just submitted the following: <doc bottles_of_beer_song author="Mike Plusch" copyright=2003> Creates the text for the song "N Bottles of Beer on the Wall" ...
pluschli
Offline Send Email
Oct 29, 2003
1:44 pm
462
I am trying to return an object instance from executing a web object. The following behaves the way I would expect: <set remote_f=<web...
campbelk2
Offline Send Email
Oct 30, 2003
3:23 pm
463
... bin/ret_thing.cgi?" /> /> ... The behavior is what you want in the next version which will be released next week. In the meantime, here is a patch to the...
pluschli
Offline Send Email
Oct 30, 2003
3:52 pm
464
A couple of questions on the local environment <set x="local"/> creates a field in the local environment. How can I get a list of the fields in the local...
gustafsonruss
Offline Send Email
Nov 7, 2003
6:04 pm
465
The local environment is available through the symbol "_environment". To remove a local variable, do _environment.<remove "x"/> Now that you mention it,...
pluschli
Offline Send Email
Nov 7, 2003
6:08 pm
Messages 435 - 465 of 724   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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