Author: toad Date: 2006-12-13 00:47:28 +0000 (Wed, 13 Dec 2006) New Revision: 11366
Modified: trunk/freenet/src/freenet/support/HTMLDecoder.java trunk/freenet/src/freenet/support/HTMLEncoder.java trunk/freenet/src/freenet/support/URLDecoder.java trunk/freenet/src/freenet/support/URLEncodedFormatException.java trunk/freenet/src/freenet/support/URLEncoder.java Log: Add some more GPL headers. Modified: trunk/freenet/src/freenet/support/HTMLDecoder.java =================================================================== --- trunk/freenet/src/freenet/support/HTMLDecoder.java 2006-12-13 00:05:49 UTC (rev 11365) +++ trunk/freenet/src/freenet/support/HTMLDecoder.java 2006-12-13 00:47:28 UTC (rev 11366) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.support; import java.util.HashMap; Modified: trunk/freenet/src/freenet/support/HTMLEncoder.java =================================================================== --- trunk/freenet/src/freenet/support/HTMLEncoder.java 2006-12-13 00:05:49 UTC (rev 11365) +++ trunk/freenet/src/freenet/support/HTMLEncoder.java 2006-12-13 00:47:28 UTC (rev 11366) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.support; import java.util.HashMap; Modified: trunk/freenet/src/freenet/support/URLDecoder.java =================================================================== --- trunk/freenet/src/freenet/support/URLDecoder.java 2006-12-13 00:05:49 UTC (rev 11365) +++ trunk/freenet/src/freenet/support/URLDecoder.java 2006-12-13 00:47:28 UTC (rev 11366) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.support; import java.io.ByteArrayOutputStream; @@ -4,13 +7,6 @@ import java.io.IOException; import java.io.UnsupportedEncodingException; -/* - This code is part of the Java Adaptive Network Client by Ian Clarke. - It is distributed under the GNU Public Licence (GPL) version 2. See - http://www.gnu.org/ for further details of the GPL. -*/ - - /** * Decode encoded URLs (or parts of URLs). @see URLEncoder. * This class does NOT decode application/x-www-form-urlencoded @@ -22,7 +18,6 @@ * @author <a href="http://www.doc.ic.ac.uk/~twh1/">Theodore Hong</a> * Originally! **/ - public class URLDecoder { // test harness Modified: trunk/freenet/src/freenet/support/URLEncodedFormatException.java =================================================================== --- trunk/freenet/src/freenet/support/URLEncodedFormatException.java 2006-12-13 00:05:49 UTC (rev 11365) +++ trunk/freenet/src/freenet/support/URLEncodedFormatException.java 2006-12-13 00:47:28 UTC (rev 11366) @@ -1,17 +1,12 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.support; -/* - This code is part of the Java Adaptive Network Client by Ian Clarke. - It is distributed under the GNU Public Licence (GPL) version 2. See - http://www.gnu.org/ for further details of the GPL. -*/ - - /** * Thrown when trying to decode a string which is not in * "<code>x-www-form-urlencoded</code>" format. **/ - public class URLEncodedFormatException extends Exception { private static final long serialVersionUID = -1; Modified: trunk/freenet/src/freenet/support/URLEncoder.java =================================================================== --- trunk/freenet/src/freenet/support/URLEncoder.java 2006-12-13 00:05:49 UTC (rev 11365) +++ trunk/freenet/src/freenet/support/URLEncoder.java 2006-12-13 00:47:28 UTC (rev 11366) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.support; import java.io.UnsupportedEncodingException;
