Home » Date and Time » Date
Generic date/time handling class for PEAR
This package is unmaintained.
Download latest release 1.5.0a4 (archived versions might be outdated)
License: BSD License
Description
Generic classes for representation and manipulation of
dates, times and time zones without the need of timestamps,
which is a huge limitation for PHP programs. Includes time zone data,
time zone conversions and many date/time conversions.
It does not rely on 32-bit system date stamps, so
you can display calendars and compare dates that date
pre 1970 and post 2038.
Documentation
Maintainers
- Baba Buehler (baba) — lead, inactive
- Pierre-Alain Joye (pajoye) — lead, inactive
- Monte Ohrt (mohrt) — lead, inactive
- Firman Wandayandi (firman) — lead, active
- C.A. Woodcock (c01234) — lead, active
- Alan Knowles (alan_k) — developer, active
- Leonardo Dutra (scar) — helper, active
Dependencies
Required
- PHP (>= 4.3)
- PEAR Installer (>= 1.4.0)
Releases
- 1.5.0a4 (alpha, 2013-10-08)
Release notes
License: BSD License
Fix broken tgz package file
- 1.5.0a3 (alpha, 2012-10-23)
Release notes
License: BSD License
QA release
Request #17626 Patch to add missing longname and dstlongname info
Bug #19184 use date_default_timezone_get() instead of ini_get(date.timezone)
Bug #19568 setDate() handles ISO week dates incorrectly - 1.5.0a2 (alpha, 2011-12-12)
Release notes
License: BSD License
QA release.
Users are strongly encouraged to adopt to inbuilt DateTime functionality.Bug #17730 Patch: Avoid ereg, using preg_match
Doc Bug #15029 large Date_Span's cannot be created
Bug #14929 Timezone summertime
Bug #14856 America/Moncton longname and dstlongname missing
Bug #14084 TZ variable being set wrecks global config
Bug #13615 America/Toronto time-zone is missing longname and dstlongname
Bug #13545 Date_Span::set() doesn't work when passed an int and format
Req #13488 Please rename Methods format2 and format3 - 1.5.0a1 (alpha, 2008-03-23)
Release notes
License: BSD License
* Fixed bug #2378: getDate(DATE_FORMAT_UNIXTIME) doesn't convert to GMT
* Fixed bug #7439: US/Indiana Daylight Savings Change
* Implemented request #9700: Incorrect timestamps allowd
* Fixed bug #10349: Wrong offset in timezones
* Fixed bug #10591: inDaylightTime fails
* Implemented request #11090: microtime is not set by default constructor
* Fixed bug #11313: DST time change not handled correctly
* Fixed bug #11475: Date::copy don't copy milisecond part
* Fixed bug #11682: Australia/Perth has DST
* Fixed bug #11708: getWeekdayAbbrname returns wrong lenght if string is unicode
* Fixed bug #12019: Date->after(...) changes the date
* Fixed bug #12420: Date constructor handles iso 8601 timezone offests of zero incorrectly
* Fixed bug #12529: setTZ globally sets your TZ instead of only within date object
* Fixed bug #13376: setFromDateDiff change source dates* Improved time-zone functionality so that it is entirely handled by the class and not reliant on native functions
* Added leap-second functionality
* Added functions 'Date::round()' and 'Date::trunc()'
* Added formatting function 'Date::format2()' that uses a 'YYYY-MM-DD'-style formatting code
* Added formatting function 'Date::format3()' to allow date-formatting using the formatting code of 'date()' - 1.4.7 (stable, 2006-11-21)
Release notes
License: BSD License
* 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 (stable, 2005-11-14)
Release notes
License: BSD
- Change license from PHP License to new BSD License
- Bug #5715 fypo, missing s in $GLOBALS - 1.4.5 (stable, 2005-10-11)
Release notes
License: PHP License
Same code base as 1.4.4-beta
See 1.4.4 changelog for details - 1.4.4 (beta, 2005-10-02)
Release notes
License: PHP License
- 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.
- Fix Bug 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 - 1.4.3 (stable, 2004-05-16)
Release notes
License: PHP License
- Fix #1250, wrong name for Bangladesh TZ
- Fix #1390, add XML Schema datetime support
(aashley at optimiser dot com)
See http://www.w3.org/TR/2004/PER-xmlschema-2-20040318/#dateTime - 1.4.2 (stable, 2004-03-14)
Release notes
License: PHP License
- Fix #976 TimeZone default bad global usage
only _DATE_TIMEZONE_DEFAULT is used now
- Fix #683, add optional length argumet to getDayName()
- Fix PHP5 problems with get_class functions - 1.4.1 (stable, 2004-02-24)
Release notes
License: PHP License
- Fix #674 endOfWeek() beginOfWeek()
- Fix #727, weeksInMonth (wrong result with some dates)
- Fix #674 (and old system #22549), check arguments in Date_Span - 1.4 (stable, 2003-12-21)
Release notes
License: PHP License
- improvements in input date parsing
- add Date methods addSpan() and subtractSpan()
- added two more ISO8601 date/time output formats DATE_FORMAT_ISO_BASIC and DATE_FORMAT_ISO_EXTENDED
- improve Date_Calc isLeapYear() and daysInMonth() for year 1582
- add gregorianToISO() method to Date_Calc
- add dateSeason() method to Date_Calc
- add Date_Span class
- bugfix in Date_Calc when century ends in 00, only define DATE_CALC_BEGIN_WEEKDAY if not already defined
- bugfix in beginOfNextWeek(), beginOfPreviousWeek() (thx to andreas dot kossmeier at bergfex dot at)
- bugfix in nextDayOfWeek and prevDayOfWeek (thx to koan at gmx dot at)
- bugfix for bug 62: getDate(DATE_FORMAT_UNIXTIME) off because of DST
- bugfix for bug 65: format(e) returns zero-padded day
- bugfix for bug 195: Suppress a notice in setDate()
- bugfix for bug 271: Date_Calc weeksInMonth() returns wrong number
- fix abstraction bug, Date constructor accepts now object that extends Date
- add tests to release package
- Fix notices and mins calc in to toUTCbyOffset() - 1.4rc1 (beta, 2003-12-03)
- 1.3.1beta (beta, 2003-05-25)
- 1.3 (stable, 2002-10-17)
- 1.2 (stable, 2002-08-06)
- 1.1 (stable, 2002-05-13)
- 1.0 (stable, 2002-05-11)
Bugs
| ID | Status | Type | Version | Date | Summary |
|---|---|---|---|---|---|
| #62 | Closed | Bug | 2003-10-05 | Date::getDate(DATE_FORMAT_UNIXTIME) off because of DST | |
| #65 | Closed | Bug | 2003-10-05 | Date::format("%e") returns zero-padded day | |
| #160 | Closed | Bug | 2003-10-27 | Date-1.3.1beta.tgz missing file Span.php | |
| #195 | Closed | Bug | 2003-11-04 | suppress a NOTICE in Date.php | |
| #271 | Closed | Bug | 2003-11-18 | Date_Calc::weeksInMonth() returns wrong number | |
| #309 | Bogus | Bug | 2003-11-27 | Undefined object error in getDate() | |
| #335 | Closed | Bug | 2003-12-01 | Date::addSeconds() adds hours instead of seconds | |
| #353 | Closed | Bug | 2003-12-04 | Date_Calc::beginOfNextWeek does not keep formatting | |
| #354 | Closed | Bug | 2003-12-04 | No support for microseconds in dates | |
| #434 | Duplicate | Bug | 2003-12-16 | TimeZone.php function inDaylightTime fails | |
| #445 | Closed | Bug | 2003-12-17 | Date does not handle DATE_FORMAT_ISO_EXTENDED correctly | |
| #469 | Closed | Bug | 2003-12-20 | weekOf Year - wrong default arguments | |
| #470 | Bogus | Bug | 2003-12-20 | weekOfYear - wrong result | |
| #674 | Closed | Bug | 2004-02-03 | strange (wrong?) result of Date_Calc::endOfWeek | |
| #677 | Closed | Bug | 2004-02-03 | so new methods | |
| #683 | Closed | Bug | 2004-02-05 | add new parameter | |
| #684 | Closed | Bug | 2004-02-05 | Class check | |
| #685 | Suspended | Req | 2004-02-05 | some speed improvement | |
| #686 | Wont fix | Bug | 2004-02-05 | Factory | |
| #689 | Wont fix | Bug | 2004-02-05 | Other way to write it | |
| #727 | Closed | Bug | 2004-02-10 | Date_Calc::weeksInMonth() wrong result | |
| #861 | Closed | Bug | 2004-02-26 | PEAR QA: improvement for get_class()-usage | |
| #967 | Closed | Bug | 2004-03-07 | Date_TimeZone uses a bad global variable | |
| #969 | Closed | Bug | 2004-03-08 | Dates created from a string don't set properties correctly | |
| #1103 | No Feedback | Bug | 2004-03-31 | Inline documentation error | |
| #1104 | Bogus | Bug | 2004-03-31 | getDay() type cast not needed | |
| #1107 | No Feedback | Bug | 2004-03-31 | setHour() returns wrong value | |
| #1180 | Wont fix | Bug | 2004-04-11 | Use of Date::inDaylightTime() switches date("r") from BST to GMT | |
| #1189 | Bogus | Bug | 2004-04-12 | date('T') in the UK during summer-time gives 'BST' | |
| #1190 | Closed | Bug | 2004-04-12 | Date_TimeZone _DATE_TIMEZONE_DATA[] has UTC double-defined | |
| #1236 | No Feedback | Bug | 2004-04-18 | bad regexp avoid format date | |
| #1240 | Suspended | Bug | 2004-04-19 | Integer overflow when constructing Date_Span from two Date objects | |
| #1250 | Closed | Bug | 2004-04-21 | Date/TimeZone definition has a typo error | |
| #1390 | Closed | Bug | 2004-05-12 | Support for ISO Date format part seconds | |
| #1421 | Suspended | Bug | 2004-05-17 | Loading file takes time | |
| #1612 | No Feedback | Bug | 2004-06-11 | strange error on time format | |
| #1640 | Closed | Bug | 2004-06-14 | Date_TimeZone doesn't recognize 'EDT' | |
| #1695 | Bogus | Bug | 2004-06-21 | wrong time initialization for pseudo-null parameters | |
| #1928 | Bogus | Bug | 2004-07-20 | No show | |
| #2172 | Bogus | Bug | 2004-08-20 | Inconsistent start of week in package | |
| #2217 | Bogus | Bug | 2004-08-25 | Date::compare is changin php date result | |
| #2272 | Closed | Req | 2004-09-02 | Files missing "@package" phpDocumentor tags | |
| #2338 | Suspended | Bug | 2004-09-15 | Comparison of dates changes the time zone | |
| #2344 | No Feedback | Bug | 2004-09-15 | Extensive use of after() and before() methods crashes PHP/Apache | |
| #2378 | Open | Bug | 2004-09-23 | getDate(DATE_FORMAT_UNIXTIME) doesn't convert to GMT | |
| #2401 | Wont fix | Req | 2004-09-26 | In Date::setDate(), $date should have seconds be optional | |
| #2652 | Closed | Req | 2004-10-29 | format() should have hour output without leading zero | |
| #2697 | Closed | Bug | 2004-11-04 | Date does not return UTC | |
| #3012 | Bogus | Bug | 2004-12-22 | Date::convert hangs on Win2003 | |
| #3022 | Closed | Bug | 2004-12-23 | Abbreviations of Weekday (and Month) | |
| #3059 | Closed | Bug | 2004-12-30 | Variables defined outside the Date_Span class are not available | |
| #3345 | Wont fix | Req | 2005-02-01 | Add methode to Date_Span which returns a nice formatted Span array | |
| #3779 | Suspended | Req | 2005-03-11 | Instatiating under a timezone | |
| #3846 | Closed | Bug | 2005-03-16 | getYear and GetMonth incorrectly return a string | |
| #3891 | Suspended | Req | 2005-03-20 | Getting date unresolved | |
| #4026 | Suspended | Bug | 2005-04-01 | missing dst data for Europe/Tallinn and Europe/Vilnius | |
| #4130 | Bogus | Bug | 2005-04-12 | ? | |
| #4468 | No Feedback | Bug | 2005-05-29 | BDT DST timezone setting error | |
| #4489 | No Feedback | Bug | 2005-05-31 | CGI error on Windows 2003 / IIS6 for DST handling code | |
| #4878 | Closed | Bug | 2005-07-22 | DATE_FORMAT_ISO_EXTENDED_MICROTIME not padding seconds correctly | |
| #5336 | Wont fix | Req | 2005-09-08 | support EXIF date format | |
| #5420 | Closed | Bug | 2005-09-15 | Sets the default timezone to UTC instead of CEST | |
| #5426 | Suspended | Req | 2005-09-15 | Cache the weekday and month names in Date_Calc | |
| #5494 | Closed | Bug | 2005-09-22 | %s formatter fails with locales that have a , as a decimal separator | |
| #5714 | Suspended | Req | 2005-10-18 | Localized formatters missing | |
| #5715 | Closed | Bug | 2005-10-18 | Typo in Date/Span.php: $GLOBAL['foo'] instead of $GLOBALS['foo'] | |
| #6063 | Bogus | Req | 2005-11-24 | Date does not work under 5.1.0 | |
| #6083 | Duplicate | Bug | 2005-11-26 | Error whenever run under PHP 5.1 | |
| #6246 | Closed | Bug | 2005-12-14 | inDaylightTime() crashes Apache 2.0.55 with status 3221225477 | |
| #6419 | Bogus | Bug | 2006-01-05 | All timestamps with a length of 8, will generate a wrong date. | |
| #6435 | Closed | Bug | 2006-01-07 | Date_Span resets Timezone | |
| #6633 | Bogus | Bug | 1.4.6 | 2006-01-30 | Missing ?> at the end of files |
| #6711 | Wont fix | Req | 1.4.6 | 2006-02-06 | getWeekFromDate method |
| #7225 | Closed | Bug | 1.4.6 | 2006-03-28 | Date and TimeZone |
| #7399 | No Feedback | Bug | 1.4.6 | 2006-04-14 | getNextDay() function occassionally skips days |
| #7439 | Closed | Bug | 1.4.6 | 2006-04-20 | US/Indiana Daylight Savings Change |
| #7689 | No Feedback | Bug | 1.4.6 | 2006-05-22 | Incorrect conversion of timezone offsets to unix timestamps |
| #8267 | Suspended | Req | 1.4.6 | 2006-07-23 | changed behaviour of Date::compare, new method isSameDay |
| #8518 | Closed | Bug | 1.4.6 | 2006-08-20 | Date::copy() does not copy partsecond |
| #8783 | Suspended | Req | 1.4.6 | 2006-09-25 | support for years <0001 |
| #8823 | Suspended | Req | 1.4.6 | 2006-10-01 | New functions:beginOfWeekBySpan,endOfWeekBySpan |
| #8912 | Assigned | Bug | 1.4.6 | 2006-10-08 | putenv causes crashes in DateTimeZone::inDaylightTime under windows. |
| #9213 | Bogus | Bug | 1.4.6 | 2006-11-01 | Date_Calc doesn't like including Date.php |
| #9409 | Closed | Bug | CVS | 2006-11-21 | Fatal error using a non-array variable as an array |
| #9414 | Closed | Bug | 1.4.6 | 2006-11-21 | addSeconds fails to work properly with negative numbers |
| #9417 | Closed | Bug | 1.4.7 | 2006-11-22 | Date::Date_Span infinite loop PHP 5.1.6 |
| #9568 | Closed | Bug | 1.4.7 | 2006-12-07 | beginOfMonthBySpan - december, shifted one year |
| #9664 | Suspended | Bug | 1.4.7 | 2006-12-20 | Date() low performance |
| #9700 | Closed | Req | 1.4.7 | 2006-12-26 | Incorrect timestamps allowd |
| #9732 | Closed | Req | 1.4.7 | 2007-01-04 | Wrong result from NWeekdayOfMonth! |
| #9801 | Closed | Bug | 1.4.7 | 2007-01-11 | Date::compare() modify params on PHP5 |
| #9802 | Closed | Doc | 1.4.7 | 2007-01-11 | Documentation missing |
| #9920 | Wont fix | Bug | 1.4.7 | 2007-01-22 | PHP_STRICT returns a slew of errors |
| #10349 | Closed | Bug | 1.4.7 | 2007-03-13 | Wrong offset in timezones |
| #10591 | Closed | Bug | 2007-04-02 | inDaylightTime fails | |
| #10946 | Open | Req | 1.4.7 | 2007-05-06 | Date_Calc::dateFormat should default to DATE_CALC_FORMAT |
| #11003 | Bogus | Bug | 1.4.7 | 2007-05-10 | Date_Calc:gregorianToISO() method ignores DATE_CALC_BEGIN_WEEKDAY option |
| #11090 | Closed | Req | 1.4.7 | 2007-05-21 | microtime is not set by default constructor |
| #11313 | Closed | Bug | 1.4.7 | 2007-06-13 | DST time change not handled correctly |
| #11475 | Closed | Bug | 1.4.7 | 2007-06-28 | Date::copy don't copy milisecond part |
| #11682 | Closed | Bug | 1.4.7 | 2007-07-24 | Australia/Perth has DST |
| #11698 | Closed | Bug | 1.4.7 | 2007-07-28 | upgrade @licence field in tests/calc.php |
| #11708 | Closed | Bug | 1.4.7 | 2007-07-30 | getWeekdayAbbrname returns wrong lenght if string is unicode |
| #11709 | Duplicate | Bug | 1.4.7 | 2007-07-30 | getWeekdayAbbrname returns wrong lenght if string is unicode |
| #12019 | Closed | Bug | 1.4.7 | 2007-09-11 | Date->after(...) changes the date |
| #12420 | Closed | Bug | 1.4.7 | 2007-11-11 | Date constructor handles iso 8601 timezone offests of zero incorrectly |
| #12508 | Duplicate | Req | 1.4.7 | 2007-11-22 | Can't use before 1000 year. |
| #12529 | Closed | Bug | 1.4.7 | 2007-11-26 | setTZ globally sets your TZ instead of only within date object |
| #13219 | Open | Req | 1.4.7 | 2008-02-26 | Methods like getNextDay() should check for complete data fields first |
| #13376 | Closed | Bug | 1.4.7 | 2008-03-11 | setFromDateDiff change source dates |
| #13480 | Wont fix | Bug | 1.5.0a1 | 2008-03-24 | Deprecated errors in many places |
| #13488 | Closed | Req | 1.5.0a1 | 2008-03-25 | Please rename Methods format2 and format3 |
| #13545 | Closed | Bug | CVS | 2008-03-31 | Date_Span::set() doesn't work when passed an int and format |
| #13615 | Closed | Bug | CVS | 2008-04-07 | America/Toronto time-zone is missing longname and dstlongname |
| #13654 | Bogus | Req | 1.5.0a1 | 2008-04-11 | Date should throw an exception when setting an invalid date |
| #13710 | Closed | Doc | CVS | 2008-04-18 | wrong "No end-user documentation" |
| #13768 | Closed | Doc | 2008-04-24 | broken link | |
| #14042 | Open | Bug | 1.5.0a1 | 2008-06-01 | Timezone conversion wrong |
| #14084 | Closed | Bug | 1.4.7 | 2008-06-05 | TZ variable being set wrecks global config |
| #14148 | Open | Bug | 1.5.0a1 | 2008-06-16 | Offset for CEST seems to be incorrect |
| #14151 | Verified | Bug | 1.5.0a1 | 2008-06-16 | setDateTime references variables which are not passed to the method |
| #14389 | Open | Bug | CVS | 2008-07-22 | Timezone Offsets Wrong |
| #14413 | Open | Bug | CVS | 2008-07-28 | Passing a Unix timestamp in the constructor doesn't work (BC break) |
| #14434 | Open | Bug | 1.4.7 | 2008-08-01 | Multiple calls to toUTC() weirdness |
| #14606 | Open | Req | 1.5.0a1 | 2008-09-06 | Extand with getNextMonth and getPrevMonth method |
| #14769 | Open | Bug | 1.4.7 | 2008-10-09 | Venezuela and Toronto time zones |
| #14770 | Open | Req | CVS | 2008-10-09 | If available, make use of PHP's DateTime tz information |
| #14852 | Open | Bug | 1.5.0a1 | 2008-10-22 | DST in Time Zones for dates in past are inaccurate |
| #14856 | Closed | Bug | CVS | 2008-10-23 | America/Moncton longname and dstlongname missing |
| #14929 | Closed | Bug | 1.5.0a1 | 2008-10-31 | Timezone summertime |
| #14951 | Bogus | Req | 1.4.7 | 2008-11-03 | Implement prevWeekday() |
| #15029 | Closed | Doc | 1.4.7 | 2008-11-14 | large Date_Span's cannot be created |
| #15478 | Duplicate | Bug | CVS | 2009-01-01 | BC break - new Date(time()) doesn't work |
| #15631 | Feedback | Req | 1.4.7 | 2009-01-14 | determine if setDate detected valid format |
| #16237 | Bogus | Bug | 1.5.0a1 | 2009-05-18 | Illegal Dates not checked |
| #16299 | Open | Bug | 1.4.7 | 2009-06-06 | [PATCH] Date_TimeZone::inDaylightTime had nasty side-effects due to altering TZ |
| #16352 | Open | Bug | Unknown | 2009-06-20 | Inconsistent time conversion on window and linux with DST |
| #16434 | Open | Bug | 1.4.7 | 2009-07-13 | Date object incorrectly loaded with UTC date/time minus 2 hours |
| #16520 | Open | Bug | 1.5.0a1 | 2009-08-13 | Compare returns invalid result for certain dates due to standard time conversion |
| #16574 | Open | Bug | 1.5.0a1 | 2009-09-07 | inDaylightTime fails for southern hemisphere DST |
| #16719 | Bogus | Bug | 1.5.0a1 | 2009-10-21 | wrong dates for Holidays with Date_Holidays |
| #16770 | Bogus | Bug | 1.5.0a1 | 2009-11-07 | static method being called in class, E_STRICT complains |
| #16822 | Open | Bug | 1.4.7 | 2009-11-22 | setTZByID() does not behave as expected |
| #16954 | Open | Bug | 1.4.7 | 2009-12-28 | Issue with setDate() with unix timestamp argument |
| #17410 | Bogus | Bug | 1.5.0a1 | 2010-05-18 | addMinutes() unexpected result |
| #17626 | Closed | Req | SVN | 2010-07-23 | Patch to add missing longname and dstlongname info |
| #17730 | Closed | Bug | SVN | 2010-08-17 | Patch: Avoid ereg, using preg_match |
| #17851 | Wont fix | Req | 1.5.0a1 | 2010-09-08 | Class name is hard coded in methods |
| #18136 | Open | Bug | 1.4.7 | 2010-12-22 | Method setDay can create invalid date |
| #18368 | Open | Bug | 1.4.7 | 2011-03-17 | compare() modifies Objects |
| #18417 | Open | Bug | 1.5.0a1 | 2011-03-31 | Date_Span changes timezone silently |
| #18942 | Open | Bug | Unknown | 2011-10-29 | DateDiff calculation error |
| #19184 | Closed | Bug | SVN | 2012-01-03 | use date_default_timezone_get() instead of ini_get(date.timezone) |
| #19350 | Open | Bug | 1.5.0a2 | 2012-03-26 | Date comparison broken for BST this year |
| #19568 | Closed | Bug | 1.5.0a2 | 2012-08-16 | setDate() handles ISO week dates incorrectly |
| #19723 | Closed | Bug | 1.5.0a3 | 2012-11-27 | Tarball is broken |
| #20030 | Wont fix | Bug | 1.5.0a3 | 2013-08-07 | Incompatibilites with PHP 5.4x |
| #20085 | Duplicate | Bug | 1.5.0a3 | 2013-10-05 | tgz package provided for download does not contain any code |
| #20095 | Open | Bug | 1.5.0a4 | 2013-10-13 | package requires none existent file |