search for: address2

Displaying 20 results from an estimated 60 matches for "address2".

Did you mean: address
2015 Sep 08
3
Multiple vacation
...ecting the correct case by the recipient email address. I mean, if someone writes me to my email address "to-address1 at example.com" I'd like to answer from "from-address1 at example.com" with the message "TEST 1". If someone writes me to my email address "to-address2 at example.com" I'd like to answer from "from-address2 at example.com" with the message "TEST 2". Here's my script: require ["fileinto","vacation"]; vacation :addresses ["to-address1 at example.com"] :from " from-address1 at exa...
2015 Sep 08
0
Multiple vacation
...y the recipient email > address. > I mean, if someone writes me to my email address "to-address1 at example.com" > I'd like to answer from "from-address1 at example.com" with the message "TEST > 1". > If someone writes me to my email address "to-address2 at example.com" I'd like > to answer from "from-address2 at example.com" with the message "TEST 2". > > Here's my script: > > require ["fileinto","vacation"]; > > vacation :addresses ["to-address1 at example.com"] :...
2006 Mar 26
2
Shared Columns in an STI
I have a an STI table which acts_as_tree, that has a large number of classes/types. My common fields are: id parent_id name description with 4 more text fields, I could cover most of my classes if I could redefine the name of the field like this. text1 AS address1 text2 AS address2 text3 AS zipcode For one class and text 1 AS model_number text2 AS vendor Is there a construct that will allow me to do this? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060326/62487e3a/attach...
2010 Aug 10
3
[LLVMdev] sqlite3 crashing jit
Running lli under gdb gives Program received signal SIGSEGV, Segmentation fault. [address] in ?? () (gdb) bt #0 [address] in ?? () Cannot access memory at address [address2] Was sqlite3 part of the llvm-2.6 test suite? If so, it is likely there's a workaround for 2.6. On 8/10/10 2:25 PM, "Eric Christopher" <echristo at apple.com> wrote: On Aug 10, 2010, at 1:09 PM, Bueno, Denis wrote: > I'm trying to get a stacktrace, so I can't...
2006 Feb 13
1
hackish error handling
...x.new( :name => @submitted[''name''], :company => @submitted[''company''], :phone => @submitted[''phone''], :email => @submitted[''email''], :address => @submitted[''address''], :address2 => @submitted[''address2''], :city => @submitted[''city''], :state => @submitted[''state''], :zip => @submitted[''zip'']) verification = XmlSimple::xml_in(@fedex.verify_address) if verification[...
2008 Mar 19
2
Stub / Mock - A little guidance?
...attributes (Ignore the clunky design... that''s just how it has to be). The User''s instance method looks like so: class User def update_billing_info(billing_info) unless self.has_billing_address? self.bill_to_address1 = billing_info.address1 self.bill_to_address2 = billing_info.address2 self.bill_to_address3 = billing_info.address3 self.bill_to_city = billing_info.city self.bill_to_country_code = billing_info.country_code self.bill_to_state_province_code = billing_info.state_province_code...
2006 Oct 13
3
Validation errors in has_one/belongs_to relationships.
...9;t try to save the insured object. In script/console I see: >> ins = Insured.new => #<Insured:0x37345e0 @new_record=true, @attributes={"city"=>"", "address1"=>"" , "name"=>"", "updated_at"=>nil, "address2"=>nil, "zip_code"=>"", "dba_name"=>ni l, "quote_input_id"=>nil, "created_at"=>nil, "state"=>""}> >> ins.save! ActiveRecord::RecordInvalid: Validation failed: Name can''t be blank, Zip co...
2010 Aug 10
0
[LLVMdev] sqlite3 crashing jit
On Aug 10, 2010, at 1:30 PM, Bueno, Denis wrote: > Running lli under gdb gives > > Program received signal SIGSEGV, Segmentation fault. > [address] in ?? () > (gdb) bt > #0 [address] in ?? () > Cannot access memory at address [address2] > > Wow. Something has really trashed your stack. > Was sqlite3 part of the llvm-2.6 test suite? If so, it is likely there’s a workaround for 2.6. It may have been, that's been a while. It is now for sure and was at the 2.7 time frame. We don't keep release branches aroun...
2005 Dec 01
0
problem with options_from_collection_for_select() need id not name
...otag_id=params[:geotag][:id].blank? ? -1:params[:geotag][:id] end else @geotag_id = -1 end i use this @geotags = Geotag.find(:all, :conditions =>[''firm_id = ? and client_id = ? '', firm_id, client_id]) @geotag_options = @geotags.collect {|g| [g.address1 + ", " + g.address2 + ", " +g.floor + ", " + g.city ,g.id]} <%= select("geotag", "id", @geotag_options) %><br/> <select name="geotag[id]"> <option value="%">All</option> <option value="1">Foster Park 2, Brugge (...
2006 Jul 19
5
Model Validation - with a twist
...ere''s my code so far: def create @bstore = Bookstore.new(params[:bookstore]) if @bstore.valid? addresscheck = params[:bookstore][:address] + " " + params[:bookstore][:city] + ", " + params[:bookstore][:state] + " " + params[:bookstore][:zipcode] address2 = ''q='' + addresscheck url=''http://maps.google.com/maps/geo?'' address = address2 address1 = URI.escape(address) googleoutput = ''&output=xml'' googlekey = ''&key=mykey'' result=URI(url+address1+googl...
2010 Aug 10
4
[LLVMdev] sqlite3 crashing jit
...; wrote: > > On Aug 10, 2010, at 1:30 PM, Bueno, Denis wrote: > >> Running lli under gdb gives >> >> Program received signal SIGSEGV, Segmentation fault. >> [address] in ?? () >> (gdb) bt >> #0 [address] in ?? () >> Cannot access memory at address [address2] >> >> > > Wow.  Something has really trashed your stack. No, he's just on linux x86_64 using JITed frames with no unwind information. That was the whole point of adding the support here: http://llvm.org/docs/DebuggingJITedCode.html See if you can get a stack trace using th...
2010 Aug 10
0
[LLVMdev] sqlite3 crashing jit
..., at 1:30 PM, Bueno, Denis wrote: >> >>> Running lli under gdb gives >>> >>> Program received signal SIGSEGV, Segmentation fault. >>> [address] in ?? () >>> (gdb) bt >>> #0 [address] in ?? () >>> Cannot access memory at address [address2] >>> >>> >> >> Wow. Something has really trashed your stack. > > No, he's just on linux x86_64 using JITed frames with no unwind > information. That was the whole point of adding the support here: > http://llvm.org/docs/DebuggingJITedCode.html &gt...
2006 Nov 04
0
Check_box woes
...eck_box :marketing_address_id, {}, @address.id, nil %></dd> <% end %> <dt><label for="address1">Street address:</label></dt> <dd><%= f.text_field :address1, :size => "30" %></dd> <dt><label for="address2">Street address (ctd):</label></dt> <dd><%= f.text_field :address2, :size => "30" %></dd> </dl> <%= submit_tag("Update your details", :class => "submit") %> <% end %> So I want the checkboxes to be chec...
2006 Jul 29
0
SOAP for large datasets
...<< TransactionData.new(:sale_type => history.sale_type, :order_id => order.order_id, :trans_id => history.trans_id, :outcome => history.outcome) end ar << CustomerData.new(:orderitem_data => oi, :transaction_data => trans, :address => order.address, :address2 => order.address2, :f_na me1 => order.f_name1, :l_name1 => order.l_name1) end ar end
2006 Jun 16
0
Strange problem with ActionMailer
...ath @body["merchant_name"] = merchant.name @body["merchant_support_email"] = merchant.signup_confirmation_from @body["name"] = affiliate.name @body["email"] = affiliate.email @body["address1"] = affiliate.address1 @body["address2"] = affiliate.address2 @body["city"] = affiliate.city @body["state"] = affiliate.state @body["zip"] = affiliate.zip @body["country"] = affiliate.country @body["phone"] = affiliate.phone @body["fax"] = affiliate...
2006 Jun 21
0
Possible bug in actionmailer
...gnup_path @body["merchant_name"] = merchant.name @body["merchant_support_email"] = merchant.signup_confirmation_from @body["name"] = affiliate.name @body["email"] = affiliate.email @body["address1"] = affiliate.address1 @body["address2"] = affiliate.address2 @body["city"] = affiliate.city @body["state"] = affiliate.state @body["zip"] = affiliate.zip @body["country"] = affiliate.country @body["phone"] = affiliate.phone @body["fax"] = affiliate.fax...
2006 Aug 02
0
Need help with SOAP and .NET
...<version>string</version> <action>string</action> <CustomerID>string</CustomerID> <Urbanization>string</Urbanization> <Company>string</Company> <Address>string</Address> <Address2>string</Address2> <Suite>string</Suite> <City>string</City> <State>string</State> <Zip5>string</Zip5> <Plus4>string</Plus4> <Country>string</Country> <Telephon...
2006 May 27
7
OT Mexican domains?
Hola! In case there are some mexican readers here... It is little difficult for an english speaker to find information about mexican domains. Is it possible to register a domain like "fiesta.mx"? I have seen sites selling ".com.mx" and similar but not just ".mx". Thanks, Peter
2006 Apr 26
6
get foreign key table data
Hi I?m trying to bring across all related data. My table clients has a foreign key field that stores the id of an organization How can I grab the details of the organization to use in the clients show.rhtml file? Thanks Scott -- Posted via http://www.ruby-forum.com/.
2006 Jun 22
2
iax2 registration problems
On the asterisk1 I got this: register => username:secret@ipaddress2 [eop] username=username secret=secret type=peer host=ipaddress1 auth=md5 on the second box I got this this host is ipaddress2 [incommingiax2] username=username type=user secret=secret host=dynamic context=from-internal-custom auth=md5 on first host 1 am getting: Jun 22 14:42:10 NOTICE[2398]...