Revision: 260
http://nekohtml.svn.sourceforge.net/nekohtml/?rev=260&view=rev
Author: mguillem
Date: 2009-09-02 08:26:01 +0000 (Wed, 02 Sep 2009)
Log Message:
-----------
update copyright information, add myself
Modified Paths:
--------------
trunk/build.xml
trunk/doc/changes.html
trunk/doc/faq.html
trunk/doc/filters.html
trunk/doc/index.html
trunk/doc/settings.html
trunk/doc/software.html
trunk/doc/usage.html
trunk/src/org/cyberneko/html/HTMLAugmentations.java
trunk/src/org/cyberneko/html/HTMLComponent.java
trunk/src/org/cyberneko/html/HTMLConfiguration.java
trunk/src/org/cyberneko/html/HTMLElements.java
trunk/src/org/cyberneko/html/HTMLEntities.java
trunk/src/org/cyberneko/html/HTMLErrorReporter.java
trunk/src/org/cyberneko/html/HTMLEventInfo.java
trunk/src/org/cyberneko/html/HTMLScanner.java
trunk/src/org/cyberneko/html/HTMLTagBalancer.java
trunk/src/org/cyberneko/html/HTMLTagBalancingListener.java
trunk/src/org/cyberneko/html/filters/DefaultFilter.java
trunk/src/org/cyberneko/html/filters/ElementRemover.java
trunk/src/org/cyberneko/html/filters/Identity.java
trunk/src/org/cyberneko/html/filters/Writer.java
trunk/src/org/cyberneko/html/parsers/DOMFragmentParser.java
trunk/src/org/cyberneko/html/parsers/DOMParser.java
trunk/src/org/cyberneko/html/parsers/SAXParser.java
trunk/src/org/cyberneko/html/xercesbridge/XercesBridge.java
trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_0.java
trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_1.java
trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_2.java
trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_3.java
trunk/src/sample/HTMLSAXParser.java
trunk/src/sample/RemoveElements.java
trunk/src/sample/Script.java
trunk/src/sample/TestHTMLDOM.java
trunk/src/sample/TestHTMLDOMFragment.java
trunk/test/java/org/cyberneko/html/CanonicalTest.java
trunk/test/java/org/cyberneko/html/Writer.java
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/build.xml 2009-09-02 08:26:01 UTC (rev 260)
@@ -10,7 +10,7 @@
<property name='Title' value='NekoHTML'/>
<property name='FullTitle' value='CyberNeko HTML Parser'/>
<property name='Name' value='${Title} ${version}'/>
- <property name='author' value='Andy Clark'/>
+ <property name='author' value='Andy Clark, Marc Guillemot'/>
<property name='copyright' value='(C) Copyright 2002-2008, ${author}. All rights reserved.'/>
<property name='URL' value='http://nekohtml.sourceforge.net/index.html'/>
Modified: trunk/doc/changes.html
===================================================================
--- trunk/doc/changes.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/changes.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -553,5 +553,5 @@
</dl>
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
\ No newline at end of file
Modified: trunk/doc/faq.html
===================================================================
--- trunk/doc/faq.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/faq.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -361,5 +361,5 @@
</pre>
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
Modified: trunk/doc/filters.html
===================================================================
--- trunk/doc/filters.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/filters.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -371,5 +371,5 @@
</pre>
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
\ No newline at end of file
Modified: trunk/doc/index.html
===================================================================
--- trunk/doc/index.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/index.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -114,5 +114,5 @@
a bug</a>.
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
Modified: trunk/doc/settings.html
===================================================================
--- trunk/doc/settings.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/settings.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -452,5 +452,5 @@
</table>
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
Modified: trunk/doc/software.html
===================================================================
--- trunk/doc/software.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/software.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -206,5 +206,5 @@
mailing list</a>.
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
\ No newline at end of file
Modified: trunk/doc/usage.html
===================================================================
--- trunk/doc/usage.html 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/doc/usage.html 2009-09-02 08:26:01 UTC (rev 260)
@@ -210,5 +210,5 @@
This source code is included in the <code>src/sample/</code> directory.
<div class='copyright'>
-(C) Copyright 2002-2008, Andy Clark. All rights reserved.
+(C) Copyright 2002-2009, Andy Clark, Marc Guillemot. All rights reserved.
</div>
\ No newline at end of file
Modified: trunk/src/org/cyberneko/html/HTMLAugmentations.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLAugmentations.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLAugmentations.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2004-2008 Andy Clark
+ * Copyright 2004-2008 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLComponent.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLComponent.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLComponent.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2004-2008 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLConfiguration.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLConfiguration.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLConfiguration.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLElements.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLElements.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLElements.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLEntities.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLEntities.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLEntities.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLErrorReporter.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLErrorReporter.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLErrorReporter.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLEventInfo.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLEventInfo.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLEventInfo.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLScanner.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLScanner.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLScanner.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLTagBalancer.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLTagBalancer.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLTagBalancer.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/HTMLTagBalancingListener.java
===================================================================
--- trunk/src/org/cyberneko/html/HTMLTagBalancingListener.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/HTMLTagBalancingListener.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/filters/DefaultFilter.java
===================================================================
--- trunk/src/org/cyberneko/html/filters/DefaultFilter.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/filters/DefaultFilter.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/filters/ElementRemover.java
===================================================================
--- trunk/src/org/cyberneko/html/filters/ElementRemover.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/filters/ElementRemover.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/filters/Identity.java
===================================================================
--- trunk/src/org/cyberneko/html/filters/Identity.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/filters/Identity.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/filters/Writer.java
===================================================================
--- trunk/src/org/cyberneko/html/filters/Writer.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/filters/Writer.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/parsers/DOMFragmentParser.java
===================================================================
--- trunk/src/org/cyberneko/html/parsers/DOMFragmentParser.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/parsers/DOMFragmentParser.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/parsers/DOMParser.java
===================================================================
--- trunk/src/org/cyberneko/html/parsers/DOMParser.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/parsers/DOMParser.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/parsers/SAXParser.java
===================================================================
--- trunk/src/org/cyberneko/html/parsers/SAXParser.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/parsers/SAXParser.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/org/cyberneko/html/xercesbridge/XercesBridge.java
===================================================================
--- trunk/src/org/cyberneko/html/xercesbridge/XercesBridge.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/xercesbridge/XercesBridge.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,3 +1,18 @@
+/*
+ * Copyright Marc Guillemot
+ *
+ * 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.
+ */
package org.cyberneko.html.xercesbridge;
import org.apache.xerces.xni.Augmentations;
Modified: trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_0.java
===================================================================
--- trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_0.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_0.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,3 +1,18 @@
+/*
+ * Copyright Marc Guillemot
+ *
+ * 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.
+ */
package org.cyberneko.html.xercesbridge;
import java.lang.reflect.InvocationTargetException;
Modified: trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_1.java
===================================================================
--- trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_1.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_1.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,3 +1,18 @@
+/*
+ * Copyright Marc Guillemot
+ *
+ * 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.
+ */
package org.cyberneko.html.xercesbridge;
import org.apache.xerces.impl.Version;
Modified: trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_2.java
===================================================================
--- trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_2.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_2.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,3 +1,18 @@
+/*
+ * Copyright Marc Guillemot
+ *
+ * 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.
+ */
package org.cyberneko.html.xercesbridge;
import org.apache.xerces.impl.Version;
Modified: trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_3.java
===================================================================
--- trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_3.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/org/cyberneko/html/xercesbridge/XercesBridge_2_3.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,3 +1,18 @@
+/*
+ * Copyright Marc Guillemot
+ *
+ * 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.
+ */
package org.cyberneko.html.xercesbridge;
import org.apache.xerces.xni.NamespaceContext;
Modified: trunk/src/sample/HTMLSAXParser.java
===================================================================
--- trunk/src/sample/HTMLSAXParser.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/sample/HTMLSAXParser.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/sample/RemoveElements.java
===================================================================
--- trunk/src/sample/RemoveElements.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/sample/RemoveElements.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/sample/Script.java
===================================================================
--- trunk/src/sample/Script.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/sample/Script.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/sample/TestHTMLDOM.java
===================================================================
--- trunk/src/sample/TestHTMLDOM.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/sample/TestHTMLDOM.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/src/sample/TestHTMLDOMFragment.java
===================================================================
--- trunk/src/sample/TestHTMLDOMFragment.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/src/sample/TestHTMLDOMFragment.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/test/java/org/cyberneko/html/CanonicalTest.java
===================================================================
--- trunk/test/java/org/cyberneko/html/CanonicalTest.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/test/java/org/cyberneko/html/CanonicalTest.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: trunk/test/java/org/cyberneko/html/Writer.java
===================================================================
--- trunk/test/java/org/cyberneko/html/Writer.java 2009-09-02 08:18:30 UTC (rev 259)
+++ trunk/test/java/org/cyberneko/html/Writer.java 2009-09-02 08:26:01 UTC (rev 260)
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2008 Andy Clark
+ * Copyright 2002-2009 Andy Clark, Marc Guillemot
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|