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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 464 - 493 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
Online Now 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
480
On page 76 of the WATER book, the example reads: <set fixed_column_data= <string> Mike Plusch Wellesley MA Christopher Fry Lexington MA </string> /> ...
Karen Fox
foxywriter
Offline Send Email
Dec 2, 2003
1:10 am
481
I was able to get a workable example using the following code. The variable 'counter' is defined in the scope of the <do repeat=nn /> loop in the example...
merrick_stemen
Offline Send Email
Dec 2, 2003
2:38 pm
482
Try the following code instead. The patterns will match the object_ and field_separators. There probably exist other solutions as well. ...
merrick_stemen
Offline Send Email
Dec 2, 2003
2:38 pm
483
... That worked. Thanks so much, Merrick. Since I'm still trying to understand all of this, can I clarify one piece? <do repeat=rest.<length /> > Is that a...
Karen Fox
foxywriter
Offline Send Email
Dec 2, 2003
6:05 pm
484
... I see. So making it a pattern (and using \\ in some cases) enables the STEAM IDE to recognize separators? How do I know which separators need the \\ and...
Karen Fox
foxywriter
Offline Send Email
Dec 2, 2003
6:06 pm
485
... Yes. 'rest' is a special parameter that represents a vector (or list) of unnamed parameters that follow all of the named parameters in a parameter list....
merrick_stemen
Offline Send Email
Dec 3, 2003
12:51 am
486
So here's what I want to do in general. I want to read in an XML file and have Water treat it as an object. I then want to manipulate the values of this...
Kevin Dick
kevindick_pa
Offline Send Email
Dec 13, 2003
11:09 pm
487
I poked around and found the <normalize /> method that let me access the field variables in a friendly way. To get the output in the same format, you could...
merrick_stemen
Offline Send Email
Dec 14, 2003
11:21 pm
488
Hello All, I am trying to preserve the format of a HTML table when converted in to plain text.I am using Steam IDE to get the look and feel of the grid...
Vijaya Jonnalagadda
vijayasreej
Online Now Send Email
Dec 15, 2003
4:58 pm
489
Hello All, I have been trying to preserve the grid structure of a HTML table when written to a .txt file using Water. The problem I am getting is that I don't...
Vijaya Jonnalagadda
vijayasreej
Online Now Send Email
Dec 17, 2003
4:16 pm
490
oops..Here is the o/p I was getting.. " Test"" 599999"" 02481"" Vijaya Jonnalagadda"" 599"" 560945" where as I would like to see two separate rows as the table...
Vijaya Jonnalagadda
vijayasreej
Online Now Send Email
Dec 17, 2003
4:16 pm
491
Greetings, I've tried a few of the examples from the Water web site, and I have an idea of how these work, but would like to know if it's possible to host...
bobr04
Offline Send Email
Jan 2, 2004
5:44 am
492
Hello All, Has anyone ever tried writting a HTML file to a .txt file using Water? Attached is a piece of code I am trying with.For the sample table ... Apples...
Vijaya Jonnalagadda
vijayasreej
Online Now Send Email
Jan 2, 2004
5:44 am
493
Any Water "programs" you write can be turned into a server application with just a few added lines of code in the Steam IDE. This is one of the great things...
merrick_stemen
Offline Send Email
Jan 5, 2004
3:23 am
Messages 464 - 493 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