http://hg.code.sf.net:8000/p/roundup/code/atom-log/tip/test/test_dates.py Mercurial Repository: p/roundup/code: test/test_dates.py history 2025-01-18T12:23:23-05:00 fix: issue2551390 - Replace text input/calendar popup with native date input http://hg.code.sf.net:8000/p/roundup/code/#changeset-2bf0c4e7795e383a6722e70d071361bb3db45b2c John Rouillard rouilj@ieee.org 2025-01-18T12:23:23-05:00 2025-01-18T12:23:23-05:00
changeset 2bf0c4e7795e
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description fix: issue2551390 - Replace text input/calendar popup with native date input

Docs, code and test changes for the changeover to a native date
element.

See issue for details.
files
fix(i18n): issue2551184 - improve i18n handling http://hg.code.sf.net:8000/p/roundup/code/#changeset-c8a931aa7514f81a0b3f8e43aa2b7c57e8d0498c Marcus Preisch Marcus Preisch 2023-07-20T20:08:28-04:00 2023-07-20T20:08:28-04:00
changeset c8a931aa7514
branch
bookmark
tag
user Marcus Preisch
description fix(i18n): issue2551184 - improve i18n handling

Apply patch to make sure that the dates tests use the locale files in
the deployed tracker and not other roundup files.
files
Make i18n tests work http://hg.code.sf.net:8000/p/roundup/code/#changeset-5be4f9104cf7689be113b81e60af959e61cee76e Ralf Schlatterbeck rsc@runtux.com 2022-05-02T13:46:58+02:00 2022-05-02T13:46:58+02:00
changeset 5be4f9104cf7
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Make i18n tests work

These use installed roundup locales but should use the checked-out
locales. Also revert monkey patches in i18n after the test.
files
Force test of a locale http://hg.code.sf.net:8000/p/roundup/code/#changeset-0f0cee081990fb22abc5cb3c507203330e051171 John Rouillard rouilj@ieee.org 2021-09-06T13:18:53-04:00 2021-09-06T13:18:53-04:00
changeset 0f0cee081990
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Force test of a locale

We had a file descriptor leak in the i18n routines.
The code that opens a .mo file and then closes it was not
tested.

Add a test for converting dates to german locale. Make test use the
locale/locale subdirectory tree. To do this build the .mo files and
put them into the proper tree structure:

locale/locale/<two char lang code>/LC_MESSAGES/roundup.mo

Also make py.test run with warnings made into errors. Try to get
advanced warnings of deprecation issues, resource leaks etc.

Ignore error generated by the markdown module that uses the old
SelectableGroups interface to dict:

DeprecationWarning: SelectableGroups dict interface is
deprecated. Use select.

Also ignore use of imp module in gpg.gpgme, U mode in docutils.io.

Tried to split lines for the py.test run so each warning is on it's
own line. Makes it more readable and editing in the future easier.
Not sure if it's valid though. May need to revise.
files
Fix issue2551128 - Impossible to validate a user with unknown timezone http://hg.code.sf.net:8000/p/roundup/code/#changeset-d76291836523c09e773142f598527c0afbc16a2c John Rouillard rouilj@ieee.org 2021-04-18T17:39:44-04:00 2021-04-18T17:39:44-04:00
changeset d76291836523
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Fix issue2551128 - Impossible to validate a user with unknown timezone

Raise KeyError when an unrecognized timezones is passed to
pytz. (patch Cedric Krier, test John Rouillard)
files
replace assertEquals with assertEqual. http://hg.code.sf.net:8000/p/roundup/code/#changeset-db429c75caec2803890305925f29d46f916af296 John Rouillard rouilj@ieee.org 2019-06-10T21:20:14-04:00 2019-06-10T21:20:14-04:00
changeset db429c75caec
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description replace assertEquals with assertEqual.
files
Python 3 preparation: numeric literal syntax. http://hg.code.sf.net:8000/p/roundup/code/#changeset-64c4e43fbb84812c1927ebec861d96837b77dbaa Joseph Myers jsm@polyomino.org.uk 2018-07-24T21:43:32+00:00 2018-07-24T21:43:32+00:00
changeset 64c4e43fbb84
branch
bookmark
tag
user Joseph Myers <jsm@polyomino.org.uk>
description Python 3 preparation: numeric literal syntax.

