search for: 20060323

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

Did you mean: 20060320
2006 Mar 22
3
boot-time dtrace
Hi, I am using anon dtrace followed with normal dtrace to collect the data of all fork,exec,exit . I found that dtrace could not be able to collect all the data. Lot of pids are missing. This happence when we boot the system and expect dtrace to collect all the fork , exec & exit it collects data but not all the pids are collected. Any inputs in this regard will be of great help. thanks
2006 Mar 23
4
belongs_to more than one model
...as_one state end class Place < ActiveRecord::Base has_one state end Is that right? Can I have a model that belongs to multiple models? -- Vincent H Gov -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/b1163cba/attachment.html
2006 Mar 23
2
rails lighttpd fastcgi archlinux
...;s giving me "Routing Error: Recognition failed for "/"" displayed on my browser. Has anyone ran into this problem before? -- Vincent H Gov -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/78ccb76e/attachment.html
2006 Mar 23
2
Way to iterate over each associtaion
...rd to get ahold of a collection containing each association? I want to write a rake task that will dump a model and all its related models to yaml. Thanks, Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/abdf4305/attachment.html
2006 Mar 23
8
FXS channel banks
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3115 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20060323/c0928576/smime.bin
2006 Mar 23
2
rails 1.1 and mysql errors
...Anyone with insights on these issues? Mark -- -------------------------------------------------------------------- I am Mark Daggett and I approve this message. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/2f511dd4/attachment.html
2006 Mar 23
3
drag and drop sorting recipe
...parameters:Sortable.serialize(''task-list'')})}}) //]]> but the sort method doesn''t get invoked on the drop. Any idea why? thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/4904b2b4/attachment.html
2006 Mar 23
3
MeetMe freezes machine with Junghanns QuadBRI cards
...se 81, D-44137 Dortmund tel +49 231 91596-25, fax +49 231 91596-55 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20060323/4ac0aa0c/attachment.pgp
2006 Mar 22
4
hivelogic lighttpd install
Hey group, I went through the Hivelogic install and it works great. Now I''d like to run lighttpd as a daemon, but when I go into the /usr/local folder where everything was installed, I don''t see a lighttpd directory where the config files would be. If I try "lighttpd start" from the command line, I get an error that says "No configuration file available".
2006 Mar 23
4
RJS and Form Validation (Best Practice)
...er to do the display ? I''ve implemented the first approach, but it seems like quite a hack. Any insight would be greatly appreciated ! Thanks ! == Dylan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/1a18bcae/attachment.html
2006 Mar 23
9
Tearing my hair out with Queues
Egads. Getting queues to work is like pulling teeth. extensions.conf: exten => q_main,1,Queue(oneeighty_main||||1) exten => 80014055,1,Dial(SIP/80014018,15,tr) exten => 80014057,1,Dial(SIP/80014018,15,tr) exten => 80014052,1,Dial(SIP/80014018,15,tr) queues.conf: [oneeighty_main] musiconhold = default joinempty = strict leavewhenempty = strict strategy = rrmemory retry = 0 member
2006 Mar 23
11
ActiveRecord: Oracle metadata loading slow on large database
All, While attempting to use ActiveRecord against a large database, approx. 1700 tables and 4 million rows, I discovered an inefficiency in oci_adapter.rb. The problem seems to be the SQL being generated to lazy-load the columns metadata. "def columns(table_name, name = nil)" method generates the following SQL: select column_name, data_type, data_default, nullable,
2006 Mar 23
6
[mongrel] [fedora5] install error " can''t find ruby libs"
...n How should I resolve this? -Larry -- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/14754e69/attachment.html
2006 Mar 22
1
Re: Who is using the jitter buffer?
...y two cents. even during discontinuous transmission, i am looking at minutes of pauses, there should be keepalive packets sent from which jitter could be calculated. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20060323/92590946/attachment.html
2006 Mar 22
1
has_many :addresses, :as => :addressable
I just got the Rails Recipies and I''m looking the Recipe 17. class Person < ActiveRecord::Base has_many :addresses, :as => :addressable end class Company < ActiveRecord::Base has_many :addresses, :as => :addressable end class Address < ActiveRecord::Base belongs_to :addressable, :polymorphic => true end At the beggining I had some problems because
2006 Mar 23
3
migrations: how to have all data dumped into rb ?
Hi, I dumped the schema using rake db_schema_dump. Now how do I create a migration containing all the data I have in my dev db ? -- Jean-Christophe Michel
2006 Mar 23
1
Multiple file uploads
...vailable of course. I tried .nil? and various other tests but i simply can''t get it to skip those empty file fields. any ideas? Thank you. sebastian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/0f6f0d9b/attachment.html
2006 Mar 23
2
Displaying only titles that starts with a defined caracter.
Hi, I would like to know how to display only titles of products that starts with a defined letter (ie: titles that begin with A) Here is the method that I use to place all titles in alphabetical order: class Livre < ActiveRecord::Base validates_presence_of :titre; def self.alpha find( :all, :order => "titre ASC" ) end end
2006 Mar 23
0
Newbie - populating select list from db - BUMP :)
...an -------------- next part -------------- An embedded message was scrubbed... From: Dan Apostol <combat2k@gmail.com> Subject: Re: [Rails] Re: Newbie - populating select list from db Date: Wed, 22 Mar 2006 14:44:46 +0100 Size: 2177 Url: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/87b9a784/Newbie-populatingselectlistfromdb.mht
2006 Mar 23
1
Graphing library?
Hello everyone, I''m looking to produce some graphs broadly like the ones shown here: http://www.dotnetcharting.com/gallery/List.aspx?gal=6 No prize for guessing what type of app it is... This particular graphing library is .NET-specific, but as you can see the results it produces are really nice. More than likely, they''re several notches above what I''ll be able to