You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by si...@apache.org on 2012/01/13 14:26:52 UTC

svn commit: r1231056 - in /incubator/any23/trunk/plugins/html-scraper/src: main/java/org/deri/any23/plugin/htmlscraper/ test/java/org/deri/any23/plugin/htmlscraper/

Author: simonetripodi
Date: Fri Jan 13 13:26:52 2012
New Revision: 1231056

URL: http://svn.apache.org/viewvc?rev=1231056&view=rev
Log:
updated License header

Modified:
    incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractor.java
    incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPlugin.java
    incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/package-info.java
    incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractorTest.java
    incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPluginTest.java

Modified: incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractor.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractor.java?rev=1231056&r1=1231055&r2=1231056&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractor.java (original)
+++ incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractor.java Fri Jan 13 13:26:52 2012
@@ -1,11 +1,12 @@
 /*
- * Copyright 2008-2010 Digital Enterprise Research Institute (DERI)
+ * 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
  *
- * 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
+ *  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,

Modified: incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPlugin.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPlugin.java?rev=1231056&r1=1231055&r2=1231056&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPlugin.java (original)
+++ incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPlugin.java Fri Jan 13 13:26:52 2012
@@ -1,11 +1,12 @@
 /*
- * Copyright 2008-2010 Digital Enterprise Research Institute (DERI)
+ * 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
  *
- * 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
+ *  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,

Modified: incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/package-info.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/package-info.java?rev=1231056&r1=1231055&r2=1231056&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/package-info.java (original)
+++ incubator/any23/trunk/plugins/html-scraper/src/main/java/org/deri/any23/plugin/htmlscraper/package-info.java Fri Jan 13 13:26:52 2012
@@ -1,6 +1,23 @@
+/*
+ * 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.
+ */
+
 /**
  * This module contains the <i>Any23 HTMLScraper</i> plugin.
  * Such plugin provides the {@link HTMLScraperExtractor}, an
  * extractor able to return significant text from any <i>HTML</i> page.
  */
-package org.deri.any23.plugin.htmlscraper;
\ No newline at end of file
+package org.deri.any23.plugin.htmlscraper;

Modified: incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractorTest.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractorTest.java?rev=1231056&r1=1231055&r2=1231056&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractorTest.java (original)
+++ incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperExtractorTest.java Fri Jan 13 13:26:52 2012
@@ -1,11 +1,12 @@
 /*
- * Copyright 2008-2010 Digital Enterprise Research Institute (DERI)
+ * 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
  *
- * 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
+ *  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,

Modified: incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPluginTest.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPluginTest.java?rev=1231056&r1=1231055&r2=1231056&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPluginTest.java (original)
+++ incubator/any23/trunk/plugins/html-scraper/src/test/java/org/deri/any23/plugin/htmlscraper/HTMLScraperPluginTest.java Fri Jan 13 13:26:52 2012
@@ -1,11 +1,12 @@
 /*
- * Copyright 2008-2010 Digital Enterprise Research Institute (DERI)
+ * 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
  *
- * 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
+ *  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,