summaryrefslogtreecommitdiff
path: root/lib/rdoc/generator/template/json_index
AgeCommit message (Expand)Author
2019-08-28Good bye jQueryaycabta
2018-08-27Merge rdoc-6.1.0.beta1.hsbt
2016-09-05* lib/rdoc/*, test/rdoc/*: Update rdoc/rdoc master(f191513)hsbt
2015-08-28* lib/rdoc/*: Update rdoc master(cfffed5)hsbt
2013-01-16* .document: Removed extra spacedrbrain
2012-11-27* lib/rdoc*: Updated to RDoc 4.0 (pre-release)drbrain
d colspan='3' class='logmsg'> https://github.com/ruby/time/commit/44a55daa70 2020-06-21[DOC] Mentioned that `Time.parse` method is not validatorNobuyoshi Nakada 2020-05-23Time.xmlschema: Clarify error and docsHenrik Nyh and Tomas Skogberg It parses a (date)time, not a date. Notes: Merged: https://github.com/ruby/ruby/pull/3046 2019-11-21Support %U/%u/%W/%w/%V/%g/%G formats in Time.strptimeJeremy Evans Most of these formats were documented as supported, but were not actually supported. Document that %g and %G are supported. If %U/%W is specified without yday and mon/mday are not specified, then Date.strptime is used to get the appropriate yday. If cwyear is specifier without the year, or cwday and cweek are specified without mday and mon, then use Date.strptime and convert the resulting value to Time, since Time.make_time cannot handle those conversions Fixes [Bug #9836] Fixes [Bug #14241] Notes: Merged: https://github.com/ruby/ruby/pull/2685 2019-11-06Time#strftime does not support `%Q`Kazuhiro NISHIYAMA ``` % ruby -r date -e 't=Time.utc(2001,2,3,4,5,6,7);p t; p [t, t.to_date, t.to_datetime].map{|d|d.strftime("%Q")}' 2001-02-03 04:05:06.000007 UTC ["%Q", "981158400000", "981173106000"] ```