Author: vgritsenko
Date: Wed Mar 14 07:31:26 2007
New Revision: 518156

URL: http://svn.apache.org/viewvc?view=rev&rev=518156
Log:
update license header. add header to RETest.txt

Modified:
    jakarta/regexp/trunk/build.xml
    jakarta/regexp/trunk/docs/RETest.txt
    
jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterArrayCharacterIterator.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterIterator.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/RE.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/RECompiler.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/REDebugCompiler.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/REDemo.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/REProgram.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/RESyntaxException.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/RETest.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/REUtil.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/ReaderCharacterIterator.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/StreamCharacterIterator.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/StringCharacterIterator.java
    jakarta/regexp/trunk/src/java/org/apache/regexp/recompile.java
    jakarta/regexp/trunk/xdocs/RETest.txt
    jakarta/regexp/trunk/xdocs/applet.xml
    jakarta/regexp/trunk/xdocs/changes.xml
    jakarta/regexp/trunk/xdocs/index.xml
    jakarta/regexp/trunk/xdocs/stylesheets/site.xml

Modified: jakarta/regexp/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/build.xml?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/build.xml (original)
+++ jakarta/regexp/trunk/build.xml Wed Mar 14 07:31:26 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0"?>
 
 <!--
-  - Copyright 2002-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
+  - Licensed to the Apache Software Foundation (ASF) under one or more
+  - contributor license agreements.  See the NOTICE file distributed with
+  - this work for additional information regarding copyright ownership.
+  - The ASF licenses this file to You 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
   -

Modified: jakarta/regexp/trunk/docs/RETest.txt
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/docs/RETest.txt?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/docs/RETest.txt (original)
+++ jakarta/regexp/trunk/docs/RETest.txt Wed Mar 14 07:31:26 2007
@@ -1,3 +1,18 @@
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You 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.
+
 #1
 abc
 abc

Modified: 
jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterArrayCharacterIterator.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterArrayCharacterIterator.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- 
jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterArrayCharacterIterator.java
 (original)
+++ 
jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterArrayCharacterIterator.java
 Wed Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterIterator.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterIterator.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterIterator.java 
(original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/CharacterIterator.java Wed 
Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/RE.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/RE.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/RE.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/RE.java Wed Mar 14 07:31:26 
2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/RECompiler.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/RECompiler.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/RECompiler.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/RECompiler.java Wed Mar 14 
07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/REDebugCompiler.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/REDebugCompiler.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/REDebugCompiler.java 
(original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/REDebugCompiler.java Wed 
Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/REDemo.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/REDemo.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/REDemo.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/REDemo.java Wed Mar 14 
07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/REProgram.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/REProgram.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/REProgram.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/REProgram.java Wed Mar 14 
07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-2006 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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/RESyntaxException.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/RESyntaxException.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/RESyntaxException.java 
(original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/RESyntaxException.java Wed 
Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/RETest.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/RETest.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/RETest.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/RETest.java Wed Mar 14 
07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *
@@ -616,6 +617,10 @@
                 break;
             }
             number = number.trim();
+            if (number.startsWith("##"))
+            {
+                continue;
+            }
             if (number.startsWith("#"))
             {
                 break;

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/REUtil.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/REUtil.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/REUtil.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/REUtil.java Wed Mar 14 
07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: 
jakarta/regexp/trunk/src/java/org/apache/regexp/ReaderCharacterIterator.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/ReaderCharacterIterator.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- 
jakarta/regexp/trunk/src/java/org/apache/regexp/ReaderCharacterIterator.java 
(original)
+++ 
jakarta/regexp/trunk/src/java/org/apache/regexp/ReaderCharacterIterator.java 
Wed Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: 
jakarta/regexp/trunk/src/java/org/apache/regexp/StreamCharacterIterator.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/StreamCharacterIterator.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- 
jakarta/regexp/trunk/src/java/org/apache/regexp/StreamCharacterIterator.java 
(original)
+++ 
jakarta/regexp/trunk/src/java/org/apache/regexp/StreamCharacterIterator.java 
Wed Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: 
jakarta/regexp/trunk/src/java/org/apache/regexp/StringCharacterIterator.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/StringCharacterIterator.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- 
jakarta/regexp/trunk/src/java/org/apache/regexp/StringCharacterIterator.java 
(original)
+++ 
jakarta/regexp/trunk/src/java/org/apache/regexp/StringCharacterIterator.java 
Wed Mar 14 07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/src/java/org/apache/regexp/recompile.java
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/src/java/org/apache/regexp/recompile.java?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/src/java/org/apache/regexp/recompile.java (original)
+++ jakarta/regexp/trunk/src/java/org/apache/regexp/recompile.java Wed Mar 14 
07:31:26 2007
@@ -1,9 +1,10 @@
 /*
- * Copyright 1999-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
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
  *

Modified: jakarta/regexp/trunk/xdocs/RETest.txt
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/xdocs/RETest.txt?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/xdocs/RETest.txt (original)
+++ jakarta/regexp/trunk/xdocs/RETest.txt Wed Mar 14 07:31:26 2007
@@ -1,3 +1,18 @@
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements.  See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You 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.
+
 #1
 abc
 abc

Modified: jakarta/regexp/trunk/xdocs/applet.xml
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/xdocs/applet.xml?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/xdocs/applet.xml (original)
+++ jakarta/regexp/trunk/xdocs/applet.xml Wed Mar 14 07:31:26 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0"?>
 
 <!--
-  - Copyright 1999-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
+  - Licensed to the Apache Software Foundation (ASF) under one or more
+  - contributor license agreements.  See the NOTICE file distributed with
+  - this work for additional information regarding copyright ownership.
+  - The ASF licenses this file to You 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
   -

Modified: jakarta/regexp/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/xdocs/changes.xml?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/xdocs/changes.xml (original)
+++ jakarta/regexp/trunk/xdocs/changes.xml Wed Mar 14 07:31:26 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0"?>
 
 <!--
-  - Copyright 1999-2006 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
+  - Licensed to the Apache Software Foundation (ASF) under one or more
+  - contributor license agreements.  See the NOTICE file distributed with
+  - this work for additional information regarding copyright ownership.
+  - The ASF licenses this file to You 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
   -

Modified: jakarta/regexp/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/xdocs/index.xml?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/xdocs/index.xml (original)
+++ jakarta/regexp/trunk/xdocs/index.xml Wed Mar 14 07:31:26 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0"?>
 
 <!--
-  - Copyright 1999-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
+  - Licensed to the Apache Software Foundation (ASF) under one or more
+  - contributor license agreements.  See the NOTICE file distributed with
+  - this work for additional information regarding copyright ownership.
+  - The ASF licenses this file to You 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
   -

Modified: jakarta/regexp/trunk/xdocs/stylesheets/site.xml
URL: 
http://svn.apache.org/viewvc/jakarta/regexp/trunk/xdocs/stylesheets/site.xml?view=diff&rev=518156&r1=518155&r2=518156
==============================================================================
--- jakarta/regexp/trunk/xdocs/stylesheets/site.xml (original)
+++ jakarta/regexp/trunk/xdocs/stylesheets/site.xml Wed Mar 14 07:31:26 2007
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
 <!--
-  - Copyright 1999-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
+  - Licensed to the Apache Software Foundation (ASF) under one or more
+  - contributor license agreements.  See the NOTICE file distributed with
+  - this work for additional information regarding copyright ownership.
+  - The ASF licenses this file to You 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
   -



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to