[commits] Horde-Hatchery branch master updated. 9d10ca19e6f58cca46153419dd0f40a516d6d334
Chuck Hagenbuch
chuck at horde.org
Tue Feb 3 22:33:37 UTC 2009
The branch master has been updated.
The following is a summary of the commits. Further details on each commit
can be found below.
9d10ca1... start adding repeater tests independent of horde_date_parser
bb5efa6... fix start/now mismatch, remove commented code
dd95737... start moving repeaters to Horde_Date_Repeater
aa443a8... initial monthname repeater port
from: 76dd70cd9a6308e670b8ce183a25b0fcadfd1621
-----------------------------------------------------------------------
commit 9d10ca19e6f58cca46153419dd0f40a516d6d334
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Tue Feb 3 17:33:29 2009 -0500
start adding repeater tests independent of horde_date_parser
framework/Date_Parser/test/Horde/Date/AllTests.php | 54 ++++++++++++++++
.../test/Horde/Date/Parser/AllTests.php | 2 +-
.../test/Horde/Date/Repeater/DayTest.php | 22 ++++++
3 files changed, 77 insertions(+), 1 deletions(-)
create mode 100644 framework/Date_Parser/test/Horde/Date/AllTests.php
create mode 100644 framework/Date_Parser/test/Horde/Date/Repeater/DayTest.php
http://git.horde.org/co.php/framework/Date_Parser/test/Horde/Date/AllTests.php?rt=horde-hatchery&r=9d10ca19e6f58cca46153419dd0f40a516d6d334
http://git.horde.org/diff.php/framework/Date_Parser/test/Horde/Date/Parser/AllTests.php?rt=horde-hatchery&r1=0c9f12977d718a9a8a4ff8e59ce27d60e51d0f76&r2=9d10ca19e6f58cca46153419dd0f40a516d6d334
http://git.horde.org/co.php/framework/Date_Parser/test/Horde/Date/Repeater/DayTest.php?rt=horde-hatchery&r=9d10ca19e6f58cca46153419dd0f40a516d6d334
-----------------------------------------------------------------------
commit bb5efa658f02e5319e1e15427fe74e3fb7606556
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Tue Feb 3 12:34:30 2009 -0500
fix start/now mismatch, remove commented code
.../lib/Horde/Date/Parser/Locale/Base.php | 24 ++-------
.../lib/Horde/Date/Parser/Locale/Base/Ordinal.php | 2 +-
.../lib/Horde/Date/Parser/Locale/Base/Repeater.php | 44 ----------------
.../Date_Parser/lib/Horde/Date/Parser/Tag.php | 12 ++---
4 files changed, 10 insertions(+), 72 deletions(-)
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base.php?rt=horde-hatchery&r1=c8a24e3ca9ad4554d21ebcdc5d4c0e2b1d990f93&r2=bb5efa658f02e5319e1e15427fe74e3fb7606556
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Ordinal.php?rt=horde-hatchery&r1=0181a33816af5cf90a3a79308916a3daf1c6d7b2&r2=bb5efa658f02e5319e1e15427fe74e3fb7606556
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater.php?rt=horde-hatchery&r1=c8a24e3ca9ad4554d21ebcdc5d4c0e2b1d990f93&r2=bb5efa658f02e5319e1e15427fe74e3fb7606556
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Tag.php?rt=horde-hatchery&r1=87bb5605b73173745324a5c2ce2fd36e1c7a3ebb&r2=bb5efa658f02e5319e1e15427fe74e3fb7606556
-----------------------------------------------------------------------
commit dd95737391656cae97061701c58aefae928387e9
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Tue Feb 3 12:34:00 2009 -0500
start moving repeaters to Horde_Date_Repeater
.../Horde/Date/Parser/Locale/Base/Repeater/Day.php | 66 -------
.../Date/Parser/Locale/Base/Repeater/DayName.php | 60 ------
.../Parser/Locale/Base/Repeater/DayPortion.php | 146 --------------
.../Date/Parser/Locale/Base/Repeater/Hour.php | 62 ------
.../Date/Parser/Locale/Base/Repeater/Minute.php | 61 ------
.../Date/Parser/Locale/Base/Repeater/Month.php | 66 -------
.../Date/Parser/Locale/Base/Repeater/MonthName.php | 108 ----------
.../Date/Parser/Locale/Base/Repeater/Season.php | 31 ---
.../Parser/Locale/Base/Repeater/SeasonName.php | 36 ----
.../Date/Parser/Locale/Base/Repeater/Second.php | 49 -----
.../Date/Parser/Locale/Base/Repeater/Time.php | 162 ----------------
.../Date/Parser/Locale/Base/Repeater/Week.php | 91 ---------
.../Date/Parser/Locale/Base/Repeater/Weekend.php | 87 ---------
.../Date/Parser/Locale/Base/Repeater/Year.php | 75 -------
framework/Date_Parser/lib/Horde/Date/Repeater.php | 44 +++++
.../Date_Parser/lib/Horde/Date/Repeater/Day.php | 66 +++++++
.../lib/Horde/Date/Repeater/DayName.php | 60 ++++++
.../lib/Horde/Date/Repeater/DayPortion.php | 146 ++++++++++++++
.../lib/Horde/Date/Repeater/Exception.php | 4 +
.../Date_Parser/lib/Horde/Date/Repeater/Hour.php | 62 ++++++
.../Date_Parser/lib/Horde/Date/Repeater/Minute.php | 61 ++++++
.../Date_Parser/lib/Horde/Date/Repeater/Month.php | 66 +++++++
.../lib/Horde/Date/Repeater/MonthName.php | 103 ++++++++++
.../Date_Parser/lib/Horde/Date/Repeater/Season.php | 31 +++
.../lib/Horde/Date/Repeater/SeasonName.php | 36 ++++
.../Date_Parser/lib/Horde/Date/Repeater/Second.php | 49 +++++
.../Date_Parser/lib/Horde/Date/Repeater/Time.php | 162 ++++++++++++++++
.../Date_Parser/lib/Horde/Date/Repeater/Week.php | 91 +++++++++
.../lib/Horde/Date/Repeater/Weekend.php | 87 +++++++++
.../Date_Parser/lib/Horde/Date/Repeater/Year.php | 75 +++++++
30 files changed, 1143 insertions(+), 1100 deletions(-)
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Day.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/DayName.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/DayPortion.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Hour.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Minute.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Month.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/MonthName.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Season.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/SeasonName.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Second.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Time.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Week.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Weekend.php
delete mode 100644 framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Year.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Day.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/DayName.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/DayPortion.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Exception.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Hour.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Minute.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Month.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/MonthName.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Season.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/SeasonName.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Second.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Time.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Week.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Weekend.php
create mode 100644 framework/Date_Parser/lib/Horde/Date/Repeater/Year.php
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Day.php?rt=horde-hatchery&r1=472e1255b90ddda4b1bd20a220dc86271742bd51&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/DayName.php?rt=horde-hatchery&r1=fa656f9ff919a79aa3d6299b7dd7b04f145c66e0&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/DayPortion.php?rt=horde-hatchery&r1=472e1255b90ddda4b1bd20a220dc86271742bd51&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Hour.php?rt=horde-hatchery&r1=988502cbdf39f6008d6577d2245627e5be99e3f0&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Minute.php?rt=horde-hatchery&r1=988502cbdf39f6008d6577d2245627e5be99e3f0&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Month.php?rt=horde-hatchery&r1=7ff28aac1489f0c8467725169205287ed5e0c502&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/MonthName.php?rt=horde-hatchery&r1=aa443a84f429ec9954d986fddd1b1c3a293e6b02&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Season.php?rt=horde-hatchery&r1=b9fc37ae190dfd54a72a2bf2001b1b8a4bd80c9e&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/SeasonName.php?rt=horde-hatchery&r1=b9fc37ae190dfd54a72a2bf2001b1b8a4bd80c9e&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Second.php?rt=horde-hatchery&r1=988502cbdf39f6008d6577d2245627e5be99e3f0&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Time.php?rt=horde-hatchery&r1=d4684b5aa72528ba8525d61099f62e8c0039ddcf&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Week.php?rt=horde-hatchery&r1=472e1255b90ddda4b1bd20a220dc86271742bd51&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Weekend.php?rt=horde-hatchery&r1=fa656f9ff919a79aa3d6299b7dd7b04f145c66e0&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/Year.php?rt=horde-hatchery&r1=384f6cc2c1965ab88d4e4814df119acfc7695954&r2=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Day.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/DayName.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/DayPortion.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Exception.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Hour.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Minute.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Month.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/MonthName.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Season.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/SeasonName.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Second.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Time.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Week.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Weekend.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
http://git.horde.org/co.php/framework/Date_Parser/lib/Horde/Date/Repeater/Year.php?rt=horde-hatchery&r=dd95737391656cae97061701c58aefae928387e9
-----------------------------------------------------------------------
commit aa443a84f429ec9954d986fddd1b1c3a293e6b02
Author: Chuck Hagenbuch <chuck at horde.org>
Date: Tue Feb 3 11:37:26 2009 -0500
initial monthname repeater port
.../Date/Parser/Locale/Base/Repeater/MonthName.php | 110 ++++++++--------
1 files changed, 56 insertions(+), 54 deletions(-)
http://git.horde.org/diff.php/framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater/MonthName.php?rt=horde-hatchery&r1=8ee8e9ad7d71b2c13efc130c448b1152dd134b31&r2=aa443a84f429ec9954d986fddd1b1c3a293e6b02
More information about the commits
mailing list