summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2003-08-17 00:25:56 +0000
committerMark Wielaard <mark@klomp.org>2003-08-17 00:25:56 +0000
commitb17e5ca4d019d8e17ac60c90e1f2ce8dbebf4481 (patch)
treeec7d83e699fa0341c19efa1c487477dcf2a74797
parentdbc4445043f4ba6e4465e29468e9511bf1dfd342 (diff)
downloadclasspath-b17e5ca4d019d8e17ac60c90e1f2ce8dbebf4481.tar.gz
* java/security/Security.java: Don't use &nbsp; in the api
documentation. * java/security/acl/Acl.java: Fix broken p tag. * java/text/DateFormatSymbols.java: Correctly open and close li tags. * javax/swing/border/LineBorder.java: Close img tag alt attributes. * javax/swing/plaf/TreeUI.java: Likewise. * javax/swing/plaf/basic/BasicTreeUI.java: Likewise.
-rw-r--r--ChangeLog10
-rw-r--r--java/security/Security.java2
-rw-r--r--java/security/acl/Acl.java2
-rw-r--r--java/text/DateFormatSymbols.java74
-rw-r--r--javax/swing/border/LineBorder.java2
-rw-r--r--javax/swing/plaf/TreeUI.java2
-rw-r--r--javax/swing/plaf/basic/BasicTreeUI.java2
7 files changed, 52 insertions, 42 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b9da3050..8f8b8b6bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2003-08-16 Mark Wielaard <mark@klomp.org>
+ * java/security/Security.java: Don't use &nbsp; in the api
+ documentation.
+ * java/security/acl/Acl.java: Fix broken p tag.
+ * java/text/DateFormatSymbols.java: Correctly open and close li tags.
+ * javax/swing/border/LineBorder.java: Close img tag alt attributes.
+ * javax/swing/plaf/TreeUI.java: Likewise.
+ * javax/swing/plaf/basic/BasicTreeUI.java: Likewise.
+
+2003-08-16 Mark Wielaard <mark@klomp.org>
+
* java/util/Properties.java: Use the word umlaut, not &auml; in api
documentation.
* java/util/PropertyResourceBundle.java: Likewise and add closing code
diff --git a/java/security/Security.java b/java/security/Security.java
index fe3909ee6..e28e5fd75 100644
--- a/java/security/Security.java
+++ b/java/security/Security.java
@@ -494,7 +494,7 @@ public final class Security extends Object
* provider that supplied a CertificateFactory implementation for X.509
* certificates.</p></li>
*
- * <li><p>&lt;crypto_service>.&lt;algorithm_or_type>&nbsp;&lt;attribute_name>:&lt;attribute_value></p>
+ * <li><p>&lt;crypto_service>.&lt;algorithm_or_type>&lt;attribute_name>:&lt;attribute_value></p>
* <p>The cryptographic service name must not contain any dots. There must
* be one or more space charaters between the the &lt;algorithm_or_type>
* and the &lt;attribute_name>.</p>
diff --git a/java/security/acl/Acl.java b/java/security/acl/Acl.java
index 4e776f50c..07d07ecd4 100644
--- a/java/security/acl/Acl.java
+++ b/java/security/acl/Acl.java
@@ -52,7 +52,7 @@ import java.util.Enumeration;
* <code>Principal</code> belongs have an ACL entry, the permissions for
* the individual <code>Principal</code> take precedence over the
* permissions of the <code>Group</code> if there is a conflict.
- * <p
+ * <p>
* Additionally, the ACL interface extends the <code>Owner</code> interface
* and so an ACL has owners. Actions which modify the ACL are restricted
* to owners.
diff --git a/java/text/DateFormatSymbols.java b/java/text/DateFormatSymbols.java
index fcc001968..e6cf9ea3c 100644
--- a/java/text/DateFormatSymbols.java
+++ b/java/text/DateFormatSymbols.java
@@ -1,5 +1,5 @@
/* ChoiceFormat.java -- Format over a range of numbers
- Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -156,24 +156,24 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
* locale):
* <p>
* <ul>
- * <li>0 - era (G)
- * <li>1 - year (y)
- * <li>2 - month (M)
- * <li 3 - day of month (d)
- * <li>4 - hour out of 12, from 1-12 (h)
- * <li>5 - hour out of 24, from 0-23 (H)
- * <li>6 - minute (m)
- * <li>7 - second (s)
- * <li>8 - millisecond (S)
- * <li>9 - date of week (E)
- * <li>10 - date of year (D)
- * <li>11 - day of week in month, eg. "4th Thur in Nov" (F)
- * <li>12 - week in year (w)
- * <li>13 - week in month (W)
- * <li>14 - am/pm (a)
- * <li>15 - hour out of 24, from 1-24 (k)
- * <li>16 - hour out of 12, from 0-11 (K)
- * <li>17 - time zone (z)
+ * <li>0 - era (G)</li>
+ * <li>1 - year (y)</li>
+ * <li>2 - month (M)</li>
+ * <li>3 - day of month (d)</li>
+ * <li>4 - hour out of 12, from 1-12 (h)</li>
+ * <li>5 - hour out of 24, from 0-23 (H)</li>
+ * <li>6 - minute (m)</li>
+ * <li>7 - second (s)</li>
+ * <li>8 - millisecond (S)</li>
+ * <li>9 - date of week (E)</li>
+ * <li>10 - date of year (D)</li>
+ * <li>11 - day of week in month, eg. "4th Thur in Nov" (F)</li>
+ * <li>12 - week in year (w)</li>
+ * <li>13 - week in month (W)</li>
+ * <li>14 - am/pm (a)</li>
+ * <li>15 - hour out of 24, from 1-24 (k)</li>
+ * <li>16 - hour out of 12, from 0-11 (K)</li>
+ * <li>17 - time zone (z)</li>
* </ul>
*
* @return The format patter characters
@@ -295,24 +295,24 @@ public class DateFormatSymbols implements java.io.Serializable, Cloneable
* locale):
* <p>
* <ul>
- * <li>0 - era (G)
- * <li>1 - year (y)
- * <li>2 - month (M)
- * <li 3 - day of month (d)
- * <li>4 - hour out of 12, from 1-12 (h)
- * <li>5 - hour out of 24, from 0-23 (H)
- * <li>6 - minute (m)
- * <li>7 - second (s)
- * <li>8 - millisecond (S)
- * <li>9 - date of week (E)
- * <li>10 - date of year (D)
- * <li>11 - day of week in month, eg. "4th Thur in Nov" (F)
- * <li>12 - week in year (w)
- * <li>13 - week in month (W)
- * <li>14 - am/pm (a)
- * <li>15 - hour out of 24, from 1-24 (k)
- * <li>16 - hour out of 12, from 0-11 (K)
- * <li>17 - time zone (z)
+ * <li>0 - era (G)</li>
+ * <li>1 - year (y)</li>
+ * <li>2 - month (M)</li>
+ * <li>3 - day of month (d)</li>
+ * <li>4 - hour out of 12, from 1-12 (h)</li>
+ * <li>5 - hour out of 24, from 0-23 (H)</li>
+ * <li>6 - minute (m)</li>
+ * <li>7 - second (s)</li>
+ * <li>8 - millisecond (S)</li>
+ * <li>9 - date of week (E)</li>
+ * <li>10 - date of year (D)</li>
+ * <li>11 - day of week in month, eg. "4th Thur in Nov" (F)</li>
+ * <li>12 - week in year (w)</li>
+ * <li>13 - week in month (W)</li>
+ * <li>14 - am/pm (a)</li>
+ * <li>15 - hour out of 24, from 1-24 (k)</li>
+ * <li>16 - hour out of 12, from 0-11 (K)</li>
+ * <li>17 - time zone (z)</li>
* </ul>
*
* @param localPatternChars The new format patter characters
diff --git a/javax/swing/border/LineBorder.java b/javax/swing/border/LineBorder.java
index bf42309a2..2b8c8bae9 100644
--- a/javax/swing/border/LineBorder.java
+++ b/javax/swing/border/LineBorder.java
@@ -129,7 +129,7 @@ public class LineBorder
* it has rounded corners.
*
* <p><img src="doc-files/LineBorder-1.png" width="500" height="200"
- * alt="[An illustration of two LineBorders] />
+ * alt="[An illustration of two LineBorders]" />
*
* <p>Note that the enlarged view in the right-hand picture shows
* that the implementation draws one more pixel than specified,
diff --git a/javax/swing/plaf/TreeUI.java b/javax/swing/plaf/TreeUI.java
index 7c441343b..55327e2a0 100644
--- a/javax/swing/plaf/TreeUI.java
+++ b/javax/swing/plaf/TreeUI.java
@@ -126,7 +126,7 @@ public abstract class TreeUI
* Finds the path that is closest to the specified position.
*
* <p><img src="doc-files/TreeUI-1.png" width="300" height="250"
- * alt="[A screen shot of a JTree] />
+ * alt="[A screen shot of a JTree]" />
*
* <p>As shown by the above illustration, the bounds of the
* closest path do not necessarily need to contain the passed
diff --git a/javax/swing/plaf/basic/BasicTreeUI.java b/javax/swing/plaf/basic/BasicTreeUI.java
index 0c20cb7c7..dac2f0160 100644
--- a/javax/swing/plaf/basic/BasicTreeUI.java
+++ b/javax/swing/plaf/basic/BasicTreeUI.java
@@ -133,7 +133,7 @@ public class BasicTreeUI
* Finds the path that is closest to the specified position.
*
* <p><img src="../doc-files/TreeUI-1.png" width="300" height="250"
- * alt="[A screen shot of a JTree] />
+ * alt="[A screen shot of a JTree]" />
*
* <p>As shown by the above illustration, the bounds of the
* closest path do not necessarily need to contain the passed