aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/number_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '3-2-17' into 3-2-stableRafael Mendonça França2014-02-181-1/+13
|\ | | | | | | | | Conflicts: actionpack/CHANGELOG.md
| * Escape format, negative_format and units options of number helpersRafael Mendonça França2014-02-181-1/+13
| | | | | | | | | | | | | | Previously the values of these options were trusted leading to potential XSS vulnerabilities. Fixes: CVE-2014-0081
* | Fix documentation of number_to_currency helperRafael Mendonça França2013-12-041-4/+4
|/ | | | | | Now users have to explicit mark the unit as safe if they trust it. Closes #13161
* Escape the unit value provided to number_to_currencyMichael Koziarski2013-12-021-1/+1
| | | | | | Fixes CVE-2013-6415 Previously the values were trusted blindly allowing for potential XSS attacks.
* Backport #9347 to rails 3.2hoffm2013-03-191-1/+1
|
* do not freeze NumberHelper defaults.Yves Senn2013-03-181-2/+2
| | | | Closes #9767.
* Add another NumberHelper missing dependencyRodrigo Rosenfeld Rosas2013-01-291-0/+1
| | | | | Another missing dependency, now affecting #number_to_percentage. It depends on reverse_merge.
* Add NumberHelper missing dependencyRodrigo Rosenfeld Rosas2013-01-291-0/+1
| | | symbolize_keys depends on hash/keys AS core extension
* Fix NumberHelper options wrapping to prevent verbatim blocks being rendered ↵Mark J. Titorenko2012-07-021-90/+159
| | | | | | | | | | instead of line continuations. While I'm at it, wrap long comment lines consistently. Conflicts: actionpack/lib/action_view/helpers/number_helper.rb There was just one conflict related to the addition of the :format option to number_to_percentage.
* fix number_to_human docs [ci skip]Vijay Dev2012-04-261-2/+2
|
* document `:raise` option support for several helpers [ci skip]Jonathan Roes2012-01-211-0/+3
|
* Infer currency negative format from positive one.Tsutomu Kuroda2012-01-051-0/+1
| | | | | | | | When a locale file sets the format of the positive currency value as '%n %u', the default negative currency format should be '-%n %u'. Cherry-picked from master (6724c8c8)
* copy editsVijay Dev2012-01-041-10/+7
|
* improve doc in number helper optionsPablo Ifran2012-01-041-19/+57
|
* put back the removed egVijay Dev2011-11-181-0/+1
|
* Fix a number_with_delimiter :separator exampleEdward Anderson2011-11-171-1/+1
|
* Cosmetic fix in number_to_currency docsAlexey Vakhov2011-11-101-2/+2
|
* remove user-specified delimiter from start when no area code is present (in ↵Mac Martine2011-10-121-1/+1
| | | | number_to_phone)
* checked all .rb files in the project tree for missing magic comments, one ↵Xavier Noria2011-07-231-0/+2
| | | | | | | | | | | | | | was missing Came with this one-liner for this: find . -name '*.rb' | \ xargs chardet | \ grep -v ascii | \ cut -d: -f1 -s | \ xargs -n1 ruby -0777 -ne 'puts $FILENAME if $_ !~ /#.*coding:\s*utf/i' Welcome $_.
* Ensure number helpers can handle HTML safe strings - closes #1597.Andrew White2011-06-101-1/+1
|
* Remove trailing white-spacesGuillermo Iguaran2011-06-051-1/+1
|
* added a :prefix option to number_to_human_sizeDiego Carrion2011-04-271-3/+6
|
* Making spacing consistentMatt Duncan2011-04-151-2/+2
|
* Fixing missing colon on symbol in exampleMatt Duncan2011-04-151-1/+1
|
* Negative format example should use a negative numberMatt Duncan2011-04-151-1/+1
|
* fixes an issue with number_to_human when converting values which are less ↵Josh Kalderimis2011-03-161-1/+1
| | | | | | than 1 but greater than -1 [#6576 state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Action Pack typos.R.T. Lechow2011-03-051-3/+3
|
* Fixed number_with_precision rounding error [#6182 state:resolved]Don Wilson2010-12-181-2/+3
|
* Revert "Fixed number_with_precision rounding error [#6182 state:resolved]"Piotr Sarnacki2010-12-171-3/+2
| | | | This reverts commit 006ec77e60163d57d655479602230672d98e0f10.
* Fixed number_with_precision rounding error [#6182 state:resolved]Don Wilson2010-12-171-2/+3
|
* made a pass to the docs of :negative_formatXavier Noria2010-11-031-5/+7
|
* Added :negative_format option to number_to_currency function [#5894 ↵Don Wilson2010-11-021-7/+16
| | | | | | state:resolved] Signed-off-by: Andrew White <andyw@pixeltrix.co.uk>
* lets not invert the hash on every iteration through this loopAaron Patterson2010-10-181-1/+3
|
* use -= in place of the expanded formAaron Patterson2010-10-181-1/+1
|
* implicitly return nil if there is no numberAaron Patterson2010-10-181-2/+2
|
* implicit return of nilAaron Patterson2010-10-181-1/+1
|
* use regex escape sequences to shorten stuff upAaron Patterson2010-10-181-2/+2
|
* join strings rather than resizing bufferAaron Patterson2010-10-181-2/+2
|
* Invoke html_escape on the proper receiverSantiago Pastorino2010-10-181-1/+1
|
* Tidy up a bit this codeSantiago Pastorino2010-10-181-4/+6
|
* Why strip only the extension, this can be done by the userSantiago Pastorino2010-10-181-1/+1
|
* This or login doesn't make senseSantiago Pastorino2010-10-181-3/+3
|
* Use unless instead of if nil?Santiago Pastorino2010-10-181-1/+1
|
* Add missing requireSantiago Pastorino2010-10-181-0/+1
|
* parse number only if options[:raise] is providedSantiago Pastorino2010-10-171-4/+2
|
* number_to_phone always return safeSantiago Pastorino2010-10-171-4/+1
|
* Make number_to_human and number_with_precision work with negativesSantiago Pastorino2010-09-051-2/+2
|
* Fix code style a bitSantiago Pastorino2010-09-051-2/+1
|
* Fix number_to_human(0) exception [#5532 state:resolved]Ben Sharpe2010-09-051-1/+2
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-1/+1
| | | | 's/[ \t]*$//' -i {} \;)