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:28:20 UTC

svn commit: r1231059 - in /incubator/any23/trunk/plugins/office-scraper/src: main/java/org/deri/any23/plugin/officescraper/ main/java/org/deri/any23/vocab/ test/java/org/deri/any23/plugin/officescraper/

Author: simonetripodi
Date: Fri Jan 13 13:28:19 2012
New Revision: 1231059

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

Modified:
    incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelExtractor.java
    incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelPlugin.java
    incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/package-info.java
    incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/vocab/Excel.java
    incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/ExcelExtractorTest.java
    incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/XSSFWorkbookTest.java

Modified: incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelExtractor.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelExtractor.java?rev=1231059&r1=1231058&r2=1231059&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelExtractor.java (original)
+++ incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelExtractor.java Fri Jan 13 13:28:19 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/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelPlugin.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelPlugin.java?rev=1231059&r1=1231058&r2=1231059&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelPlugin.java (original)
+++ incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/ExcelPlugin.java Fri Jan 13 13:28:19 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/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/package-info.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/package-info.java?rev=1231059&r1=1231058&r2=1231059&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/package-info.java (original)
+++ incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/plugin/officescraper/package-info.java Fri Jan 13 13:28:19 2012
@@ -1,5 +1,22 @@
+/*
+ * 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 package defines a plugin for scraping content
  * from <i>MS Office Documents</i>.
  */
-package org.deri.any23.plugin.officescraper;
\ No newline at end of file
+package org.deri.any23.plugin.officescraper;

Modified: incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/vocab/Excel.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/vocab/Excel.java?rev=1231059&r1=1231058&r2=1231059&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/vocab/Excel.java (original)
+++ incubator/any23/trunk/plugins/office-scraper/src/main/java/org/deri/any23/vocab/Excel.java Fri Jan 13 13:28:19 2012
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 package org.deri.any23.vocab;
 
 import org.openrdf.model.URI;

Modified: incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/ExcelExtractorTest.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/ExcelExtractorTest.java?rev=1231059&r1=1231058&r2=1231059&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/ExcelExtractorTest.java (original)
+++ incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/ExcelExtractorTest.java Fri Jan 13 13:28:19 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/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/XSSFWorkbookTest.java
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/XSSFWorkbookTest.java?rev=1231059&r1=1231058&r2=1231059&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/XSSFWorkbookTest.java (original)
+++ incubator/any23/trunk/plugins/office-scraper/src/test/java/org/deri/any23/plugin/officescraper/XSSFWorkbookTest.java Fri Jan 13 13:28:19 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,