some comment http://codereview.appspot.com/6458126/diff/1/MoinMoin/forms.py File MoinMoin/forms.py (right): http://codereview.appspot.com/6458126/diff/1/MoinMoin/forms.py#newcode139 MoinMoin/forms.py:139: DateTime = (DateTimeUNIX.with_properties(widget=WIDGET_DATETIME, placeholder=_("YYYY-MM-DD HH:MM:SS"), helper=_("example: 2999-12-31 23:59:59")) I would add a realistic example e.g. current year + 1 e.g. 2013-12-31 23:59:59 http://codereview.appspot.com/6458126/diff/1/MoinMoin/templates/common.js File MoinMoin/templates/common.js (right): http://codereview.appspot.com/6458126/diff/1/MoinMoin/templates/common.js#new... MoinMoin/templates/common.js:501: now.getUTCMonth() + 1, why + 1 ?
http://codereview.appspot.com/6458126/diff/1/MoinMoin/forms.py File MoinMoin/forms.py (right): http://codereview.appspot.com/6458126/diff/1/MoinMoin/forms.py#newcode139 MoinMoin/forms.py:139: DateTime = (DateTimeUNIX.with_properties(widget=WIDGET_DATETIME, placeholder=_("YYYY-MM-DD HH:MM:SS"), helper=_("example: 2999-12-31 23:59:59")) On 2012/08/14 05:20:01, Reimar Bauer wrote: > I would add a realistic example e.g. current year + 1 > e.g. 2013-12-31 23:59:59 okay :) http://codereview.appspot.com/6458126/diff/1/MoinMoin/templates/common.js File MoinMoin/templates/common.js (right): http://codereview.appspot.com/6458126/diff/1/MoinMoin/templates/common.js#new... MoinMoin/templates/common.js:501: now.getUTCMonth() + 1, On 2012/08/14 05:20:01, Reimar Bauer wrote: > why + 1 ? "The getMonth() method returns the month (from 0 to 11) for the specified date, according to local time." Perhaps it helps to work with drop-down lists of months.