Fixes octal constants to use leading 0o, and removes 'L' suffixes.
Tool-assisted patch.
files
Improved work-around for pytest markers bug http://hg.code.sf.net:8000/p/roundup/code/#changeset-43a1f7fe39f502d3dc1ba5c560a81a629c924619 John Kristensen john@jerrykan.com 2016-06-28T15:39:38+10:00 2016-06-28T15:39:38+10:00
changeset 43a1f7fe39f5
branch
bookmark
tag
user John Kristensen <john@jerrykan.com>
description Improved work-around for pytest markers bug

The previous fix was only a partial solution. Any test class sharing a
parent with, and appearing after, a skipped test class was being skipped
(not just other test classes using the skip/skipif marker). Now only
tests that should be skipped will be skipped, the rest should run as
normal.
files
Fix work-around for pytest markers bug http://hg.code.sf.net:8000/p/roundup/code/#changeset-37d1e24fb941044d39cfdd59449155eeee154b65 John Kristensen john@jerrykan.com 2016-06-27T14:03:32+10:00 2016-06-27T14:03:32+10:00
changeset 37d1e24fb941
branch
bookmark
tag
user John Kristensen <john@jerrykan.com>
description Fix work-around for pytest markers bug

The initial work-around implemented was totally botched using
'pytest.skip' instead of 'pytest.mark.skip' which resulted in all tests
in a file being completely ignored if any skip conditions that evaluated
to true were declared or imported in the file.

This work-around will not correctly display why all the tests have been
skipped when using the '-rs' parameter. Only the first skip marker to
taint a parent test class will be displayed (ie. if both xapian and
mysql tests are being skipped, pytest will only output that tests are
being skipped because xapian is not installed even though the mysql
tests are also being skipped because mysql backend is not available).

There also seems to be a bug in the current version of pytest being used
in 'run_tests.py' (v2.8.4) that results in the skip not actually working
when using 'pytest.mark.skip'. This does work correctly with the most
recent release (v2.9.2), so the 'run_tests.py' script will need to be
updated.
files
Work-around for pytest.mark.skipif() bug http://hg.code.sf.net:8000/p/roundup/code/#changeset-c977f3530944c9adf85594092b8caff9c13889fd John Kristensen john@jerrykan.com 2015-09-07T23:24:33+10:00 2015-09-07T23:24:33+10:00
changeset c977f3530944
branch
bookmark
tag
user John Kristensen <john@jerrykan.com>
description Work-around for pytest.mark.skipif() bug

There is a pytest bug that can cause all test classes marked with the
skipif() decorator that inherit a common class to be skipped if one of
the skipif() conditions is True. See:

https://github.com/pytest-dev/pytest/issues/568
files
Remove unneeded TestSuite code from tests http://hg.code.sf.net:8000/p/roundup/code/#changeset-364c549918613cff81c3ebe07aee4025e0ef3fcc John Kristensen john@jerrykan.com 2015-08-21T13:08:02+10:00 2015-08-21T13:08:02+10:00
changeset 364c54991861
branch
bookmark
tag
user John Kristensen <john@jerrykan.com>
description Remove unneeded TestSuite code from tests

The TestSuite code is no longer needed now that we are using py.test
which can automatically discover tests
files
Replace existing run_tests.py script with a pytest script http://hg.code.sf.net:8000/p/roundup/code/#changeset-380d8d8b30a3b0dca517fb242809703963a00588 John Kristensen john@jerrykan.com 2015-08-20T18:15:23+10:00 2015-08-20T18:15:23+10:00
changeset 380d8d8b30a3
branch
bookmark
tag
user John Kristensen <john@jerrykan.com>
description Replace existing run_tests.py script with a pytest script

The existing run_test.py script is quite old, a bit restrictive, and
doesn't always behave as documented. The pytest testing tool is mature,
well documented, and maintained.

The run_tests.py script is generating by installing py.test and running:

py.tests --genscript=run_tests.py

