| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Adds `image_url`, `javascript_url`, `stylesheet_url`, `audio_url`,
`video_url`, and `font_url` to assets tag helper. These URL helpers will
return the full path to your assets. This is useful when you are going
to reference this asset from external host.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix override API response bug in respond_with
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Default responder was only using the given respond block when user
requested for HTML format, or JSON/XML format with valid resource. This
fix the responder so that it will use the given block regardless of the
validity of the resource. Note that in this case you'll have to check
for object's validity by yourself in the controller.
Fixes #4796
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
AS::Callbacks#define_callbacks: add :terminate_after_callbacks option
|
| | | | | | | |
|
|/ / / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
collection_radio_buttons
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
And options_from_collection_for_select as well.
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This will make it easy for the user to handle how check box/radio and
labels should be generated, abstracting any text/value/default html
options required to make it work.
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Extract value sanitization from default name and id method and new
collection helpers;
* No need to sanitize value in default name and id always;
* Improve value_before_type_cast to avoid concating the same method name
string twice.
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
collection_radio_buttons
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
module
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When the new html5 attribute :form is given to the check_box helper, it
should be replicated to the hidden field as well. Closes #4848
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
A little constantize update
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
check_box with nil as unchecked value should be HTML safe
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
[Carlos Antonio da Silva + Rafael Mendonça França]
|
|\ \ \ \ \ \ \ |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
stores.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
All the logic is based on the HTML_ESCAPE constant available in
ERB::Util, so it seems more logic to have the entire method there and
just delegate the helper to use it.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Improvements on some url helper methods and tests
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Reorganize button_to implementation a bit.
Also small refactor on current_page? method.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Re-launch assets:precompile task using original $0 if $0 is batch file so it works on Windows
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / /
|/| | | | | | | | | |
Refactor select helper and remove eval
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
|/ / / / / / / / / |
|
| | | | | | | | | |
|
| |_|_|/ / / / /
|/| | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Replaced all 'for' loops with Enumerable#each
|
| | | | | | | | | |
|