Displaying 7 results from an estimated 7 matches for "donncha".
Did you mean:
doncha
2008 Aug 21
1
wildcards and prefix searches
...matches, but if I search for
"desc:goo*" I get 0.
However, when searching normal, non-prefixed fields, "goo*" would
return at least the same amount of matches as "goods".
Anyone know how I can configure Xapian to support trailing wildcards
on prefixes?
thanks,
donncha
2006 May 29
3
Ruby on Rails hosting on BlueHost.com -- Feeback needed
hi Friends,
Planning to use BlueHost.com for my Ruby on Rails application hosting on
their $6.95 per month. Is anyone using them ? What version of ROR do
they provide ? What kind of webserver does they provide ? How much RAM ?
Can i re-start the web-server if my ROR application demands ?
May be the above answers would be best answered by their sales dept. But
if anyone is using them, please
2006 May 08
1
script/generate scaffold errors
...update rails --include-dependencies
and been told that all is up to date. I''m on OSX 10.4.6 and I''m aware
this can be temperamental, but I''d appreciate any suggestions as to what
might be the problem (given that gems is telling my my installation is
correct).
thanks,
donncha
--
Posted via http://www.ruby-forum.com/.
2006 May 23
0
Noob: Validation Errs Don''t Display When Saving Object Tree
...and that all saves are transactional, so if one
element failed the whole object tree got rolled back?
How can I ensure that
a) a validation failure in either UserDetail or Address causes a
rollback of the save
b) validation errors in UserDetail and/or Address get displayed in the
form?
thanks,
donncha
--
Posted via http://www.ruby-forum.com/.
2010 Mar 19
0
Rails, 1.9 & Encoding - does it work?
...#39;'ve no idea what
the file is *supposed* to be encoded as.
Since I''m on OSX and $LANG == en_AU.UTF-8, shouldn''t all files default
to UTF-8 unless explicitly told otherwise?
Has anyone got 2.3.5 working well w/ 1.9 when accented characters are
involved?
Any tips?
thanks,
donncha
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, se...
2006 May 17
4
NOOB: Representing linked objects in one form
Given two models:
User
:name
:email
:address_id # foreign key
Address
:line_1
:line_2
:city
etc.
I want to have a form allowing a user to register, in which she''d enter
an address as well, but how do I go about combining both objects into
the one form?
I''m new to this and following along with the Agile Rails book from the
Pragmatic Programmers, but it
2008 Jul 02
0
before_type_case broken?
Hey,
I''ve noticed that I seem unable to get a _before_type_cast value for
dates in 2.1. Specifically, if I assign a date string to a date
attribute, and then call attribute_before_type_cast I get a TimeWithZone
instead of a String:
model.start_date = "2001/01/02"
model.start_date.class = ActiveSupport::TimeWithZone
model.start_date_before_type_cast.class =