]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed references to XHTML and issue found in review #8294
authorJohn Ahlroos <john@vaadin.com>
Fri, 7 Sep 2012 08:22:30 +0000 (11:22 +0300)
committerJohn Ahlroos <john@vaadin.com>
Fri, 7 Sep 2012 08:22:33 +0000 (11:22 +0300)
server/src/com/vaadin/server/AbstractErrorMessage.java
server/src/com/vaadin/server/BootstrapHandler.java
server/src/com/vaadin/ui/AbstractComponent.java
server/src/com/vaadin/ui/Component.java
server/src/com/vaadin/ui/CustomLayout.java
server/src/com/vaadin/ui/Label.java
server/src/com/vaadin/ui/Panel.java

index 98cdcd4f8c153b1c9a21fc8cb65cabdd130552aa..38fd9830b6dda971c3f9755f7cd50c1e29b69bf4 100644 (file)
@@ -45,7 +45,7 @@ public abstract class AbstractErrorMessage implements ErrorMessage {
         PREFORMATTED,
 
         /**
-         * Content mode, where the error contains XHTML.
+         * Content mode, where the error contains HTML.
          * 
          */
         HTML,
index 8b4da44f9b938937cb040dea8c9f27b3d0dd1f20..11a6484f9bab7ea8b1eb850cb25b53868cad2e78 100644 (file)
@@ -211,7 +211,6 @@ public abstract class BootstrapHandler implements RequestHandler {
                 document.baseUri());
 
         document.child(0).before(doctype);
-        document.body().parent().attr("xmlns", "http://www.w3.org/1999/xhtml");
 
         Element head = document.head();
         head.appendElement("meta").attr("http-equiv", "Content-Type")
index f92024d3b335aeaba0ad6f514e9fed2d895f8907..04cf91460349b2876f1fba7ec2cc913c721e78ec 100644 (file)
@@ -474,9 +474,9 @@ public abstract class AbstractComponent extends AbstractClientConnector
      * information on what the description is. This method will trigger a
      * {@link RepaintRequestEvent}.
      * 
-     * The description is displayed as HTML/XHTML in tooltips or directly in
-     * certain components so care should be taken to avoid creating the
-     * possibility for HTML injection and possibly XSS vulnerabilities.
+     * The description is displayed as HTML in tooltips or directly in certain
+     * components so care should be taken to avoid creating the possibility for
+     * HTML injection and possibly XSS vulnerabilities.
      * 
      * @param description
      *            the new description string for the component.
index 492e0c25c67f7897ace16378b5e4d79e480ce113..320a9dc97c35798d4acfe288c113ee8451f01532 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  * Copyright 2011 Vaadin Ltd.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
@@ -405,8 +405,8 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
      * </pre>
      * 
      * <p>
-     * The contents of a caption are automatically quoted, so no raw XHTML can
-     * be rendered in a caption. The validity of the used character encoding,
+     * The contents of a caption are automatically quoted, so no raw HTML can be
+     * rendered in a caption. The validity of the used character encoding,
      * usually UTF-8, is not checked.
      * </p>
      * 
index 828a1b91ad00ca0b61f2d61e85a3bcef5550eb91..a01ff7804473bae138341d8560cb97391f4f0f11 100644 (file)
@@ -44,7 +44,7 @@ import com.vaadin.shared.ui.customlayout.CustomLayoutState;
  * locations in a way that is suitable for them. One typical example would be to
  * create visual design for a web site as a custom layout: the visual design
  * would define locations for "menu", "body", and "title", for example. The
- * layout would then be implemented as an XHTML template for each theme.
+ * layout would then be implemented as an HTML template for each theme.
  * </p>
  * 
  * <p>
index b58de68af230afe2ec9b11925d9a14f8cf137a45..8b5cd8764855cee607c16f05b97387e8922ea031 100644 (file)
@@ -68,7 +68,7 @@ public class Label extends AbstractComponent implements Property<String>,
     public static final ContentMode CONTENT_PREFORMATTED = ContentMode.PREFORMATTED;
 
     /**
-     * @deprecated From 7.0, use {@link ContentMode#XHTML} instead
+     * @deprecated From 7.0, use {@link ContentMode#HTML} instead
      */
     @Deprecated
     public static final ContentMode CONTENT_XHTML = ContentMode.HTML;
@@ -432,9 +432,9 @@ public class Label extends AbstractComponent implements Property<String>,
      * 
      * <p>
      * In RAW, PREFORMATTED and TEXT modes, the label contents are compared as
-     * is. In XML, UIDL and XHTML modes, only CDATA is compared and tags
-     * ignored. If the other object is not a Label, its toString() return value
-     * is used in comparison.
+     * is. In XML, UIDL and HTML modes, only CDATA is compared and tags ignored.
+     * If the other object is not a Label, its toString() return value is used
+     * in comparison.
      * </p>
      * 
      * @param other
index c70c72f3411d775fa47a55b63f6f49320c294709..70598f5c14b486ca6f50d122f37ab189b01db615 100644 (file)
@@ -90,7 +90,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
      * Creates a new empty panel with caption. Default layout is used.
      * 
      * @param caption
-     *            the caption used in the panel (HTML/XHTML).
+     *            the caption used in the panel (HTML).
      */
     public Panel(String caption) {
         this(caption, null);
@@ -100,7 +100,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
      * Creates a new empty panel with the given caption and content.
      * 
      * @param caption
-     *            the caption of the panel (HTML/XHTML).
+     *            the caption of the panel (HTML).
      * @param content
      *            the content used in the panel.
      */
@@ -112,7 +112,7 @@ public class Panel extends AbstractComponentContainer implements Scrollable,
     /**
      * Sets the caption of the panel.
      * 
-     * Note that the caption is interpreted as HTML/XHTML and therefore care
+     * Note that the caption is interpreted as HTML and therefore care
      * should be taken not to enable HTML injection and XSS attacks using panel
      * captions. This behavior may change in future versions.
      *