carnold 2004/11/12 18:42:37
Modified: . build.xml
include/log4cxx portability.h
include/log4cxx/helpers absolutetimedateformat.h
dateformat.h datelayout.h datetimedateformat.h
iso8601dateformat.h relativetimedateformat.h
system.h timezone.h
include/log4cxx/spi loggingevent.h
performance Makefile.am main.cpp
src Makefile.am dateformat.cpp datelayout.cpp
htmllayout.cpp loggingevent.cpp logmanager.cpp
patternparser.cpp system.cpp timezone.cpp
ttcclayout.cpp xmllayout.cpp
tests/input patternLayout3.properties
patternLayout5.properties patternLayout7.properties
tests/src Makefile.am minimumtestcase.cpp
tests/src/helpers Makefile.am
tests/src/pattern patternparsertestcase.cpp
Added: include/log4cxx/helpers cacheddateformat.h
simpledateformat.h strftimedateformat.h
src cacheddateformat.cpp relativetimedateformat.cpp
simpledateformat.cpp strftimedateformat.cpp
tests/src/helpers absolutetimedateformattestcase.cpp
cacheddateformattestcase.cpp
datetimedateformattestcase.cpp
iso8601dateformattestcase.cpp
relativetimedateformattestcase.cpp
timezonetestcase.cpp
Log:
LOGCXX-11, 15, 17, 40: Rework of time related functions using APR
Revision Changes Path
1.5 +168 -17 logging-log4cxx/build.xml
http://cvs.apache.org/viewcvs/logging-log4cxx/build.xml.diff?r1=1.4&r2=1.5
1.3 +15 -0 logging-log4cxx/include/log4cxx/portability.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/portability.h.diff?r1=1.2&r2=1.3
1.10 +5 -29
logging-log4cxx/include/log4cxx/helpers/absolutetimedateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/absolutetimedateformat.h.diff?r1=1.9&r2=1.10
1.16 +70 -88 logging-log4cxx/include/log4cxx/helpers/dateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/dateformat.h.diff?r1=1.15&r2=1.16
1.12 +9 -28 logging-log4cxx/include/log4cxx/helpers/datelayout.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/datelayout.h.diff?r1=1.11&r2=1.12
1.8 +11 -9
logging-log4cxx/include/log4cxx/helpers/datetimedateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/datetimedateformat.h.diff?r1=1.7&r2=1.8
1.12 +9 -9
logging-log4cxx/include/log4cxx/helpers/iso8601dateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/iso8601dateformat.h.diff?r1=1.11&r2=1.12
1.13 +12 -17
logging-log4cxx/include/log4cxx/helpers/relativetimedateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/relativetimedateformat.h.diff?r1=1.12&r2=1.13
1.9 +11 -24 logging-log4cxx/include/log4cxx/helpers/system.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/system.h.diff?r1=1.8&r2=1.9
1.6 +20 -70 logging-log4cxx/include/log4cxx/helpers/timezone.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/timezone.h.diff?r1=1.5&r2=1.6
1.1
logging-log4cxx/include/log4cxx/helpers/cacheddateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/cacheddateformat.h?rev=1.1
1.1
logging-log4cxx/include/log4cxx/helpers/simpledateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/simpledateformat.h?rev=1.1
1.1
logging-log4cxx/include/log4cxx/helpers/strftimedateformat.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/helpers/strftimedateformat.h?rev=1.1
1.18 +5 -8 logging-log4cxx/include/log4cxx/spi/loggingevent.h
http://cvs.apache.org/viewcvs/logging-log4cxx/include/log4cxx/spi/loggingevent.h.diff?r1=1.17&r2=1.18
1.5 +1 -1 logging-log4cxx/performance/Makefile.am
http://cvs.apache.org/viewcvs/logging-log4cxx/performance/Makefile.am.diff?r1=1.4&r2=1.5
1.8 +6 -5 logging-log4cxx/performance/main.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/performance/main.cpp.diff?r1=1.7&r2=1.8
1.19 +6 -3 logging-log4cxx/src/Makefile.am
http://cvs.apache.org/viewcvs/logging-log4cxx/src/Makefile.am.diff?r1=1.18&r2=1.19
1.18 +34 -115 logging-log4cxx/src/dateformat.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/dateformat.cpp.diff?r1=1.17&r2=1.18
1.11 +54 -62 logging-log4cxx/src/datelayout.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/datelayout.cpp.diff?r1=1.10&r2=1.11
1.12 +25 -3 logging-log4cxx/src/htmllayout.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/htmllayout.cpp.diff?r1=1.11&r2=1.12
1.14 +43 -14 logging-log4cxx/src/loggingevent.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/loggingevent.cpp.diff?r1=1.13&r2=1.14
1.12 +8 -0 logging-log4cxx/src/logmanager.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/logmanager.cpp.diff?r1=1.11&r2=1.12
1.17 +31 -11 logging-log4cxx/src/patternparser.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/patternparser.cpp.diff?r1=1.16&r2=1.17
1.15 +0 -16 logging-log4cxx/src/system.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/system.cpp.diff?r1=1.14&r2=1.15
1.5 +176 -185 logging-log4cxx/src/timezone.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/timezone.cpp.diff?r1=1.4&r2=1.5
1.9 +10 -6 logging-log4cxx/src/ttcclayout.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/ttcclayout.cpp.diff?r1=1.8&r2=1.9
1.17 +1 -1 logging-log4cxx/src/xmllayout.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/xmllayout.cpp.diff?r1=1.16&r2=1.17
1.1 logging-log4cxx/src/cacheddateformat.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/cacheddateformat.cpp?rev=1.1
1.1 logging-log4cxx/src/relativetimedateformat.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/relativetimedateformat.cpp?rev=1.1
1.1 logging-log4cxx/src/simpledateformat.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/simpledateformat.cpp?rev=1.1
1.1 logging-log4cxx/src/strftimedateformat.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/src/strftimedateformat.cpp?rev=1.1
1.2 +4 -4 logging-log4cxx/tests/input/patternLayout3.properties
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/input/patternLayout3.properties.diff?r1=1.1&r2=1.2
1.2 +1 -1 logging-log4cxx/tests/input/patternLayout5.properties
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/input/patternLayout5.properties.diff?r1=1.1&r2=1.2
1.2 +1 -1 logging-log4cxx/tests/input/patternLayout7.properties
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/input/patternLayout7.properties.diff?r1=1.1&r2=1.2
1.8 +1 -1 logging-log4cxx/tests/src/Makefile.am
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/Makefile.am.diff?r1=1.7&r2=1.8
1.6 +4 -4 logging-log4cxx/tests/src/minimumtestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/minimumtestcase.cpp.diff?r1=1.5&r2=1.6
1.4 +8 -1 logging-log4cxx/tests/src/helpers/Makefile.am
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/Makefile.am.diff?r1=1.3&r2=1.4
1.1
logging-log4cxx/tests/src/helpers/absolutetimedateformattestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/absolutetimedateformattestcase.cpp?rev=1.1
1.1
logging-log4cxx/tests/src/helpers/cacheddateformattestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/cacheddateformattestcase.cpp?rev=1.1
1.1
logging-log4cxx/tests/src/helpers/datetimedateformattestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/datetimedateformattestcase.cpp?rev=1.1
1.1
logging-log4cxx/tests/src/helpers/iso8601dateformattestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/iso8601dateformattestcase.cpp?rev=1.1
1.1
logging-log4cxx/tests/src/helpers/relativetimedateformattestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/relativetimedateformattestcase.cpp?rev=1.1
1.1 logging-log4cxx/tests/src/helpers/timezonetestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/helpers/timezonetestcase.cpp?rev=1.1
1.3 +0 -2
logging-log4cxx/tests/src/pattern/patternparsertestcase.cpp
http://cvs.apache.org/viewcvs/logging-log4cxx/tests/src/pattern/patternparsertestcase.cpp.diff?r1=1.2&r2=1.3
