You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/03/21 12:08:24 UTC

svn commit: r756916 - in /incubator/click/trunk/click/framework/src/org/apache/click: element/CssStyle.java element/JsScript.java util/PageImports.java

Author: sabob
Date: Sat Mar 21 11:08:24 2009
New Revision: 756916

URL: http://svn.apache.org/viewvc?rev=756916&view=rev
Log:
javadoc

Modified:
    incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java
    incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java
    incubator/click/trunk/click/framework/src/org/apache/click/util/PageImports.java

Modified: incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java?rev=756916&r1=756915&r2=756916&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java Sat Mar 21 11:08:24 2009
@@ -49,8 +49,7 @@
  * <pre class="prettyprint">
  * &lt;style type="text/css" rel="stylesheet"&gt;
  * body { font: 12px arial; }
- * &lt;/style&gt;
- * </pre>
+ * &lt;/style&gt; </pre>
  *
  * Below is an example showing how to render inline CSS from a Velocity
  * template.
@@ -103,8 +102,7 @@
  * .blue {
  *     background: #00ff00 url('/myApp/css/blue.png') no-repeat fixed center;
  * }
- * &lt;/style&gt;
- * </pre>
+ * &lt;/style&gt; </pre>
  *
  * <h3>Character data (CDATA) support</h3>
  *

Modified: incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java?rev=756916&r1=756915&r2=756916&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java Sat Mar 21 11:08:24 2009
@@ -49,8 +49,7 @@
  * <pre class="prettyprint">
  * &lt;script type="text/javascript"&gt;
  * alert('Hello World');
- * &lt;/script&gt;
- * </pre>
+ * &lt;/script&gt; </pre>
  *
  * Below is an example showing how to render inline Javascript from a
  * Velocity template.
@@ -63,8 +62,7 @@
  * hide = function() {
  *     var div = document.getElementById('$divId');
  *     div.style.display = "none";
- * }
- * </pre>
+ * } </pre>
  *
  * Next is the Page implementation:
  *
@@ -107,8 +105,7 @@
  *         var div = document.getElementById('myDiv');
  *         div.style.display = "none";
  *     }
- * &lt;/style&gt;
- * </pre>
+ * &lt;/style&gt; </pre>
  *
  * <h3>Character data (CDATA) support</h3>
  *

Modified: incubator/click/trunk/click/framework/src/org/apache/click/util/PageImports.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/util/PageImports.java?rev=756916&r1=756915&r2=756916&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/util/PageImports.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/util/PageImports.java Sat Mar 21 11:08:24 2009
@@ -58,7 +58,7 @@
  * To use the HEAD elements simply reference them in your page template. For
  * example:
  *
- * <pre class="htmlCode">
+ * <pre class="codeHtml">
  * &lt;html&gt;
  *  &lt;head&gt;
  *   <span class="blue">$headElements</span>
@@ -75,7 +75,7 @@
  * situations you can simply place the JavaScript elements variable in the Page
  * HEAD section:
  *
- * <pre class="htmlCode">
+ * <pre class="codeHtml">
  * &lt;html&gt;
  *  &lt;head&gt;
  *   <span class="blue">$headElements</span>
@@ -86,7 +86,8 @@
  *  &lt;body&gt;
  * &lt;/html&gt; </pre>
  *
- * <b>Please note: </b>the above variables are new in Click 2.1.0. For backwards
+ * <b>Please note: </b>the variables <span class="blue">$headElements</span> and
+ * <span class="blue">$jsElements</span> are new in Click 2.1.0. For backwards
  * compatibility the HEAD elements are also available through the following
  * variables:
  *