Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
23answers
2k views

how to determine if someone will make a good programmer [closed]

My current company is starting a development project with another afiliated company. We are a programming shop but the other company has no developers. We will be creating an app for that company ...
13
votes
3answers
550 views

Testing view helpers

I'm currently working on a Rails plugin used for generating iPhone specific HTML meta-tags. I'm trying to use ActionView::TestCase for unit tests but keep getting the same error. See file contents and ...
13
votes
4answers
7k views

Why are all Rails helpers available to all views, all the time? Is there a way to disable this?

Why can I access helper methods for one controller in the views for a different controller? Is there a way to disable this without hacking/patching Rails?
9
votes
4answers
312 views

SessionsHelper in railstutorial.org: Should helpers be general-purpose modules for code not needed in views?

railstutorial.org has a suggestion which strikes me as a little odd. It suggests this code: class ApplicationController < ActionController::Base protect_from_forgery include ...
9
votes
3answers
2k views

where to put time format rules in Rails 3?

I am finding myself repeating typing many strftime which I defined. Having watch Ryan Bates's railscasts ep 32/33( I think), I created a custom option for the to_s method as in Time.now.to_s, so that ...
7
votes
4answers
393 views

Rails article helper - “a” or “an”

Does anyone know of a Rails Helper which can automatically prepend the appropriate article to a given string? For instance, if I pass in "apple" to the function it would turn out "an apple", whereas ...
7
votes
1answer
2k views

Custom form helpers

Is there a way that I can create a custom form helper so that instead of: special_field_tag :object, :method I can achieve something like: form.special_field :method
7
votes
1answer
5k views

How to implement a helper in Symfony 1.4?

I'd like to create my own helper but can't find any help on Google for Symfony 1.4/Doctrine. I guess it has something to do with creating a myClassHelper.class.php in lib/helpers/ or something, but I ...
5
votes
2answers
220 views

Rails 3 nested resources short name?

I'm in the process of upgrading a Rails 2.3 app to Rails 3. In the Rails 2.3 router, it was possible to set a :name_prefix of nil on nested resources to get a shorter name. The actual URL would ...
5
votes
2answers
2k views

PyroCMS helper documentation

I'm working on a PyroCMS project, but having problems due to the lack of complete documentation. Does anyone know where I can find a list of core helpers, such as {pyro:navigation:links}? Thanks, ...
5
votes
1answer
3k views

Rails- nested content_tag

I'm trying to nest content tags into a custom helper, to create something like this: <div class="field"> <label>A Label</label> <input class="medium new_value" size="20" ...
5
votes
9answers
8k views

“undefined method” when calling helper method from controller in Rails

