Up to [Local Repository] / interchange / code / Filter
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Fix incorrect license in headers GPL v2 -> GPL v2 "or later". Update copyrights.
* New filter, designed to replace the date2time filter, which I suggest
should now be deprecated.
The date/time is expected to have one of the following formats:
MM[/-]DD[/-]YY(YY)?(:hh(:?mm(:ss)?)?)?
or (ISO/MySQL date/time):
YYYY-MM-DD([T ]hh(:mm(:ss)?)?)?
First format: if the year specification contains only two digits,
and is less than 50, then it is treated as an offset from the year
2000, rather than from 1900. In other words, 07 is understood as
year 2007, and 80 is understood as year 1980. An unspecified day
or month will default to 01. Unspecified hours or minutes default
to 00.
Second (ISO/MySQL date/time) format: The year must be specified
using four digits, and the day and month are not optional.
In both cases, the hours, minutes and seconds will default to 00,
unless specified otherwise.