From: <jbo...@li...> - 2005-09-12 19:30:04
|
Author: dam...@jb... Date: 2005-09-12 15:29:56 -0400 (Mon, 12 Sep 2005) New Revision: 1088 Modified: trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/bmsi/util/Diff.java trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/DifferenceEngine.java trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/HTMLTranslator.java Log: Attributing to JSPWiki where necessary. Modified: trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/bmsi/util/Diff.java =================================================================== --- trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/bmsi/util/Diff.java 2005-09-12 18:37:48 UTC (rev 1087) +++ trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/bmsi/util/Diff.java 2005-09-12 19:29:56 UTC (rev 1088) @@ -1,12 +1,3 @@ -/************************************************** - * * - * JBoss Labs: Creating Professional Open Source * - * * - * Distributable under LGPL license. * - * See terms of license at gnu.org. * - * * - *************************************************/ - package bmsi.util; import java.util.Hashtable; Modified: trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/DifferenceEngine.java =================================================================== --- trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/DifferenceEngine.java 2005-09-12 18:37:48 UTC (rev 1087) +++ trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/DifferenceEngine.java 2005-09-12 19:29:56 UTC (rev 1088) @@ -7,6 +7,46 @@ * * *************************************************/ +/* + Copyright (C) 2005 Damon Sicore, + Rali Genova, + Tomasz Szymanski, + Adam Warski, + JBoss, Inc. + + 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 + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +/** +* Portions of this work are based on the work +* of Janne Jalkanen of the JSPWiki project. +* +* Marked Portions are Copyright (C) 2001-2002 Janne Jalkanen (Jan...@ik...) +* +* Those portions are marked by the 'author' javadoc tag +* and list Janne Jalkanen as the author of that method. +* +* This class is based on the JSPWiki 2.0 version +* of the DifferenceEngine.java class. The original +* version of that class can be found here: +* +* http://anonsvn.labs.jboss.com/branches/forge/archives/jspwiki/src/com/ecyrd/jspwiki/DifferenceEngine.java +* +*/ + package org.jboss.wiki.plugins; import java.util.Properties; Modified: trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/HTMLTranslator.java =================================================================== --- trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/HTMLTranslator.java 2005-09-12 18:37:48 UTC (rev 1087) +++ trunk/forge/portal-extensions/jbosswiki/wiki-common/src/java/org/jboss/wiki/plugins/HTMLTranslator.java 2005-09-12 19:29:56 UTC (rev 1088) @@ -7,6 +7,45 @@ * * *************************************************/ +/* + Copyright (C) 2005 Damon Sicore, + Rali Genova, + Tomasz Szymanski, + Adam Warski, + JBoss, Inc. + + 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 + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +/** +* Portions of this work are based on the work +* of Janne Jalkanen of the JSPWiki project. +* +* Marked Portions are Copyright (C) 2001-2002 Janne Jalkanen (Jan...@ik...) +* +* Those portions are marked by the 'author' javadoc tag +* and list Janne Jalkanen as the author of that method. +* +* This class is based on the JSPWiki 2.0 version +* of the TranslatorReader.java class. The original +* version of that class can be found here: +* +* http://anonsvn.labs.jboss.com/branches/forge/archives/jspwiki/src/com/ecyrd/jspwiki/TranslatorReader.java +* +*/ package org.jboss.wiki.plugins; /** @@ -971,4 +1010,4 @@ } -} \ No newline at end of file +} |