Displaying 5 results from an estimated 5 matches for "test_array".
2006 May 06
0
Cant read an Array as an attribute of a record
...n advance to anyone who may help!
Test/app/db/migrate/001_create_test_objects.rb
------------------------------------------------------------------
class CreateTestObjects < ActiveRecord::Migration
def self.up
create_table :test_objects do |t|
t.column :name, :string
t.column :test_array, :string
end
end
def self.down
drop_table :test_objects
end
end
Test/app/models/test_object.rb
------------------------------------------------------------------
class TestObject < ActiveRecord::Base
serialize :test_array
def initialize
@test_array = []
puts "Cal...
2006 Aug 15
8
Ferret 0.10 series
Hi David,
>> Otherwise I''m fully committed to getting 0.10 out.
>> When it is out, I''d recommend getting it into your
>> development app as soon as you can.
Any idea of timeframe to a 0.10 alpha release?
Kind Regards
Neville
2008 Jun 20
2
v1.1.rc13 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc13.tar.gz
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc13.tar.gz.sig
There's always time for one more release candidate. :) I was planning on
releasing v1.1.0 a couple of minutes before summer solstice (23:59 UTC
according to Wikipedia). Maybe it'll bring luck to the release. :)
- mbox: Fixed a crash when adding a new X-IMAPbase:
2008 Jun 20
2
v1.1.rc13 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc13.tar.gz
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc13.tar.gz.sig
There's always time for one more release candidate. :) I was planning on
releasing v1.1.0 a couple of minutes before summer solstice (23:59 UTC
according to Wikipedia). Maybe it'll bring luck to the release. :)
- mbox: Fixed a crash when adding a new X-IMAPbase:
2006 Jan 02
9
Generating nice tables
Making tables in templates is pretty easy, except for one minor problem.
They tend to be fairly ugly.
If you have a model with three attributes, it''s very easy to create an
html table that looks like this..
Col1 Col2 Col3
A B D
A B E
A C F
A C G
Which becomes difficult to read when you have a lot of repeated data.
What I would really like to generate