Does anyone know why I get undefined method `my_method' for #<MyController:0x1043a7410> when I call my_method("string") from within my ApplicationController subclass? My controller looks like ...
4
votes
2answers
743 views

Helper “fields_for” not working

I'm using nested attributes, but the fields aren't loaded in my view. Someone know what I missing? Rails 3.1, Ruby 1.9.2 Model 1: class Traditions::Material < ActiveRecord::Base has_one ...
4
votes
2answers
147 views

Does this MVC controller code need to be refactored or not?

I am writing an CSV/Excel-->MySQL import manager for an MVC application (Kohana/PHP). I have a controller named "ImportManager" which has an action named "index" (default) which displays in a grid ...
4
votes
4answers
3k views

Razor Helper in MVC 3 RC

I get an error when using razor helpers in an MVC 3 project (did put the cshtml file in app_code). Looks like the generated code is using a wrong assembly reference. using WebMatrix.Data; using ...
4
votes
4answers
1k views

How to mixin and call link_to from controller in Rails?

This seems like a noob question, but the simple answer is eluding me. I need to call link_to in an ActionController method to spit out an HTML link. ActionView::Helpers::UrlHelper.link_to calls ...
4
votes
5answers
2k views

Rails: Preserving GET query string parameters in link_to

I have a typical search facility in my app which returns a list of results that can be paginated, sorted, viewed with a different records_per_page value, etc. Each of these options is controlled by ...
4
votes
2answers
1k views

How to write a helper in Ruby on Rails to capture Haml blocks?

I am writing a Rails helper method that will add wrapper html to captured content blocks and replace content_for method, such as - content_for :header do //haml code ..would become - content ...
4
votes
2answers
472 views

Rails ApplicationHelper Escaping HTML without return statement

When I write module ApplicationHelper def flash_helper flash.each do |key, msg| content_tag :div, msg, :class => key ## "<div class=\"key\">" + msg + "</div>" ...
4
votes
2answers
354 views

Using Rails form helpers on non-existent methods

Normally, when using form helpers in Rails, each field directly correlates to a method on the appropriate object. However, I have a form (user signup) that needs to include fields that are not part ...
4
votes
1answer
2k views

jQuery equivalents to ExtJS functions extend(), apply() and namespace()?

ExtJS provides some great helper functions like: Ext.extend() Ext.apply() Ext.namespace() Are there any equivalents in jQuery? I know I could port all three to jQuery since I like them so much, ...
4
votes
2answers
298 views

Why aren't rails helpers more object-oriented?

For example, why are the date helpers written like this: time_ago_in_words(@from_time) Instead of like this: @from_time.time_ago_in_words Is this a clear design error / inconsistency? Or is ...
3
votes
1answer
129 views

How to access a helper from the controller in CakePHP?

Well, this is a tricky one, and I'm not really sure it's not breaking the MVC model. I'm loading some data into the controller, retrieved from the model. I'm passing this object to the view almost ...
3
votes
1answer
276 views

Create a scoped block in rails helper for additional scoped methods

I would like to define some helper methods within a block helper but keep them within the scope of the block so that I can have sensible method names and it looks cleaner. Say I want to do the ...
3
votes
1answer
246 views

What is the most useful String helper that you've encountered? [closed]

What useful helpers for String manipulation to you have to share? I once wrote a replacement for String.Format(), which I find much more neat to use: public static class StringHelpers { public ...
3
votes
1answer
140 views

How do I use the `--helper` flag in a rails 3 controller generator?

The documentation from rails generate controller says: [--helper] # Indicates when to generate helper # Default: true Now, it doesn't specify how to ...
3
votes
3answers
1k views

Rails 3 strip whitespace before_validation on all forms

I'm relatively new to Rails and a bit surprised this isn't a configurable behavior...at least not one I've been able to find yet?!? I would have thought that 99% of forms would benefit from whitespace ...
3
votes
2answers
142 views

Reflective helper java libraries

There are some Java libraries that do stuff you would otherwise have to put in every single class. For example, I had to put a clone() method in every single class until I discovered Cloner, and I had ...
3
votes
1answer
2k views

Rails: how can I access the request object outside a helper or controller?

In my application_helper.rb file I have a function like this: def internal_request? server_name = request.env['SERVER_NAME'] [plus more code...] end This function is needed in controllers, ...
3
votes
1answer
321 views

Zend framework helper intellisense

Not so much a programming problem, but more a productivity problem. We've got quite a few custom view and action helpers in our project. Working with around 7 programmers. Now when someone, creates ...
3
votes
1answer
1k views

Rails global content_for

Example: I have 2 partial _map.haml and _bigmap.haml. :: _map.haml - content_for :map do %script{:type => "text/javascript", :src => "http://maps.google.com/maps/api/js?sensor=true"} ... ...
3
votes
1answer
521 views

Embedding persistent login form Zend

I've seen this question asked already - but none of the answers really gelled for me, so I'm asking again: I want to embed a persistent login form (which will change into a nav bar if logged in) in ...
3
votes
2answers
2k views

rails: methods from module included in controller not available in view

Strange thing – I have Authentication module in lib/ like this: module Authentication protected def current_user User.find(1) end end and in ApplicationController I'm including this ...
3
votes
3answers
1k views

How do I test helpers in Rails?

I'm trying to build some unit tests for testing my Rails helpers, but I can never remember how to access them. Annoying. Suggestions?
2
votes
1answer
57 views

CakePHP custom helper works locally but not on server

locally all is well. but when i moved my app to my server i got an error because cake didn't recognize my custom helper. the error for my helper 'Halp' was Undefined property: View::$Halp it ...
2
votes
2answers
56 views

How do I make sure the helpers and models reload in RSpec when I'm using Spork?

It seems like my helpers (and sometimes my models) aren't being reloaded on each run with Spork. What should I be putting into my "Spork.each_run" block?
2
votes
2answers
207 views

Static Helper Class vs Static Method on an Instance Class vs Extension Method

I'm looking for a best practice approach to the following problem. I'd like peoples opinion's on which method(s) they would use, and why, to the following scenario: I've got a Class which is ...
2
votes
1answer
255 views

uninitialized constant ActiveSupport::Concern

I got below link to solve problem related to class and instance method. http://www.fakingfantastic.com/2010/09/20/concerning-yourself-with-active-support-concern/ module NotificationsHelper extend ...
2
votes
1answer
298 views

(Python/Pyramid) Better ways to have standard list/form editors?

I'm working on a number of Pyramid (former Pylons) projects, and often I have the need to display a list of some content (let's say user accounts, log entries or simply some other data). A user should ...
2
votes
1answer
43 views

Using a helper page created on a page X in Y?

I have a page X.cshtml with the following code: @helper CodeTest{ <h1>Test</h1> } And on my page Y.cshtml like to use this helper ... how can I call him?
2
votes
1answer
778 views

Custom HTML Helpers in Razor & HTML Extension Methods

There are a lot of questions, here and everywhere, regarding the impossibility of using HtmlHelper extension methods (like ActionLink) in an @helper (razor) method. Right now, in my project, I solved ...
2
votes
2answers
163 views

Getting NoMethodError for Padrino helper methods

I'm new to Padrino and have been running through the sample blog tutorial. I'm getting a NoMethodError when using the sample code below # app/views/posts/index.haml @title = "Welcome" #posts= ...
2
votes
1answer
151 views

Helper for tag html a

is there any helper in asp.net MVC3 <a href="www.google.com">Go to Google </a> ? Not for an action but to a static link
2
votes
2answers
138 views

Are there any view helpers to generate CSS?

I like the idea of HTML helpers, which allows me not to write all the HTML for common elements, while still gives me full control, preserves model-view separation and can be strongly typed. I'm ...
2
votes
1answer
1k views

Rails 3 - select_tag helper - array

I have a question I'm a little embarrassed to ask, but can't seem to figure out. I'm writing a form to allow users to filter information for them to see only what they want. In the form I'm using the ...
2
votes
2answers
280 views

Testing view helpers: how do I specify a controller?

Consider, for example, the following code: class ViewHelpersTest < ActionView::TestCase should 'generate tag with correct parameters' do assert_equal theme_stylesheet_link_tag('style', ...
2
votes
2answers
183 views

Rails helper method that works differently in different environments

In a Ruby on Rails application, I have a controller where I'd like some functionality to conditionally run, where the condition is dependent on the environment the application is running in. As a ...
2
votes
1answer
357 views

Rails test unit - helper with content_for

module ApplicationHelper def title(page_title, show_title = true) content_for(:title) do page_title.to_s end @show_title = show_title end end Anyone knows how can I test ...
2
votes
1answer
236 views

cakePHP: Can you query the database from a helper class?

Hi just need to know whether you can query the database from inside a helper class, whether you should and how you do it. Thanks
2
votes
2answers
466 views

Zend Framework Widget Tutorial question

I try to follow this tutorial, but I can't get it to work: http://weierophinney.net/matthew/archives/246-Using-Action-Helpers-To-Implement-Re-Usable-Widgets.html I did everything as described, but I ...

1 2 3 4 5