Displaying 20 results from an estimated 2000 matches similar to: "Counting helpers through a view"
2007 Jan 31
1
help please!
Hi,
I''ll appreciate insight on this one... it''s causing me some pain on my
production env.
<%= link_to "something",
  :controller => "somecontroller",
  :action => ''someaction'',
  :id => someid,
  :favorite => is_a_favorite %>
I added a boolean :favorite to the URL arguments.
THis has always worked well under my dev
2006 Mar 18
2
Additional link tag attributes with link_to_function...
Hi,
I''m having a bit of a struggle with link_to_remote. Everything works 
exactly as I want it, but the problem is that I want to add another 
attribute to the <a>-tag, namely class="". Long story short, I want 
specific links to look differently from others, but all of them being 
link_to_function. Normally, I''d do this with adding a class="foo" to 
2006 Apr 28
4
can someone help DRY a noob? thanks...
hi all
i''m trying to pass a variable name right round the block and need a hand 
to ease my aching brain.
##in my sidebar i have
   <li><%= SidebarItem(''catalogue'') %></li>
   <li><%= SidebarItem(''provenance'') %></li>
   <li><%= SidebarItem(''status'') %></li>
##linked to a
2005 Dec 19
8
Simply Ruby question: "zerofill"
Hi there-
What''s the easiest/most efficient way to perform a zerofill in Ruby? 
i.e.  Given the value ''val'', I would like to do something like:
val = 43
puts val.zerofill(8)
--->  "00000043"
gsub?  sprintf of some sort?
   Jake
-- 
Posted via http://www.ruby-forum.com/.
2008 Oct 10
16
rspec - undefined method `describe'' for main:Object
When i run a spec file i am getting the following error
  D:\Diwakar\spec_diwa\spec\controllers>spec sandbox_controller_spec.rb
c:/ruby/lib/ruby/gems/1.8/gems/rspec-0.5.15/lib/spec/api/sugar.rb:17:in
`method_
missing'': undefined method `describe'' for main:Object (NoMethodError)
        from ./sandbox_controller_spec.rb:7
        from
2006 Jan 20
10
Generating a long, unique "ticket" number.
Hello --
I would like to setup a system where a user can generate a "ticket". 
This ticket will be stored indefinitely.  The ticket will be sent to 
someone who does not have an account on the system and therefore, I 
would like to ensure some level of security in that ticket number.
Basically, the other user would receive an email like:
---
Please click on the link below to view this
2005 Dec 19
7
PDF Shipping Order from Rails...BOUNTY
Hello Rails Community,
   
  I put this request out to the community a few weeks ago and got one reply and he ended up being too busy to do it.
   
  So, let me try again.  I have a need to generate a shipping order from an application that is rails driven.  All the data for the shipping order is contained within two tables.  I feel like it it too cumbersome to map out all the coordinates for the
2006 Jul 10
1
link_to_remote questions
Hello,
I tried link_to_remote to see the build in AJAX capabilities with rails for
the first time for me, I tried the following code and it worked:
<%= link_to_remote( "some link",
                         :update => "some_div",
                         :url =>{ :action => :someaction }) %>
OK, it has worked, but I have two questions here:
1- When moving
2006 Apr 17
0
AcctionMailer templates
Is posible to use helpers in ActionMailer templates???
When I do:
<%= link to ''my link'', :action=>''someaction''%>
in the mail template, I get the following error on the browser:
undefined method `url_for'' for #<AdminMailer:0x8ebdfcc>
Thanks.
2009 Feb 25
0
Routes with parameters ordered differently
Hi, i''m trying to setup a custom route and having some trouble.
In various resources i''ve seen plenty of examples of how to do something
along the lines of:
map.connect "foo/bar/:a/:b/:c",
 :controller => "foo",
 :action => "bar",
(and :a,:b and :c get mapped to params[])
what i''d like to do is make a mapping of the form
2007 Mar 12
1
Can't follow redirects outside current controller - but it's the same controller
Running a functional test on FooController that does
''follow_redirect'', I get ''Can''t follow redirects outside current
controller (from "foo" to "foo"). On further investigation, it turns
out that :foo != ''foo'' around line 401 of actionpack/lib/
action_controller/test_process.rb. Changing the line:
if redirected_controller
2007 Apr 29
0
integration test redirects to external URLs
In an integration test that I am writing I want to do something like
def test_my_page
    get "/rails/someaction"
     assert_response :redirect
     follow_redirect!
     assert_url => ''http://www.somepageoutsidemyrailsapp''
end
Is there any way to do something like ''assert_url'' and see if I was  
redirected to a page outside of the rails
2006 Jan 18
23
RForum Software Sucks?
(Donning flameproof suit)
Am I the only person who thinks that the Ruby forum software sucks?
E.g. search only for a word.  Can''t search for new posts, can''t search
by date, topic list doesn''t indicate when I''ve already read a post,
there can be several independent replies to a topic, just to name a few.
There are lots (admittedly not Ruby based) of good
2007 May 30
6
authentication mocks
hi
I''m using restful_authentication
and have controller specs working using users fixtures (and login_as)
however i''ve been trying for hours without success to do it without  
fixtures, using mocks and stubs instead.
anyone here done this? got code?
:)
thanks
2006 Mar 21
5
Encrypting source / application licensing
Hey folks-
If I wanted to distribute my code to users that would run the code on 
their own machine, how could I go about encrypting the source to run on 
a user''s machine?
PHP has the Zend Encoder among others, I believe.  Is there anything 
similar for Ruby?
   Jake
-- 
Posted via http://www.ruby-forum.com/.
2006 Jan 22
6
Destructive behavior with link_to, button_to, :post=>true
Hello-
I would like to know what the suggested practice is for having multiple 
submit buttons on a relatively complicated input page.
Let''s use the example of a Contact.  There is lots of info there, 
including name, address, phone number.  There is also a list of "contact 
associations" which can be modified on the same page.
Ideally, the user could have one
2006 Jan 25
11
Schemas and Migrations
Hello-
I''m new to the ruby-based schemas and migrations.  As I''m looking over 
examples and such online, I see that many of them don''t make use of 
schema-enforced attributes.  For example, instead of:
   t.column "post_id", :integer, :default => 0, :null => false
They do:
   t.column "post_id", :integer
So I''m wondering -- is this
2006 Jan 16
7
Editing N instances of a model on one page
I have a situation where I want to edit an arbitrary number of instances 
of one model on one page.  I can and have accomplished this by manually 
managing the object <-> text field relationship, but in a way I consider 
at best hackish.  I''d like to know a clean way to do this.
If you want to edit the name attribute on a person class, you write code 
like this
2005 Dec 29
5
Extracting SQL and Rebuilding from SQL?
Hello-
With a database filled with several customers'' datasets, I thought it 
would be a nice feature of my app''s backend interface to be able to 
extract (and optionally delete) the data from a single customer.  It 
would then also be nice to rebuild that data from the stored info.
What''s a good way to do this efficiently?
If all the ":dependent => true"
2006 Feb 07
5
homepage instead of welcome page?
Got a noob question for ya...
When I visit http://localhost:3000/
I get the nice "Welcome to rails" page. To get to a controller I have to 
go to:
http://localhost:3000/controllername
What if I don''t want the welcome message and want / to resolve to a 
controller?
How do I set that up?
Thanks,
Dave
-- 
Posted via http://www.ruby-forum.com/.