CHANGES TO REMIND
* Version 3.1 Patch 5 - 2008-04-15
- MAJOR ENHANCEMENT: If you supply a directory name on the command line
or for an INCLUDE command, then Remind reads all *.rem file in that
directory (in the order returned by "glob")
- ENHANCEMENT: The plain-text calendar ("-c") can draw lines using VT-100
line-drawing characters if invoked as "-cl"
- ENHANCEMENT: The plain-text calendar can approximate SPECIAL COLOR reminders
using VT-100 color escape sequences if invoked as "-cc". (You can combine
the colors and line-drawing characters with -clc or -ccl.)
- ENHANCEMENT: The "-t" option can take a numeric argument n. In this case,
all reminders are assumed to have a delta of +n. (Without the argument,
an infinite delta is assumed, as before.) If a numeric argument is given,
the new system variable $DeltaOffset is set to the argument.
- MINOR ENHANCEMENT: The "-i" command-line option can be used to define
a function as well as set a variable.
- MINOR ENHANCEMENT: String constants can have embedded quotes "Like \"this"
- MINOR ENHANCEMENT: tkremind works better on small screens like that of
the Eee-PC.
- BUG FIX: Minor fix to HTML output courtesy of Ian! Allen.
- BUG FIX: Parse error in calendar mode was fixed.
* Version 3.1 Patch 4 - 2008-02-03
- ENHANCMENT: tkremind respects the "-b1" option and operates in 24-hour
clock mode if the option is supplied.
- ENHANCEMENT: tkremind has been tweaked to look better with Tcl/Tk 8.5.
- CLEANUP: Version is kept only in configure.in instead of two different
places.
- CLEANUP: Added "const" qualifier to many places in the code that previously
lacked it.
- BUG FIX: A rare parsing error involving interaction between SATISFY and
SKIP has been fixed.
- BUG FIX: rem2html would output a horribly-wrong calendar for a 28-day
February starting on Sunday (such as February 2009.) This has been fixed.
- BUG FIX: The "-ivar=value" command-line option failed if Remind re-execed
itself because we overwrote argv[]. This has been fixed.
* Version 3.1 Patch 3 - 2007-10-15
+ MINOR ENHANCEMENTS
- rem2html now uses CSS for a much better-looking calendar.
NOTE: rem2html was completely rewritten and some of the command-line
options have changed!
- If a reminder has a DURATION clause, then the starting and ending times
are output in calendar mode.
+ BUG FIXES
- DST rules in "defs.rem" were updated to reflect new US/Canadian DST rules.
- If a REM command cannot compute a trigger date, the SATISFY expression
is not evaluated. This helps avoid spurious error messages in some
reminders.
* Version 3.1 Patch 2 - 2007-09-12
+ MINOR ENHANCEMENTS
- build.tk tries to set defaults for location, paper size, etc from an
existing "remind" installation if it detects one.
- In queue mode, wake up once a minute and recalibrate sleep time.
This should make Remind work better on laptops that suspend or
hibernate. Note that "remind -q" does *not* handle date-rollover
well; it simply exits if it notices date rollover. "remind -z0"
(as used by tkremind) handles date rollover properly; it rereads the
reminder file and rebuilds the queue if it notices date rollover.
- tkremind: Added some key bindings to make navigation easier.
- tkremind: Made calendar boxes use space more efficiently.
- remind: The functionality of "rem" is now built into remind. If you
invoke remind as "rem", then it uses a default filename. The installer
sets up "rem" as a symbolic link to "remind".
+ CHANGE
- "remind -p" no longer sorts SPECIAL reminders before non-SPECIAL.
*** THIS MAY AFFECT BACKENDS ***
Backends supplied by Roaring Penguin (rem2ps, rem2html and tkremind)
are known to work properly.
- "remind -p" no longer suppresses any AT-time associated with SPECIAL
reminders.
*** THIS MAY AFFECT BACKENDS ***
Backends supplied by Roaring Penguin (rem2ps, rem2html and tkremind)
are known to work properly.
+ BUG FIXES
- examples/defs.rem: A few corrections to Jewish holidays courtesy of
Art Werschulz.
- src/Makefile.in: Added install-nostripped target.
- SPECIAL COLOR now works more like MSG, including proper support for AT and
for the %" %" escape sequence.
- SPECIAL COLOR is queued correctly if it has an AT clause.
- Using the psshade() or psmoon() functions emits a warning on stderr. You
should use SPECIAL SHADE or SPECIAL MOON instead.
* Version 3.1 Patch 1 - 2007-08-23
+ MAJOR ENHANCEMENTS
- Added the "nonomitted" function that solves a number of
moving-reminder-in-response-to-holiday problems. The real-world
problems solved are the "moving-garbage-day" problem and the
"six-day-school-cycle" problem.
+ MINOR ENHANCEMENTS
- A few minor performance improvements in response to profiling runs.
+ BUG FIXES
- Prevent compilation failure with gcc 2.95.
- Fix trailing "s" bug with -k option. This was fixed in Debian's release,
but the Debian maintainer never bothered to let me know.
- Removed obsolete scripts: kall, rem, remind-all.sh, remind-all.csh
- Made "-n" output always use "/" as date separator for consistency with
"-p" and "-s".
- Moon PNG images are transparent. Output of moon phases in rem2html
improved slightly.
- Various man-page fixes.
* Version 3.1 Patch 0 - 2007-07-14
+ MAJOR ENHANCEMENTS
- Added the FROM clause. This lets you write reminders like:
REM Mon FROM 16 July 2007 UNTIL 13 Aug 2007 MSG Some Mondays...
- Remind now has a new datatype: A DATETIME object represents a date AND
a time (to the nearest minute). DATETIME constants are written
as '2007-09-01@14:33'. Various operators and functions have been
modified to do sensible things with DATETIMEs and several new DATETIME
functions have been added.
- The SPECIAL COLOR reminder type has been hacked to behave more like
a MSG type. It sorts properly and is emitted as a normal reminder
in non-calendar mode. Simlarly, SPECIAL HTML sorts with -g as well.
+ MINOR ENHANCEMENTS
- TkRemind can e-mail you reminders if you don't dismiss the popup window
after one minute. This is useful if you need to leave your workstation
but want reminders to "follow" you via e-mail.
- A new "-y" option to Remind generates tags for all reminders that lack
a TAG clause. This may be useful for conversion tools that want each
reminder to have a unique identifier.
- A new "tzconvert" function lets you convert datetimes between different
time zones. It's only as good as your C library, so test thoroughly
please! Based on a patch from Stefan Wehr.
- TkRemind sorts reminders by invoking Remind with the '-g' option.
- The time and date separator characters can be changed at runtime by
setting $TimeSep and $DateSep respectively.
- The simple calendar ('-s') option can be immediately followed by an 'a'.
This causes Remind to output reminders with deltas before the actual
trigger date. Based loosely on an idea from Frank Terbeck.
+ MINOR CHANGES
- Default date separator is now '-' instead of '/'
- trigdate() and trigtime() behave differently - they return the integer 0
if the last reminder could not be computed or did not have an AT clause
(respectively).
- Maximum length of variable names has been increased from 12 to 16 characters.
+ BUG FIXES
- Fixed a potential memory leak in queue.c
- Fixed compile error on Mac OS X.
- Fixed behaviour of "-sa" option so deltas correctly obey omitted days
and the scheduling function (if one is used).
- rem2ps would produce invalid PostScript in some rare cases
(eg, for February 2007). This has been fixed.
New in the 2.3.0 Release:
-------------------------
The main changes in this release are:
* a new implementation of the projects tree using the GtkTreeView
component which fixes a lot of the bugs regarding the projects
tree manipulation and prepares the way for many customizations
in future releases.
* an initial implementation of a tray icon that displays timer status
and allows the user to toggle the timer by clicking on it.
* a rewrite of the idle detection using the XScreenSaver extension and
of the timer system to make it more system power conservation
friendly.
* port of the report system to use guile version 1.8.
* many changes in the configure script, including porperly checking for
guile and gconf and version of available DBUS.
* removal of some deprecated APIs usage.
In addition, many bugs have been fixed, including:
* broken behavior of drag-and-drop (#1856268)
* compiles but crashes on startup in fedora core 5 (#1802501)
* activity journal truncates seconds (#1706365)
* green bar flickers when value changes (#1171204)
* dragging project to make sub-project will not scroll (#831808)
New in the 2.2.3 Release:
-------------------------
This release brings better internationalization in reports with locale
based formating of times and monetary values. The newly added support
for DBus messages allows users to start/stop the timer and save/reload
the data file from the command line using the gnotime-remote
script. Also, an update user's manual covers most of the features
available in this version. In addition, many bugs have been fixed,
including:
-- Crash when saving to full filesystem (#1548248)
-- Day of century calculation error causing skipped day in reports
-- Conflicting keybindings (#1639477)
-- Invoice report doesn't work in locales other than C
-- Hidden question dialog when overwriting file during report saving
(http://bugs.debian.org/422023)
2008-09-23 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac:
Up version to 2.24.0 for release
2008-08-29 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac:
Up version to 2.23.91 for release
2008-08-26 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac:
Define HANDLE_LIBECAL_MEMORY to avoid the warning message
* src/evolution-webcal-main.c (e_webcal_load):
Free the name and description when LIBICAL_MEMFIXES is defined
2008-07-25 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac:
* Makefile.am:
Update and require inltool 0.40.0
2008-02-24 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac: Up version to 2.21.92 for release
2008-02-24 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac: Sync the version with GNOME/Evolution 2.21
2008-01-30 Rodney Dawes <dobey.pwns@gmail.com>
* configure.ac: Up version to 2.13.90 for release
2008-01-15 Dan Winship <danw@gnome.org>
* configure.ac: Require libsoup 2.4
* src/evolution-webcal-notify.c:
* src/evolution-webcal-main.c: Minor updates for libsoup 2.4
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
----
v2.3
----
[jan] Change group field in shares table to work with LDAP groups (Bug 6883).
[jan] Fix user name conversion with user hooks in the calendar panel
(Bug 7366).
[gwr] Fixed handling of free events in the Kolab driver
(noethen@uni-paderborn.de, Bug 7192).
[jan] Differentiate between days with events and days with busy events in the
year view.
--------
v2.3-RC1
--------
[jan] Send correct iTip notifications when deleting recurring event instances
(Bug 6636).
[mjr] Add support for embedding calendar widgets on external websites.
[jan] Log moving of events in the history backend (Bug 3207).
[jan] Fix listing alarms of recurring events crossing day boundaries
(Bug 7035).
[jan] Fix deleting all events over WebDAV (Bug 7005).
[jan] Add Atom feeds.
[jan] Fix encoding of holiday names.
[jan] Add Estonian translation (Alar Sing <alar.sing@err.ee>).
[jan] Consider RECURRENCE-ID attributes in iCalendar data.
[cjh] Fix a problem with the put() API call and events that already exist
(almarin@um.es, Bug 7088).
[jan] Fix importing iCalendar events with only a single recurrence exception
(guyzdm@gmail.com, Bug 7068).
[jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV
<xabier.arrieta@ehu.es>).
[mjr] Add support for maintenance tasks and add a task for purging old events.
[jan] Fix future events not being received under certain circumstances
(Bugs 6946, 6966).
[jan] Correctly sort recurring events (develop@kristov.de, Bug 7037).
[jan] Fix display of recurring events crossing midnight in the portal block
(develop@kristov.de, Bug 7036).
[jan] Fix agenda emails containing wrong events.
[mjr] Remove user permissions on all shares when deleting a user.
[jan] Fix warning when importing events through the API (Bug 6865).
[cjh] Be case insensitive when comparing attendees
(aloyse.gilbert@gmail.com, Bug 6833).
[jan] Use smaller icons for private events.
== Version 0.3.11 (tzdata v2008g) - 7-Oct-2008
* Updated to tzdata version 2008g
(http://article.gmane.org/gmane.comp.time.tz/2335).
* Support Ruby 1.9.0-5. Rational.new! has now been removed in Ruby 1.9.
Only use Rational.new! if it is available (it is preferable in Ruby 1.8
for performance reasons). Thanks to Jeremy Kemper and Pratik Naik for
reporting this. Closes#22312.
* Apply a patch from Pratik Naik to replace assert calls that have been
deprecated in the Ruby svn trunk. Closes#22308.
Pkgsrc changes:
o Revert MAINTAINER to pkgsrc-users@ as directed by maintainer
o Add USE_LANGUAGES=c
Upstream changes:
1.13
- More QNX fixes (kraai@ftbfs.org)
- Restore freebsd copyright on strptime.
- Added add_months and add_years methods.
1.12
- QNX fixes
- Merge with perl core version
Pkgsrc changes:
o Adjust dependencies
Upstream changes:
0.11 2007-12-04
- Tried to make code work with Math::BigInt::* packages (tries to
solve bug reported by Philip (Flip) Kromer)
0.10 2006-05-23
- Removed midnight bug, reported by Jason Thaxter.
Pkgsrc changes:
o Canonicalize HOMEPAGE and MASTER_SITES
o Switch to Module::Build method
Upstream changes:
1.09 2008 May 27
- Bug fix: generated error if second argument to time_format
was a string and was in December. Thanks to Bokor Béla for
spotting this one.
1.08 2008 May 27
- Reset $@ at certain places, so as to work with older
(broken) perls. Again, thanks to Slaven Rezic.
1.07 2008 March 31
- More test-case changes, to work with older perls. Many
thanks to Slaven Rezic and the rest of the tireless CPAN
testers!
1.06 2008 March 28
- Fix a broken test case in time.t; failed for non-English
locales.
1.05 2008 March 27
- Fix a typo bug in Makefile.PL
1.04 2008 March 26
- Worked around a POSIX bug which would cause hangs under
cygwin.
- Fixed a couple test cases.
1.03 2008 March 24
- Fixed a broken test case.
- Added Module::Build support.
TODO lists, in the local directory or elsewhere, to assign priorities and
start/end dates, to send nag mails for todos or to generate reports of
done items by date.
New in the v0.14.3 Release - 16 April 2008
* Added support for version 3 of libgda, the database access library
* Added internationalization (I18N) support for HTML export
* Allow dragging of completion bar in Gantt chart
* Allow dragging of task duration in Gantt beyond the window size
* % Complete column added to task and Gantt view
* New Tango icon set contributed by Frédéric Bellaiche
* Show guide lines setting is now persistent thanks to Marie Durand
* Fixed bug: Incorrect week numbers were sometimes shown both in the UI and in exported HTML.
* Fixed bug: Project start time shifts each time a project is read from a database
* Fixed bug: Toggling fixed duration state does not immediately update task appearance in Gantt chart
* Fixed bug 332748: Row height in exported HTML is incorrect in Internet Explorer (patch by Nico de Groot)
* Fixed bug 337382: Sidebar buttons are not accessible for things like screen readers
* Fixed bug 345163: ngettext should be used to get proper translation of plural
* Fixed bug 373008: Crash when importing MS project XML
* Fixed bug 382548: Crash when undoing indent
* Fixed bug 388454: Planner hangs when cancelling HTML export
* Fixed bug 393620: Gantt header width in exported HTML is incorrect
* Fixed bug 397132: Crash on export to database
* Fixed bug 436263: Keep task selection when (un)indenting
* Fixed bug 464359: Make distcheck fails (patch by Gilles Dartiguelongue)
* Fixed bug 486990: Fixed duration tasks have incorrect duration
* Fixed bug 499090: Incorrect task cost calculation in exported HTML for tasks worked on by multiple people.
Packages Collection.
Time::Duration::Parse is a Perl 5 module to parse human readable
duration strings like 2 minutes and 3 seconds to seconds. It does
the opposite of duration_exact function in Time::Duration.
Pkgsrc changes:
o Change MAINTAINER to pkgsrc-users@, as per communication with maintainer
Upstream changes:
0.4304 2008-07-13
- Fix test failures when tests are run with DateTime::Locale
0.41. Reported by David Cantrell via CPAN Testers.
0.4303 2008-07-12
- There is a new leap second coming at the end of 2008.
Pkgsrc changes:
o Changed MAINTAINER to pkgsrc-users@ as per communication with maintainer
Upstream changes:
0.79 2008-07-29
- This release is based on version 2008e of the Olson database. The
major changes in this release are for Mauritius and Central Europe
(historical changes only).
- Fixes for the local TZ tests on Win32. Thanks to David Pinkowitz for
pointing out my mistake.
0.78 2008-07-12
- This release is based on version 2008d of the Olson database. The
major changes in this release are for Mauritius and Brazil (which
now has a new America/Santarem zone).
0.7701 2008-06-03
- Many fixes and improvements to the tests for local time zone
handling on Windows. Based on a patch from David Pinkowitz.
* There are no code changes in this release besides these test
changes.
Pkgsrc changes:
o Changed MAINTAINER to pkgsrc-users, per communication with maintainer
Upstream changes:
0.41 2008-07-12
- Based on CLDR 1.6
- Added the CLDR version to the catalog and generated files. In the
future, if you load a locale from an older CLDR version than the
catalog's version, you will get a warning.
The purpose of this library was to replace our dependence on Unix
epoch time, which, being limited to a range of about 1970 to 2030,
is inadequate for our purposes (we have data as old as 1870). This
date library effectively handles dates from A.D. 1000 to infinity,
and would probably work all the way back to 0 (ignoring, of course,
the switch-over to the Gregorian calendar). The useful features of
Unix epoch time (ease of date difference calculation and date
comparison, strict ordering) are preserved, and elements such as
human-legibility are added. The library handles fractional seconds
and some date/time manipulations used for the Global Positioning
Satellite system.
The operators +/-, <=>, cmp, stringify are overloaded. Addition
handles seconds and fractions of seconds, subtraction handles
seconds or date differences, compares work, and stringification
returns the a representation of the date.
The US Geological Survey (USGS) likes midnight to be 24:00:00 of
the previous day, not 00:00:00 of the day people expect. If
$DateTime::Precise::USGSMidnight is set, dprintf will always print
midnight as 24:00:00 and the date returned from dprintf will have
the previous day's date. Regardless, time is always stored internally
as 00:00:00.
0.16002 Tue Aug 13 08:00:00 2008
- Remove non-ascii byte sequence from Pg.pm (sorry, Claus).
This fixes a failure report from CPAN testers
- Updated Module::Install while we're at it
== Version 0.3.9 (tzdata v2008c) - 27-May-2008
* Updated to tzdata version 2008c
(http://article.gmane.org/gmane.comp.time.tz/2183).
* Support loading timezone data in the latest trunk versions of Ruby 1.9.
Rational.new! is now private, so call it using Rational.send :new! instead.
Thanks to Jeremy Kemper and Pratik Naik for spotting this. Closes#19184.
* Prevent warnings from being output when running Ruby with the -v or -w
command line options. Thanks to Paul McMahon for the patch. Closes#19719.
ChangeLog:
1.18 2007-10-31
- Added pod and pod coverage tests.
- Doing a new release to provide a conformant META.yml file.
- This release contains no code changes from 1.17.
Pkgsrc changes:
- none
Changes since version 0.94:
===========================
0.9.6 Thu Mar 6 07:39:24 2008
- Fixed t/4-perl-critic.t so it deals properly with the absence of
Test::Perl::Critic. Thanks to haoess and thospell on Perl Monks
for the solution.
0.9.5 Mon Mar 3 23:20:20 2008
- Ran the module through Perl::Critic
- Sign the package with a valid public key
0.09 2008-03-07
- The output of format_datetime() always includes the time
portion. Without this the module produced what I think was an
invalid iCal date. More importantly, this makes the output
consistent (always a DATE-TIME). Reported by Bill Moseley.
- removes RRULE: and EXRULE: from ICal string before parsing.
Reported by Matt Sisk.
pytz brings the Olson tz database into Python. This library allows accurate
and cross platform timezone calculations using Python 2.3 or higher. It also
solves the issue of ambiguous times at the end of daylight savings, which you
can read more about in the Python Library Reference (datetime.tzinfo).
0.4001 2008-05-19
- Minor changes to get test passing under 5.6.x.
0.40 2008-05-18
* Dropped support for Perl 5.005.
- Based on CLDR 1.5.1
- Massive reworking of the locale generation code. We now extract much
more information from the CLDR files. See the DateTime::Locale and
DateTime::Locale::Base documentation for details on what is
available.
- Lots of bug fixes in the data. The old generation code was often
extracting the draft form of a piece of data as opposed to the
current final form. There are also many other data fixes from this
new generation code.
- One of the notable additions is the inclusion of
$locale->format_for(...) and $locale->available_formats(). This
gives you access to formatting for various arbitrary patterns like
"year and month" or "month and day". Requested by Brian Hirt.
- Many of the new features in this release will only be available with
DateTime.pm 0.43+, since it requires a version of DateTime.pm which
can handle the CLDR date pattern language.
- All locale files now include POD with examples of the data they
include.
1.9715 [2008-04-08]
- Silly me: Makefile.PL does need to accept arguments other than mine.
Some testing frameworks obviously do this.
- Add retrying for tests 34..37, which are the most commonly
failing tests. If this helps, consider extending the retry
framework to all the tests. [Inspired by Slaven Rezic,
[rt.cpan.org #34711] Occasional failures of test 35 or 36 (FreeBSD)]
1.9714 [2008-04-07]
- Under Perl 5.6.* NVgf needs to be "g", reported by Zefram,
it seems that ppport.h 3.13 gets this wrong.
- remove the check in Makefile.PL for 5.7.2, shouldn't be
(a) necessary (b) relevant
- add logic to Makefile.PL to skip configure/write Makefile
step if the "xdefine" file already exists, indicating that
the configure step has already been done, one can still
force (re)configure by "perl Makefile.PL configure",
or of course by "make clean && perl Makefile.PL".
1.9713 [2008-04-04]
- for alarm() and ualarm() [Perl] prefer setitimer() [C]
instead of ualarm() [C] since ualarm() [C] cannot portably
(and standards-compliantly) be used for more than 999_999
microseconds (rt.cpan.org #34655)
- it seems that HP-UX has started (at least in 11.31 ia64)
#defining the CLOCK_REALTIME et alia (instead of having
them just as enums)
- document all the diagnostics
1.9712 [2008-02-09]
- move the sub tick in the test file back to where it used to be
- in the "consider upgrading" message recommend at least Perl 5.8.8
and make the message to appear only for 5.8.0 since 5.8.1 and
later have the problem fixed
- VOS tweak for Makefile (core perl change #33259)
- since the test #17 seems to fail often, relax its limits a bit
1.9711 [2007-11-29]
- lost VMS test skippage from Craig Berry
- reformat the test code a little
1.9710 [2007-11-29]
- I got the sense of the QNX test the wrong way in an attempt
to generalize it for future
1.9709 [2007-11-28]
- casting fixes from Robin Barker for g++ and 64bitint
- in QNX skip the itimer tests because though the API
is there, the implementation isn't, from Matt Kraai
- raise the dead man timer to 180 seconds for really
slow/busy systems
- elaborate the UTF-8 locale warning from Makefile.PL
1.9708 [2007-10-05]
- [rt.cpan.org #29747]: Build failure with perl 5.005_05
Fixed by regenerating the ppport.h using Devel::PPPort 3.13.
1.9707 [2007-02-27]
- t/HiRes.t failed in Perl 5.6.2,
"action is not of type POSIX::SigAction at t/HiRes.t line 318",
reported and fixed by Anton Berezin, the reason was faulty
use of sigaction() when restoring the old action.
0.77 2008-05-27
- This release is based on version 2008b of the Olson database. The
major changes in this release are for Morocco, Mongolia, and
Pakistan.
- More Windows changes from David Pinkowitz. Determining the local
time zone on a Win32 system should now work regardless of the
system's locale. Previously it only worked for English language
systems. RT #36201.
0.76 2008-05-18
* Dropped support for Perl 5.005.
- Made the Win32 local time zone bits work on Vista and Server
2008. Patch by David Pinkowitz. RT #35733.
0.75 2008-04-25
- A stray STORABLE_attach method in DT::TZ::Floating caused freezing
and thawing a floating timezone with Storable to fail
badly. Reported by Kostas Chatzikokolakis.
- Changed the local time zone detection on Win32 to only require read
access to the registry. Patch by David Pinkowitz. RT #35273.
0.74 2008-03-24
- This release is based on version 2008b of the Olson database. The
major changes in this release are for San Luis in Argentina, Cuba,
Iraq, and Syria.
0.73 2008-03-08
- The DT::TZ::Local::VMS module declared its package as
DateTime::TimeZone::Local::Win32, which clearly is not
right. Patched by Peter Prymmer.
- This release is based on version 2008a of the Olson database. The
major changes in this release are for Argentina and Chile,
0.72 2007-12-31
- This release is based on version 2007j of the Olson database. The
major changes in this release are for Argentina.
0.71 2007-12-28
- Fixes a major bug in the generation of time zone data. This bug
affected any time zone that has more than one rule (most of them)
and currently has no DST changes (many of them). An example would be
America/Caracas. The symptom would either be mistakes about the
current time zone or bogus exceptions when trying to create a local
date. Reported by Éric Cholet.
0.70 2007-12-03
- This release is based on version 2007j of the Olson database. There
is one major change in this release, for the new Venezuelan time
zone.
0.7901 2007-09-01
- The memory-cycle.t test will fail if you have PadWalker and the
current Devel::Cycle (1.07) installed. I forgot I had patched my
local Devel::Cycle to fix this bug.
0.79 2007-08-30
- Fix several circular references in
DateTime::Format::Builder::Parser. This would be triggered by any
standard usage of DT::F::Builder. Reported by Carl Franks. RT
#29034.
0.4302 2008-05-20
[ BUG FIXES ]
- The 41cldr_format.t test blew up on Perl 5.6.x, because of a bug in
the test code.
0.4301 2008-05-18
[ BUG FIXES ]
- In the 0.43 release, I forgot to change the DateTime::Locale
dependency to require DT::Locale 0.40.
0.43 2008-05-18
[ *** BACKWARDS INCOMPATIBILITIES *** ]
* Dropped support for Perl 5.005.
[ ENHANCEMENTS ]
- Added support for formatting the CLDR date pattern language, which
is much more powerful than strftime. This, combined with the latest
DateTime::Locale, makes the localized output much more correct.
[ BUG FIXES ]
- The hour_1() method was returning the real hour + 1, rather than
just representing midnight as 24 instead of 0. This bug fix will
probably break someone's code.
0.42 2008-02-29
[ BUG FIXES ]
- The 17set_return.t tests failed on leap days, like today. Reported
by Duncan Ferguson. RT #33695.
including these enhancements:
* Support for the Horde_Alarm system (requires Horde 3.2) for email or
inline alarms on any event.
* Improved iCalendar and vCalendar support, including support for
alarms, timezones, better integration with remote calendars, and
better support for remote clients.
* Improved event recurrence, including events that recur a specific
number of times, recurrence by day of the year and by weekday of the
year, the choice of editing or deleting a recurring event as either
the full series or an individual exception, and the ability to remove
recurrence exceptions.
* More complete WebDAV support.
* WCAG 1.0 Priority 2/Section 508 accessibility guidelines compliance.
* Users can get a daily agenda email.
* Holidays can be displayed using the Date_Holiday package.
* Event delegation - users can have permissions to creat events on behalf
of other users.
* Events can be marked private.
* More dynamic user interface, including dynamic page refreshes to update
the main calendar view when switching between dates or month/day/week/
work week/year views, a collapsible panel that provides quick access
to all calendars and allows searching of calendars, a dynamic event
edit interface that puts less commonly used options out of site by
default, quick switching between the view, edit, and delete interfaces,
and autocompletion of attendees from the user's address book.
* Full Kolab webclient support
* Database access can be split between read and write databases.
* More graceful operation if the calendar backend is not available.
* and much, much more.
Calendar Application version H3 (2.1.8).
This is a security release that closes an XSS exploit in the add event
screen. All users are encouraged to upgrade to this version.
Stop lying and drop maintainership of these packages. I have not
maintained them for a very long time already, so leave room for
fresh blood to take over them.
- assume that Python 2.4 and 2.5 are compatible and allow checking for
fallout.
- remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+
default. Modify the others to deal with the removals.
2.11 Fri Apr 28 2006
- Fixed a small bug in tai64nlocal where the character
that separates seconds and the fractional seconds
was omitted. Thanks, to Colin Robinson for the spot.
(Note this has some differences from NetBSD's cron, such
as by default users can't have own crontabs unless allowed.)
Vixie Cron is a popular implementation of cron for running scheduled
commands for the system and regular users.
This is a version of 'cron' that is known to run on most systems. It is
functionally based on the SysV cron, which means that each user can have
their own crontab file (all crontab files are stored in a read-protected
directory).
A message is logged each time a command is executed; also, the files
"allow" and "deny" can be used to control access to the "crontab" command
(which installs crontabs).
package installs the config file at installation time. The simpler
solution is to override sysconfdir via INSTALL_MAKE_FLAGS to point
to the example files directory.
+ Instead of using custom termcap/curses detection/overriding logic
in the package Makefile, simply allow termcap.buildlink3.mk (included
indirectly via readline/buildlink3.mk) to do the right thing. Bump
the PKGREVISION to 1.
+ Add full DESTDIR support.
+ Simplify the post-install target.
* Fixed privilege escalation in the Horde API.
* Fixed missing ownership validation on share changes.
* Updated Japanese translation.
* Small bugfixes and improvements.
There are three types Mozilla mirrors.
(http://www.mozilla.org/mirroring.html)
* mozilla-current
contains only the current version of Firefox and Thunderbird
* mozilla-release
contains Firefox, Thunderbird, and Sunbird releases
* mozilla-all
complete archive
Define following variables for mozilla master sites:
MASTER_SITE_MOZILLA_ALL = mozilla-all
MASTER_SITE_MOZILLA = mozilla-release
and change some packages to use appropriate variable.
Update contents of MASTER_SITE_MOZILLA with master and primary mirrors
taken from http://www.mozilla.org/mirrors.html and add some sample definitions.
0.1.20
- A few bugfixes.
- Added XML declaration parsing/saving. This is a stop-gap at best, but will
hopefully be useful to some.
- Removed reliance on builtin regex library. Hopefully the completely broken
version of glibc that instigated the inclusion of it is now out of
circulation.
- Fixed a whole bunch of compiler warnings on more recent GCC versions.
- --not-done now marks sub-tasks as not done. Thanks to an anonymous
user for picking this up.
0.1.19
- Updated my E-Mail address after about a year of having the wrong one :)
- Removed informational message at top of .todo files as it was rather useless
and actually annoying to some people placing their .todo files under version
control systems.
- Added a XSLT -> XHTML+CSS transform from Francesco Poli.
- Added a bash completion script from the Gentoo projects maintainer Aaron
Walker.
- Fixed seg fault visible on 64-bit systems but present on all. Thanks to the
Debian project for notifying me and providing a fix.
0.3001 2007-08-30
- No longer including RFCs in the tarball, per the request of the
Debian maintainer for this package. Apparently, this makes their job
harder, and it serves no useful purpose for me. Requested by Gunnar
Wolf. RT #28480.
0.41 2007-09-10
[ BUG FIXES ]
- The 13strftime.t test was failing when DateTime::Locale 0.35 was
installed. The test has been adjusted and we now list DT::Locale
0.35 as the minimum version. Reported by David Cantrell.
0.40 2007-08-30
[ BUG FIXES ]
- A custom formatter would be lost after a call to set() or
truncate(). Reported by Kjell-Magne Øierud. RT #28728.
- The truncate() method docs said it accepted "second" as a parameter,
but it didn't actually do the right thing with it. Now it always
truncates nanoseconds to 0 for any parameter it is passed.
0.39 2007-07-17
[ BUG FIXES ]
- Yet more changes to how infinity is handled and tested. This passes
for me on 32-bit Win XP and 64-bit Linux, which is promising. Patch
by Yitzchak Scott-Thoennes. RT #22392.
0.38 2007-06-30
[ BUG FIXES ]
- Require Test::Pod::Coverage 1.08 in pod-coverage.t, since we use
all_modules, which was only exported as of version 1.08. Reported by
MATSUNO Tokuhiro. Fixes RT #26594.
- Fixed a bad link to the old FAQ location in the docs. Reported by
Ric Signes. Fixes RT #26846.
[ ENHANCEMENTS ]
- DateTime.pm now explicitly overloads string comparison. This was
done so that comparing a DateTime.pm object to a string returns
false, rather than throwing an exception. Reported by Chris
Dolan. Addresses RT #26085.
0.6904 2007-11-09
- Updated the Windows -> Olson conversion table, though it's still
English-only. Added some more Win32 tests to hopefully help diagnose
a test failure report from a Win32 tester.
0.6903 2007-11-08
- The Win32::TieRegistry prereq was requiring version 1.0, which
doesn't exist. I meant to require just any version. Reported by
CJM. RT #30580.
- No code changes in this release.
0.6902 2007-11-05
- Fixed many sloppy uses of eval blocks which would leave $@ set after
calling various DT::TZ methods/functions. This could cause unrelated
error checking to find $@ set to something and log an error or
die. Reported by Kat.
0.6901 2007-11-02
- Add Win32::TieRegistry to our prereqs if we're on Win32. Reported by
Ruud H.G. van Tol.
0.69 2007-11-01
- This release is based on version 2007i of the Olson database, which
includes changes to Cuba and Syria.
0.68 2007-10-01
- This release is based on version 2007h of the Olson database, which
includes changes to Egypt, Iran, Palestine, Brazil, and Venezuela.
0.67 2007-08-20
- This release is based on version 2007g of the Olson database, which
includes changes to Egypt, Antarctica, Australia, and Indiana (Perry
County).
0.6603 2007-07-07
- The DateTime::TimeZone->names_in_country() method returned the wrong
thing in scalar context. Instead of a simple array reference, it
returned a reference to an array reference. Reported by John
O'Rourke. RT #27843.
==============
This package installs the Time::Interval perl module.
Time::Interval's primary purpose is to take a given number
of seconds and return the number of days, hours, minutes,
and seconds are represented.
=========================
Time::Format provides a very easy way to format dates and times. The
formatting functions are tied to hash variables, so they can be used
inside strings as well as in ordinary expressions. The formatting
codes used are meant to be easy to remember, use, and read. They
follow a simple, consistent pattern. If I've done my job right, once
you learn the codes, you should never have to refer to the
documentation again. A quick-reference page is included, just in
case. ;-)
Time::Format can also format DateTime objects, and strings created
with Date::Manip.
Also provided is a tied-hash interface to POSIX::strftime and
Date::Manip::UnixDate.
the tzdata distribution but is not installed in NetBSD to
/usr/share/zoneinfo.
Sorry for that hack, but it looks still better for me than the
alternatives which are (a) hacking ugly code in evolution or
(b) duplication of the whole zoneinfo tree into pkgsrc.
This is NetBSD only for now; while it might be useful for other
platforms which don't install zone.tab, the /usr/share/zoneinfo path
is hardwired and needs to be verified individually.
1.4.7:
* Fix bug #8912: putenv() causes crashes in DateTimeZone::inDaylightTime() under windows
* Fix bug #9409: Date_Calc, fatal error using a non-array variable as an array
* Fix bug #9414: Date::addSeconds() fails to work properly with negative numbers
* Many cosmetics update
* Moved bug test files to tests/bugs/
* Removed unused files
1.4.6:
- Change license from PHP License to new BSD License
- Bug #5715 fypo, missing s in $GLOBALS
1.4.5:
Same code base as 1.4.4-beta
See 1.4.4 changelog for details
1.4.4:
- Establish the DATE_CALC_FORMAT constant and use it as the default value
for each of the Date_Calc class' method's $format parameter.
- Add beginOfMonthBySpan() and endOfMonthBySpan() methods to Date_Calc.
- Use integers for the parameters in Date_Calc instead of strings.
- Tweak Date_Calc::NWeekdayOfMonth() so it can calculate the 'last'
given weekday of a month.
- #1640. Make sure all longname's are also keys in
$GLOBALS['_DATE_TIMEZONE_DATA']. Makes Date_TimeZone work under more
operating systems.
- #5420, missing CEST
- #3846, getYear, getMonth returns integer
- #2652, add %h and %i support (rob at wildlime dot com
- #5494, force dot as decimal separator
- #3022, allow to specify the weekday abbrevation length used in ::format()
- #4878, %s padding fix when < 10 ( aashley at optimiser dot com)
- #3059, use GLOBALS in date_span
PR: 36211 by Loic Hoguin
changes:
-localizations added
-using GOption, GList and GString now
-checking for a composited desktop-environment, thus depending
on gtk+ >= 2.10.0
-brand new gremlin/gremlin-24 theme included
-smooth hand animations
-no more flashing of backgrond-clear-color upon startup
-bugfixes
the owner of all installed files is a non-root user. This change
affects most packages that require special users or groups by making
them use the specified unprivileged user and group instead.
(1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to
unprivileged.mk. These two variables are lists of other bmake
variables that define package-specific users and groups. Packages
that have user-settable variables for users and groups, e.g. apache
and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP},
etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS
so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER}
and ${UNPRIVILEGED_GROUP}.
(2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
by recht@ and updated by me.
The dateutil module provides powerful extensions to the standard datetime
module, available in Python 2.3+.
Features
* Computing of relative deltas (next month, next year, next monday, last week
of month, etc);
* Computing of relative deltas between two given date and/or datetime objects;
* Computing of dates based on very flexible recurrence rules, using a superset
of the iCalendar specification. Parsing of RFC strings is supported as well.
* Generic parsing of dates in almost any string format;
* Timezone (tzinfo) implementations for tzfile(5) format files
(/etc/localtime, /usr/share/zoneinfo, etc), TZ environment string (in all
known formats), iCalendar format files, given ranges (with help from
relative deltas), local machine timezone, fixed offset timezone, and UTC
timezone.
* Computing of Easter Sunday dates for any given year, using Western, Orthodox
or Julian algorithms;
* More than 400 test cases.
This is a module that implements the Discordian calendar made popular
in the "Illuminatus!" trilogy by Robert Shea and Robert Anton Wilson and
by the Church of the SubGenius. It follows the DateTime API.
The Rose::DateTime::* modules provide a few convenience functions
and objects for use with DateTime dates.
Rose::DateTime::Util contains a simple date parser and a slightly
customized date formatter.
Rose::DateTime::Parser encapsulates a date parser with an associated
default time zone.
This module (Rose::DateTime) exists mostly to provide a version
number for CPAN. See the individual modules for some actual
documentation.
This module understands the formats used by MySQL for its DATE,
DATETIME, TIME, and TIMESTAMP data types. It can be used to parse
these formats in order to create DateTime objects, and it can take
a DateTime object and produce a string representing it in the MySQL
format.
This module understands the formats used by PostgreSQL for its
DATE, TIME, TIMESTAMP, and INTERVAL data types. It can be used to
parse these formats in order to create DateTime or DateTime::Duration
objects, and it can take a DateTime or DateTime::Duration object
and produce a string representing it in a format accepted by
PostgreSQL.
A Time::Clock object is a twenty-four hour clock with nanosecond
precision and wrap-around. It is a clock only; it has absolutely
no concept of dates. Vagaries of date/time such as leap seconds
and daylight savings time are unsupported.
When a Time::Clock object hits 23:59:59.999999999 and at least one
more nanosecond is added, it will wrap around to 00:00:00.000000000.
This works in reverse when time is subtracted.
Time::Clock objects automatically stringify to a user-definable
format.
0.6602 2007-05-29
- There was a bug in the 04local.t tests that did not manifest itself
on my dev machine, but would've been seen on any machine with an
/etc/default/init file. Reported by Jonathan Leffler.
0.6601 2007-05-08
- 0.66 screwed up the test count in 04local.t if certain tests were
skipped. Reported by David Precious.
0.66 2007-05-07
- This release is based on version 2007f of the Olson database, which
includes Haiti, Turks and Caicos Islands, and New Zealand.
- If /etc/localtime is a symlink, but trying to follow that link does
not find a zone name, fall back to trying to find a matching file in
/usr/share/zoneinfo. RT #26438.
- Require Cwd 3.0+, since Cwd;:abs_path() in older versions does not
following a chain of symlinks.
0.6501 2007-04-22
- The test for the new symlink handling could fail on some systems
(notably OSX). Reported by Randal Schwartz.
0.65 2007-04-21
- Handle cases where /etc/localtime is a symlink pointing to another
symlink (and so forth) by using Cwd::abs_path() instead of
readlink(). Fixes RT #26438.
- When creating an Olson time zone object, DT::TZ will now check to
see if the object being loaded is from an older version of the Olson
catalog than the current version of DT::TZ and issue warning if this
is the case. This is useful because obsolete module files may exist
when a zone name is replaced by a link, or just retired entirely.
0.64 2007-04-02
- This release is based on version 2007e of the Olson database
(changes in the Syria and Honduras time zones).
0.63 2007-03-20
- This release is based on version 2007d of the Olson database.
- Fix determination of local time zone on systems where /etc/localtime
is a symlink. This broke in 0.61. Reported by Bradley C Bailey. RT
#25348.
0.37 2007-03-30
[ BUG FIXES ]
- Require DateTime::Locale 0.34, which fixes a problem that manifested
when thawing a DateTime.pm object. See
http://www.mail-archive.com/datetime@perl.org/msg05633.html for some
discussion of this.
- Added pod coverage tests, and added some POD for undocumented
methods as a result.
[ ENHANCEMENTS ]
- This distro is now GPG-signed, per RT #24776.
Planner is a project management tool for the GNOME desktop. Among other
things, it provides:
- Task managment: define a list of tasks to accomplish a project, the
dependencies among them and their lengths. Of course, you can view a
Gantt chart from this data.
- Resource management: define a list of resources for your project and
assign them to tasks.
- Calendar management: create different calendars for the human resources
in your project so that tasks can be automatically scheduled according
to their calendars.
Pkgsrc changes:
- MAINTAINER cannot take care of the package anymore.
- Marked the package as supporting installation to DESTDIR.
- It's a pure Perl package.
Changes since version 1.12:
===========================
1.17 2007-01-25
- I made the same test count mistake as was in 1.14 again. This
release fixes the test count (again) when running on a system that
doesn't support negative epochs (like Win32). Patched by Kenichi
Ishigaki (again).
1.16 2007-01-23
- The leap year fix in 1.14 was pretty broken, as it checked after
converting the year to Perl's internal (year - 1900) format.
1.15 2007-01-22
- Fix Local.t test count when running on a system that doesn't support
negative epochs (like Win32). Patched by Kenichi Ishigaki.
1.14 2007-01-21
- Fixed leap year check to produce the right answer for years outside
of the 32-bit epoch range (such as 1900 and 2100). See rt.perl.org
#31241. Reported by Nathan Zook.
1.13 2006-08-09
- Switched to using Test::More for the tests.
- Fixed a bug that occurred around the DST change for Europe/London
(and probably other time zones with a positive UTC offset). If
given, the hour immediately after the change (2:00 AM for
Europe/London), then the returned epoch was 3600 seconds too
large. Reported by Roger Picton. See RT #11662.
Repetitive Strain Injury is an illness which can occur as a result of
working with a mouse and keyboard. This utility can be used to remind
you to take a break now and then. It will show you a random picture
from a collection you can configure yourself for a configurable
duration at a configurable interval.
You can use these breaks to do some stretch exercises for example, or
as a reminder to walk away from the computer for a while.
RSIBreak will sit in your system tray and when it is time for a break
it will show you the picture full screen. All timings can be set by
clicking with the right mouse button on the icon in the system tray.
This for PR #36216. Thank you Steven for testing.
Sort some of PLIST.
Removed a few patches that were integrated or not needed.
Changes are:
====== 1.8.5 released 16.2.03 =======
FEATURES:
* plan's FTP home site has a new name: plan.ftp.fu-berlin.de, shown in
the About popup. The old address will continue to work. (Thanks, Heiko!)
* set locale to support other character sets such as Czech, by Petr Kristan
<petr.kristan@epos.cz>
* OpenBSD port by Armin Wolfermann <armin.wolfermann@viscomp.com>
* new plan2vcs perl script that converts plan appointments to korganizer
format, by Bert Bos <bert@w3.org>
* if there is a ~/.holiday file, don't read LIB/holiday as well.
* skip junk in entries synced from PalmPilot DateBk4 messages, by Johan
Vromans <jvromans@squirrel.nl>
* allow new holiday syntax "workday before/after <date>", by Ian Holland
<irh@statscout.com>
* Italian language translations by Paolo Panizza <pp@ieee.org>
* accept yyyy/mm/dd date input, Brian T. Schellenberger <bts@babbleon.org>
* Slovak holidays by Mikulas Sustak <sustak@kte.sjf.stuba.sk>
BUG FIXES:
* fixed Debian bug 157425: color selection dropbox always starts on Default
* Suns apparently still run X11R5 and don't have XtSignalId et. al.
* configure script had problems with defaults when using bash (Michael
Mauch <michael.mauch@gmx.de>
* fixed configure script problems on Solaris 2.6, by Horst Scheuermann
<scheuerm@uni-trier.de>
* fixed Dutch Driekoningen holiday date, by Johan Vromans
<JVromans@squirrel.nl>
* IBM AIX doesn't have Xt timers and doesn'd compile plan 1.8.4, excluded
XFree workaround for IBM
* week number 2 appeared twice in 2001. Fixed by Helmut Jarausch
<jarausch@igpm.rwth-aachen.de>
* Search->One file could not select the "own" file (top menu choice).
* cleanup: removed remaining K&R varargs and sunkr target
* fixed '@' user notation in netplan server, by Gennadi Umanski
<umanskij@ti.uni-trier.de>
* fixed Japanese string converion, by Tomoko Hayashi <tomoko@u-aizu.ac.jp>
* other people's .dayplan file references ('L' lines in ~/.dayplan) over-
wrote own file entries (Heiko Schlichting <heiko@FU-Berlin.DE>)
====== 1.8.6 released 18.3.03 =======
FEATURES:
* reversed the change in 1.8.5, at popular demand, that lets a personal
holiday file replace the system holiday file. plan 1.8.6 again reads
both, system first. The new "reset" keywords can be used to clear all
system holidays, following an idea by Heiko Schlichting.
BUG FIXES:
* the edit menu was broken in 1.8.5, fixed by Heiko Schlichting
<heiko@FU-Berlin.DE>
====== 1.8.7 released 30.9.03 =======
FEATURES:
* deleted support for SCO
* pland -p pops up all alarms that triggered since the last time pland
ran, not just those from the past three hours, by Brian L. Shaver
<shaker.lxxv@verizon.net>
* more room for appointments in year overview, moved year to left edge
BUG FIXES:
* newly entered appointments no longer vanish from the edit menu.
* fixed errno compiler errors on SMP systems, Thomas Ribbrock
<emgaron@gmx.net>
* Italian language translations by Paolo Panizza <pp@ieee.org> were
missing from the 1.8.5 and 1.8.6 distributions, now included
====== 1.9 released 6.2.05 =======
FEATURES:
* saved space in various calendar views such as the year overview
* the week view repeats the hour title every few day rows; it was too easy
to get lost without scrolling all the time
* remove obsolete warning windows when the next warning or the main alarm
is reached.
* Linux: when a lockfile from a previous plan process is found, do not kill
it if it's dead and some non-plan process now uses the old process ID.
* if user "netplan" exists on the system, netplan runs as that user instead
of nobody. Needed for Debian. Petter Reinholdtsen <pere@hungry.com>
* added Belgian French holiday file, Nicolas E'vrard <nicoe@wanadoo.be>
* command-line option -V: experimental and incomplete vCalendar export.
File can be read by calendar programs such as Mozilla Calendar.
* plan is now distributed under the GPL license, at your choice.
* netplan has a new option -s that sends all messages to syslog.
BUG FIXES:
* fixed Italian language file, Carlo Mandelli
<carlo.mandelli@consulenti.fastweb.it>
* fixed misspelling in the Italian language file, littledark
<littledark@swissinfo.org>
* "Delete past entries" did not remove repeating entries whose end date is
in the past, Aaron Kaplan <kaplan@cs.rochester.edu>
* fixed choice 1 of configure script on Solaris, Aaron Kaplan
<kaplan@cs.rochester.edu>
* after running a long time (months), alarms stopped triggering. Fixed by
Aaron Kaplan <kaplan@cs.rochester.edu>
* fixed Spanish holiday file, Fernando Tricas "Garci'a"
<ftricas@amon.cps.unizar.es>
* fixed loads of inane gcc warning messages
go away -- I have real doubts that a version 1.1 jdk and the accompanying
swing are any use to anyone, but am not sure the newer stuff we have
supports all ports which are supported by lang/jdk.
http://www.mozilla.org/projects/calendar/releases/sunbird0.3.1.html
What's New in Mozilla Sunbird 0.3.1
Mozilla Sunbird 0.3.1 is the latest release of our standalone calendar
application. We recommend that all users upgrade to this latest version.
* The timezones in Sunbird 0.3.1 have been updated to include the Daylight
Savings Time (summer time) changes passed by the U.S. legislature in 2005.
Release Date: February 19, 2007
1.11
- Skip %V test on Win32
1.10
- Number of bug fixes from RT
- (maintenance by Ricardo SIGNES)
- avoid warning in _mktime (bug #19677)
1.09
- (patches from Ricardo SIGNES)
- Tests largely moved to Test::More (from Test.pm)
- Time::Piece should now be safely subclassable
1.9706 [2007-02-25]
- with bleadperl in VMS the HiRes.t overrun the maximum number
of deferred signals because the libc SIGALRM was not strong
enough to interrupt select(), and select() got restarted every
time, solution is to use POSIX::SigAction if available.
A fix from Craig Berry (not 100% there, but helps).
- allow for more measuring noise for ualarm() tests 35..37
1.9705 [2007-02-06]
- nanosleep() and clock_nanosleep() detection and use were
quite broken; in Linux -lrt needed; fixes from Zefram
- [internal] slightly cleaner building of $DEFINE in Makefile.PL,
should avoid double/conflicting -D flags
1.9704 [2007-01-01]
- allow 10% of slop in test #14 (testing difference between
CORE::time() and Time::HiRes::time()), there seem to be often
transient failures from Perl smoke builds on this test
- small pod tweaks
1.9703 [2006-12-08]
- use int main(int argc, char **argv) consistently in Makefile.PL,
should help with
[rt.cpan.org #23868] nanosleep not detected under Mac OS 10.3.9 starting with Time::HiRes 1.96
- if someone still has the locale-broken Perl 5.8.0,
suggest that they upgrade their Perl
1.9702 [2006-12-06]
- restore the -DATLEASTFIVEOHOHFIVE, Win32 needed it still
1.9701 [2006-12-04]
- upgrade to ppport.h 3.10_02
- remove the -DATLEASTFIVEOHOHFIVE
- use the ppport.h PL_ppaddr, PL_statcache, PL_laststatval
- use the ppport.h aTHXR for calling Perl stat()
- switch into four-digit version since 2.0 is coming up
awfully fast but not feeling like a major rewrite
1.97 [2006-11-30]
- 1.95 broke building in Win32 (since pp_stat is not exported),
figured out how to call an op directly in 5.005 (use Perl_ppaddr
instead of PL_ppaddr)
- backport to Perl 5.004_05 (requires using statcache
and laststatval instead of PL_statcache and PL_laststatval)
(also checked to work in 5.005_04, 5.6.1, and 5.8.8 with threads)
1.96 [2006-11-30]
- 1.95 broke builds for threaded Perls, rt.cpan.org tickets:
[rt.cpan.org #23694] Time::HiRes fails tests on Solaris and Perl 5.6.1
[rt.cpan.org #23712] Time-HiRes 1.95 Fails make on AIX 5.2 with Perl 5.8.8
[rt.cpan.org #23730] Time::HiRes 1.95 fails make on MacOS X 10.3.9/perl 5.8.8
- use main() prototype consistently in Makefile.PL
1.95 [2006-11-29]
- integrate core change #29180: Silence VC++ compiler warnings
from Steve Hay
- do not use PL_ppaddr in stat() because that is not available
in Perl 5.005_04
- regenerate fallback/*.inc for older Perls without
ExtUtils::Constant because of d_hires_stat, resolves
[rt.cpan.org #23694] Time::HiRes fails tests on Solaris and Perl 5.6.1
- Make Makefile.PL more defensive against false PERL_CORE
1.94 [2006-10-16]
- file timestamps oddities seen: the atime and mtime
can be out of sync (modify first and read second can leave
atime < mtime) and mtime can be subsecond while atime is not.
So make the test more forgiving.
1.93 [2006-10-15]
- the ualarm() tests (34-37) assumed that ualarm(N)
could never alarm in less than N seconds, widened
the acceptable relative range to 0.9..1.5. Addresses
[rt.cpan.org #22090] and [rt.cpan.org #22091].
- skip the stat() tests in cygwin and win32, because
if run on FAT the timestamp granularity is only 2 seconds.
Any good way to detect (cygwin or win32) whether we are
being run on NTFS or anywhere with better timestamps?
Addresses [rt.cpan.org #22089] and [rt.cpan.org #22098].
1.92 [2006-10-13]
- scan for subsecond resolution timestamps in struct stat,
some known possibilities:
(1) struct timespec st_atimespec;
st_atimespec.tv_nsec;
(2) time_t st_atime;
long st_atimensec;
(3) time_t st_atime;
int st_atime_n;
(4) timestruc_t st_atim;
st_atim.tv_nsec
(5) time_t st_atime;
int st_uatime;
If something like this is found, one can do
use Time::HiRes;
my @stat = Time::HiRes::stat();
or even override the standard stat():
use Time::HiRes qw(stat);
to get the stat() timestamps
my ($atime, $mtime, $ctime) = @stat[8, 9, 10];
with subsecond resolution (assuming both the operating
system and the filesystem support that kind of thing).
Contributions for more systems (especially non-UNIX,
e.g. but not limited to: Win32, VMS, OS/2) gladly accepted.
(also more UNIX variants welcome: HP-UX? IRIX?)
Thanks to H.Merijn Brand, John Peacock, and Craig
Berry for brave beta testing.
1.91 [2006-09-29]
- ualarm() in SuSE 10.1 was overflowing after ~4.2 seconds,
possibly due to a glibc bug/feature (suspected overflow at
2**32 microseconds?), workaround by using the setitimer()
implementation of ualarm() if either useconds or
interval > 999_999 (this case seems to vary between systems:
are useconds more than 999_999 for ualarm() defined or not)
Added more ualarm() tests to catch various overflow points,
hopefully no problems in various platforms.
(The problem report by Mark Seger and Jon Paul Sullivan of HP.)
1.90 [2006-08-22]
- tweak still needed for Const64(), from Jerry Hedden
- get a freshly generated ppport.h
- update Copyright years
1.89 [2006-08-22]
- Const64() already appends an 'LL' (or i64), so provide LL and i64
forms for the IV_1E[679] (effects Win32 and Cygwin), reported by
Jerry Hedden.
- the Changes entry for 1.88 talked about [IN]V_1[679],
missing the 'E'.
1.88 [2006-08-21]
- clean up the g++ warnings in HiRes.xs, all of them
about mixing integer and floating point, introduce
constants IV_1E[679] and NV_1E[679]
0.36
[ BUG FIXES ]
- For infinity, use 100 ** 1000 instead of 100 ** 100 ** 100. This may
fix the problems with infinity on some platforms (or may
not). Suggested by Bjorn Tackmann. See RT #17390, #19626, and
#22392.
- Require DateTime::TimeZone 0.59, which includes a similar fix.
0.35 2006-10-22
[ ENHANCEMENTS ]
- Added several new methods for getting locale-based data, era_abbr(),
era_name(), quarter_abbr(), and quarter_name(). The era() method
returns the same data as era_abbr(), but is deprecated.
0.34 2006-08-11
[ BUG FIXES ]
- DateTime's code to fall back to the pure Perl implementation was
broken in most cases, making it fairly useless. Reported by Adam
Kennedy and Brendan Gibson.
- Under Perl 5.6.2 (and presumably 5.6.x), some of the tests
mysteriously failed. I tracked this down to a weird interaction
between DateTime's string overloading and
Test::Builder->cmp_ok(). See RT 19626.
0.33 2006-08-09 (the "Asia/Kaohsiung" release)
[ ENHANCEMENTS ]
- Attempting to do an overloaded operation (add, subtract, compare)
with an inappropriate argument (like $dt + 1) gives a more useful
error message.
[ BUG FIXES ]
- The fixes in 0.30 for subtract_datetime() crossing a DST change had
a bug. When subtracting two dates, both occurring on a DST change
date, but where the dates did not cross the change, the answer was
off by an hour. Reported by Chris Prather. See RT 20697.
- Borrowed a tweak from version.pm's Makefile.PL to make compiler
detection work with MSVC.
0.32 2006-07-24
[ BUG FIXES ]
- Change how C compiler detection is done in the Makefile.PL so it
does not rely on having make on the system. The new way should work
on (most?) Unix and Win32 systems. Suggested by David Golden. See RT
18969.
0.31 2006-05-21
[ ENHANCEMENTS ]
- Switched some uses of die() to Carp::croak(), where
appropriate. This should make error messages more useful in many
cases. Based on a suggestion by Max Maischein. See RT tickets 11692
& 18728.
[ BUG FIXES ]
- Removed all uses of UNIVERSAL::isa and UNIVERSAL::can as functions.
- Tweaked 20infinite.t test to give more useful output for some
failures, though it probably doesn't fix them. See RT 17390.
0.33 2007-01-06
- Based on CLDR 1.4.1.
- Some locales had am/pm names like "HASH(...)" because of a bug in
the script to generate the locale modules.
0.32 2006-11-20
- A bug in the STORABLE_freeze method in this class caused major test
failures for DT::Calendar::Chinese, which is used by
DT::Calendar::Japanese.
- Do better checking of locale names passed to DT::Locale->load(), so
we catch undef early before it causes a bunch of warnings.
0.3101 2006-10-23
- Fixed a test failure when DateTime::Locale is installed on a system
where DateTime.pm has never been installed.
- Fixed a test failure in bleadperl. RT Ticket #22515. Reported by
Steve Peters.
0.31 2006-10-22
- Added era_name() and era_abbreviation() methods for the use of
DateTime.pm.
0.30 2006-10-22
- Now using the CLDR data instead of ICU. This isn't a big change,
since the ICU data was derived from the CLDR data anyway.
- Based on CLDR 1.4.
* BACKWARDS INCOMPATIBILITY - Integrated the ISO639-2 aliases into
DateTime::LocaleCatalog, and removed
DateTime::Locale::Alias::ISO639_2.
- The data now include both abbreviated and long forms for eras. The
eras() method continues to return the abbreviated forms, but this is
deprecated. Use era_abbreviations() or era_names() instead.
- Added a STORABLE_attach method for integration with newer versions
of Storable which provide better support for singletons.
- The narrow versions of days and months was not available for most
locales, even though every locale should provide at least the
default values for these items.
0.62 2007-02-26
- This release is based on version 2007c of the Olson database.
0.6101 2007-02-18
- Fixes a major bug in 0.61. Passing "local" as a time zone new to
DateTime::TimeZone->new() caused a fatal error.
0.61 2007-02-18
- Lots of internal changes in the code used to determine a system's
local time zone.
- As a result, we now have a much better method for doing this on
Windows systems, by looking at the registry. See
DateTime::TimeZone::Local::Win32 for details.
0.60 2007-02-13
- This release is based on version 2007b of the Olson database.
0.59 2007-01-18
- When trying to find the local timezone for a machine based on
/etc/localtime, ignore /usr/share/zoneinfo/posixrules. This fixes a
bug seen on FreeBSD 6.2. Reported by . RT #24026.
- For infinity, use 100 ** 1000 instead of 100 ** 100 ** 100. This may
fix the problems with infinity on some platforms (or may
not). Suggested by Bjorn Tackmann.
0.58 2007-01-08
- This release is based on version 2007a of the Olson database.
0.57 2006-11-27
- This release is based on version 2006p of the Olson database.
0.56 2006-11-16
- Really fix the sorting of names_in_country(). Patch by Tatsuhiko
Miyagawa.
- Allow names like "JST-9" and "GMT+0" in $ENV{TZ} when trying to find
the local time zone. Reported by Tatsuhiko Miyagawa.
0.55 2006-11-06
- This release is based on version 2006o of the Olson database.
0.54 2006-10-25
- Got rid of the STORABLE_attach methods. This was causing bugs when
trying to freeze/thaw a DateTime.pm object, and I realized that
because of how the DT::TimeZone internals work, there's not much
gained by using STORABLE_attach instead of STORABLE_freeze. Even
with STORABLE_freeze, the core data structures for a timezone are
still shared.
0.53 2006-10-24
- Freezing and thawing a DT::TimeZone::OffsetOnly object was broken in
0.52 (and probably earlier versions as well). Reported by Tatsuhiko
Miyagawa.
- Freezing and thawing a DT::TimeZone::Floating object was also broken.
0.52 2006-10-22
- The names_in_country() method no longer sorts the zone
names. Instead, it returns them in order from most- to
least-populated.
- Added a STORABLE_attach method for integration with newer versions
of Storable which provide better support for singletons.
- Made offset_as_seconds() and offset_as_string() work as class
methods, since the docs say they should. Reported by Tatsuhiko
Miyagawa.
0.51 2006-10-13
- Added two new catalog-related functions, countries() and
names_in_country(). Using these functions allows you to map ISO3066
country codes to the time zones used in that country. Based on code
by Tatsuhiko Miyagawa.
0.50 2006-10-10
- This release is based on version 2006n of the Olson database.
0.49 2006-10-02
- This release is based on version 2006m of the Olson database.
0.48 2006-09-18
- This release is based on version 2006l of the Olson database.
- Fix finding of local time zone when there is a $SIG{__DIE__} handler
in effect. The handler broke the internal use of exceptions in one
of DateTime::TimeZone::Local's methods. Reported by JD Hedden. RT
#20982.
0.47 2006-08-22
- This release is based on version 2006j of the Olson database.
- Added a link to Asia/Tokyo for the "JST-9" timezone. According to
Kenichi Ishigaki this is a TZ env var setting commonly used in
Japan.
- Some links in the Olson data pointed to other links, or pointed to
non-existent zone names. These have been fixed so that all links
resolve to valid zones, and this is now part of the test suite.
0.46 2006-05-08
- This release is based on version 2006g of the Olson database.
0.45 2006-05-01
- This release is based on version 2006f of the Olson database.
This module understands the W3CDTF date/time format, an ISO 8601
profile, defined at http://www.w3.org/TR/NOTE-datetime. This format
as the native date format of RSS 1.0.
It can be used to parse these formats in order to create the
appropriate objects.
Packaged by Roman Kulik.
RFC2822 introduces a slightly different format of date than that used by
RFC822. The main correction is that the format is more limited, and thus easier
to parse.
A new bug fix release of Xfce 4.2 is available. This release is supposed to
be the last release for the 4.2 branch. It includes several fixes ported from
the current developpment branch. This release should not be confused with the
upcoming Xfce 4.4 release [1], it's a bug fix release of the previous stable
branch.
[1] Xfce 4.4.0 is already in pkgsrc-wip.
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
The Time::Duration perl module provides functions for expressing
durations in rounded (such as "1 year and 21 days") or exact English
terms.
(This is used by ikiwiki.)
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or
via buildlink3.mks
- introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm
in the !modular case
- fix some cases where the check for libX11 couldn't work at all by using
C++ for compilation without including the proper headers
Verified using a full X11_TYPE=xorg bulk build without additional
breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
packages with the modular Xorg equivalent. Those are falling back
to the old location by default, so this commmit doesn't change
dependencies.
graphics/xpm ==> x11/libXpm
fonts/Xft2 ==> x11/libXft
x11/Xfixes ==> x11/libXfixes
x11/xcursor ==> x11/libXcursor
x11/Xrender ==> x11/libXrender
x11/Xrandr ==> libXrandr
------
v2.1.4
------
[cjh] SECURITY: Close arbitrary file inclusion in free/busy views.
------
v2.1.3
------
[cjh] Set vEvent ORGANIZER to the event creator, not the calendar owner (kajtzu@basen.net, Bug 4527).
[jan] Fix importing of events without end date and duration (Bug 4519).
[jan] Correctly display recurring events spanning multiple days (Bug 4438).
[jan] Fix recurrence end dates with SQLite backends (Bug 4219).
[jan] Fix calculation of recurrence ends with imported and remote events (Bug 2813).
[cjh] Consolidate the check for whether or not users can add events in the day and month views (Bug 4373).
[jan] Fix alarms for recurring events in Kolab driver (michael.sheldon@credativ.de, Bug 4326).
[jan] Show error message if imported file didn't contain events.
[cjh] Fix the SQL types of several recurrence fields.
[jan] Add categories from imported events to the user's categories.
[jan] Add Slovenian translation (Duck <duck@obala.net>).
[jan] Deal with attendee email addresses case insensitively.
[jan] Don't consider events from remote calendars as busy time.
[jan] Always try to return the correct event instance if requesting an event by its UID (Thorsten Schaub, Bug 1994).
[cjh] Fix permissions for the calendar list in advanced search (Bug 4093).
0.25 2005-10-05
- t/15time_zone.t does it's own time zone "add_duration" handling
0.24 2005-10-03
- _recurrence.pm warned when the recurrence didn't have occurrences before
a given start date. Reported by Mark D. Anderson.
0.23 2005-10-03
- _recurrence.pm died when the recurrence didn't have occurrences before
a given start date. Reported by Mark D. Anderson.
0.22 2005-05-06
- DateTime::Set 0.21 dies when as_list is asked to produce a list from
outside the range of the set. Patch contributed by Stephen Gowing.
0.21 2005-04-06
- no hard limit in count() and as_list(); removed the warnings from the docs.
0.20 2005-02-28
- changed tests to use en_US instead of pt_BR (which changes every year)
by Dave Rolsky.
- optimized SpanSet methods for special cases:
start_set()
end_set()
contains( $dt )
intersects( $dt )
- added an example to count(), by David Nicol.
- added a note about how the result of min()/max() is just a copy of the
actual set boundary. Reported by Ron Hill.
talking to ipv4 addresses using ipv6 addresses isn't allowed, which is
the default on NetBSD. Patch to use a v4 socket when talking to an ipv4
ldap server. Fixes my PR 33511.
seamonkey/firefox/sunbird have the same code so make the same patch.
OKed ghen. Bump PKGREVISION.
TZInfo is a Ruby library that uses the standard tz (Olson) database to
provide daylight savings aware transformations between times in
different time zones. The tz database is compiled into Ruby modules
which are packaged in the release. No external zoneinfo files are
required at runtime.
What's New in Mozilla Sunbird 0.3
Mozilla Sunbird 0.3 is the latest release of our standalone calendar
application. We recommend that all users upgrade to this latest version.
* New storage architecture handles calendars with hundreds or thousands of
events more responsively.
* More intuitive interface shows you more of what you need, and less of what
you don't.
* Redesigned preferences allow you to easily customize Sunbird for your needs.
* Add-ons support allows you to extend Sunbird's functionality with extensions,
themes, and language packs from addons.mozilla.org.
* New Windows installer makes it easier than ever for Windows users to install
Sunbird.
* Better printing gives you more ways to print your calendars. Mac users can
now print as well!
* 24-hour views show you your entire day, not just a few hours.
* Reliable alarms ensure you are notified about events or tasks.
* Improved localization support means Sunbird can easily install, enable, and
disable language packs.
* Vastly improved reliability makes it much more difficult to lose data.
* Many performance improvements
Release Date: October 11, 2006
2006-09-03 Rodney Dawes <dobey@novell.com>
* configure.ac: Up version to 2.8.0 for release
2006-08-21 Rodney Dawes <dobey@novell.com>
* configure.ac: Up version to 2.7.92 for release
2006-05-17 Rodney Dawes <dobey@novell.com>
* configure.ac: Up version to 2.7.1 for release
Up intltool requirement to 0.35.0
2006-04-24 Rodney Dawes <dobey@novell.com>
* configure.ac: Up version to 2.7.0 for HEAD
Use IT_PROG_INTLTOOL instead of AC_... and require 0.34.90
(ALL_LINGUAS): Remove to be replaced by po/LINGUAS
Fixes#337994
2006-04-24 Rodney Dawes <dobey@novell.com>
* configure.ac: Up version to 2.6.0 for release
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.ac: Remove obsolete entry for no_NO.
* po/no.po: And the translation.
2006-03-22 Tommi Vainikainen <thv@iki.fi>
* configure.ac (ALL_LINGUAS): Added Dzongkha (dz).
2006-03-20 Vladimer Sichinava <alinux@siena.linux.it>
* configure.ac: Added "ka" Georgian to ALL_LINGUAS
wxRemind is a graphical front-end to Remind, a remarkably sophisticated
calendar and alarm system. wxRemind is similar to Wyrd but is based
on wxPython rather than curses. The display features a calendar
and daily event list suitable for visualizing your schedule at a
glance. Dates and associated events can be quickly selected either
with the mouse or cursor keys, and dates in the calendar are color
coded to reflect the total duration of scheduled events. wxRemind
provides an internal editor or integrates with an external editor
of your choice to make editing of reminder files more efficient,
provides hotkeys to quickly access the most common Remind options,
allows popup, sound and/or spoken alerts and can display a postscript
calendar of the selected month suitable for printing.
Wyrd is a text-based front-end to Remind, a sophisticated calendar
and alarm program. Remind's power lies in its programmability, and
Wyrd does not hide this capability behind flashy GUI dialogs.
Rather, Wyrd is designed to make you more efficient at editing your
reminder files directly. It also offers a scrollable timetable
suitable for visualizing your schedule at a glance.
Unlike most of the calendar applications available today, Wyrd is
designed to be both lightweight and fast. Startup time is negligible,
UI navigation is instantaneous, and the wyrd process typically
consumes less than 2MB of resident memory.
CHANGES TO REMIND
* Version 3.0 Patch 24
+ MINOR ENHANCEMENTS
- Permit the DURATION of a reminder to be as high as you like. Previously,
DURATIONs could be at most 23:59. Fix courtesy of Paul Pelzl.
- The "-n" flag can be usefully combined with "-s", "-p" and "-l" now.
Fix courtesy of Paul Pelzl.
+ BUG FIXES
- The "-k" command escapes all characters except those known to be
safe, rather than attempting to escape only characters thought to be
unsafe.
- Removed the crufty code that supported non-ANSI C compilers.
- Removed all support for non-UNIX/non-Linux systems.
- Fixed a bug in the tokenizer that could make Remind segfault. Fix courtesy
of Stan Tobias.
* Version 3.0 Patch 23
+ MINOR ENHANCEMENTS
- Added the COLOR special for putting colored reminders in the calendar.
Supported by the HTML, Tcl/Tk and PostScript back-ends.
- Many minor tweaks to tkremind.
- Added ability to specify paper size in inches or centimetres to rem2ps.
- Added the "-l" option to Remind. This outputs additional information
for back-end programs that use the "-p" output format. Currently
used only by the "tkremind" back-end.
- Fixed dates for Yom Hazikaron and Yom Ha'atzmaut if 5 Iyar falls on a
Saturday. (Hebrew calendar fix.)
- Added support for the Icelandic language, courtesy of Björn Davíðsson.
+ BUG FIXES
- Fixed parser error for unterminated date constant: '2005/01/01
since they always need a C compiler, even when the source code is
completely in C++.
For some other packages, stated in the comment that a C compiler is
really not needed.
Major changes compared to the Kronolith H3 (2.1.1) version are:
* Fixed fatal error during first login of new users on some systems.
* Fixed adding of events with no DataTree backend configured.
* Improved attendees popup and portal block.
* Updated German, Italian and Spanish translations.
The full list of changes (from version H3 (2.1.1)) can be viewed here:
http://cvs.horde.org/diff.php/kronolith/docs/CHANGES?r1=1.165.2.112&r2=1.165.2.120&ty=h
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
project.
From the Release Notes:
Sunbird 0.3 alpha2 is not intended to be a production-quality release. (See
Limitations and Known Bugs) Instead, it is being released largely in order to
showcase/test the advanced new view code. This includes:
* Inline editing of event titles
* Restoration of drag and drop editing in the day/week views
In addition to showcasing and testing the new views, Sunbird 0.3 alpha2 aims to
fix many bugs identified in Sunbird 0.3 alpha1. Some highlights are:
* Ability to modify individual elements of a recurring event
* Fewer import/export errors
* Better error reporting
* Improved alarm functionality
* A new, more intuitive New Event dialog
* Better Mac support
* Many other minor bug fixes
DateTime::Format::Builder creates DateTime parsers. Many string
formats of dates and times are simple and just require a basic
regular expression to extract the relevant information. Builder
provides a simple way to do this without writing reams of structural
code.
Builder provides a number of methods, most of which you'll never
need, or at least rarely need. They're provided more for exposing
of the module's innards to any subclasses, or for when you need to
do something slightly beyond what I expected.
This module implements most of strptime(3), the POSIX function that
is the reverse of strftime(3), for DateTime. While strftime takes
a DateTime and a pattern and returns a string, strptime takes a
string and a pattern and returns the DateTime object associated.
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or
ap2-* respectively. Add new variables to simplify the Makefile
handling. Add CONFLICTS on the old names. Reset revisions of bumped
packages. ap-php will now depend on the default Apache and PHP version.
All programs using it have an implicit option of the Apache version
as well.
OK from jlam@ and adrianp@.
Changes from 0.27:
0.30 2005-12-22
[ ENHANCEMENTS ]
- Expanded and rewrote the docs on date math to try to explain exactly
how DateTime.pm works, and in particular cover the problems DST
introduces to various types of date math. The docs now also include
some specific recommendations on getting sane results from datetime
math.
- Added calendar_duration() and clock_duration() methods to
DateTime::Duration
- Explicitly override the stringification method for
DateTime::Infinite objects. They now stringify as whatever the IEEE
infinity and negative infinity numbers stringify to on your platform.
On Linux this is "inf" and "-inf". CPAN RT #16632.
[ BUG FIXES ]
- delta_md() and delta_days() did not always return correct values
when crossing a DST change.
- The pure Perl version of the code had a dependency ordering problem
where DateTime::LeapSecond depended on other pure Perl code that
wasn't yet available. I'm not sure how this ever worked.
- Remove mentions of leap second on 1971-12-31 from the docs, because
there was no leap second that day. Reported by Mike Schilli.
- If you added a second to a datetime that was on a leap second (like
2005-12-31T23:59:60) it got "stuck" and kept returning the same
datetime. Reported by Mike Schilli.
- Changes to the tests in 20infinite.t may fix failures seen on some
platforms and with new versions of Test::More (0.62 was known to cause
failures)
[ *** BACKWARDS INCOMPATIBILITIES *** ]
- The subtract_datetime() method switched back to using the local
portion of the date _and_ time, but it now accounts for days with DST
changes specially. This produces results that fix the bugs that were
fixed by previous subtraction changes in 0.28 and 0.29, but without
introducing even more bugs. The overall result should be sane, but
please see the docs for details.
0.2901 2005-07-04
- A leap second for the end of 2005 was announced.
0.29 2005-06-03
[ *** BACKWARDS INCOMPATIBILITIES *** ]
- When adding/subtracting a duration with months or days that crossed
a DST change, the result was based on the local time, not the UTC
time. For consistent results, it is necessary to use the UTC time
(but local date) for all date math. Reported by J. Alexander Docauer.
0.28 2005-02-27
[ ENHANCEMENTS ]
- The era names for the era() method are now retrieved from the
DateTime.pm object's associated locale. The old era() method, which
was hard-coded to use BCE and CE, is renamed secular_era(). The
christian_era() method remains the same.
[ BUG FIXES ]
- Fixed an embarassing bug in the subtract_datetime() method. It was
subtracting local times, not UTC, which caused bugs when doing
subtraction across a DST change. This method is used to implement
subtraction overloading, so that was affected as well. Reported by
Mike Schilli.
- The docs for the %U and %W strftime specifiers implied that these
should be zero-padded, but the code was not doing so. Reported by J
Docauer.
Changes from 0.42:
0.44 2006-04-17
- This release is based on version 2006d of the Olson database.
0.43 2006-04-13
- This release is based on version 2006c of the Olson database.
- Added a link for AKST9AKDT (to America/Anchorage).
Changes from 0.09:
0.22 2005-05-31
- Allow id names passed to load() to contain dashes or underscores, in
order to support RFC 3066 locale names, which use dashes.
- Fix bugs when a custom locale was registered and a "class" parameter
was passed to register(). Patch from Yann Kerherv.
- Switched to a "traditional" Makefile.PL file at Perrin Harkins'
request.
0.21 2005-02-28
- Fix era() method for year 0.
0.20 2005-02-26
* BACKWARDS INCOMPATIBILITY - The way DateTime::Locale::Base
subclasses work has changed. Subclasses should no longer implement
the date_formats() or time_formats() methods. Instead, they need to
provide one method per format length (full_date_format(),
long_date_format(), etc).
- Uses much newer (August, 2004) data from ICU. This includes a
number of new locales. See DateTime::LocaleCatalog for a list. This
new data also adds a new type of differentiator for locales, the
script (Latin vs Cyrillic, for example).
- Added new methods to get the "narrow" forms of a day or month.
- Implemented per-locale eras.
- Fix a number of doc typos and buglets. Patch by Jean Forget.
> Major changes compared to the Kronolith H3 (2.1) version are:
> * Fixed fatal error during first login of new users.
> * Update free/busy information on Kolab servers after editing events.
> * Improved free/busy support.
> * Improved interoperability with KOrganizer.
> * Added upgrade script for Oracle to upgrade from 1.1 to 2.x.
> * Updated Danish, Dutch, Greek and Japanese translations.
PKGLOCALEDIR and which install their locale files directly under
${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now
on, pkgsrc/mk/plist/plist-locale.awk will automatically handle
transforming the PLIST to refer to the correct locale directory.
These routines are the inverse of built-in perl functions localtime()
and gmtime(). They accept a date as a six-element array, and return
the corresponding time(2) value in seconds since the system epoch
(Midnight, January 1, 1970 UTC on Unix, for example). This value can
be positive or negative, though POSIX only requires support for
positive values, so dates before the system's epoch may not work on
all operating systems.
reason we were using 3.03 and patching it up to 3.05.
The only ChangeLog entry is
Fix DIALOGVALUE from Charles Durst <cdurst@world.std.com>.
Also, rig this to use Xaw3d correctly.
I may make the default use more modern colors later.
RECOMMENDED is removed. It becomes ABI_DEPENDS.
BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.
BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.
BUILDLINK_DEPENDS does not change.
IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".
Added to obsolete.mk checking for IGNORE_RECOMMENDED.
I did not manually go through and fix any aesthetic tab/spacing issues.
I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.
I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.
As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.
As discussed on tech-pkg.
I will commit to revbump, pkglint, pkg_install, createbuildlink separately.
Note that if you use wip, it will fail! I will commit to pkgsrc-wip
later (within day).
featureful individual calendar system for every Horde user, with
integrated collaboration/scheduling features. It makes extensive use of
the Horde Framework to provide integration with other applications.
2006-02-13 Rodney Dawes <dobey@novell.com>
* configure.ac: Up version to 2.5.90 for release
2006-02-12 Rodney Dawes <dobey@novell.com>
* configure.ac:
* src/*.[ch]: Update copyright years to include 2006
2006-02-12 Rodney Dawes <dobey@novell.com>
* src/evolution-webcal-notify.c (e_webcal_display_error): Set the
maximum width for the error message to 80 characters for long URIs
2005-11-02 Simos Xenitellis <simos@gnome.org>
* configure.ac: Added ky (Kirghiz) to ALL_LINGUAS.