Displaying 2 results from an estimated 2 matches for "shipto".
Did you mean:
shipton
2006 Mar 25
11
Firefox ''Rails Mailing List'' search engine plugin
Hi all,
If you''re like me you probably spend a lot of time search the Rails
mailing list. To make life a little bit easier I''ve created a nice
little plugin for firefox ( A whopping 15 lines of markup ). The plugin
uses nabble.com to search the mailing list.
Anyways, I thought I''d share.
If you want to install it the manual way, here''s the code.
<search
2007 Nov 21
4
Builder::XmlMarkup adds <inspect/> on printing and <clone/> on saving
..."1.0"
myxml.OpenShipments("xmlns"=>"x-schema:OpenShipments.xdr"){
for row in parsed # contains rows of a parsed .csv file
myxml.OpenShipment("ShipmentOption"=>"", "ProcessStatus"=>"")
do
myxml.ShipTo do
myxml.CompanyOrName(row[0])
myxml.Address1(row [1])
myxml.Address2(row [2])
myxml.CountryTerritory("DE")
myxml.PostalCode(row [3])
myxml.CityOrTown(row [4])
end
myxml.ShipmentInformation do...