mcconnell 2003/02/09 15:33:26 Modified: . build.xml src/compat/org/apache/log ContextStack.java FilterTarget.java Formatter.java LogKit.java src/compat/org/apache/log/format AvalonFormatter.java ExceptionUtil.java src/compat/org/apache/log/output DatagramOutputTarget.java DefaultOutputLogTarget.java FileOutputLogTarget.java src/java/org/apache/log ContextMap.java ErrorAware.java ErrorHandler.java Hierarchy.java LogEvent.java LogTarget.java Logger.java Priority.java src/java/org/apache/log/filter AbstractFilterTarget.java PriorityFilter.java src/java/org/apache/log/format ExtendedPatternFormatter.java Formatter.java PatternFormatter.java RawFormatter.java SyslogFormatter.java XMLFormatter.java src/java/org/apache/log/output AbstractOutputTarget.java AbstractTarget.java AsyncLogTarget.java MemoryTarget.java NullOutputLogTarget.java ServletOutputLogTarget.java src/java/org/apache/log/output/db AbstractJDBCTarget.java ColumnInfo.java ColumnType.java DefaultDataSource.java DefaultJDBCTarget.java NormalizedJDBCTarget.java src/java/org/apache/log/output/io FileTarget.java SafeFileTarget.java StreamTarget.java WriterTarget.java src/java/org/apache/log/output/io/rotate BaseFileNameFilter.java FileStrategy.java OrRotateStrategy.java RevolvingFileStrategy.java RotateStrategy.java RotateStrategyByDate.java RotateStrategyBySize.java RotateStrategyByTime.java RotatingFileTarget.java UniqueFileStrategy.java src/java/org/apache/log/output/jms AbstractJMSTarget.java JMSQueueTarget.java JMSTopicTarget.java MessageBuilder.java ObjectMessageBuilder.java PropertyInfo.java PropertyType.java TextMessageBuilder.java src/java/org/apache/log/output/lf5 LF5LogTarget.java LogKitLogRecord.java src/java/org/apache/log/output/net DatagramOutputTarget.java SMTPOutputLogTarget.java SocketOutputTarget.java src/java/org/apache/log/util DefaultErrorHandler.java LoggerListener.java LoggerOutputStream.java OutputStreamLogger.java StackIntrospector.java src/test/org/apache/log/format/test FormatterTestCase.java src/test/org/apache/log/output/test DBTargetTestCase.java DatagramTest.java OutputTargetTestCase.java RevolvingFileStrategyTestCase.java TestRotatingFileOutputLogTarget.java src/test/org/apache/log/test InheritanceTestCase.java LoggerListenerTestCase.java RecordingLoggerListener.java src/test/org/apache/log/util/test UtilTestCase.java src/xdocs/stylesheets project.xml Log: 1. updated copyright files from 2002 to 2003 2. added manifest declaration under the build file 3. corrected build file to properly generate javadoc 4. corrected doc master to reference local APIs Revision Changes Path 1.94 +11 -0 avalon-logkit/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/avalon-logkit/build.xml,v retrieving revision 1.93 retrieving revision 1.94 diff -u -r1.93 -r1.94 --- build.xml 7 Feb 2003 20:10:18 -0000 1.93 +++ build.xml 9 Feb 2003 23:33:20 -0000 1.94 @@ -413,6 +413,14 @@ <jar jarfile="${build.lib}/${name}.jar" basedir="${build.classes}" compress="${compress.jars}"> <include name="org/apache/log/**" /> <exclude name="**/test/*" /> + <manifest> + <attribute name="Extension-Name" value="avalon-logkit"/> + <attribute name="Specification-Vendor" value="Apache Software Foundation"/> + <attribute name="Specification-Version" value="1.0"/> + <attribute name="Implementation-Vendor" value="Apache Software Foundation"/> + <attribute name="Implementation-Vendor-Id" value="ASF"/> + <attribute name="Implementation-Version" value="${version}"/> + </manifest> </jar> </target> @@ -450,6 +458,9 @@ unless="javax.jms.present"/> <exclude name="org/apache/log/output/test/DBTargetTestCase.java" unless="javax.sql.present"/> + </fileset> + <fileset dir="${compat.dir}"> + <include name="**/*.java"/> </fileset> </copy> 1.6 +1 -1 avalon-logkit/src/compat/org/apache/log/ContextStack.java Index: ContextStack.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/ContextStack.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ContextStack.java 3 Feb 2003 17:40:11 -0000 1.5 +++ ContextStack.java 9 Feb 2003 23:33:21 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/compat/org/apache/log/FilterTarget.java Index: FilterTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/FilterTarget.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- FilterTarget.java 3 Feb 2003 17:40:11 -0000 1.3 +++ FilterTarget.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/compat/org/apache/log/Formatter.java Index: Formatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/Formatter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Formatter.java 3 Feb 2003 17:40:11 -0000 1.3 +++ Formatter.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/compat/org/apache/log/LogKit.java Index: LogKit.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/LogKit.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- LogKit.java 3 Feb 2003 17:40:11 -0000 1.4 +++ LogKit.java 9 Feb 2003 23:33:21 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/compat/org/apache/log/format/AvalonFormatter.java Index: AvalonFormatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/format/AvalonFormatter.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- AvalonFormatter.java 7 Feb 2003 15:25:58 -0000 1.7 +++ AvalonFormatter.java 9 Feb 2003 23:33:21 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/compat/org/apache/log/format/ExceptionUtil.java Index: ExceptionUtil.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/format/ExceptionUtil.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ExceptionUtil.java 7 Feb 2003 15:25:58 -0000 1.3 +++ ExceptionUtil.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/compat/org/apache/log/output/DatagramOutputTarget.java Index: DatagramOutputTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/output/DatagramOutputTarget.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- DatagramOutputTarget.java 3 Feb 2003 17:40:12 -0000 1.3 +++ DatagramOutputTarget.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/compat/org/apache/log/output/DefaultOutputLogTarget.java Index: DefaultOutputLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/output/DefaultOutputLogTarget.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- DefaultOutputLogTarget.java 3 Feb 2003 17:40:12 -0000 1.3 +++ DefaultOutputLogTarget.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/compat/org/apache/log/output/FileOutputLogTarget.java Index: FileOutputLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/compat/org/apache/log/output/FileOutputLogTarget.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- FileOutputLogTarget.java 3 Feb 2003 17:40:12 -0000 1.3 +++ FileOutputLogTarget.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.15 +1 -1 avalon-logkit/src/java/org/apache/log/ContextMap.java Index: ContextMap.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/ContextMap.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ContextMap.java 7 Feb 2003 15:25:58 -0000 1.14 +++ ContextMap.java 9 Feb 2003 23:33:21 -0000 1.15 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/java/org/apache/log/ErrorAware.java Index: ErrorAware.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/ErrorAware.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ErrorAware.java 3 Feb 2003 17:40:12 -0000 1.4 +++ ErrorAware.java 9 Feb 2003 23:33:21 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/java/org/apache/log/ErrorHandler.java Index: ErrorHandler.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/ErrorHandler.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ErrorHandler.java 3 Feb 2003 17:40:12 -0000 1.3 +++ ErrorHandler.java 9 Feb 2003 23:33:21 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.27 +1 -1 avalon-logkit/src/java/org/apache/log/Hierarchy.java Index: Hierarchy.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/Hierarchy.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- Hierarchy.java 7 Feb 2003 15:25:58 -0000 1.26 +++ Hierarchy.java 9 Feb 2003 23:33:21 -0000 1.27 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.15 +1 -1 avalon-logkit/src/java/org/apache/log/LogEvent.java Index: LogEvent.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/LogEvent.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- LogEvent.java 7 Feb 2003 15:25:58 -0000 1.14 +++ LogEvent.java 9 Feb 2003 23:33:21 -0000 1.15 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +1 -1 avalon-logkit/src/java/org/apache/log/LogTarget.java Index: LogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/LogTarget.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- LogTarget.java 3 Feb 2003 17:40:12 -0000 1.5 +++ LogTarget.java 9 Feb 2003 23:33:21 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.38 +1 -1 avalon-logkit/src/java/org/apache/log/Logger.java Index: Logger.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/Logger.java,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- Logger.java 7 Feb 2003 15:25:58 -0000 1.37 +++ Logger.java 9 Feb 2003 23:33:21 -0000 1.38 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.17 +1 -1 avalon-logkit/src/java/org/apache/log/Priority.java Index: Priority.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/Priority.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- Priority.java 5 Feb 2003 06:26:52 -0000 1.16 +++ Priority.java 9 Feb 2003 23:33:22 -0000 1.17 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/filter/AbstractFilterTarget.java Index: AbstractFilterTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/filter/AbstractFilterTarget.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- AbstractFilterTarget.java 7 Feb 2003 15:25:59 -0000 1.9 +++ AbstractFilterTarget.java 9 Feb 2003 23:33:22 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/filter/PriorityFilter.java Index: PriorityFilter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/filter/PriorityFilter.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- PriorityFilter.java 3 Feb 2003 17:40:12 -0000 1.9 +++ PriorityFilter.java 9 Feb 2003 23:33:22 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.11 +2 -2 avalon-logkit/src/java/org/apache/log/format/ExtendedPatternFormatter.java Index: ExtendedPatternFormatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/format/ExtendedPatternFormatter.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ExtendedPatternFormatter.java 7 Feb 2003 15:25:59 -0000 1.10 +++ ExtendedPatternFormatter.java 9 Feb 2003 23:33:22 -0000 1.11 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/java/org/apache/log/format/Formatter.java Index: Formatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/format/Formatter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Formatter.java 3 Feb 2003 17:40:12 -0000 1.3 +++ Formatter.java 9 Feb 2003 23:33:22 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.38 +2 -2 avalon-logkit/src/java/org/apache/log/format/PatternFormatter.java Index: PatternFormatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/format/PatternFormatter.java,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- PatternFormatter.java 7 Feb 2003 15:25:59 -0000 1.37 +++ PatternFormatter.java 9 Feb 2003 23:33:22 -0000 1.38 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.9 +1 -1 avalon-logkit/src/java/org/apache/log/format/RawFormatter.java Index: RawFormatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/format/RawFormatter.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- RawFormatter.java 3 Feb 2003 17:40:13 -0000 1.8 +++ RawFormatter.java 9 Feb 2003 23:33:22 -0000 1.9 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/format/SyslogFormatter.java Index: SyslogFormatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/format/SyslogFormatter.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- SyslogFormatter.java 3 Feb 2003 17:40:13 -0000 1.9 +++ SyslogFormatter.java 9 Feb 2003 23:33:22 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/java/org/apache/log/format/XMLFormatter.java Index: XMLFormatter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/format/XMLFormatter.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- XMLFormatter.java 3 Feb 2003 17:40:13 -0000 1.7 +++ XMLFormatter.java 9 Feb 2003 23:33:22 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.16 +1 -1 avalon-logkit/src/java/org/apache/log/output/AbstractOutputTarget.java Index: AbstractOutputTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/AbstractOutputTarget.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- AbstractOutputTarget.java 7 Feb 2003 15:25:59 -0000 1.15 +++ AbstractOutputTarget.java 9 Feb 2003 23:33:23 -0000 1.16 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.11 +1 -1 avalon-logkit/src/java/org/apache/log/output/AbstractTarget.java Index: AbstractTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/AbstractTarget.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- AbstractTarget.java 7 Feb 2003 15:25:59 -0000 1.10 +++ AbstractTarget.java 9 Feb 2003 23:33:23 -0000 1.11 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.13 +1 -1 avalon-logkit/src/java/org/apache/log/output/AsyncLogTarget.java Index: AsyncLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/AsyncLogTarget.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- AsyncLogTarget.java 7 Feb 2003 15:25:59 -0000 1.12 +++ AsyncLogTarget.java 9 Feb 2003 23:33:23 -0000 1.13 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.11 +1 -1 avalon-logkit/src/java/org/apache/log/output/MemoryTarget.java Index: MemoryTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/MemoryTarget.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- MemoryTarget.java 7 Feb 2003 15:25:59 -0000 1.10 +++ MemoryTarget.java 9 Feb 2003 23:33:23 -0000 1.11 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/output/NullOutputLogTarget.java Index: NullOutputLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/NullOutputLogTarget.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- NullOutputLogTarget.java 7 Feb 2003 15:25:59 -0000 1.9 +++ NullOutputLogTarget.java 9 Feb 2003 23:33:23 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.11 +1 -1 avalon-logkit/src/java/org/apache/log/output/ServletOutputLogTarget.java Index: ServletOutputLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/ServletOutputLogTarget.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ServletOutputLogTarget.java 3 Feb 2003 17:40:13 -0000 1.10 +++ ServletOutputLogTarget.java 9 Feb 2003 23:33:23 -0000 1.11 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.9 +1 -1 avalon-logkit/src/java/org/apache/log/output/db/AbstractJDBCTarget.java Index: AbstractJDBCTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/db/AbstractJDBCTarget.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- AbstractJDBCTarget.java 7 Feb 2003 15:26:00 -0000 1.8 +++ AbstractJDBCTarget.java 9 Feb 2003 23:33:23 -0000 1.9 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/java/org/apache/log/output/db/ColumnInfo.java Index: ColumnInfo.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/db/ColumnInfo.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ColumnInfo.java 7 Feb 2003 15:26:00 -0000 1.7 +++ ColumnInfo.java 9 Feb 2003 23:33:23 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/output/db/ColumnType.java Index: ColumnType.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/db/ColumnType.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ColumnType.java 3 Feb 2003 17:40:13 -0000 1.6 +++ ColumnType.java 9 Feb 2003 23:33:23 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/java/org/apache/log/output/db/DefaultDataSource.java Index: DefaultDataSource.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/db/DefaultDataSource.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- DefaultDataSource.java 3 Feb 2003 17:40:13 -0000 1.4 +++ DefaultDataSource.java 9 Feb 2003 23:33:23 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/output/db/DefaultJDBCTarget.java Index: DefaultJDBCTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/db/DefaultJDBCTarget.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- DefaultJDBCTarget.java 7 Feb 2003 15:26:00 -0000 1.9 +++ DefaultJDBCTarget.java 9 Feb 2003 23:33:23 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +1 -1 avalon-logkit/src/java/org/apache/log/output/db/NormalizedJDBCTarget.java Index: NormalizedJDBCTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/db/NormalizedJDBCTarget.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- NormalizedJDBCTarget.java 3 Feb 2003 17:40:14 -0000 1.5 +++ NormalizedJDBCTarget.java 9 Feb 2003 23:33:23 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.17 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/FileTarget.java Index: FileTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/FileTarget.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- FileTarget.java 7 Feb 2003 15:26:01 -0000 1.16 +++ FileTarget.java 9 Feb 2003 23:33:23 -0000 1.17 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/SafeFileTarget.java Index: SafeFileTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/SafeFileTarget.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- SafeFileTarget.java 3 Feb 2003 17:40:14 -0000 1.6 +++ SafeFileTarget.java 9 Feb 2003 23:33:23 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/StreamTarget.java Index: StreamTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/StreamTarget.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- StreamTarget.java 3 Feb 2003 17:40:14 -0000 1.7 +++ StreamTarget.java 9 Feb 2003 23:33:23 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/WriterTarget.java Index: WriterTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/WriterTarget.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- WriterTarget.java 3 Feb 2003 17:40:14 -0000 1.6 +++ WriterTarget.java 9 Feb 2003 23:33:23 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/BaseFileNameFilter.java Index: BaseFileNameFilter.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/BaseFileNameFilter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- BaseFileNameFilter.java 3 Feb 2003 17:40:14 -0000 1.3 +++ BaseFileNameFilter.java 9 Feb 2003 23:33:24 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/FileStrategy.java Index: FileStrategy.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/FileStrategy.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- FileStrategy.java 3 Feb 2003 17:40:14 -0000 1.4 +++ FileStrategy.java 9 Feb 2003 23:33:24 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/OrRotateStrategy.java Index: OrRotateStrategy.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/OrRotateStrategy.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- OrRotateStrategy.java 5 Feb 2003 19:36:01 -0000 1.7 +++ OrRotateStrategy.java 9 Feb 2003 23:33:24 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.15 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/RevolvingFileStrategy.java Index: RevolvingFileStrategy.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/RevolvingFileStrategy.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- RevolvingFileStrategy.java 7 Feb 2003 15:26:01 -0000 1.14 +++ RevolvingFileStrategy.java 9 Feb 2003 23:33:24 -0000 1.15 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategy.java Index: RotateStrategy.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- RotateStrategy.java 6 Feb 2003 12:15:37 -0000 1.5 +++ RotateStrategy.java 9 Feb 2003 23:33:24 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +2 -2 avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategyByDate.java Index: RotateStrategyByDate.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategyByDate.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- RotateStrategyByDate.java 7 Feb 2003 15:26:01 -0000 1.9 +++ RotateStrategyByDate.java 9 Feb 2003 23:33:24 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.12 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategyBySize.java Index: RotateStrategyBySize.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategyBySize.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- RotateStrategyBySize.java 6 Feb 2003 12:13:50 -0000 1.11 +++ RotateStrategyBySize.java 9 Feb 2003 23:33:24 -0000 1.12 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategyByTime.java Index: RotateStrategyByTime.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/RotateStrategyByTime.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- RotateStrategyByTime.java 5 Feb 2003 09:56:53 -0000 1.9 +++ RotateStrategyByTime.java 9 Feb 2003 23:33:24 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.17 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/RotatingFileTarget.java Index: RotatingFileTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/RotatingFileTarget.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- RotatingFileTarget.java 8 Feb 2003 12:06:29 -0000 1.16 +++ RotatingFileTarget.java 9 Feb 2003 23:33:24 -0000 1.17 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/output/io/rotate/UniqueFileStrategy.java Index: UniqueFileStrategy.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/io/rotate/UniqueFileStrategy.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- UniqueFileStrategy.java 5 Feb 2003 09:56:53 -0000 1.6 +++ UniqueFileStrategy.java 9 Feb 2003 23:33:24 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/AbstractJMSTarget.java Index: AbstractJMSTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/AbstractJMSTarget.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- AbstractJMSTarget.java 3 Feb 2003 17:40:15 -0000 1.7 +++ AbstractJMSTarget.java 9 Feb 2003 23:33:24 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/JMSQueueTarget.java Index: JMSQueueTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/JMSQueueTarget.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- JMSQueueTarget.java 3 Feb 2003 17:40:15 -0000 1.5 +++ JMSQueueTarget.java 9 Feb 2003 23:33:24 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/JMSTopicTarget.java Index: JMSTopicTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/JMSTopicTarget.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- JMSTopicTarget.java 3 Feb 2003 17:40:15 -0000 1.7 +++ JMSTopicTarget.java 9 Feb 2003 23:33:24 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.10 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/MessageBuilder.java Index: MessageBuilder.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/MessageBuilder.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- MessageBuilder.java 7 Feb 2003 15:26:01 -0000 1.9 +++ MessageBuilder.java 9 Feb 2003 23:33:24 -0000 1.10 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/ObjectMessageBuilder.java Index: ObjectMessageBuilder.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/ObjectMessageBuilder.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ObjectMessageBuilder.java 7 Feb 2003 15:26:01 -0000 1.6 +++ ObjectMessageBuilder.java 9 Feb 2003 23:33:24 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/PropertyInfo.java Index: PropertyInfo.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/PropertyInfo.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- PropertyInfo.java 7 Feb 2003 15:26:01 -0000 1.6 +++ PropertyInfo.java 9 Feb 2003 23:33:24 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/PropertyType.java Index: PropertyType.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/PropertyType.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- PropertyType.java 3 Feb 2003 17:40:15 -0000 1.4 +++ PropertyType.java 9 Feb 2003 23:33:24 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.12 +1 -1 avalon-logkit/src/java/org/apache/log/output/jms/TextMessageBuilder.java Index: TextMessageBuilder.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/jms/TextMessageBuilder.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- TextMessageBuilder.java 7 Feb 2003 15:26:01 -0000 1.11 +++ TextMessageBuilder.java 9 Feb 2003 23:33:24 -0000 1.12 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +2 -2 avalon-logkit/src/java/org/apache/log/output/lf5/LF5LogTarget.java Index: LF5LogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/lf5/LF5LogTarget.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- LF5LogTarget.java 5 Feb 2003 09:56:26 -0000 1.4 +++ LF5LogTarget.java 9 Feb 2003 23:33:24 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +2 -2 avalon-logkit/src/java/org/apache/log/output/lf5/LogKitLogRecord.java Index: LogKitLogRecord.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/lf5/LogKitLogRecord.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- LogKitLogRecord.java 4 Feb 2003 13:50:33 -0000 1.3 +++ LogKitLogRecord.java 9 Feb 2003 23:33:24 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.9 +1 -1 avalon-logkit/src/java/org/apache/log/output/net/DatagramOutputTarget.java Index: DatagramOutputTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/net/DatagramOutputTarget.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- DatagramOutputTarget.java 7 Feb 2003 15:26:01 -0000 1.8 +++ DatagramOutputTarget.java 9 Feb 2003 23:33:25 -0000 1.9 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +2 -2 avalon-logkit/src/java/org/apache/log/output/net/SMTPOutputLogTarget.java Index: SMTPOutputLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/net/SMTPOutputLogTarget.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- SMTPOutputLogTarget.java 7 Feb 2003 15:26:01 -0000 1.5 +++ SMTPOutputLogTarget.java 9 Feb 2003 23:33:25 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/java/org/apache/log/output/net/SocketOutputTarget.java Index: SocketOutputTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/output/net/SocketOutputTarget.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- SocketOutputTarget.java 3 Feb 2003 17:40:16 -0000 1.4 +++ SocketOutputTarget.java 9 Feb 2003 23:33:25 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/java/org/apache/log/util/DefaultErrorHandler.java Index: DefaultErrorHandler.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/util/DefaultErrorHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- DefaultErrorHandler.java 3 Feb 2003 17:40:16 -0000 1.4 +++ DefaultErrorHandler.java 9 Feb 2003 23:33:25 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/java/org/apache/log/util/LoggerListener.java Index: LoggerListener.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/util/LoggerListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- LoggerListener.java 7 Feb 2003 15:26:01 -0000 1.3 +++ LoggerListener.java 9 Feb 2003 23:33:25 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/java/org/apache/log/util/LoggerOutputStream.java Index: LoggerOutputStream.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/util/LoggerOutputStream.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- LoggerOutputStream.java 7 Feb 2003 15:26:01 -0000 1.6 +++ LoggerOutputStream.java 9 Feb 2003 23:33:25 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.9 +1 -1 avalon-logkit/src/java/org/apache/log/util/OutputStreamLogger.java Index: OutputStreamLogger.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/util/OutputStreamLogger.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- OutputStreamLogger.java 3 Feb 2003 17:40:16 -0000 1.8 +++ OutputStreamLogger.java 9 Feb 2003 23:33:25 -0000 1.9 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.13 +2 -2 avalon-logkit/src/java/org/apache/log/util/StackIntrospector.java Index: StackIntrospector.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/java/org/apache/log/util/StackIntrospector.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- StackIntrospector.java 7 Feb 2003 15:26:01 -0000 1.12 +++ StackIntrospector.java 9 Feb 2003 23:33:25 -0000 1.13 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +1 -1 avalon-logkit/src/test/org/apache/log/format/test/FormatterTestCase.java Index: FormatterTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/format/test/FormatterTestCase.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- FormatterTestCase.java 3 Feb 2003 17:40:17 -0000 1.6 +++ FormatterTestCase.java 9 Feb 2003 23:33:25 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/test/org/apache/log/output/test/DBTargetTestCase.java Index: DBTargetTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/output/test/DBTargetTestCase.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- DBTargetTestCase.java 3 Feb 2003 17:40:17 -0000 1.4 +++ DBTargetTestCase.java 9 Feb 2003 23:33:25 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.9 +1 -1 avalon-logkit/src/test/org/apache/log/output/test/DatagramTest.java Index: DatagramTest.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/output/test/DatagramTest.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- DatagramTest.java 3 Feb 2003 17:40:17 -0000 1.8 +++ DatagramTest.java 9 Feb 2003 23:33:25 -0000 1.9 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/test/org/apache/log/output/test/OutputTargetTestCase.java Index: OutputTargetTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/output/test/OutputTargetTestCase.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- OutputTargetTestCase.java 3 Feb 2003 17:40:17 -0000 1.4 +++ OutputTargetTestCase.java 9 Feb 2003 23:33:25 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +1 -1 avalon-logkit/src/test/org/apache/log/output/test/RevolvingFileStrategyTestCase.java Index: RevolvingFileStrategyTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/output/test/RevolvingFileStrategyTestCase.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- RevolvingFileStrategyTestCase.java 3 Feb 2003 17:40:17 -0000 1.3 +++ RevolvingFileStrategyTestCase.java 9 Feb 2003 23:33:25 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +1 -1 avalon-logkit/src/test/org/apache/log/output/test/TestRotatingFileOutputLogTarget.java Index: TestRotatingFileOutputLogTarget.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/output/test/TestRotatingFileOutputLogTarget.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- TestRotatingFileOutputLogTarget.java 3 Feb 2003 17:40:17 -0000 1.5 +++ TestRotatingFileOutputLogTarget.java 9 Feb 2003 23:33:25 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/test/org/apache/log/test/InheritanceTestCase.java Index: InheritanceTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/test/InheritanceTestCase.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- InheritanceTestCase.java 4 Feb 2003 13:50:33 -0000 1.7 +++ InheritanceTestCase.java 9 Feb 2003 23:33:26 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +1 -1 avalon-logkit/src/test/org/apache/log/test/LoggerListenerTestCase.java Index: LoggerListenerTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/test/LoggerListenerTestCase.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- LoggerListenerTestCase.java 6 Feb 2003 22:19:35 -0000 1.4 +++ LoggerListenerTestCase.java 9 Feb 2003 23:33:26 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 avalon-logkit/src/test/org/apache/log/test/RecordingLoggerListener.java Index: RecordingLoggerListener.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/test/RecordingLoggerListener.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RecordingLoggerListener.java 6 Feb 2003 21:15:49 -0000 1.2 +++ RecordingLoggerListener.java 9 Feb 2003 23:33:26 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +1 -1 avalon-logkit/src/test/org/apache/log/util/test/UtilTestCase.java Index: UtilTestCase.java =================================================================== RCS file: /home/cvs/avalon-logkit/src/test/org/apache/log/util/test/UtilTestCase.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- UtilTestCase.java 4 Feb 2003 13:50:33 -0000 1.7 +++ UtilTestCase.java 9 Feb 2003 23:33:26 -0000 1.8 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 1997-2002 The Apache Software Foundation. All rights + * Copyright (c) 1997-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +2 -1 avalon-logkit/src/xdocs/stylesheets/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/avalon-logkit/src/xdocs/stylesheets/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 7 Feb 2003 20:10:18 -0000 1.3 +++ project.xml 9 Feb 2003 23:33:26 -0000 1.4 @@ -10,7 +10,8 @@ <item name="Download" href="http://jakarta.apache.org/builds/avalon/release/logkit/latest"/> <item name="Whitepaper" href="/whitepaper.html"/> <item name="Changes" href="/changes.html"/> - <item name="API Docs" href="http://avalon.apache.org/logkit/api/index.html"/> + <!--<item name="API Docs" href="http://avalon.apache.org/logkit/api/index.html"/>--> + <item name="API Docs" href="/api/index.html"/> </menu> </body> </project>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]