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...
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 449 - 479 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
466
Hi all. I saw on a search that it is possible to create SVG servers with Steam? There was a seminar on this, but it was in Boston. There wouldn't be any...
daniel_scott_smith
daniel_scott...
Offline Send Email
Nov 14, 2003
4:24 pm
467
I have been in contact with Mike Plusch off and on regarding this very topic. I have been able to put together a rudimentary SVG server that could easily be...
merrick_stemen
Offline Send Email
Nov 15, 2003
1:11 am
468
Vijaya Jonnalagadda<vijayasreej@...> I have a HTML Table and I am to extract text from it preserving the content. I can think of preserving the...
Peter Carmichael
PeterPSC
Offline Send Email
Nov 20, 2003
4:03 am
469
Here is some code for extracting data from a table preserving the column headings as fieldnames; creating a vector full of objects using those fieldnames; then...
merrick_stemen
Offline Send Email
Nov 21, 2003
2:35 pm
470
This example uses Water's built-in <to_objects /> method. This should work no matter how many rows and columns. <!-- Create an instance of TABLE to fiddle with...
merrick_stemen
Offline Send Email
Nov 21, 2003
2:42 pm
471
The code samples you sent were great to start up with..... But when I tried to work with the HTML got by SaveAs'ing a WORD document into HTML format,I get a...
Vijaya Jonnalagadda
vijayasreej
Offline Send Email
Nov 21, 2003
9:14 pm
472
... Open the WORD as HTML document in NOTEPAD and post it here so we can try to see what the program is choking on. ... created ... output ( ... Yes. We ought...
merrick_stemen
Offline Send Email
Nov 22, 2003
2:59 am
473
Below are two files; one is an XHTML file that has data other than a table element stored in it; the other is the Water program that gets the table element and...
merrick_stemen
Offline Send Email
Nov 22, 2003
3:50 am
474
Here is an example that works on an actual web page right off the server. The two "logical://...".<execute_file /> instructions load support for non-XHTML...
merrick_stemen
Offline Send Email
Nov 22, 2003
1:11 pm
475
Thank you for sending me copies of your files. Here's my analysis of the situation with the MS Word document: MS Word puts a bunch of stuff in the file that...
merrick_stemen
Offline Send Email
Nov 23, 2003
4:01 am
476
I'm working through the examples in the Water book and get an error that says "ends_with" not found. I updated the examples according to the corrections...
Karen Fox
foxywriter
Offline Send Email
Nov 26, 2003
8:07 pm
477
"ends_with" is only defined on a string, so it is likely that some field value in "a_starting_object" is not a string. For example, it might be null or a...
pluschli
Offline Send Email
Nov 26, 2003
8:22 pm
478
Thanks, Mike. That makes sense as a couple of the example fields are named 0 and 1. So this example from the book shouldn't work as written then? I'm also...
Karen Fox
foxywriter
Offline Send Email
Nov 27, 2003
12:20 am
479
Sorry to be a pain. I'm working my way through the WATER book trying all the examples and the one on page 74 doesn't work. Here is the example: ...
Karen Fox
foxywriter
Offline Send Email
Dec 2, 2003
1:10 am
Messages 449 - 479 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