<html>
<head>
<style>
P
{
margin:0px;
padding:0px
}
body
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body>Hi Charley,<BR>
&nbsp;<BR>
Thanks for the info but it still doesn't work, I now get the following error:<BR>
&nbsp;<BR>
c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:3388:in `method_missing': focus (WIN32OL<BR>ERuntimeError)<BR>&nbsp;&nbsp;&nbsp; OLE error code:800A083E in htmlfile<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Can't move focus to the control because it is invisible, not enabled, or o<BR>f a type that does not accept the focus.<BR>&nbsp;&nbsp;&nbsp; HRESULT error code:0x80020009<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exception occurred.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; from c:/ruby/lib/ruby/site_ruby/1.8/watir.rb:338<BR>8:in `set'<BR><BR>&nbsp;<BR>Thanks,<BR>
Imran<BR><BR><BR>

<HR id=stopSpelling>
<BR>
&gt; From: wtr-general-request@rubyforge.org<BR>&gt; Subject: Wtr-general Digest, Vol 42, Issue 3<BR>&gt; To: wtr-general@rubyforge.org<BR>&gt; Date: Wed, 2 May 2007 20:19:00 -0400<BR>&gt; <BR>&gt; Send Wtr-general mailing list submissions to<BR>&gt; wtr-general@rubyforge.org<BR>&gt; <BR>&gt; To subscribe or unsubscribe via the World Wide Web, visit<BR>&gt; http://rubyforge.org/mailman/listinfo/wtr-general<BR>&gt; or, via email, send a message with subject or body 'help' to<BR>&gt; wtr-general-request@rubyforge.org<BR>&gt; <BR>&gt; You can reach the person managing the list at<BR>&gt; wtr-general-owner@rubyforge.org<BR>&gt; <BR>&gt; When replying, please edit your Subject line so it is more specific<BR>&gt; than "Re: Contents of Wtr-general digest..."<BR>&gt; <BR>&gt; <BR>&gt; Today's Topics:<BR>&gt; <BR>&gt; 1. Re: How to identify the nth instance of a div? (Jason)<BR>&gt; 2. 'Unable to locate object' problem (Imran Hussain)<BR>&gt; 3. Re: 'Unable to locate object' problem (Charley Baker)<BR>&gt; 4. Re: How to identify the nth instance of a div? (Jeff Fry)<BR>&gt; 5. Re: Error when loading iframe (Suman Goel)<BR>&gt; 6. playing with FireWatir on OSX (Chris McMahon)<BR>&gt; 7. problem filling text_field - validation fails (Timm Mason)<BR>&gt; <BR>&gt; <BR>&gt; ----------------------------------------------------------------------<BR>&gt; <BR>&gt; Message: 1<BR>&gt; Date: Wed, 02 May 2007 10:27:48 CDT<BR>&gt; From: Jason &lt;forum-watir-users@openqa.org&gt;<BR>&gt; Subject: Re: [Wtr-general] How to identify the nth instance of a div?<BR>&gt; To: wtr-general@rubyforge.org<BR>&gt; Message-ID:<BR>&gt; &lt;32078010.18571178119698374.JavaMail.oqa-j2ee@openqa01.managed.contegix.com&gt;<BR>&gt; <BR>&gt; Content-Type: text/plain; charset=ISO-8859-1<BR>&gt; <BR>&gt; &gt; You can also identify elements using multiple attributes, for example :class and :index :&lt;br&gt;&lt;br&gt;ie.div(:class =&amp;gt; &amp;#39;contentItem&amp;#39;, :index =&amp;gt; 3)&amp;nbsp; # access the 3rd div with a class of &amp;#39<BR>&gt; &gt; <BR>&gt; <BR>&gt; Perfect - that's exactly what I was after. Must have missed that in my tutorials and readings. Lovely.<BR>&gt; <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 2<BR>&gt; Date: Wed, 2 May 2007 17:04:45 +0100<BR>&gt; From: Imran Hussain &lt;imran_x@hotmail.com&gt;<BR>&gt; Subject: [Wtr-general] 'Unable to locate object' problem<BR>&gt; To: &lt;wtr-general@rubyforge.org&gt;<BR>&gt; Cc: "imran_x@hotmail.com" &lt;imran_x@hotmail.com&gt;<BR>&gt; Message-ID: &lt;BAY121-W18D960BB41241DD3B95BB891420@phx.gbl&gt;<BR>&gt; Content-Type: text/plain; charset="iso-8859-1"<BR>&gt; <BR>&gt; Hi,<BR>&gt; <BR>&gt; 'Unable to locate object' problem<BR>&gt; <BR>&gt; When running the following show_all_objects command, I get;<BR>&gt; <BR>&gt; rb(main):016:0&gt; ie.show_all_objects-----------Objects in page -------------<BR>&gt; HTML Document name= id=SN_NOTESSFrame src=textarea name=SN_NOTESSText id= value=<BR>&gt; <BR>&gt; How do I write to this object? do I use this:<BR>&gt; <BR>&gt; ie.text_field(:id ,"SN_NOTESSFrame").set("TESTING 1234")<BR>&gt; <BR>&gt; Is this within a frame??<BR>&gt; This doesn't seem to be working .... can someone help?<BR>&gt; <BR>&gt; Thanks,Imran<BR>&gt; -------------- next part --------------<BR>&gt; An HTML attachment was scrubbed...<BR>&gt; URL: http://rubyforge.org/pipermail/wtr-general/attachments/20070502/57205157/attachment-0001.html <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 3<BR>&gt; Date: Wed, 2 May 2007 10:19:26 -0600<BR>&gt; From: "Charley Baker" &lt;charley.baker@gmail.com&gt;<BR>&gt; Subject: Re: [Wtr-general] 'Unable to locate object' problem<BR>&gt; To: wtr-general@rubyforge.org<BR>&gt; Message-ID:<BR>&gt; &lt;f96821860705020919v26a420cepa223082ce1dc05fc@mail.gmail.com&gt;<BR>&gt; Content-Type: text/plain; charset="iso-8859-1"<BR>&gt; <BR>&gt; You're trying to write to what appears to be a frame not the textarea.<BR>&gt; <BR>&gt; ie.text_field(:name, 'SN_NOTESSText').set('this should work')<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; -Charley<BR>&gt; <BR>&gt; <BR>&gt; On 5/2/07, Imran Hussain &lt;imran_x@hotmail.com&gt; wrote:<BR>&gt; &gt;<BR>&gt; &gt; Hi,<BR>&gt; &gt;<BR>&gt; &gt; 'Unable to locate object' problem<BR>&gt; &gt;<BR>&gt; &gt; When running the following show_all_objects command, I get;<BR>&gt; &gt;<BR>&gt; &gt; rb(main):016:0&gt; ie.show_all_objects<BR>&gt; &gt; -----------Objects in page -------------<BR>&gt; &gt; HTML Document name= id=SN_NOTESSFrame src=<BR>&gt; &gt; textarea name=SN_NOTESSText id= value=<BR>&gt; &gt;<BR>&gt; &gt; How do I write to this object? do I use this:<BR>&gt; &gt;<BR>&gt; &gt; ie.text_field(:id ,"SN_NOTESSFrame").set("TESTING 1234")<BR>&gt; &gt;<BR>&gt; &gt; Is this within a frame??<BR>&gt; &gt; This doesn't seem to be working .... can someone help?<BR>&gt; &gt;<BR>&gt; &gt; Thanks,<BR>&gt; &gt; Imran<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; Wtr-general mailing list<BR>&gt; &gt; Wtr-general@rubyforge.org<BR>&gt; &gt; http://rubyforge.org/mailman/listinfo/wtr-general<BR>&gt; &gt;<BR>&gt; -------------- next part --------------<BR>&gt; An HTML attachment was scrubbed...<BR>&gt; URL: http://rubyforge.org/pipermail/wtr-general/attachments/20070502/5bbc8640/attachment-0001.html <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 4<BR>&gt; Date: Wed, 2 May 2007 10:42:09 -0700<BR>&gt; From: "Jeff Fry" &lt;jeff.fry@gmail.com&gt;<BR>&gt; Subject: Re: [Wtr-general] How to identify the nth instance of a div?<BR>&gt; To: wtr-general@rubyforge.org<BR>&gt; Message-ID:<BR>&gt; &lt;970956b0705021042u541cad35y5ac3818caf110f33@mail.gmail.com&gt;<BR>&gt; Content-Type: text/plain; charset="iso-8859-1"<BR>&gt; <BR>&gt; On 5/2/07, Jason &lt;forum-watir-users@openqa.org&gt; wrote:<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt; &gt; Perfect - that's exactly what I was after.<BR>&gt; <BR>&gt; <BR>&gt; Cool.<BR>&gt; <BR>&gt; Must have missed that in my tutorials and readings. Lovely.<BR>&gt; <BR>&gt; <BR>&gt; :index is in the rdoc already, but :class and multiple attribute support<BR>&gt; aren't there yet. I have started writing both up, and hope to get a good bit<BR>&gt; done over the next week and a half.<BR>&gt; <BR>&gt; Happy scripting!<BR>&gt; Jeff<BR>&gt; <BR>&gt; -- <BR>&gt; http://testingjeff.wordpress.com<BR>&gt; -------------- next part --------------<BR>&gt; An HTML attachment was scrubbed...<BR>&gt; URL: http://rubyforge.org/pipermail/wtr-general/attachments/20070502/57e74ddd/attachment-0001.html <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 5<BR>&gt; Date: Wed, 2 May 2007 15:57:03 -0700<BR>&gt; From: "Suman Goel" &lt;sgoel@yahoo-inc.com&gt;<BR>&gt; Subject: Re: [Wtr-general] Error when loading iframe<BR>&gt; To: &lt;wtr-general@rubyforge.org&gt;<BR>&gt; Message-ID: &lt;008001c78d0d$34605c10$e39b15ac@ds.corp.yahoo.com&gt;<BR>&gt; Content-Type: text/plain; charset="us-ascii"<BR>&gt; <BR>&gt; Try adding the following line after creating the ie instance<BR>&gt; ie.logger.level = Logger::ERROR<BR>&gt; <BR>&gt; This will not show these warnings.<BR>&gt; <BR>&gt; -----Original Message-----<BR>&gt; From: wtr-general-bounces@rubyforge.org<BR>&gt; [mailto:wtr-general-bounces@rubyforge.org] On Behalf Of Charley Baker<BR>&gt; Sent: Wednesday, May 02, 2007 7:46 AM<BR>&gt; To: wtr-general@rubyforge.org<BR>&gt; Subject: Re: [Wtr-general] Error when loading iframe<BR>&gt; <BR>&gt; Try running the latest code from svn, there've been some changes around<BR>&gt; dealing with frame access errors. Follow this link for the instructions:<BR>&gt; http://wiki.openqa.org/display/WTR/FAQ#FAQ-devgem <BR>&gt; <BR>&gt; -Charley <BR>&gt; <BR>&gt; <BR>&gt; On 5/2/07, John &lt;forum-watir-users@openqa.org&gt; wrote:<BR>&gt; <BR>&gt; Hi,<BR>&gt; <BR>&gt; When you click on a link in my website an iframe is loaded in the<BR>&gt; middle of the page. It seems watir has trouble with it, because it gives an<BR>&gt; error (see below). I use this to click on the link: $ie.link(:url,<BR>&gt; /club_philips_streamium_management/).click <BR>&gt; It then returns this error:<BR>&gt; <BR>&gt; irb(main):011:0&gt; ie.link(:url,<BR>&gt; /club_philips_streamium_management/).click<BR>&gt; WIN32OLERuntimeError: document<BR>&gt; OLE error code:80070005 in &lt;Unknown&gt;<BR>&gt; Access is denied. <BR>&gt; <BR>&gt; HRESULT error code:0x80020009<BR>&gt; Exception occurred.<BR>&gt; from<BR>&gt; C:/ruby/lib/ruby/gems/1.8/gems/watir-1.5.1.1158/./watir.rb:1830:in<BR>&gt; `method_missing'<BR>&gt; from C:/ruby/lib/ruby/gems/1.8/gems/watir-<BR>&gt; 1.5.1.1158/./watir.rb:1830:in `wait'<BR>&gt; from<BR>&gt; C:/ruby/lib/ruby/gems/1.8/gems/watir-1.5.1.1158/./watir.rb:1829:in `times'<BR>&gt; from<BR>&gt; C:/ruby/lib/ruby/gems/1.8/gems/watir-1.5.1.1158/./watir.rb:1829:in `wait' <BR>&gt; from<BR>&gt; C:/ruby/lib/ruby/gems/1.8/gems/watir-1.5.1.1158/./watir.rb:2577:in `click'<BR>&gt; from (irb):11<BR>&gt; _______________________________________________<BR>&gt; Wtr-general mailing list<BR>&gt; Wtr-general@rubyforge.org &lt;mailto:Wtr-general@rubyforge.org&gt; <BR>&gt; http://rubyforge.org/mailman/listinfo/wtr-general<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 6<BR>&gt; Date: Wed, 2 May 2007 17:56:14 -0600<BR>&gt; From: "Chris McMahon" &lt;christopher.mcmahon@gmail.com&gt;<BR>&gt; Subject: [Wtr-general] playing with FireWatir on OSX<BR>&gt; To: wtr-general@rubyforge.org<BR>&gt; Message-ID:<BR>&gt; &lt;72799cd70705021656x56feb7bdq88a86c3429371b24@mail.gmail.com&gt;<BR>&gt; Content-Type: text/plain; charset=ISO-8859-1; format=flowed<BR>&gt; <BR>&gt; I've got jssh in place, and I can establish a connection on port 9997,<BR>&gt; but all the unittest scripts (and my little spike) hang as if nothing<BR>&gt; is going over the socket. Here's the stack trace after doing CTRL-C:<BR>&gt; <BR>&gt; <BR>&gt; ^C./../container.rb:842:in `recv': Interrupt<BR>&gt; from ./../container.rb:842:in `read_socket'<BR>&gt; from ./../container.rb:837:in `each'<BR>&gt; from ./../container.rb:837:in `read_socket'<BR>&gt; from ./../firewatir.rb:547:in `wait'<BR>&gt; from ./../firewatir.rb:259:in `goto'<BR>&gt; from form_test.rb:11:in `setup'<BR>&gt; from /usr/local/lib/ruby/1.8/test/unit/testcase.rb:77:in `run'<BR>&gt; from /usr/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'<BR>&gt; ... 9 levels...<BR>&gt; from /usr/local/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'<BR>&gt; from /usr/local/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'<BR>&gt; from /usr/local/lib/ruby/1.8/test/unit.rb:278<BR>&gt; from form_test.rb:233<BR>&gt; <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 7<BR>&gt; Date: Wed, 2 May 2007 20:06:55 -0400<BR>&gt; From: "Timm Mason" &lt;timm@zillow.com&gt;<BR>&gt; Subject: [Wtr-general] problem filling text_field - validation fails<BR>&gt; To: &lt;wtr-general@rubyforge.org&gt;<BR>&gt; Message-ID:<BR>&gt; &lt;4514A6353D36BD4AAE97E53D00D28D0503DD73D3@ms07.mse2.exchange.ms&gt;<BR>&gt; Content-Type: text/plain; charset="us-ascii"<BR>&gt; <BR>&gt; Hi, I'm having a problem with a text_field. If I populate the value<BR>&gt; with Watir, then submit, there is a validation that fails. However, I<BR>&gt; can manually type in the same value and the validation passes.<BR>&gt; <BR>&gt; Here's some HTML:<BR>&gt; &lt;li class="post"&gt;<BR>&gt; &lt;a onclick="toggle('ownerToolbox_reportSale');<BR>&gt; $('ownerToolbox_askingPrice').focus();" href="javascript:void(0)"<BR>&gt; id="ownerToolbox_reportSale"&gt;Tell us it's for sale&lt;/a&gt;<BR>&gt; <BR>&gt; &lt;div id="ownerToolbox_reportSale_toggleArea" class="hide tooltip<BR>&gt; reportForSale"&gt;<BR>&gt; &lt;a onclick="toggle('ownerToolbox_reportSale')"<BR>&gt; href="javascript:void(0)" class="close"&gt;Close&lt;/a&gt;<BR>&gt; &lt;dl&gt;<BR>&gt; &lt;dt&gt;Is This Home For Sale?&lt;/dt&gt;<BR>&gt; <BR>&gt; &lt;dd&gt;<BR>&gt; &lt;form method="post"<BR>&gt; action="/HomeDetails,ownerToolbox.reportForSalePopup.reportForSaleForm.s<BR>&gt; direct" name="reportForSaleForm_0" id="reportForSaleForm_0"&gt;<BR>&gt; &lt;div style="display:none;"&gt;&lt;input type="hidden" name="formids"<BR>&gt; value="ownerToolbox_askingPrice,salePriceField,claimTypeRadioGroup,Submi<BR>&gt; tButton"/&gt;<BR>&gt; &lt;input type="hidden" name="form:HomeDetails"<BR>&gt; value="ZH4sIAAAAAAAAAI1Svy9DURQ+r9EY/EhpYkNDrQ8J0ZEmGk2kXjB1u7zTuvp673Xe<BR>&gt; fb1tB2FhsLIZDMb+K0a7WIVVYnJfUSGRGu5w7znfd77z3a/zDEkzDAD2JEPNNCozCDDQVtwP<BR>&gt; CcYOWYO5ARNVtyg0VpHGH29uX0/PcwlwipBssCDCJkHqu68U1feQzjpXk0OXDxcJgKZKPBXA<BR>&gt; LDowLY1A2pUy2JNNl1BJ0gVJOyxAT6pIwYhCCnmo0S/H84/gGKALzjmQkZUKUlFUpJsNuKiF<BR>&gt; WY9khQe47nO9aR8g3UNvo45IeKyKGlL1VpsHgTTzn/1mwYGpbzLNarjVQPJkqLmo9hEyCjAk<BR>&gt; iaOwVnEpNCRLdokDs+LAXBstQ91auIHMR3KZ7+dJ1pCsjnhUH+rVf1NM9Ch6xRKr213BLDkw<BR>&gt; 85ukr9GxhkGz7MDsb2ikfHuJcX8t8IFNA6S0xa75occo1mJ7fsQnb38dmbjL0Mn99duLjU/5<BR>&gt; Kz4KupHb57ql3gFtyY3GkAIAAA=="/&gt;<BR>&gt; &lt;input type="hidden" name="reservedids" value="form:HomeDetails"/&gt;<BR>&gt; &lt;input type="hidden" name="submitmode" value=""/&gt;<BR>&gt; &lt;input type="hidden" name="submitname" value=""/&gt;<BR>&gt; &lt;/div&gt;<BR>&gt; &lt;fieldset&gt;<BR>&gt; &lt;p class="price"&gt;&lt;label for="ownerToolbox_askingPrice"&gt;Sale<BR>&gt; price&lt;span class="required"&gt;*&lt;/span&gt;:&lt;/label&gt; &lt;!-- sale price --&gt;<BR>&gt; <BR>&gt; &lt;input type="text" name="salePriceField" value=""<BR>&gt; id="ownerToolbox_askingPrice"/&gt;<BR>&gt; <BR>&gt; &lt;/p&gt;<BR>&gt; <BR>&gt; &lt;p&gt;What is your relationship to this home?&lt;/p&gt;<BR>&gt; <BR>&gt; &lt;ul class="ownerToolbox_relation"&gt;<BR>&gt; &lt;li&gt;&lt;input type="radio" name="claimTypeRadioGroup" value="0"<BR>&gt; id="ownerToolbox_owner"/&gt; &lt;label<BR>&gt; for="ownerToolbox_owner"&gt;Owner&lt;/label&gt;&lt;/li&gt;<BR>&gt; &lt;li&gt;&lt;input type="radio" name="claimTypeRadioGroup" value="1"<BR>&gt; id="ownerToolbox_agent"/&gt; &lt;label for="ownerToolbox_agent"&gt;Listing<BR>&gt; agent&lt;/label&gt;&lt;/li&gt;<BR>&gt; &lt;li&gt;&lt;input type="radio" name="claimTypeRadioGroup"<BR>&gt; checked="checked" value="2" id="ownerToolbox_other"/&gt; &lt;label<BR>&gt; for="ownerToolbox_other"&gt;Other&lt;/label&gt;&lt;/li&gt;<BR>&gt; &lt;/ul&gt;<BR>&gt; <BR>&gt; <BR>&gt; &lt;input type="hidden"<BR>&gt; name="HomeDetails/ownerToolbox.reportForSalePopup.reportForSaleForm_Subm<BR>&gt; itButton_submitflag"<BR>&gt; id="HomeDetails/ownerToolbox.reportForSalePopup.reportForSaleForm_Submit<BR>&gt; Button_submitflag" value="0"&gt;&lt;/input&gt;<BR>&gt; &lt;button type="submit" name="SubmitButton"<BR>&gt; onclick="document.getElementById('HomeDetails/ownerToolbox.reportForSale<BR>&gt; Popup.reportForSaleForm_SubmitButton_submitflag').value='1';"<BR>&gt; title="Submit" class="primary"&gt;<BR>&gt; &lt;span&gt;Save&lt;/span&gt;<BR>&gt; &lt;/button&gt;<BR>&gt; <BR>&gt; &lt;button onclick="toggle('ownerToolbox_reportSale')"<BR>&gt; href="javascript:void(0)" type="button" class="em"&gt;<BR>&gt; &lt;span&gt;Cancel&lt;/span&gt;<BR>&gt; &lt;/button&gt;<BR>&gt; <BR>&gt; &lt;/fieldset&gt;<BR>&gt; &lt;/form&gt;<BR>&gt; &lt;/dd&gt;<BR>&gt; <BR>&gt; &lt;/dl&gt;<BR>&gt; &lt;/div&gt;<BR>&gt; &lt;/li&gt;<BR>&gt; <BR>&gt; And my code:<BR>&gt; $b.link(:id, "ownerToolbox_reportSale").click<BR>&gt; $b.text_field(:id, "ownerToolbox_askingPrice").set("234567")<BR>&gt; $b.radio(:id, "ownerToolbox_agent").set<BR>&gt; $b.button(:name, "SubmitButton").click<BR>&gt; <BR>&gt; Just started working with Watir and it's great so far. Any help is<BR>&gt; appreciated!<BR>&gt; <BR>&gt; ____________________________________________________ <BR>&gt; <BR>&gt; Timm Mason<BR>&gt; Software Test Engineer<BR>&gt; P (206) 757-2736<BR>&gt; F (206) 470-7001<BR>&gt; <BR>&gt; &lt;http://www.zillow.com/&gt; <BR>&gt; <BR>&gt; -------------- next part --------------<BR>&gt; An HTML attachment was scrubbed...<BR>&gt; URL: http://rubyforge.org/pipermail/wtr-general/attachments/20070502/fedce310/attachment.html <BR>&gt; -------------- next part --------------<BR>&gt; A non-text attachment was scrubbed...<BR>&gt; Name: not available<BR>&gt; Type: image/gif<BR>&gt; Size: 1128 bytes<BR>&gt; Desc: zillow_logo_emailsig.gif<BR>&gt; Url : http://rubyforge.org/pipermail/wtr-general/attachments/20070502/fedce310/attachment.gif <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; _______________________________________________<BR>&gt; Wtr-general mailing list<BR>&gt; Wtr-general@rubyforge.org<BR>&gt; http://rubyforge.org/mailman/listinfo/wtr-general<BR>&gt; <BR>&gt; End of Wtr-general Digest, Vol 42, Issue 3<BR>&gt; ******************************************<BR><BR></body>
</html>