You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/09/02 19:00:04 UTC

svn commit: r267232 - /beehive/trunk/docs/forrest/template.xml

Author: ekoneil
Date: Fri Sep  2 10:00:01 2005
New Revision: 267232

URL: http://svn.apache.org/viewcvs?rev=267232&view=rev
Log:
Update template.xml to include JSP and Java code snippet examples and to reflect spacing discussion on the wiki.

BB: self
DRT: .xml file builds with Forrest


Modified:
    beehive/trunk/docs/forrest/template.xml

Modified: beehive/trunk/docs/forrest/template.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/docs/forrest/template.xml?rev=267232&r1=267231&r2=267232&view=diff
==============================================================================
--- beehive/trunk/docs/forrest/template.xml (original)
+++ beehive/trunk/docs/forrest/template.xml Fri Sep  2 10:00:01 2005
@@ -15,14 +15,41 @@
     <body>
         <section id="overview">
             <title>Overview</title>
-            <p>TODO: overview</p>
+            <p>
+            TODO: overview
+            </p>
         </section>
         <section id="your-content">
             <title>Content</title>
-            <p>TODO: content</p>
+            <p>
+            TODO: content
+            </p>
             <section id="nested-content">
                 <title>Nested Content</title>
-                <p>TODO: nested content</p>
+                <p>
+                TODO: nested content
+                </p>
+            </section>
+            <section id="jsp">
+                <title>Nested Content</title>
+                <source><![CDATA[
+
+<netui:span value="${pageScope.foo}"/>
+                ]]></source>
+            </section>
+            <section id="java">
+                <title>Nested Content</title>
+                <source>
+public class Foo 
+    extends Bar {
+
+    private String baz;
+
+    public String doBlee() {
+        return baz;
+    }
+}
+                </source>
             </section>
         </section>
     </body>