search for: nill

Displaying 20 results from an estimated 42 matches for "nill".

Did you mean: nil
2012 Mar 08
3
legend
...ok at the help but .... While putting a legend on a plot, I don't wish to have the enclosing border surrounding the words (as given below). Tried to use the following, but didn't help : legend (locator(1), border=FALSE, fill=FALSE, "Important ones") legend (locator(1), border=NILL, fill=NILL, "Important ones") Thank you. regards, Chintanu [[alternative HTML version deleted]]
2016 Apr 08
2
Recommendations for free virtual server tech and Asterisk?
...ot;Pete Mundy" <pete at fiberphone.co.nz> wrote: > List, > > Might as well throw my hat in the ring! > > I can't say it's the 'best' way to do it, but I've been running Asterisk > VMs inside the free 'VirtualBox' software for many years with nill issues > (well, nill related to the hypervisor environment itself anyway!). > > https://www.virtualbox.org > > Pete > > On 8/04/2016, at 2:09 pm, Carlos Rojas <crt.rojas at gmail.com> wrote: > > I have tried with xen and kvm both are working fine. > > On Wed,...
2012 Dec 13
7
Thin server giving Stack level too deep error
Hi, I am using thin web server in my rails project. But it gives stack level too deep error. Couldn''t find any appropriate solution to this. I have tried updating the ruby but didn''t help. Regards, Sumit -- 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
2016 Apr 08
2
Recommendations for free virtual server tech and Asterisk?
I have tried with xen and kvm both are working fine. On Wed, Apr 6, 2016 at 3:44 PM, Loic Chabert <loic.chabert at voxity.fr> wrote: > Hello, > > Work well with kvm and centos 7. > Some ajustements has to be made with systemd. > > I'm using it in production since 1.5 year now, no issue to report. > > Regards. > Le 6 avr. 2016 21:13, "Yves"
2007 Mar 17
3
Hellllp Pl: Centos 4.4 Default LVM install boot/recovery problem
Hello all Nill experience with LVM. Have a Default Centos 4.4 install updated till a week ago with three HDDs. System's not booting up since my staff pulled out the plug due to a short circuit nearby. Machine is a PIII 550 MHz, with 3 HDDs 40 GB, 120 GB (Actually is bigger but my bios detects only upto 120...
2011 Sep 16
4
belongs_to not working as
...:foreign_key => :reg_no end class TestsUser < ActiveRecord::Base belongs_to :tests_user, :foreign_key => :reg_no end where reg_no is a unique field in both the table! score = Score.find(:first) gives me the first record from score table *Now as i do score.tests_user it gives nill.* and same with if i do test_user = TestsUser.find(:first) * then test_user.score is showing as nil...* * * * * Is this issue because of the foreign_key is not the default id!!!! -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" gr...
2005 Dec 31
3
[Model] [Noob] Table Naming w/ underscores
...e up with other names. One such name was f_transaction. This worked on the DB level, but I noticed that the Model name dropped the underscore, thus "FTransaction". How do I refer to the model in the view layer? Do I use f_transaction, ftransaction? Either way it is currently returning a nill object at the moment. Along the same naming issue, when defining a method "recent_ftransactions" how does the naming work here too (re: underscoring)? Thanks, Dave -- ~~~~~~~~~~~~~~~~~~~ D''Andrew "Dave" Thompson http://dathompson.blogspot.com -------------- next part...
2010 Jan 03
2
Problem with downloading a generated Excel sheet
...;'attachement'',:filename=>"#{file}" The excel sheet is generated correctly, but the last line gives an error in the server, and no file is downloaded. Here is the error: NoMethodError (undefined method `call'' for nil:NilClass): I don''t know what is the nill class of the above line. Can anyone help me? -- 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@publi...
2010 Apr 18
3
Wine compilation without fonts in CentOS 5.4
I'm new to Linux and am using CentOS 5.4 (RHEL) as distribution. I'm trying to compile the latest version of wine 1.1.43 to install the Full Tilt Poker. I compile, but with some errors in the shell. I install the Full Tilt Poker, but when I play, the fonts do not appear. Screens appear without something in writing. In Ubuntu the fonts appear normally, but with an install .deb. Could anyone
2012 Sep 12
8
Round off method in 1.8.7
Hi all i am trying to use round method if have a value 2.08 i want it as 2.1 and it worked in 1.9.2 but not in 1.8.7 is there any other way of doing it. USING 1.9.2 1.9.2p320 :001 > 2.08.round(1) => 2.1 1.9.2p320 :002 > 2.04.round(1) => 2.0 USING 1.8.7 irb(main):001:0> 2.08.round => 2 irb(main):002:0> 2.08.round(1) ArgumentError: wrong number of arguments (1 for
2007 Aug 23
6
Calling a method on class creation
I have a model User that has property called status. Status is just a string that can only be evaluated and not persisted. I.e. it doesn''t have a field in the user table. Anyways, I would like a method get_status to be called anytime I create a new instance of User. For example: user=User.new Since I created a new instance of User, I should now have access to the status property, e.g.:
2012 Oct 09
10
Auto refresh the drop-down
I have an option in dropdown like "Add new option" written using grouped_collection_select. And when user clicks on the "Add new option". A pop up dialog appears to add a new value. And when I click create it hits the database and adds the value to the db. But It never updates the dropdown list. Suggest me a way to auto refresh only the current dropdown with the new
2011 Jun 01
4
missing these required gems: will_paginate
Hi EveryBody, I hope some one help me. I am new on ROR so might be problem is silly or Obvious. i had developed a project and i had use "WILL_PAGINATE" plugin in my app. It''s working well at localhost. But when deploying on HEROKU, ALL step is going well but when running $heroku rake db:migrate ERROR IS Missing these required gems: will_paginate You''re
2006 Feb 13
6
How can I access the value of params[:tags] in my validate function?
I would like to have tags mandatory in my app. The following keeps giving me error that params is nill. def validate() if (@params[:tags]) errors.add(@params[:tags], ":tags must be entered ") end end Why cannot I access params in my model class? The field for tags is called "tags" How else can I add an error using errors.add? I finally...
2012 Sep 13
10
access key error
I am getting following error while run my rails app in my server ActionView::Template::Error (You did not provide both required access keys. Please provide the access_key_id and the secret_access_key.): -- 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
2011 Feb 17
16
Unindent ERB output
Hi all, I''d like to unindent a block of ERB specifically to combat the extra spacing being added to content inside <textarea> by the browser. Is there such a feature in ERB? I shall denote indentation with underscores in the pseudo code example below. Thanks in advance, Khoan. myview.erb: <html ...> __<%= render ''form'' %> </html>
2006 Mar 02
0
Cleaner code in rails view
...a Rails view. Some other code allowed a record to be posted to the DB w/o a good referential link. IOW, the FK in the record pointed to a missing record in the linked to table. The Rails view just spit out an attribute of the linked table and that caused the app to crash because table1.table2 was nill and table1.table2.field => ''field'' was not a valid method of nil. So I tried the trick posted earlier and it cleaned it up nicely. I''m sure that this problem comes up all the time, and there are probably better ways to handle it, but this abstraction was quite nice:...
2005 Dec 16
2
Asterisk Redundancy
Hi, i have two asterisk@hotme 2.2 server. i want if one of my asterisk server down. other is taken control of my first server and call goes through. Is it possible in asterisk. Usman -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20051216/7b0c169d/attachment.htm
2007 Jul 04
1
bind issue on centos 5
Hi all, i ma trying to setup bind-chroot on centos 5. its named.comf file is confused to me. I can not get it up and running. How can I fix it? It is very urgent. Can I run bind without chrootjail.if so, What is the pkg I should use? Pls note that this is a primary name server. I updated it to centos 5 from Redhat 9. on Redhat 9, I worked. But, without chroot jail. Some how, I wnat to get it
2009 May 23
0
Conditional Validation: only if a record can be found
...using an auto complete form. If each ticket has a guest attached, then the guestlist is ''full'' I have this rule in my controller and I want to turn it into a validation in the model. Any ideas? (sudo code) if Ticket.find(first, condition => guestlist_id = ? and guest_id IS NILL) attach guest else display ''guestlist is full'' end Thanks for your help Scott -- Posted via http://www.ruby-forum.com/.