Revision: 4017
          http://vexi.svn.sourceforge.net/vexi/?rev=4017&view=rev
Author:   clrg
Date:     2011-02-04 00:39:36 +0000 (Fri, 04 Feb 2011)

Log Message:
-----------
Minor doc fixes

Modified Paths:
--------------
    trunk/org.vexi-core.main/src/main/jpp/org/vexi/core/Vexi.jpp

Modified: trunk/org.vexi-core.main/src/main/jpp/org/vexi/core/Vexi.jpp
===================================================================
--- trunk/org.vexi-core.main/src/main/jpp/org/vexi/core/Vexi.jpp        
2011-02-04 00:12:10 UTC (rev 4016)
+++ trunk/org.vexi-core.main/src/main/jpp/org/vexi/core/Vexi.jpp        
2011-02-04 00:39:36 UTC (rev 4017)
@@ -164,10 +164,10 @@
  * 
  * <p>To store a JS object as a biscuit:</p>
  * 
- * <pre> var biscuit = vexi.biscuits["biscuit_name"];
- * var write_object = { foo:"bar" };
- * var write_string = vexi.js.stringify(write_object);
- * vexi.stream.utf8writer(biscuit).write(write_string);</pre>
+ * <pre>var biscuit = vexi.biscuits["biscuit_name"];
+ *var write_object = { foo:"bar" };
+ *var write_string = vexi.js.stringify(write_object);
+ *vexi.stream.utf8writer(biscuit).write(write_string);</pre>
  * 
  * <p>To read a biscuit back into a JS object:</p>
  * 
@@ -220,10 +220,10 @@
  * 
  * <p>To create a thread simply put a function to the <code>vexi.thread</code> 
property.</p>
  * 
- * <pre> vexi.thread = function() {  
- *     // code here runs in a background thread
- *     thisbox.name = vexi.net.rpc.xml(server_url).getName();
- * }</pre>
+ * <pre>vexi.thread = function() {  
+ *    // code here runs in a background thread
+ *    thisbox.name = vexi.net.rpc.xml(server_url).getName();
+ *}</pre>
  * 
  * <p>All threads created in this manner are <i>background</i> threads, which 
means they may
  * perform blocking operations such as rpc calls, or call sleep() or yield(). 
This is in contrast
@@ -299,7 +299,7 @@
         * <p>The root namespace is accessible using the [""] property.  That 
is, a template
         * located at dir/subdir/tmpl.t would be accessible as:</p>
         * 
-        * <pre> vexi..dir.subdir.tmpl</pre>
+        * <pre>vexi..dir.subdir.tmpl</pre>
         * */
         
         case "js": return org.vexi.js.VexiJS.js;
@@ -463,31 +463,31 @@
          * @type(String) */
         case "ui.fontsize.xxsmall": return 
JSU.N(BoxRenderProperties.MEDIUM_SIZE+BoxRenderProperties.XXSMALL_OFFSET);
         
-        /* Extra extra small offset from the current default fontsize, used 
when a box's fontsize
+        /* Extra small offset from the current default fontsize, used when a 
box's fontsize
          * is set to <code>"xsmall"</code>
          * @initial_value(-4)
          * @type(String) */
         case "ui.fontsize.xsmall": return 
JSU.N(BoxRenderProperties.MEDIUM_SIZE+BoxRenderProperties.XSMALL_OFFSET);
         
-        /* Extra extra small offset from the current default fontsize, used 
when a box's fontsize
+        /* Small offset from the current default fontsize, used when a box's 
fontsize
          * is set to <code>"small"</code>
          * @initial_value(-2)
          * @type(String) */
         case "ui.fontsize.small": return 
JSU.N(BoxRenderProperties.MEDIUM_SIZE+BoxRenderProperties.SMALL_OFFSET);
         
-        /* Extra extra small offset from the current default fontsize, used 
when a box's fontsize
+        /* Large offset from the current default fontsize, used when a box's 
fontsize
          * is set to <code>"large"</code>
          * @initial_value(4)
          * @type(String) */
         case "ui.fontsize.large": return 
JSU.N(BoxRenderProperties.MEDIUM_SIZE+BoxRenderProperties.LARGE_OFFSET);
         
-        /* Extra extra small offset from the current default fontsize, used 
when a box's fontsize
+        /* Extra large offset from the current default fontsize, used when a 
box's fontsize
          * is set to <code>"xlarge"</code>
          * @initial_value(8)
          * @type(String) */
         case "ui.fontsize.xlarge": return 
JSU.N(BoxRenderProperties.MEDIUM_SIZE+BoxRenderProperties.XLARGE_OFFSET);
         
-        /* Extra extra small offset from the current default fontsize, used 
when a box's fontsize
+        /* Extra extra large offset from the current default fontsize, used 
when a box's fontsize
          * is set to <code>"xxlarge"</code>
          * @initial_value(14)
          * @type(String) */


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to