
Security News
Researcher Exposes Zero-Day Clickjacking Vulnerabilities in Major Password Managers
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
kwatch-merb_helpers_monkey
Advanced tools
merb_helpers_monkey is a Merb plug-in to extend the following helper methods.
$ sudo gem install merb_helpers_monkey --source=http://gems.github.com
$ vi config/dependencies.rb
In Merb, 'radio_button :checked=>true' and 'radio_button :checked=>false' will genereate:
<input type="radio" checked="true" />
<input type="radio" checked="false" />
But the following output should be generated:
<input type="radio" checked="checked" />
<input type="radio" />
Merb_helpers_monkey extends radio_button() to generate the above tag. So you can write such as 'radio_button :checked=>(params[:foo]="y")'.
These methods are extended to accept new ':index_by' option.
For example:
<% @users.each do |user| %>
<%= fields_for user, :index_by => :id do %>
<p>
<%= text_field :name, :label => 'Name' %>
<%= text_field :mail, :label => 'Mail' %>
</p>
<% end =%>
<% end %>
will generate:
<p>
<label for="user_name_101">Name</label>
<input type="text" name="user[101][name]" id="user_name_101" value="Foo" />
<label for="user_mail_101">Mail</label>
<input type="text" name="user[101][mail]" id="user_mail_101" value="foo@mail.com" />
</p>
<p>
<label for="user_name_102">Name</label>
<input type="text" name="user[102][name]" id="user_name_102" value="Bar" />
<label for="user_mail_102">Mail</label>
<input type="text" name="user[102][mail]" id="user_mail_102" value="bar@mail.com" />
</p>
and the following parameters will be sent:
params = {
:user => {
"101" => { :name => "Foo", :mail => "foo@mail.com" },
"102" => { :name => "Bar", :mail => "bar@mail.com" },
}
}
So you can define controller action like the following:
def update
params[:user].each do |user_id, values|
user = User.get(ur_id) or raise NotFound
user.update_attribute(values)
...
end
end
makoto kuwata <kwa(at)kuwata-lab.com> copyright(c) 2008 kuwata-lab.com all rights reserved.
MIT License
FAQs
Unknown package
We found that kwatch-merb_helpers_monkey demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.