Note: to generate a script that is compatible with python2.6 the command
needs to be run using python2.6
files
nested_scopes are here since Python 2.2 http://hg.code.sf.net:8000/p/roundup/code/#changeset-9cc6d463cfbe65fab31383ece94a2fe73cb84616 anatoly techtonik techtonik@gmail.com 2013-01-17T09:08:50+03:00 2013-01-17T09:08:50+03:00
changeset 9cc6d463cfbe
branch
bookmark
tag
user anatoly techtonik <techtonik@gmail.com>
description nested_scopes are here since Python 2.2
files
Remove keyword expansions from CVS. All regression tests passed afterwards. http://hg.code.sf.net:8000/p/roundup/code/#changeset-6e3e4f24c75376f61ae0bf0e9ee334567585c38e Eric S. Raymond esr@thyrsus.com 2011-11-16T09:51:38-05:00 2011-11-16T09:51:38-05:00
changeset 6e3e4f24c753
branch
bookmark
tag
user Eric S. Raymond <esr@thyrsus.com>
description Remove keyword expansions from CVS. All regression tests passed afterwards.
files
force tests checking text output to work in the "C" locale http://hg.code.sf.net:8000/p/roundup/code/#changeset-f6a2bfd351ee12db241c7a7aef25565061583acc Richard Jones richard@users.sourceforge.net 2010-08-09T04:43:50+00:00 2010-08-09T04:43:50+00:00
changeset f6a2bfd351ee
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description force tests checking text output to work in the "C" locale
files
Robustify Date.set. http://hg.code.sf.net:8000/p/roundup/code/#changeset-d5e2767d4e91603ea94a43f60cc763197f62b9aa Stefan Seefeld stefan@seefeld.name 2009-02-23T19:24:57+00:00 2009-02-23T19:24:57+00:00
changeset d5e2767d4e91
branch
bookmark
tag
user Stefan Seefeld <stefan@seefeld.name>
description Robustify Date.set.
files
xml-rpc security checks and tests across all backends [SF#1907211] http://hg.code.sf.net:8000/p/roundup/code/#changeset-85cbaa50eba1b9c18325331f959459581aa344ba Richard Jones richard@users.sourceforge.net 2008-03-07T01:11:55+00:00 2008-03-07T01:11:55+00:00
changeset 85cbaa50eba1
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description xml-rpc security checks and tests across all backends [SF#1907211]

also add some leap year tests
files
Fix granularity stuff so it handles wrapping a lot better. http://hg.code.sf.net:8000/p/roundup/code/#changeset-3d5a0a949107b18834ab3e4fff66f67af2145ac7 Richard Jones richard@users.sourceforge.net 2007-12-23T00:23:23+00:00 2007-12-23T00:23:23+00:00
changeset 3d5a0a949107
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Fix granularity stuff so it handles wrapping a lot better.
files
New tests for range searching by specifying just a month. http://hg.code.sf.net:8000/p/roundup/code/#changeset-78dc9b275aeb7a90958be2d40c237280bbece43c Richard Jones richard@users.sourceforge.net 2007-12-21T11:21:09+00:00 2007-12-21T11:21:09+00:00
changeset 78dc9b275aeb
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description New tests for range searching by specifying just a month.

Currently some of them fail.

_add_granularity is broken - needs tests and complete fix.
files
add some Range testing, all of which currently fails http://hg.code.sf.net:8000/p/roundup/code/#changeset-c68581212cf71e3b94e4db600007bf93f0343069 Richard Jones richard@users.sourceforge.net 2007-12-20T01:01:49+00:00 2007-12-20T01:01:49+00:00
changeset c68581212cf7
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description add some Range testing, all of which currently fails
files
remove some try:/import statements caught by alexander smishlajev http://hg.code.sf.net:8000/p/roundup/code/#changeset-a5fb7698439d72cc1fb621337128bf3fe646e118 Ralf Schlatterbeck schlatterbeck@users.sourceforge.net 2007-03-12T17:53:38+00:00 2007-03-12T17:53:38+00:00
changeset a5fb7698439d
branch
bookmark
tag
user Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
description remove some try:/import statements caught by alexander smishlajev
files
Fix arbitrary limit on dates. http://hg.code.sf.net:8000/p/roundup/code/#changeset-2a60b68985dbf5682025fa5d6c68f53d0e6ba08d Ralf Schlatterbeck schlatterbeck@users.sourceforge.net 2007-03-09T10:25:10+00:00 2007-03-09T10:25:10+00:00
changeset 2a60b68985db
branch
bookmark
tag
user Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
description Fix arbitrary limit on dates.

Dates can now be in the year-range 1-9999 for all backends except
metakit which is still limited to 1970-2038.
files
test timezones (based on patch [SF#1465296]) http://hg.code.sf.net:8000/p/roundup/code/#changeset-a9126b8033c539b61d28f15bced8947612796fa3 Alexander Smishlajev a1s@users.sourceforge.net 2006-05-06T17:21:34+00:00 2006-05-06T17:21:34+00:00
changeset a9126b8033c5
branch
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description test timezones (based on patch [SF#1465296])
files
date spec wasn't allowing week intervals http://hg.code.sf.net:8000/p/roundup/code/#changeset-f47bddab5a49e427397d63ec3421bd60cfeceb36 Richard Jones richard@users.sourceforge.net 2006-03-03T02:02:50+00:00 2006-03-03T02:02:50+00:00
changeset f47bddab5a49
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description date spec wasn't allowing week intervals
files
[maint-0.8] merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-c75dd71a7963b4e5dc560381350784ce02aa424e Richard Jones richard@users.sourceforge.net 2006-01-13T01:29:48+00:00 2006-01-13T01:29:48+00:00
changeset c75dd71a7963
branch maint-0.8
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge from HEAD
files
tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) [SF#1290550] http://hg.code.sf.net:8000/p/roundup/code/#changeset-9c080e19f3073fff33801c0d7b173530fe28aa6c Richard Jones richard@users.sourceforge.net 2006-01-13T00:22:17+00:00 2006-01-13T00:22:17+00:00
changeset 9c080e19f307
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) [SF#1290550]
files
[maint-0.8] test invalid tuple handling http://hg.code.sf.net:8000/p/roundup/code/#changeset-e330f751828edaee3a26287e4e1c2864d0caa829 Alexander Smishlajev a1s@users.sourceforge.net 2005-02-25T17:24:53+00:00 2005-02-25T17:24:53+00:00
changeset e330f751828e
branch maint-0.8
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description test invalid tuple handling
files
test invalid tuple handling http://hg.code.sf.net:8000/p/roundup/code/#changeset-d4d58c36d0bf1bc00f619909301a8e850fe2f7fc Alexander Smishlajev a1s@users.sourceforge.net 2005-02-25T17:18:46+00:00 2005-02-25T17:18:46+00:00
changeset d4d58c36d0bf
branch
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description test invalid tuple handling
files
oops! error in recently added test http://hg.code.sf.net:8000/p/roundup/code/#changeset-22f16d0646ce1c2f24f6430e4bf15433f3589691 Alexander Smishlajev a1s@users.sourceforge.net 2004-11-29T14:34:10+00:00 2004-11-29T14:34:10+00:00
changeset 22f16d0646ce
branch
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description oops! error in recently added test
files
Interval.from_seconds() produces a buggy output with float argument http://hg.code.sf.net:8000/p/roundup/code/#changeset-e28f047f87fab15ef51109877be1e7efbb65e68a Alexander Smishlajev a1s@users.sourceforge.net 2004-11-29T14:30:55+00:00 2004-11-29T14:30:55+00:00
changeset e28f047f87fa
branch
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description Interval.from_seconds() produces a buggy output with float argument
files
[maint-0.7] merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-770f9fa94c6ad458a55a0c44000c0b15f3759003 Richard Jones richard@users.sourceforge.net 2004-09-29T07:31:32+00:00 2004-09-29T07:31:32+00:00
changeset 770f9fa94c6a
branch maint-0.7
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge from HEAD
files
handle Py2.3+ datetime objects as Date specs [SF#971300] http://hg.code.sf.net:8000/p/roundup/code/#changeset-eb4e7b8d52a2f70128c5873a27a5041d17b515e4 Richard Jones richard@users.sourceforge.net 2004-09-29T07:27:09+00:00 2004-09-29T07:27:09+00:00
changeset eb4e7b8d52a2
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description handle Py2.3+ datetime objects as Date specs [SF#971300]
files
store Intervals as two columns (and other fixes http://hg.code.sf.net:8000/p/roundup/code/#changeset-98d3bf8ffb19a877450734cd4298a23ad2ebf09d Richard Jones richard@users.sourceforge.net 2004-04-18T05:31:03+00:00 2004-04-18T05:31:03+00:00
changeset 98d3bf8ffb19
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description store Intervals as two columns (and other fixes
files
fixed date arithmetic to not allow day-of-month == 0 [SF#853306] http://hg.code.sf.net:8000/p/roundup/code/#changeset-bcc65c5b86e60b2ef41643c082ff93a2da89e033 Richard Jones richard@users.sourceforge.net 2003-12-04T23:06:53+00:00 2003-12-04T23:06:53+00:00
changeset bcc65c5b86e6
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fixed date arithmetic to not allow day-of-month == 0 [SF#853306]

fixed date arithmetic to limit hours-per-day to 24, not 60
files
Add tests for Interval.pretty(). http://hg.code.sf.net:8000/p/roundup/code/#changeset-71056b09f2bf9f3488cbd3621acfb74507b219f8 Johannes Gijsbers jlgijsbers@users.sourceforge.net 2003-11-19T22:53:15+00:00 2003-11-19T22:53:15+00:00
changeset 71056b09f2bf
branch
bookmark
tag
user Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
description Add tests for Interval.pretty().

Fix 'ago' and 'in' not being added to years.

Fix docstrings for emacs.
files
[maint-0.6] backport of Date arithmetic fixes from trunk http://hg.code.sf.net:8000/p/roundup/code/#changeset-b3f63a0615dba70375ed0658b1b6146e6c416e57 Anthony Baxter anthonybaxter@users.sourceforge.net 2003-11-04T12:39:54+00:00 2003-11-04T12:39:54+00:00
changeset b3f63a0615db
branch maint-0.6
bookmark
tag
user Anthony Baxter <anthonybaxter@users.sourceforge.net>
description backport of Date arithmetic fixes from trunk
files
Date - Date works again. http://hg.code.sf.net:8000/p/roundup/code/#changeset-41ad8b781232034c2282b0bc4895a759853cfe1c Anthony Baxter anthonybaxter@users.sourceforge.net 2003-11-04T12:35:47+00:00 2003-11-04T12:35:47+00:00
changeset 41ad8b781232
branch
bookmark
tag
user Anthony Baxter <anthonybaxter@users.sourceforge.net>
description Date - Date works again.

Note that it only produces Intervals with days, hours, minutes and
seconds. Making it produce years and months is a lot more work.

bugfix candidate
files
more tests for date difference. Completely broken code right now. http://hg.code.sf.net:8000/p/roundup/code/#changeset-e3cff1bb1b86d7d37f89db8a29163da0b8e166ba Anthony Baxter anthonybaxter@users.sourceforge.net 2003-11-03T10:33:23+00:00 2003-11-03T10:33:23+00:00
changeset e3cff1bb1b86
branch
bookmark
tag
user Anthony Baxter <anthonybaxter@users.sourceforge.net>
description more tests for date difference. Completely broken code right now.
files
Date arithmetic fixes. http://hg.code.sf.net:8000/p/roundup/code/#changeset-deba54ed724fea7cce037e4c3fd960fe81d5a2da Anthony Baxter anthonybaxter@users.sourceforge.net 2003-11-03T10:23:06+00:00 2003-11-03T10:23:06+00:00
changeset deba54ed724f
branch
bookmark
tag
user Anthony Baxter <anthonybaxter@users.sourceforge.net>
description Date arithmetic fixes.

Date +/- Interval passes all tests again, after fixing a couple of the
tests to actually reflect the calendar used on my planet rather than
where-ever Richard was when he wrote the test <wink>

The basic problem was that when going backwards, the code was adding
the days of the current month, rather than the previous month.
There's still a bug in the testDateSubtract that I'll fix next.

Bugfix candidate (probably)
files
woo, failing date arithmetic tests http://hg.code.sf.net:8000/p/roundup/code/#changeset-dc55a195722d819ab7936b0428b1927b4225d096 Richard Jones richard@users.sourceforge.net 2003-11-02T09:27:50+00:00 2003-11-02T09:27:50+00:00
changeset dc55a195722d
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description woo, failing date arithmetic tests
files
Backend improvements. http://hg.code.sf.net:8000/p/roundup/code/#changeset-f63aa57386b0b2c50eb311d6b407a12e9b5e45db Richard Jones richard@users.sourceforge.net 2003-10-25T22:53:26+00:00 2003-10-25T22:53:26+00:00
changeset f63aa57386b0
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Backend improvements.

- using Zope3's test runner now, allowing GC checks, nicer controls and
coverage analysis
- all RDMBS backends now have indexes on several columns
- added testing of schema mutation, fixed rdbms backends handling of a
couple of cases
- !BETA! added postgresql backend, needs work !BETA!
files
extended date syntax to make range searches even more useful http://hg.code.sf.net:8000/p/roundup/code/#changeset-cc96bf971b33ecd5ab9fe7b18615fed94049c72d Andrey Lebedev kedder@users.sourceforge.net 2003-04-22T20:53:55+00:00 2003-04-22T20:53:55+00:00
changeset cc96bf971b33
branch
bookmark
tag
user Andrey Lebedev <kedder@users.sourceforge.net>
description extended date syntax to make range searches even more useful
files
granularity based ranges http://hg.code.sf.net:8000/p/roundup/code/#changeset-4d55f90d4af1fe0ac37d2db75178e8888101a131 Andrey Lebedev kedder@users.sourceforge.net 2003-04-21T14:29:40+00:00 2003-04-21T14:29:40+00:00
changeset 4d55f90d4af1
branch
bookmark
tag
user Andrey Lebedev <kedder@users.sourceforge.net>
description granularity based ranges
files
more lenient date input and addition Interval input support [SF#677764] http://hg.code.sf.net:8000/p/roundup/code/#changeset-0e36c9b23aa606d2bded96abf63141d309bf5a8d Richard Jones richard@users.sourceforge.net 2003-03-19T05:18:11+00:00 2003-03-19T05:18:11+00:00
changeset 0e36c9b23aa6
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description more lenient date input and addition Interval input support [SF#677764]
files
fixed detection of bad date specs [SF#691439] http://hg.code.sf.net:8000/p/roundup/code/#changeset-26f29449c4941c0f1f0a71860c3809c814139ae7 Richard Jones richard@users.sourceforge.net 2003-03-19T03:25:30+00:00 2003-03-19T03:25:30+00:00
changeset 26f29449c494
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fixed detection of bad date specs [SF#691439]
files
fix to [SF#691071], really this time http://hg.code.sf.net:8000/p/roundup/code/#changeset-c101d2ff5a2090b74933267a7e2a12e8548ac75a Richard Jones richard@users.sourceforge.net 2003-03-10T00:22:52+00:00 2003-03-10T00:22:52+00:00
changeset c101d2ff5a20
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fix to [SF#691071], really this time
files
oops, Interval sorting ignored sign http://hg.code.sf.net:8000/p/roundup/code/#changeset-66cc5c2819ddbc4570e498fabcec9720f3cfe25c Richard Jones richard@users.sourceforge.net 2003-03-06T06:12:30+00:00 2003-03-06T06:12:30+00:00
changeset 66cc5c2819dd
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description oops, Interval sorting ignored sign
files
[maint-0.5] backport Interval fix from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-f0da50a17e3c89f0135ba00583b3be73c5462d78 Richard Jones richard@users.sourceforge.net 2003-03-06T04:37:51+00:00 2003-03-06T04:37:51+00:00
changeset f0da50a17e3c
branch maint-0.5
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description backport Interval fix from HEAD
files
fixed Interval maths [SF#665357] http://hg.code.sf.net:8000/p/roundup/code/#changeset-37a1906f4454ec640ccac2d840405ed2ea20af4a Richard Jones richard@users.sourceforge.net 2003-03-06T02:33:57+00:00 2003-03-06T02:33:57+00:00
changeset 37a1906f4454
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fixed Interval maths [SF#665357]
files
time should default to local midnight, not GMT http://hg.code.sf.net:8000/p/roundup/code/#changeset-0c3546479b5233ab7bbd4fd0ea7f6d27beee0faf Andrey Lebedev kedder@users.sourceforge.net 2003-02-24T15:38:51+00:00 2003-02-24T15:38:51+00:00
changeset 0c3546479b52
branch
bookmark
tag
user Andrey Lebedev <kedder@users.sourceforge.net>
description time should default to local midnight, not GMT
files
reminder comments for where we need new tests http://hg.code.sf.net:8000/p/roundup/code/#changeset-b94cc62090bed1024ca83c7becfbe25829d673eb Richard Jones richard@users.sourceforge.net 2003-01-12T00:43:43+00:00 2003-01-12T00:43:43+00:00
changeset b94cc62090be
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description reminder comments for where we need new tests
files
[maint-0.5] [[Metadata associated with this commit was garbled during conversion from CVS http://hg.code.sf.net:8000/p/roundup/code/#changeset-83f33642d22034fafcb8496c221d98ca3e447daa Richard Jones richard@users.sourceforge.net 2003-01-09T22:59:22+00:00 2003-01-09T22:59:22+00:00
changeset 83f33642d220
branch maint-0.5
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description [[Metadata associated with this commit was garbled during conversion from CVS
to Subversion.]]
files
fix Date.local() http://hg.code.sf.net:8000/p/roundup/code/#changeset-46a1951fdb14f008d7f3cc1a29a34e1f36b65702 Richard Jones richard@users.sourceforge.net 2002-12-09T02:43:21+00:00 2002-12-09T02:43:21+00:00
changeset 46a1951fdb14
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fix Date.local()
files
implemented the missing Interval.__add__ http://hg.code.sf.net:8000/p/roundup/code/#changeset-b34adc9bcaf2d4f6b59e391254116af151890898 Richard Jones richard@users.sourceforge.net 2002-10-11T01:25:40+00:00 2002-10-11T01:25:40+00:00
changeset b34adc9bcaf2
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description implemented the missing Interval.__add__
files
removed Log http://hg.code.sf.net:8000/p/roundup/code/#changeset-9b910e8d987d9c68848931f69cc57243f04e6dee Richard Jones richard@users.sourceforge.net 2002-09-10T00:19:55+00:00 2002-09-10T00:19:55+00:00
changeset 9b910e8d987d
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description removed Log
files
fixed the date module so that Date(". - 2d") works http://hg.code.sf.net:8000/p/roundup/code/#changeset-68cef2bb929d78a2d781dd0e5a10784a578f3f57 Richard Jones richard@users.sourceforge.net 2002-07-14T06:05:50+00:00 2002-07-14T06:05:50+00:00
changeset 68cef2bb929d
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fixed the date module so that Date(". - 2d") works
files
Oops, there's 24 hours in a day... http://hg.code.sf.net:8000/p/roundup/code/#changeset-cfa460943d4db2f1ccc22c0e2e9fa18465f37031 Richard Jones richard@users.sourceforge.net 2002-02-21T23:34:52+00:00 2002-02-21T23:34:52+00:00
changeset cfa460943d4d
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Oops, there's 24 hours in a day...

...and subtraction of intervals now works properly.
files
fixed some problems in date calculations http://hg.code.sf.net:8000/p/roundup/code/#changeset-7dd13fd5d8eaa25d1768dc326350cf020b2aad2a Richard Jones richard@users.sourceforge.net 2002-02-21T23:11:45+00:00 2002-02-21T23:11:45+00:00
changeset 7dd13fd5d8ea
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fixed some problems in date calculations

(calendar.py doesn't handle over- and under-flow). Also,
hour/minute/second intervals may now be more than 99 each.
files
Added popup help for classes using the classhelp html template function. http://hg.code.sf.net:8000/p/roundup/code/#changeset-3d61b5d2243eac2ee57b5292dc1cc09015d3d4dc Richard Jones richard@users.sourceforge.net 2002-02-21T06:57:39+00:00 2002-02-21T06:57:39+00:00
changeset 3d61b5d2243e
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Added popup help for classes using the classhelp html template function.

- add <display call="classhelp('priority', 'id,name,description')">
to an item page, and it generates a link to a popup window which displays
the id, name and description for the priority class. The description
field won't exist in most installations, but it will be added to the
default templates.
files
[config-0-4-0-branch] Brought the config branch up to date with HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-c242455d9b46966106f9d326e8fe7e8e69cfb519 Richard Jones richard@users.sourceforge.net 2002-02-06T04:05:55+00:00 2002-02-06T04:05:55+00:00
changeset c242455d9b46
branch config-0-4-0-branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Brought the config branch up to date with HEAD
files