[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: HTMLDocument implemented

Kaffe CVS cvs-commits at kaffe.org
Tue Apr 19 10:43:17 PDT 2005


PatchSet 5719 
Date: 2005/04/19 17:34:35
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath: HTMLDocument implemented

2005-04-19  Dalibor Topic  <robilad at kaffe.org>

        Resynced with GNU Classpath.

        2005-04-12  Audrius Meskauskas, Lithuania  <AudriusA at Bioinformatics.org>

        * javax/swing/text/html/HTMLDocument.java: New file.

Members: 
	ChangeLog:1.3886->1.3887 
	libraries/javalib/Makefile.am:1.339->1.340 
	libraries/javalib/Makefile.in:1.427->1.428 
	libraries/javalib/all.files:1.114->1.115 
	libraries/javalib/javax/swing/text/html/HTMLDocument.java:INITIAL->1.1 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3886 kaffe/ChangeLog:1.3887
--- kaffe/ChangeLog:1.3886	Tue Apr 19 16:59:51 2005
+++ kaffe/ChangeLog	Tue Apr 19 17:34:35 2005
@@ -2,6 +2,14 @@
 
         Resynced with GNU Classpath.
 
+	2005-04-12  Audrius Meskauskas, Lithuania  <AudriusA at Bioinformatics.org>
+
+        * javax/swing/text/html/HTMLDocument.java: New file.
+
+2005-04-19  Dalibor Topic  <robilad at kaffe.org>
+
+        Resynced with GNU Classpath.
+
 	2005-04-12  Michael Koch  <konqueror at gmx.de>
 
         * javax/swing/text/html/HTMLFrameHyperlinkEvent.java:
Index: kaffe/libraries/javalib/Makefile.am
diff -u kaffe/libraries/javalib/Makefile.am:1.339 kaffe/libraries/javalib/Makefile.am:1.340
--- kaffe/libraries/javalib/Makefile.am:1.339	Tue Apr 19 16:15:24 2005
+++ kaffe/libraries/javalib/Makefile.am	Tue Apr 19 17:34:40 2005
@@ -4076,6 +4076,7 @@
 	javax/swing/text/ViewFactory.java
 javax_swing_text_html_SRCS = \
 	javax/swing/text/html/HTML.java \
+	javax/swing/text/html/HTMLDocument.java \
 	javax/swing/text/html/HTMLEditorKit.java \
 	javax/swing/text/html/HTMLFrameHyperlinkEvent.java
 javax_swing_text_html_parser_SRCS = \
Index: kaffe/libraries/javalib/Makefile.in
diff -u kaffe/libraries/javalib/Makefile.in:1.427 kaffe/libraries/javalib/Makefile.in:1.428
--- kaffe/libraries/javalib/Makefile.in:1.427	Tue Apr 19 16:15:25 2005
+++ kaffe/libraries/javalib/Makefile.in	Tue Apr 19 17:34:41 2005
@@ -4648,6 +4648,7 @@
 
 javax_swing_text_html_SRCS = \
 	javax/swing/text/html/HTML.java \
+	javax/swing/text/html/HTMLDocument.java \
 	javax/swing/text/html/HTMLEditorKit.java \
 	javax/swing/text/html/HTMLFrameHyperlinkEvent.java
 
Index: kaffe/libraries/javalib/all.files
diff -u kaffe/libraries/javalib/all.files:1.114 kaffe/libraries/javalib/all.files:1.115
--- kaffe/libraries/javalib/all.files:1.114	Tue Apr 19 16:15:26 2005
+++ kaffe/libraries/javalib/all.files	Tue Apr 19 17:34:43 2005
@@ -3515,6 +3515,7 @@
 javax/swing/text/View.java
 javax/swing/text/ViewFactory.java
 javax/swing/text/html/HTML.java
+javax/swing/text/html/HTMLDocument.java
 javax/swing/text/html/HTMLEditorKit.java
 javax/swing/text/html/HTMLFrameHyperlinkEvent.java
 javax/swing/text/html/parser/AttributeList.java
===================================================================
Checking out kaffe/libraries/javalib/javax/swing/text/html/HTMLDocument.java
RCS:  /home/cvs/kaffe/kaffe/libraries/javalib/javax/swing/text/html/HTMLDocument.java,v
VERS: 1.1
***************
--- /dev/null	Sun Aug  4 19:57:58 2002
+++ kaffe/libraries/javalib/javax/swing/text/html/HTMLDocument.java	Tue Apr 19 17:43:17 2005
@@ -0,0 +1,53 @@
+/* HTMLDocument.java --
+   Copyright (C) 2005  Free Software Foundation, Inc.
+
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU Classpath 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
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Classpath; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library.  Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version. */
+
+
+package javax.swing.text.html;
+
+import javax.swing.text.DefaultStyledDocument;
+
+/**
+ * TODO: This class is not yet completetely implemented.
+ *
+ * @author Audrius Meskauskas, Lithuania (AudriusA at Bioinformatics.org)
+ */
+public class HTMLDocument extends DefaultStyledDocument
+{
+  public void processHTMLFrameHyperlinkEvent(HTMLFrameHyperlinkEvent event)
+  {
+  }
+}




More information about the kaffe mailing list