Displaying 20 results from an estimated 10000 matches similar to: "AR: Be careful w/legacy column names with capital letters"
2006 Jul 03
4
text_field doesn''t call overridden ActiveRecord getters
All,
In a template, I have
<%= text_field :target_list, :DateReceived,
{ :title => ''uploaded_at'',
:class =>
''target_list_info'',
:disabled => ''true'' } %>
Here is the DateReceived method on my
2006 Jul 13
4
Does text_field go directly to attributes hash in AR object?
All,
I''m having a hell of a time figuring out what is going on here.
I''m trying to override one of my getters so that I can format it a
certain way in my form. But I can''t seem to get text_field to call the
appropriate method on my object.
So here''s my getter:
public
def FAX
fax = read_attribute(:FAX)
puts fax
2006 Jul 14
1
Weird validation problem
I have a field called Fax in my model. I store it as a 10-digit number
with no other characters but I display it as a nicely formatted phone
number. I have a validation on it like this:
validates_format_of :Fax,
:message => ''number should be formatted using (XXX) XXX-XXXX'',
:with => /^\(\d{3}\)\ ?\d{3}-\d{4}$/
If I put 1234567890 (10 digits) in my field, the
2006 Aug 15
6
Theoretical: Should models be subclasses of AR or mix it in?
All,
My apologies if this is a little long-winded and stream of
consciousness-y :).
SUMMARY: Why do we extend ActiveRecord instead of mixing it in to our
model classes?
Been thinking about my app''s models and starting to want to build
something of a hierarchy. I have some commonality across 3 of my model
classes and I''d liek to aggregate the behavior in a superclass.
2006 Mar 20
4
Ajax.Request w/standard redirect doesn''t render
I am doing an Ajax call in my page to a controller method like so:
new Ajax.Request(''<%= url_for(:action => "target_list_add" )%>'', {
asynchronous:true });"
In my controller method "target_list_add", I do something and then I
say:
redirect_to( :action => ''target_list_upload'', :layout => false )
I know for certain
2006 Jul 17
6
Best Practices: Splitting the "view model" from AR model
All,
I''m starting to see view state information creeping into my model class.
For example, I have text fields in my view that need to be set a certain
way depending on whether or not a checkbox is checked. And while the
values of these text fields ultimately do represent database columns
that are related to the backing AR object, the text_field values also
represent attributes on a
2006 Jul 05
7
HABTM join table has an "ID" column - is this an issue?
All,
I''m building model objects for existing tables that I cannot modify.
In AWDWR, Dave says "Note that our join table has no id column...The
second reason for not including an id column in the join table is that
AR automatically includes all columns from the join tables when
accessing rows using it. If the join table included a column called id,
its id would overwrite the id
2007 Apr 30
1
Vampire and Capital Letters
I find Linux to be a nightmare if usernames have capital letters.
Some old Windows PDCs that we are vampiring have usernames with capital
letters.
AFAIK you can't change a windows username
Is there a way of telling the vampire to make all usernames lowercase as
it imports them?
Can I use pdbedit or any other tool to make them lowercase?
At the moment I am changing /etc/passwd and the
2007 Feb 26
0
Capital letters in usernames
Hi,
Can anyone help me with an annoying problem regarding capital letters
in usernames.
I have three users whose usernames begin with a capital, and I'd
really like to fix this so that all usernames are lower case, for
consistency and to avoid confusion if they use other services provided
by the linux box.
(I'm using tbdsam backend, with Samba 3.0.22 as PDC.)
I've tried using
2004 Jul 29
1
Issues with Capital Letters?
I run Rsync over ssh between server1 and server2 with no problems except
if the file name has a capital letter in it. Has anyone ever seen an
issue like this and know how to solve it?
Server1 and Server2 are both RH Linux 9.0
Sync command is run on server2 using:
rsync -alue ssh server1:/folder/stuff/ /folder/stuff/
If server1 has a file test.jpg and another Test.jpg and I rsync using
the
2006 Mar 20
5
Wrap error_messages_for() call when no instance var present
I am trying to put some smarts around a call to
<%= error_messages_for %>
so that when I first come into this page i.e. when my instance variable
@target_list has not been defined yet, the page doesn''t break.
I''m doing this:
<% if @target_list? %>
<%= error_messages_for ''target_list'' %>
<% end %>
I get a syntax error on line 1.
2009 Nov 24
1
migrating NT4 PDC net rpc vampire errors with capital letters
Hi,
I have searched for days on Google and can't find a clear answer to my
question. I have a NT4 PDC which I am migrating to Samba 3 (Version
3.4.2-47.fc12) on FC12 with kernel(2.6.31.5-127.fc12.i686). I am using
tdbsam as my passdb backend.
I setup Samba as a BDC and then joined to NT4 Domain succesfully. When I go
to vampire the accounts I get lots of errors and some user accounts get
2014 May 08
1
Match directive can't recognize capital letters
Hi,
There seems to be an issue when using `Match` and `Hostname`
directives including capital letters.
e.g.
# .ssh/config
#
# Match host remotehost
# User alice
# Host remotehost
# User bob
#
ssh remotehost
#=> Apply "User alice"
# .ssh/config
#
# Match host RemoteHost
# User alice
# Host RemoteHost
# User bob
#
ssh RemoteHost
# =>
1998 Dec 11
1
capital letters in html help
While looking for "Memory" in the html help I discovered that all the capital
letters are put in the first section with operators and global variables. I
think this a bug although perhaps Memory is a global variable.
Paul Gilbert
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
2006 Jul 17
18
Inserting datetime value into SQL Server
I have a SQL Server column named StartTime of (SQL Server) type datetime
If I attempt to set the attribute using
public
def StartTime=(time)
write_attribute(:StartTime, "{ts ''1899-12-30
#{time.hour}:#{time.min}:#{time.sec}''}")
end
it''s inserting a NULL value.
Anyone else able to successfully insert a date time value into a SQL
Server table using
2006 May 25
5
rake migrate VERSION=0 doesn''t appear to execute
All,
I''ve decided to jump into Migrations before I get too far along on the
DB side of things.
I already have some tables built, and I went ahead and built the
migration that would have created them from scratch, and I made sure
that there was a self.down section to drop them. I wanted to verify
that I could roll back so I figured I would use rake to drop these
pre-existing tables
2006 Mar 20
8
Best way to organize non-controller logic???
I don''t want to put certain code in my controller because I think it
makes things more confusing.
What is the best way to manage business logic such that it doesn''t end
up in the controller?
Basically, where should I put my regular utility classes and backing
objects that may not be models?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2005 Mar 30
3
[ #14832]: Capital letters in POP3 logins
????????????,
??? ????????????? ????????? ?????????, ??????? ?? ???????? ?? ????.
???? ??????, ???????????? ?? support at majordomo.ru ? ?????
"Capital letters in POP3 logins",
???????? ???????? ???????? ???????-?????????? Majordomo.ru.
??? ??????? ? ????????? ?????.
?????? ?????? ???????? ????? 14832 , ???? ? ?????????? ??
?????? ??????????? ? ???? ?? ??????? ???????,
2006 Jul 14
7
Form validation - keepin correct fields displayed on refresh
All,
I''m finally doing my first real form in Rails - the model object that
I''m entering information for has 8 validations so far.
If I type in good values for all the fields but one, I get the pretty
validation, and the nice field highlighting, but all of the fields are
cleared, forcing me to retype all of that info. That is a big drag.
Is there a standard way to get the
2008 Nov 06
3
Verifying some understanding about manipulating DB data in before/after callbacks in RSpec
We had an after(:each) callback that looked like this:
PurchaseOrder.find(:all).each {|po|
DraftInvoice.find_all_by_po_number(po.po_number).each {|di| di.destroy}}
which we were hoping would reset some purchase order data in a certain way.
However, because we have "self.use_transactional_fixtures = true" set in
test_helper.rb, this code was never getting committed.
So, I just