You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ps...@apache.org on 2004/02/29 17:06:34 UTC

cvs commit: jakarta-commons-sandbox/id/xdocs downloads.xml index.xml navigation.xml

psteitz     2004/02/29 08:06:34

  Modified:    id       build.xml checkstyle.xml project.properties
               id/src/java/org/apache/commons/id
                        AbstractLongIdentifierGenerator.java
                        DefaultIdentifierGeneratorFactory.java
                        IdentifierGenerator.java
                        IdentifierGeneratorFactory.java
                        IdentifierUtils.java LongIdentifierGenerator.java
                        StringIdentifierGenerator.java package.html
               id/src/java/org/apache/commons/id/random
                        SessionIdGenerator.java package.html
               id/src/java/org/apache/commons/id/serial
                        AlphanumericGenerator.java LongGenerator.java
                        NumericGenerator.java package.html
               id/src/java/org/apache/commons/id/uuid UUID.java
                        UUIDFormatException.java UUIDSystemClock.java
                        package.html
               id/src/test/org/apache/commons/id
                        IdentifierGeneratorFactoryTest.java
                        IdentifierUtilsTest.java
               id/xdocs downloads.xml index.xml navigation.xml
  Log:
  Fixed copyright / license references.
  
  Revision  Changes    Path
  1.3       +15 -2     jakarta-commons-sandbox/id/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	13 Feb 2004 05:32:58 -0000	1.2
  +++ build.xml	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,8 +1,21 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
  -<!--build.xml generated by maven from project.xml version 0.1-dev
  -  on date February 7 2004, time 1039-->
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
   
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
  +  
   <project default="jar" name="commons-id" basedir=".">
     <property name="defaulttargetdir" value="target">
     </property>
  
  
  
  1.3       +18 -2     jakarta-commons-sandbox/id/checkstyle.xml
  
  Index: checkstyle.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/checkstyle.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- checkstyle.xml	5 Jan 2004 14:29:35 -0000	1.2
  +++ checkstyle.xml	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,4 +1,20 @@
   <?xml version="1.0"?>
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
  +  
   <!DOCTYPE module PUBLIC
       "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
       "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
  @@ -29,8 +45,8 @@
           <!-- Checks that are different from the sun coding conventions ones -->
           <!-- ************************************************************** -->
           <module name="Header">
  -            <property name="headerFile" value="${basedir}/LICENSE.txt"/>
  -            <property name="ignoreLines" value="2,6,24"/>
  +            <property name="headerFile" value="${basedir}/HEADER.txt"/>
  +            <property name="ignoreLines" value="2"/>
           </module>
           <property name="tabWidth" value="4"/>
           <module name="LeftCurly">
  
  
  
  1.4       +14 -0     jakarta-commons-sandbox/id/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties	19 Jan 2004 04:05:21 -0000	1.3
  +++ project.properties	29 Feb 2004 16:06:33 -0000	1.4
  @@ -1,3 +1,17 @@
  +#   Copyright 2003-2004 The Apache Software Foundation
  +#
  +#   Licensed under the Apache License, Version 2.0 (the "License");
  +#   you may not use this file except in compliance with the License.
  +#   You may obtain a copy of the License at
  +#
  +#       http://www.apache.org/licenses/LICENSE-2.0
  +#
  +#   Unless required by applicable law or agreed to in writing, software
  +#   distributed under the License is distributed on an "AS IS" BASIS,
  +#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +#   See the License for the specific language governing permissions and
  +#   limitations under the License.
  +
   maven.checkstyle.properties = checkstyle.xml
   
   # uncomment the next line to work in offline mode (no jar download & no linkcheck)
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/AbstractLongIdentifierGenerator.java
  
  Index: AbstractLongIdentifierGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/AbstractLongIdentifierGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractLongIdentifierGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ AbstractLongIdentifierGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/DefaultIdentifierGeneratorFactory.java
  
  Index: DefaultIdentifierGeneratorFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/DefaultIdentifierGeneratorFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DefaultIdentifierGeneratorFactory.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ DefaultIdentifierGeneratorFactory.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/IdentifierGenerator.java
  
  Index: IdentifierGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/IdentifierGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IdentifierGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ IdentifierGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/IdentifierGeneratorFactory.java
  
  Index: IdentifierGeneratorFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/IdentifierGeneratorFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IdentifierGeneratorFactory.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ IdentifierGeneratorFactory.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/IdentifierUtils.java
  
  Index: IdentifierUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/IdentifierUtils.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IdentifierUtils.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ IdentifierUtils.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/LongIdentifierGenerator.java
  
  Index: LongIdentifierGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/LongIdentifierGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LongIdentifierGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ LongIdentifierGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/StringIdentifierGenerator.java
  
  Index: StringIdentifierGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/StringIdentifierGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StringIdentifierGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ StringIdentifierGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.2       +15 -0     jakarta-commons-sandbox/id/src/java/org/apache/commons/id/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	5 Jan 2004 08:10:56 -0000	1.1
  +++ package.html	29 Feb 2004 16:06:33 -0000	1.2
  @@ -1,3 +1,18 @@
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <body> 
     <p>
        This package contains factories and implementation classes to generate unique
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/random/SessionIdGenerator.java
  
  Index: SessionIdGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/random/SessionIdGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SessionIdGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ SessionIdGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.2       +15 -0     jakarta-commons-sandbox/id/src/java/org/apache/commons/id/random/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/random/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	5 Jan 2004 08:10:56 -0000	1.1
  +++ package.html	29 Feb 2004 16:06:33 -0000	1.2
  @@ -1,3 +1,18 @@
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <body>
     <p>
       This package contains identifier generators that return sequences of
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/AlphanumericGenerator.java
  
  Index: AlphanumericGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/AlphanumericGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AlphanumericGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ AlphanumericGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/LongGenerator.java
  
  Index: LongGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/LongGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LongGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ LongGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/NumericGenerator.java
  
  Index: NumericGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/NumericGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NumericGenerator.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ NumericGenerator.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.2       +15 -0     jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/serial/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	5 Jan 2004 08:10:57 -0000	1.1
  +++ package.html	29 Feb 2004 16:06:33 -0000	1.2
  @@ -1,3 +1,18 @@
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <body>
     <p>
       This package contains identifier generators that yield sequences of
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/UUID.java
  
  Index: UUID.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/UUID.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UUID.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ UUID.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004,2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/UUIDFormatException.java
  
  Index: UUIDFormatException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/UUIDFormatException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UUIDFormatException.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ UUIDFormatException.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004,2004 The Apache Software Foundation.
  + * Copyright 2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/UUIDSystemClock.java
  
  Index: UUIDSystemClock.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/UUIDSystemClock.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UUIDSystemClock.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ UUIDSystemClock.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2004,2004 The Apache Software Foundation.
  + * Copyright 2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.2       +15 -0     jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	5 Jan 2004 08:10:57 -0000	1.1
  +++ package.html	29 Feb 2004 16:06:33 -0000	1.2
  @@ -1,3 +1,18 @@
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <body>
     <p>
       This package contains contains implementations of the 
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/test/org/apache/commons/id/IdentifierGeneratorFactoryTest.java
  
  Index: IdentifierGeneratorFactoryTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/test/org/apache/commons/id/IdentifierGeneratorFactoryTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IdentifierGeneratorFactoryTest.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ IdentifierGeneratorFactoryTest.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      jakarta-commons-sandbox/id/src/test/org/apache/commons/id/IdentifierUtilsTest.java
  
  Index: IdentifierUtilsTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/src/test/org/apache/commons/id/IdentifierUtilsTest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IdentifierUtilsTest.java	21 Feb 2004 21:44:20 -0000	1.2
  +++ IdentifierUtilsTest.java	29 Feb 2004 16:06:33 -0000	1.3
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 2002-2004 The Apache Software Foundation.
  + * Copyright 2003-2004 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  
  
  
  1.2       +16 -1     jakarta-commons-sandbox/id/xdocs/downloads.xml
  
  Index: downloads.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/xdocs/downloads.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- downloads.xml	5 Jan 2004 08:10:57 -0000	1.1
  +++ downloads.xml	29 Feb 2004 16:06:34 -0000	1.2
  @@ -1,4 +1,19 @@
   <?xml version="1.0"?>
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <document>
      <properties>
         <title>Downloads</title>
  
  
  
  1.3       +15 -1     jakarta-commons-sandbox/id/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/xdocs/index.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.xml	19 Jan 2004 04:06:29 -0000	1.2
  +++ index.xml	29 Feb 2004 16:06:34 -0000	1.3
  @@ -1,5 +1,19 @@
   <?xml version="1.0"?>
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
   
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <document>
   
    <properties>
  
  
  
  1.3       +15 -0     jakarta-commons-sandbox/id/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/id/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml	19 Jan 2004 04:05:21 -0000	1.2
  +++ navigation.xml	29 Feb 2004 16:06:34 -0000	1.3
  @@ -1,4 +1,19 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  +<!--
  +   Copyright 2003-2004 The Apache Software Foundation
  +
  +   Licensed under the Apache License, Version 2.0 (the "License");
  +   you may not use this file except in compliance with the License.
  +   You may obtain a copy of the License at
  +
  +       http://www.apache.org/licenses/LICENSE-2.0
  +
  +   Unless required by applicable law or agreed to in writing, software
  +   distributed under the License is distributed on an "AS IS" BASIS,
  +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +   See the License for the specific language governing permissions and
  +   limitations under the License.
  +  -->
   <!DOCTYPE project [
   <!ENTITY commons-nav SYSTEM "../../../jakarta-commons/incl_nav.xml">
   ]>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org