Displaying 20 results from an estimated 100 matches similar to: "Action Controller ::MethodNotAllowed"
2010 Jun 24
0
Nested Model Forms
I''m trying to get a multi level nested form model working but have hit a
problem. In one of my models, I have a habtm association and it''s throwing
an error on a nested form and these are check boxes with a method of
''time_unit_ids[]''.
The nested forms work without the habtm (time_unit_ids[]) so things are
pretty much set up okay.
Here''s the set up
2010 May 03
3
Help needed with legend
Hello,
I am new to R and need some help with the legend. How can I add a legend for
two variables (in two columns) each having multiple values to be explained
in the legend. For example:
Var 1 Var 2
<symbol> - Higher <symbol> - Higher
<symbol> - Avg <symbol> - Avg
<symbol> - Lower <symbol> - Lower
I know we
2011 May 05
1
Extraction of columns from two matrices
Hi,
I have two matrices with 4885 cols and 36 cols respectively . I would like
to extract these 36 columns from the bigger matrix, the column values are
different but the column names would be the same.Hence based on the names I
would like to perform my operation. So is there any way of extracting this
info in an easy way. I have tried names,which,grep,subset none have worked.
Could someone help
2005 Jun 15
1
anova.lme error
Hi,
I am working with R version 2.1.0, and I seem to have run into what looks
like a bug. I get the same error message when I run R on Windows as well as
when I run it on Linux.
When I call anova to do a LR test from inside a function, I get an error.
The same call works outside of a function. It appears to not find the right
environment when called from inside a function. I have provided
2008 Oct 11
1
Asterisk 1.6.1 + openais
Hello,
I followed the steps by Russell*
http://www.venturevoip.com/news.php?rssid=1980*
and I got it working for publish_event only. As soon as I add
subscribe_event, Asterisk doesn't start and I just get the following
message:
*Oct 11 6:38:04.340485 [CLM ] nodeget: trying to find node ffffffff*
I have no idea what's wrong. There is not very much information about this
issue.
Where
2011 Jul 18
1
rails server being aborted due to mysql lib file not available
Hi,
My system has the following :
MacOs Leopard
Rails 3
Ruby 1.9
Mysql 5.1.58
mysql2 ruby gems
My problem is that when i give "rails server", the task aborts with
the foll error
rails server/Users/nisha/.rvm/gems/ruby-1.9.2-p180@rails3/gems/
railties-3.0.5/lib/rails/script_rails_loader.rb:11: warning: Insecure
world writable dir /usr/local/bin in PATH, mode 040777
2007 Dec 21
5
dom movement methods, unattached objects
Hey guys
I have a bunch of element fragments (ie this might be a div, with children
of an image, another div) etc which aren''t attached to the document yet..
and can''t seem to call the dom manipulation methods on them:
down(''img.icon'') returns undefined but if I look at the innerHTML of the
element, there is clearly an image there with that class.
Is this is
2009 Sep 19
2
MethodNotAllowed
I am trying to develop an application that allows users to submit
articles and add information about the references they used when
citing facts. I have the sources broken down into types, such as
books, periodicals, web-sites, etc as single table inheritance on the
sources table. Routes are nested so that :articles, :has_many
=> :sources When trying to edit a source, through the
2008 Aug 01
1
rescue_from ActionController::MethodNotAllowed
Hello,
I''m having some trouble handing ActionController::MethodNotAllowed
errors. Basically, the following is defined in my controllers, but
obviously I''m missing something. Thanks in advance for any light you
can shed.
- - - - - - - - - - - - - - - - - - - -
class UsersController < ApplicationController
rescue_from ActionController::MethodNotAllowed, :with
=>
2008 Aug 25
0
ActionController::MethodNotAllowed
Hello All,
I m trying to use a form on my website to send an email. So my form
goes like this :
<% form_tag("/emailfeeder/create", :method => :post) do %>
<tr>
<td class="col1">To: </td>
<td class="col2"><%= text_field_tag "recepient",
@recepient.to_s, :disabled => true %></td>
2008 Jul 19
0
Why MethodNotAllowed all of a sudden?
I''m using shortcuts for login, logout etc. in routes.rb, for example:
map.login ''login'', :controller => ''session'', :action => ''new''
When I access http://localhost:3000/login I get following exception:
ActionController::MethodNotAllowed
Only get, head, post, put, and delete requests are allowed.
Does anyone know
2008 Nov 16
2
[LLVMdev] Move instruction
Hi owen,
Can you please elaborate as to what should I do? Find all the instruction which have r2 in it and replace all of them with r1 and then remove the load instruction?
Thanks
Abhinav
----- Original Message -----
From: "Owen Anderson" <resistor at mac.com>
To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
Sent: Friday, November 14, 2008 11:22:32 PM
2009 Sep 14
2
RMagick Installation woes
Hi,
I need to install Rmagick to get re-sizing working with Paperclip. My
dev machine is on Mac OSX Leopard and the server is on Ubuntu Intrepid
8.1
I dint have Macports or wget at first. I was following this article -
http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink.
Ive done this before too. But some dependency always failed.
I want to start with a
2008 Nov 16
0
[LLVMdev] Move instruction
r2->replaceAllUsesWith(r1);
r2->eraseFromParent();
LLVM makes it easy! ;-)
--Owen
On Nov 15, 2008, at 11:02 PM, Karhu, Abhinav R wrote:
> Hi owen,
> Can you please elaborate as to what should I do? Find all the
> instruction which have r2 in it and replace all of them with r1 and
> then remove the load instruction?
> Thanks
> Abhinav
> ----- Original Message
2009 Sep 09
4
undefined method `attr_accessor' for #<CustomersControl
pleas help
--
Posted via http://www.ruby-forum.com/.
2008 Nov 14
2
[LLVMdev] Move instruction
Hi all,
Can anybody tell me how to generate a mov instruction in llvm. I found out there is a MemMove Inst but I dont think that is what I want.
I want to bypass a load instruction. So i need to generate a mov instruction which will help me remove the redundant load.
Thanks
--
Abhinav Karhu
MS Computer Science
Georgia Institute of Technology
2009 Jul 01
1
form_for resources with :singular specified
I fully suspect that I''m missing the point here somewhere so I promise
I won''t be offended if you tell me I''m being daft.
My application rents equipment ... not equipments. So I have the
following:
map.resources :equipment, :singular => :equipment_instance
class Equipment < ActiveRecord::Base
class EquipmentController < ApplicationController
The
2008 Nov 15
0
[LLVMdev] Move instruction
On Fri, Nov 14, 2008 at 2:13 PM, Karhu, Abhinav R <akarhu3 at gatech.edu> wrote:
>
> Hi all,
> Can anybody tell me how to generate a mov instruction in llvm. I found out there is a MemMove Inst but I dont think that is what I want.
> I want to bypass a load instruction. So i need to generate a mov instruction which will help me remove the redundant load.
At the LLVM IL level,
2007 Aug 13
1
SqueezeBox, a new Mongrel handler
SqueezeBox is a simple file system based routing framework for erubis
templates.
It aims for a couple of niceties as well:
Instead of putting your logic inside your template, like you would
with PHP, SqueezeBox recognizes a separate logic file to be called
before it loads the template. This allows you room to load
ActiveRecord models or do calculations. These logic files return to
the webserver
2006 Apr 05
1
(Fwd) Re: Reading xyz data from a file and plotting a cont
BTW. I checked help page of contour and maybe it could mention a note
about akima package or interp function.
Petr
------- Forwarded message follows -------
From: Petr Pikal <petr.pikal at precheza.cz>
To: "Abhinav Verma" <abhinav1205 at gmail.com>, r-help at stat.math.ethz.ch
Subject: Re: [R] Reading xyz data from a file and plotting a