From 7717a3d43d08b3d453d3197eae29510c3b952430 Mon Sep 17 00:00:00 2001 From: luccioman Date: Fri, 14 Oct 2016 11:55:49 +0200 Subject: [PATCH] Fixed license headers on files created to improve favicon management. --- htroot/Load_MediawikiWiki.java | 3 --- htroot/Load_PHPBB3.java | 2 -- htroot/ViewFavicon.java | 5 +---- source/net/yacy/data/InvalidURLLicenceException.java | 3 +-- source/net/yacy/document/parser/html/IconEntry.java | 5 ++--- .../net/yacy/document/parser/html/IconLinkRelations.java | 7 +------ .../http/servlets/TemplateMissingParameterException.java | 7 +------ source/net/yacy/visualization/ImageViewer.java | 3 +-- test/ImageViewerPerfTest.java | 5 +---- test/ImageViewerTest.java | 5 +---- .../yacy/document/parser/html/ContentScraperTest.java | 6 +++--- .../net/yacy/document/parser/html/IconEntryTest.java | 6 +++--- .../net/yacy/kelondro/data/meta/URIMetadataNodeTest.java | 8 ++++---- test/java/yacysearchitemTest.java | 9 ++++----- test/net/yacy/data/URLLicenseConcurrentTest.java | 7 +------ 15 files changed, 24 insertions(+), 57 deletions(-) diff --git a/htroot/Load_MediawikiWiki.java b/htroot/Load_MediawikiWiki.java index a58fc949b..7474bff83 100644 --- a/htroot/Load_MediawikiWiki.java +++ b/htroot/Load_MediawikiWiki.java @@ -24,11 +24,8 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -import java.util.Set; - import net.yacy.cora.protocol.RequestHeader; import net.yacy.search.Switchboard; -import net.yacy.search.SwitchboardConstants; import net.yacy.server.serverObjects; import net.yacy.server.serverSwitch; diff --git a/htroot/Load_PHPBB3.java b/htroot/Load_PHPBB3.java index a5530308c..2674fe19c 100644 --- a/htroot/Load_PHPBB3.java +++ b/htroot/Load_PHPBB3.java @@ -24,8 +24,6 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -import java.util.Set; - import net.yacy.cora.protocol.RequestHeader; import net.yacy.search.Switchboard; import net.yacy.search.SwitchboardConstants; diff --git a/htroot/ViewFavicon.java b/htroot/ViewFavicon.java index 68c45125b..53984c7ea 100644 --- a/htroot/ViewFavicon.java +++ b/htroot/ViewFavicon.java @@ -2,10 +2,7 @@ // ViewFavicon.java // ----------------------- // part of YaCy -// (C) by Michael Peter Christen; mc@yacy.net -// first published on http://www.anomic.de -// Frankfurt, Germany, 2006 -// created 03.04.2006 +// Copyright 2016 by luccioman; https://github.com/luccioman // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/source/net/yacy/data/InvalidURLLicenceException.java b/source/net/yacy/data/InvalidURLLicenceException.java index 9d06abe3f..d097ec9e8 100644 --- a/source/net/yacy/data/InvalidURLLicenceException.java +++ b/source/net/yacy/data/InvalidURLLicenceException.java @@ -1,6 +1,5 @@ // InvalidURLLicenceException.java -// (C) 2007 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany -// first published 03.07.2007 on http://yacy.net +// Copyright 2016 by luccioman; https://github.com/luccioman // // This is a part of YaCy, a peer-to-peer based web search engine // diff --git a/source/net/yacy/document/parser/html/IconEntry.java b/source/net/yacy/document/parser/html/IconEntry.java index 55adce240..a6ad038bc 100644 --- a/source/net/yacy/document/parser/html/IconEntry.java +++ b/source/net/yacy/document/parser/html/IconEntry.java @@ -1,8 +1,7 @@ /** * IconEntry - * Copyright 2011 by Michael Peter Christen - * First released 28.04.2011 at http://yacy.net -* + * Copyright 2016 by luccioman; https://github.com/luccioman + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either diff --git a/source/net/yacy/document/parser/html/IconLinkRelations.java b/source/net/yacy/document/parser/html/IconLinkRelations.java index d939cfa6a..9989f159c 100644 --- a/source/net/yacy/document/parser/html/IconLinkRelations.java +++ b/source/net/yacy/document/parser/html/IconLinkRelations.java @@ -1,11 +1,6 @@ /** * IconLinkRelations - * Copyright 2011 by Michael Peter Christen - * First released 28.04.2011 at http://yacy.net - * - * $LastChangedDate: 2011-03-08 02:51:51 +0100 (Di, 08 Mrz 2011) $ - * $LastChangedRevision: 7567 $ - * $LastChangedBy: low012 $ + * Copyright 2016 by luccioman; https://github.com/luccioman * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/source/net/yacy/http/servlets/TemplateMissingParameterException.java b/source/net/yacy/http/servlets/TemplateMissingParameterException.java index d9405ffd2..26aa6990a 100644 --- a/source/net/yacy/http/servlets/TemplateMissingParameterException.java +++ b/source/net/yacy/http/servlets/TemplateMissingParameterException.java @@ -1,13 +1,8 @@ // TemplateMissingParameterException.java -// (C) 2007 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany -// first published 03.07.2007 on http://yacy.net +// Copyright 2016 by luccioman; https://github.com/luccioman // // This is a part of YaCy, a peer-to-peer based web search engine // -// $LastChangedDate$ -// $LastChangedRevision$ -// $LastChangedBy$ -// // LICENSE // // This program is free software; you can redistribute it and/or modify diff --git a/source/net/yacy/visualization/ImageViewer.java b/source/net/yacy/visualization/ImageViewer.java index 867320277..d04cad4f4 100644 --- a/source/net/yacy/visualization/ImageViewer.java +++ b/source/net/yacy/visualization/ImageViewer.java @@ -1,7 +1,6 @@ /** * ImageViewer - * Copyright 2005 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany - * First released 16.09.2005 at http://yacy.net + * Copyright 2016 by luccioman; https://github.com/luccioman * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/test/ImageViewerPerfTest.java b/test/ImageViewerPerfTest.java index 6f758164c..20e4c4c4f 100755 --- a/test/ImageViewerPerfTest.java +++ b/test/ImageViewerPerfTest.java @@ -1,10 +1,7 @@ // ImageViewerPerfTest.java // ----------------------- // part of YaCy -// (C) by Michael Peter Christen; mc@yacy.net -// first published on http://www.anomic.de -// Frankfurt, Germany, 2006 -// created 03.04.2006 +// Copyright 2016 by luccioman; https://github.com/luccioman // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/test/ImageViewerTest.java b/test/ImageViewerTest.java index 894067f5e..b4cadf3a5 100755 --- a/test/ImageViewerTest.java +++ b/test/ImageViewerTest.java @@ -1,10 +1,7 @@ // ImageViewerTest.java // ----------------------- // part of YaCy -// (C) by Michael Peter Christen; mc@yacy.net -// first published on http://www.anomic.de -// Frankfurt, Germany, 2006 -// created 03.04.2006 +// Copyright 2016 by luccioman; https://github.com/luccioman // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/test/java/net/yacy/document/parser/html/ContentScraperTest.java b/test/java/net/yacy/document/parser/html/ContentScraperTest.java index 8fad1d6d3..139d1919b 100644 --- a/test/java/net/yacy/document/parser/html/ContentScraperTest.java +++ b/test/java/net/yacy/document/parser/html/ContentScraperTest.java @@ -1,8 +1,8 @@ /** * ContentScraperTest - * Copyright 2011 by Michael Peter Christen - * First released 28.04.2011 at http://yacy.net -* + * part of YaCy + * Copyright 2016 by luccioman; https://github.com/luccioman + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either diff --git a/test/java/net/yacy/document/parser/html/IconEntryTest.java b/test/java/net/yacy/document/parser/html/IconEntryTest.java index 313e6d377..ee4317735 100644 --- a/test/java/net/yacy/document/parser/html/IconEntryTest.java +++ b/test/java/net/yacy/document/parser/html/IconEntryTest.java @@ -1,8 +1,8 @@ /** * IconEntryTest - * Copyright 2011 by Michael Peter Christen - * First released 28.04.2011 at http://yacy.net -* + * part of YaCy + * Copyright 2016 by luccioman; https://github.com/luccioman + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either diff --git a/test/java/net/yacy/kelondro/data/meta/URIMetadataNodeTest.java b/test/java/net/yacy/kelondro/data/meta/URIMetadataNodeTest.java index 7eadb6cba..dca64ee1f 100644 --- a/test/java/net/yacy/kelondro/data/meta/URIMetadataNodeTest.java +++ b/test/java/net/yacy/kelondro/data/meta/URIMetadataNodeTest.java @@ -1,8 +1,8 @@ /** * URIMetadataNodeTest - * Copyright 2011 by Michael Peter Christen - * First released 28.04.2011 at http://yacy.net -* + * part of YaCy + * Copyright 2016 by luccioman; https://github.com/luccioman + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -43,7 +43,7 @@ import net.yacy.search.schema.CollectionSchema; public class URIMetadataNodeTest { /** - * Three standard icons with diferrent sizes, one non-standard with a larger + * Three standard icons with different sizes, one non-standard with a larger * size */ @Test diff --git a/test/java/yacysearchitemTest.java b/test/java/yacysearchitemTest.java index c79a94030..6fda4ce48 100644 --- a/test/java/yacysearchitemTest.java +++ b/test/java/yacysearchitemTest.java @@ -1,9 +1,8 @@ /** - * URIMetadataNodeTest - * Copyright 2011 by Michael Peter Christen - * First released 28.04.2011 at http://yacy.net -* + * yacysearchitemTest + * Copyright 2016 by luccioman; https://github.com/luccioman + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -41,7 +40,7 @@ import net.yacy.search.schema.CollectionSchema; public class yacysearchitemTest { /** - * Three standard icons with diferrent sizes, one non-standard with a larger + * Three standard icons with different sizes, one non-standard with a larger * size * * @throws MalformedURLException diff --git a/test/net/yacy/data/URLLicenseConcurrentTest.java b/test/net/yacy/data/URLLicenseConcurrentTest.java index 78fbac0b6..4b5639144 100644 --- a/test/net/yacy/data/URLLicenseConcurrentTest.java +++ b/test/net/yacy/data/URLLicenseConcurrentTest.java @@ -1,13 +1,8 @@ // URLLicense.java -// (C) 2007 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany -// first published 03.07.2007 on http://yacy.net +// Copyright 2016 by luccioman; https://github.com/luccioman // // This is a part of YaCy, a peer-to-peer based web search engine // -// $LastChangedDate$ -// $LastChangedRevision$ -// $LastChangedBy$ -// // LICENSE // // This program is free software; you can redistribute it and/or modify