You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by cc...@apache.org on 2010/04/28 19:41:30 UTC

svn commit: r939023 [11/12] - /servicemix/sandbox/ccustine/cwikitemplates/

Added: servicemix/sandbox/ccustine/cwikitemplates/WICKET.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/WICKET.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/WICKET.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/WICKET.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,146 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="$stylesheet">
+    <style type="text/css">
+      .footer {
+        background-image:      url('$confluenceUri/images/border/border_bottom.gif');
+        background-repeat:     repeat-x;
+        background-position:   left top;
+        padding-top:           4px;
+        color:                 #666;
+      }
+    </style>
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="/wiki/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+          <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$confluenceUri/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="$confluenceUri/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+        </div>
+      </div>
+      <div class="pagesubheading" style="margin: 0px 10px 0px 10px;">
+        #editReport()
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+    <div class="footer">
+      Generated by
+      $autoexport.confluenceInfo
+      $autoexport.autoexportInfo
+    </div>
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+var pageTracker = _gat._getTracker("UA-2350632-4");
+pageTracker._initData();
+pageTracker._trackPageview();
+</script>
+  </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/WICKETxSITE.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/WICKETxSITE.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/WICKETxSITE.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/WICKETxSITE.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+            "http://www.w3.org/TR/html4/strict.dtd">
+##
+#set ($images = "http://incubator.apache.org/wicket/images")
+#set ($siteroot = "http://cwiki.apache.org/WICKET")
+#set ($pageContentHeaderEnabled = false)
+##
+#if ( $page.title.equals("Index") )
+    #set ($title = "Home")
+#else
+    #set ($title = $page.title)
+#end
+##
+#macro (renderPage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+
+    ##
+    ## FIXME: Must be a more efficent way to find a page...
+    ##
+
+    #foreach ($child in $page.space.pages)
+        #if ($child.title.equals($title))
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+
+            ##
+            ## HACK: Remove the leading <P> and trailing </P>
+            ##
+
+            #set ($content = $content.replaceAll("^<[pP]>|</[pP]>$", "") )
+            ##set ($content = $content.substring(3, $content.length()))
+            ##set ($end = $content.length() - 4)
+            ##set ($content = $content.substring(0, $end))
+
+            $content
+        #end
+    #end
+#end
+#macro (renderRightSidePage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+
+    ##
+    ## FIXME: Must be a more efficient way to find a page...
+    ##
+
+    #foreach ($child in $page.space.pages)
+        #if ($child.title.equals($title))
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+
+            ##
+            ## HACK: Remove the leading <P> and trailing </P>
+            ##
+
+            #set ($content = $content.replaceAll("^<[pP]>|</[pP]>$", "") )
+            ##set ($content = $content.substring(3, $content.length()))
+            ##set ($end = $content.length() - 4)
+            ##set ($content = $content.substring(0, $end))
+        #end
+    #end
+#end
+##
+#macro (pageContent)
+  $body
+#end
+<html>
+<head>
+	<!-- $PAGETITLE -->
+	<title>Apache Wicket - $title</title>
+	<style>@import url(style/wicket.css);</style>
+	<!--[if lt IE 7]>
+	<style>@import url(style/ie.css);</style>
+	<![endif]-->
+	<link rel="shortcut icon" href="http://wicket.apache.org/favicon.ico" type="image/vnd.microsoft.icon">
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript">
+_uacct = "UA-2350632-1";
+urchinTracker();
+</script>
+</head>
+<body>
+<div id="container">
+	<div id="content">
+		<div id="header"><a href="http://wicket.apache.org"><h1 id="logo"><span>Apache Wicket</span></h1></a></div>
+		<div id="navigation">
+	        #renderPage("Navigation")
+		</div>
+		<div id="contentbody">
+			#pageContent()
+		</div>
+		<div id="clearer"></div>
+		<div id="footer"><span>&copy; Apache Software Foundation</span></div>
+    </div>
+</div>
+</body>
+</html>
+

Added: servicemix/sandbox/ccustine/cwikitemplates/WINK.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/WINK.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/WINK.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/WINK.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,137 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="$stylesheet">
+    <style type="text/css">
+      .footer {
+        background-image:      url('$confluenceUri/images/border/border_bottom.gif');
+        background-repeat:     repeat-x;
+        background-position:   left top;
+        padding-top:           4px;
+        color:                 #666;
+      }
+    </style>
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="/wiki/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+          <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$confluenceUri/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="$confluenceUri/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+        </div>
+      </div>
+      <div class="pagesubheading" style="margin: 0px 10px 0px 10px;">
+        #editReport()
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+    <div class="footer">
+      Generated by
+      $autoexport.confluenceInfo
+      $autoexport.autoexportInfo
+    </div>
+  </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/WOOKIE.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/WOOKIE.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/WOOKIE.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/WOOKIE.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,137 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="$stylesheet">
+    <style type="text/css">
+      .footer {
+        background-image:      url('$confluenceUri/images/border/border_bottom.gif');
+        background-repeat:     repeat-x;
+        background-position:   left top;
+        padding-top:           4px;
+        color:                 #666;
+      }
+    </style>
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="/wiki/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+          <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$confluenceUri/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="$confluenceUri/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+        </div>
+      </div>
+      <div class="pagesubheading" style="margin: 0px 10px 0px 10px;">
+        #editReport()
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+    <div class="footer">
+      Generated by
+      $autoexport.confluenceInfo
+      $autoexport.autoexportInfo
+    </div>
+  </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/WS.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/WS.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/WS.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/WS.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,154 @@
+##
+#macro (renderPage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+    #foreach ($child in $page.space.pages)
+        #if ($child.title.equals($title))
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+            $content
+        #end
+    #end
+#end
+##
+#macro (renderMenuPage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+    #foreach ($child in $page.space.pages)
+        #if ($child.title.equals($title))
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+            #set ($content = $content.replaceAll("<LI>([^<]*\\S)(\\s*)<UL", "<li><div onclick='SwitchMenu(this)'><h3>$1</h3>$2<ul"))
+            #set ($content = $content.replaceAll("</UL>(\\s*)</LI>", "</ul>$1</div></li>"))
+            $content
+        #end
+    #end
+#end
+##
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="http://ws.apache.org/~dims/WS/resources/site.css"></link>
+    <script src="http://ws.apache.org/~dims/WS/resources/space.js" type="text/javascript"></script>
+    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+    </script>
+    <script type="text/javascript">
+_uacct = "UA-1954378-3";
+urchinTracker();
+    </script>
+<meta name="keywords" content="business integration, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, business-to-business, b2b, XML, standards support, integration standards, application integration, java message service, middleware, message broker, software, solutions, services, ActiveMQ, ServiceMix, open source, MQ, message queue, message bus"/>
+<meta name="description" content"Apache Web Services" />
+    <title>
+Apache Web Services -- $page.title
+    </title>
+  </head>
+<body onload="init()">
+
+<table width="100%" cellpadding="0" cellspacing="0">
+  <tr width="100%">
+    <td id="cell-0-0" colspan="2">&nbsp;</td>
+    <td id="cell-0-1">&nbsp;</td>
+    <td id="cell-0-2" colspan="2">&nbsp;</td>
+  </tr>
+  <tr width="100%">
+    <td id="cell-1-0">&nbsp;</td>
+    <td id="cell-1-1">&nbsp;</td>
+    <td id="cell-1-2">
+      <div style="padding: 5px;">
+        <div id="banner">
+          <!-- Banner -->
+#renderPage("Banner")
+          <!-- Banner -->
+        </div>
+      </div>
+      <div id="top-menu">
+        <table border="0" cellpadding="1" cellspacing="0" width="100%">
+          <tr>
+            <td>
+              <div align="left">
+                <!-- Breadcrumbs -->
+$autoexport.breadcrumbs($page)
+                <!-- Breadcrumbs -->
+              </div>
+            </td>
+            <td>
+              <div align="right">
+                <!-- Quicklinks -->
+#renderPage("QuickLinks")
+                <!-- Quicklinks -->
+              </div>
+            </td>
+          </tr>
+        </table>
+      </div>
+    </td>
+    <td id="cell-1-3">&nbsp;</td>
+    <td id="cell-1-4">&nbsp;</td>
+  </tr>
+  <tr width="100%">
+    <td id="cell-2-0" colspan="2">&nbsp;</td>
+    <td id="cell-2-1">
+      <table>
+        <tr height="100%" valign="top">
+          <td height="100%">
+            <div id="wrapper-menu-page-right">
+              <div id="wrapper-menu-page-top">
+                <div id="wrapper-menu-page-bottom">
+                  <div id="menu-page">
+                    <!-- NavigationBar -->
+#renderPage("Navigation")
+                <!-- NavigationBar -->
+              </div>
+            </div>
+          </div>
+         </td>
+         <td height="100%" width="100%">
+           <!-- Content -->
+           <div class="wiki-content">$body</div>
+           <!-- Content -->
+         </td>
+        </tr>
+      </table>
+   </td>
+   <td id="cell-2-2" colspan="2">&nbsp;</td>
+  </tr>
+  <tr width="100%">
+   <td id="cell-3-0">&nbsp;</td>
+   <td id="cell-3-1">&nbsp;</td>
+   <td id="cell-3-2">
+     <div id="footer">
+       <!-- Footer -->
+       <div id="site-footer">
+         #editReport() 
+         (<a href="$confluenceUri/pages/editpage.action?pageId=$page.id">edit page</a>)
+       </div>
+       <!-- Footer -->
+     </div>
+   </td>
+   <td id="cell-3-3">&nbsp;</td>
+   <td id="cell-3-4">&nbsp;</td>
+  </tr>
+  <tr width="100%">
+    <td id="cell-4-0" colspan="2">&nbsp;</td>
+    <td id="cell-4-1">&nbsp;</td>
+    <td id="cell-4-2" colspan="2">&nbsp;</td>
+  </tr>
+</table>
+</body>
+</html>
+

Added: servicemix/sandbox/ccustine/cwikitemplates/WW.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/WW.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/WW.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/WW.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,161 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!-- 
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License. 
+-->
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="$stylesheet">
+    <link type="text/css" rel="stylesheet" href="http://cwiki.apache.org/confluence/download/resources/confluence.ext.code:code/shStyles.css">
+    <style type="text/css">
+      .dp-highlighter {
+        width:95% !important;
+      }
+    </style>
+    <style type="text/css">
+      .footer {
+        background-image:      url('$confluenceUri/images/border/border_bottom.gif');
+        background-repeat:     repeat-x;
+        background-position:   left top;
+        padding-top:           4px;
+        color:                 #666;
+      }
+    </style>
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="/wiki/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+          <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$confluenceUri/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="$confluenceUri/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+        </div>
+      </div>
+      <div class="pagesubheading" style="margin: 0px 10px 0px 10px;">
+        #editReport()
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+    <div class="footer">
+      Generated by
+      $autoexport.confluenceInfo
+      $autoexport.autoexportInfo
+    </div>
+  </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/XB.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/XB.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/XB.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/XB.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,247 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+##
+#set ($siteTitle = "Apache Geronimo XBean")
+#set ($quickLinksPage = "Quick Links")
+#set ($sideNavPagePrefix = "SideNav")
+#set ($images = "http://geronimo.apache.org/images")
+#set ($homeUri = "http://geronimo.apache.org/xbean")
+#set ($pageContentHeaderEnabled = false)
+##
+#macro (sideNavSections)
+    #sideNavSection("Overview")
+    #sideNavSection("Features")
+    #sideNavSection("Related Projects")
+    #sideNavSection("Support")
+    #sideNavSection("Community")
+    #sideNavSection("Developers")
+#end
+##
+#macro (spacer $width $height)
+    <img src="$images/spacer.gif" width="$width" height="$height" border="0">
+#end
+##
+#macro (renderPage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+    
+    ##
+    ## FIXME: Must be a more efficient way to find a page...
+    ##
+    
+    #foreach ($child in $page.space.pages)
+        #if ($child.title.equals($title))
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+            
+            ##
+            ## HACK: Remove the leading <P> and trailing </P>
+            ##
+            
+            #set ($content = $content.substring(3, $content.length()))
+            #set ($end = $content.length() - 4)
+            #set ($content = $content.substring(0, $end))
+            
+            $content
+        #end
+    #end
+#end
+##
+#macro (topNav)
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="$images/header_bg_1x86.gif">
+        <tr>
+            <td valing="top" align="left">
+                <a href="$homeUri"><img src="$images/topleft_logo_437x64.gif" border="0"></a>
+            </td>
+            
+            <td width="100%">
+                &nbsp;
+            </td>
+            
+            <td valign="top" align="right">
+                <img src="$images/subnav_angle_15x18.gif" width="15" height="18" alt="" border="0">
+            </td>
+            
+            <td valign="top" align="right" nowrap="true">
+                <div class="quicklinks" style="background-color: #5D9ACD">
+                    #spacer(1 14)
+                    <font color="#003366" face="Verdana, Helvetica, Arial">
+                        #renderPage($quickLinksPage)
+                    </font>
+                    #spacer(4 1)    
+                </div>
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (pageControls)
+    <div align="right" style="padding: 2px 10px; margin: 0px;">
+        <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$images/icons/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+    </div>
+#end
+##
+#macro (tabs)
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="$images/menu_bgstretch_1x22.gif">
+        <tr align="left">
+            <td width="100%" align="right">
+                #pageControls()
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (breadCrumbs)
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+        <tr class="topBar">
+            <td align="left" valign="middle" class="topBarDiv" align="left" nowrap="true">
+                &nbsp;$autoexport.breadcrumbs($page)
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (sideNav)
+    <div class="sideNav">
+        #sideNavSections()
+    </div>
+#end
+##
+#macro (sideNavSection $title)
+    #set ($pagename = "$sideNavPagePrefix $title")
+    
+    <table class="sideNavSection" bgcolor="#5FA3D6" border="0" cellspacing="1" cellpadding="0">
+        <tr>
+            <td>
+                <table border="0" cellspacing="0" cellpadding="4">
+                    <tr>
+                        <td class="sideNavSectionTitle" bgcolor="#5FA3D6" width="175">
+                            <font color="#FFFFFF" style="font-size:12px" face="Verdana, Helvetica, Arial">
+                                <strong>&nbsp; $title</strong>
+                            </font>
+                        </td>
+                    </tr>
+                    
+                    <tr>
+                        <td bgcolor="#F3F4F5" width="200">
+                            <table>
+                                <tr>
+                                    <td>&nbsp;</td>
+                                    <td class="sideNavSectionContent" align="left">#renderPage($pagename)</td>
+                                </tr>
+                            </table>
+                        </td>
+                    </tr>
+                </table>
+            </td>
+        </tr>
+    </table>
+    
+    #spacer(175 2)
+#end
+##
+#macro (pageContent)
+    <div id="PageContent">
+        #if ($pageContentHeaderEnabled)
+            <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+                <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+                <div style="margin: 0px 10px 8px 10px" class="pagetitle">$page.title</div>
+            </div>
+        #end
+        
+        <div class="pagecontent">
+            <div class="wiki-content">
+                $body
+            </div>
+        </div>
+    </div>
+#end
+##
+#macro (footer)
+    <!-- footer -->
+    <table border="0" cellpadding="2" cellspacing="0" width="100%"">
+        <tr>
+          <td align="left" valign="middle" class="footer">
+            &nbsp;&nbsp;
+            <img src="http://static.delicious.com/img/delicious.small.gif" height="10" width="10" alt="Delicious" />
+            <a href="http://delicious.com/save" onclick="window.open('http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title),'delicious','toolbar=no,width=550,height=550'); return false;">Bookmark this on Delicious</a>
+            &nbsp;&nbsp;
+            <img src="http://digg.com/img/badges/16x16-digg-guy.gif" width="16" height="16" alt="Digg!" />
+            <a href="" onclick="window.open('http://digg.com/submit?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)+'&amp;topic=software');">Digg this</a>
+            <!-- Slicker, but no text
+            <script type="text/javascript">
+              digg_skin = 'icon';
+              digg_window = 'new';
+              digg_title = '$siteTitle : $page.title';
+              digg_topic = 'software';
+            </script>
+            <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
+            -->
+            &nbsp;&nbsp;
+          </td>
+          <td align="right" valign="middle" class="footer">
+            <a href="http://cwiki.apache.org/GMOxPMGT/geronimo-privacy-policy.html">Privacy Policy</a>&nbsp;&nbsp;-&nbsp;&nbsp;
+            Copyright &#169; 2003-2009, The Apache Software Foundation, Licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">ASL 2.0.</a>&nbsp;&nbsp;
+          </td>
+        </tr>
+    </table> 
+#end
+##
+<html lang="en">
+    <head>
+        <META http-equiv="Content-Type" content="text/html;charset=UTF-8" />
+        <link type="text/css" rel="stylesheet" href="http://geronimo.apache.org/style/default.css">        
+        <link rel="SHORTCUT ICON" href="http://geronimo.apache.org/images/favicon.ico">
+        <LINK rel="schema.DC" href="http://purl.org/DC/elements/1.0/">
+        <META name="Description" content="$page.title" />
+        <META name="Keywords" content="$siteTitle $page.title" />
+        <META name="Owner" content="dev@geronimo.apache.org" />
+        <META name="Robots" content="index, follow" />
+        <META name="Security" content="Public" />
+        <META name="Source" content="wiki template" />
+        <META name="DC.Date" scheme="iso8601" content="2009-01-06" />
+        <META name="DC.Language" scheme="rfc1766" content="en" />
+        <META name="DC.Rights" content="Copyright © 2003-2009, The Apache Software Foundation" />
+        <META http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))'/>
+##  Google Webmaster Tools verification marker
+        <meta name="verify-v1" content="r4xGTn05820BdqgLI3hTFYd0HKicv58+8I+vjkH/7Uc=" />
+
+        <script src="http://geronimo.apache.org/functions.js" type="text/javascript"></script>        
+        <title>$siteTitle : $page.title</title>
+    </head>
+    
+    <body onload="init()">
+        
+        #topNav()
+
+        #tabs()
+
+        #breadCrumbs()
+
+        <table border="0" cellpadding="4" width="100%" bgcolor="#FFFFFF">
+            <tr>
+                <td valign="top" nowrap="true">
+                    #sideNav()
+                    
+                    <div class="gfxbyepiq">
+                        <a href="http://www.epiqtech.com">Graphics by Epiq</a>
+                    </div>
+                </td>
+                <td align="left" valign="top" width="100%">
+                    #pageContent()
+                </td>
+            </tr>
+        </table>
+
+        #footer()
+
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+var pageTracker = _gat._getTracker("UA-4380560-1");
+pageTracker._initData();
+pageTracker._trackPageview();
+</script>
+    </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/YOKO.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/YOKO.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/YOKO.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/YOKO.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,244 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+##
+#set ($siteTitle = "Apache Geronimo Yoko")
+#set ($quickLinksPage = "Quick Links")
+#set ($sideNavPagePrefix = "SideNav")
+#set ($images = "http://geronimo.apache.org/images")
+#set ($homeUri = "http://cwiki.apache.org/YOKO")
+#set ($pageContentHeaderEnabled = false)
+##
+#macro (sideNavSections)
+    #sideNavSection("Overview")
+    #sideNavSection("Users")
+    #sideNavSection("Developers")
+#end
+##
+#macro (spacer $width $height)
+    <img src="$images/spacer.gif" width="$width" height="$height" border="0">
+#end
+##
+#macro (renderPage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+    
+    ##
+    ## FIXME: Must be a more efficient way to find a page...
+    ##
+    
+    #foreach ($child in $page.space.pages)
+        #if ($child.title.equals($title))
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+            
+            ##
+            ## HACK: Remove the leading <P> and trailing </P>
+            ##
+            
+            #set ($content = $content.substring(3, $content.length()))
+            #set ($end = $content.length() - 4)
+            #set ($content = $content.substring(0, $end))
+            
+            $content
+        #end
+    #end
+#end
+##
+#macro (topNav)
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="$images/header_bg_1x86.gif">
+        <tr>
+            <td valing="top" align="left">
+                <a href="$homeUri"><img src="$images/topleft_logo_437x64.gif" border="0"></a>
+            </td>
+            
+            <td width="100%">
+                &nbsp;
+            </td>
+            
+            <td valign="top" align="right">
+                <img src="$images/subnav_angle_15x18.gif" width="15" height="18" alt="" border="0">
+            </td>
+            
+            <td valign="top" align="right" nowrap="true">
+                <div class="quicklinks" style="background-color: #5D9ACD">
+                    #spacer(1 14)
+                    <font color="#003366" face="Verdana, Helvetica, Arial">
+                        #renderPage($quickLinksPage)
+                    </font>
+                    #spacer(4 1)    
+                </div>
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (pageControls)
+    <div align="right" style="padding: 2px 10px; margin: 0px;">
+        <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$images/icons/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+    </div>
+#end
+##
+#macro (tabs)
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="$images/menu_bgstretch_1x22.gif">
+        <tr align="left">
+            <td width="100%" align="right">
+                #pageControls()
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (breadCrumbs)
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+        <tr class="topBar">
+            <td align="left" valign="middle" class="topBarDiv" align="left" nowrap="true">
+                &nbsp;$autoexport.breadcrumbs($page)
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (sideNav)
+    <div class="sideNav">
+        #sideNavSections()
+    </div>
+#end
+##
+#macro (sideNavSection $title)
+    #set ($pagename = "$sideNavPagePrefix $title")
+    
+    <table class="sideNavSection" bgcolor="#5FA3D6" border="0" cellspacing="1" cellpadding="0">
+        <tr>
+            <td>
+                <table border="0" cellspacing="0" cellpadding="4">
+                    <tr>
+                        <td class="sideNavSectionTitle" bgcolor="#5FA3D6" width="175">
+                            <font color="#FFFFFF" style="font-size:12px" face="Verdana, Helvetica, Arial">
+                                <strong>&nbsp; $title</strong>
+                            </font>
+                        </td>
+                    </tr>
+                    
+                    <tr>
+                        <td bgcolor="#F3F4F5" width="200">
+                            <table>
+                                <tr>
+                                    <td>&nbsp;</td>
+                                    <td class="sideNavSectionContent" align="left">#renderPage($pagename)</td>
+                                </tr>
+                            </table>
+                        </td>
+                    </tr>
+                </table>
+            </td>
+        </tr>
+    </table>
+    
+    #spacer(175 2)
+#end
+##
+#macro (pageContent)
+    <div id="PageContent">
+        #if ($pageContentHeaderEnabled)
+            <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+                <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+                <div style="margin: 0px 10px 8px 10px" class="pagetitle">$page.title</div>
+            </div>
+        #end
+        
+        <div class="pagecontent">
+            <div class="wiki-content">
+                $body
+            </div>
+        </div>
+    </div>
+#end
+##
+#macro (footer)
+    <!-- footer -->
+    <table border="0" cellpadding="2" cellspacing="0" width="100%"">
+        <tr>
+          <td align="left" valign="middle" class="footer">
+            &nbsp;&nbsp;
+            <img src="http://static.delicious.com/img/delicious.small.gif" height="10" width="10" alt="Delicious" />
+            <a href="http://delicious.com/save" onclick="window.open('http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title),'delicious','toolbar=no,width=550,height=550'); return false;">Bookmark this on Delicious</a>
+            &nbsp;&nbsp;
+            <img src="http://digg.com/img/badges/16x16-digg-guy.gif" width="16" height="16" alt="Digg!" />
+            <a href="" onclick="window.open('http://digg.com/submit?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)+'&amp;topic=software');">Digg this</a>
+            <!-- Slicker, but no text
+            <script type="text/javascript">
+              digg_skin = 'icon';
+              digg_window = 'new';
+              digg_title = '$siteTitle : $page.title';
+              digg_topic = 'software';
+            </script>
+            <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
+            -->
+            &nbsp;&nbsp;
+          </td>
+          <td align="right" valign="middle" class="footer">
+            <a href="http://cwiki.apache.org/GMOxPMGT/geronimo-privacy-policy.html">Privacy Policy</a>&nbsp;&nbsp;-&nbsp;&nbsp;
+            Copyright &#169; 2003-2009, The Apache Software Foundation, Licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">ASL 2.0.</a>&nbsp;&nbsp;
+          </td>
+        </tr>
+    </table> 
+#end
+##
+<html lang="en">
+    <head>
+        <META http-equiv="Content-Type" content="text/html;charset=UTF-8" />
+        <link type="text/css" rel="stylesheet" href="http://geronimo.apache.org/style/default.css">        
+        <link rel="SHORTCUT ICON" href="http://geronimo.apache.org/images/favicon.ico">
+        <LINK rel="schema.DC" href="http://purl.org/DC/elements/1.0/">
+        <META name="Description" content="$page.title" />
+        <META name="Keywords" content="$siteTitle $page.title" />
+        <META name="Owner" content="dev@geronimo.apache.org" />
+        <META name="Robots" content="index, follow" />
+        <META name="Security" content="Public" />
+        <META name="Source" content="wiki template" />
+        <META name="DC.Date" scheme="iso8601" content="2009-01-06" />
+        <META name="DC.Language" scheme="rfc1766" content="en" />
+        <META name="DC.Rights" content="Copyright © 2003-2009, The Apache Software Foundation" />
+        <META http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))'/>
+##  Google Webmaster Tools verification marker
+        <meta name="verify-v1" content="r4xGTn05820BdqgLI3hTFYd0HKicv58+8I+vjkH/7Uc=" />
+
+        <script src="http://geronimo.apache.org/functions.js" type="text/javascript"></script>        
+        <title>$siteTitle : $page.title</title>
+    </head>
+    
+    <body onload="init()">
+        
+        #topNav()
+
+        #tabs()
+
+        #breadCrumbs()
+
+        <table border="0" cellpadding="4" width="100%" bgcolor="#FFFFFF">
+            <tr>
+                <td valign="top" nowrap="true">
+                    #sideNav()
+                    
+                    <div class="gfxbyepiq">
+                        <a href="http://www.epiqtech.com">Graphics by Epiq</a>
+                    </div>
+                </td>
+                <td align="left" valign="top" width="100%">
+                    #pageContent()
+                </td>
+            </tr>
+        </table>
+
+        #footer()
+
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+var pageTracker = _gat._getTracker("UA-4380560-1");
+pageTracker._initData();
+pageTracker._trackPageview();
+</script>
+    </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/directory.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/directory.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/directory.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/directory.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,119 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+ 
+        http://www.apache.org/licenses/LICENSE-2.0
+ 
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+##
+#set ($images = "http://directory.apache.org/staticresources/images")
+#set ($siteroot = "http://directory.apache.org")
+#set ($pageContentHeaderEnabled = false)
+##
+#if ( $page.title.equals("Index") )
+    #set ($title = "Home")
+#else
+    #set ($title = $page.title)
+#end
+##
+#macro (renderPage $title)
+    #set($globalHelper = $action.getGlobalHelper())
+    #set($renderer = $globalHelper.getWikiStyleRenderer())
+ 
+    ##
+    ## FIXME: Must be a more efficent way to find a page...
+    ##
+ 
+    #foreach ($child in $page.space.pages)
+        #if ( ($child.title.equals($title)) && ( $child.contentStatus.equals("current") ) )
+            #set ($content = $renderer.convertWikiToXHtml($child.toPageContext(), $child.content).trim())
+ 
+            ##
+            ## HACK: Remove the leading <P> and trailing </P>
+            ##
+ 
+            #set ($content = $content.replaceAll("^<[pP]>|</[pP]>$", "") )
+            ##set ($content = $content.substring(3, $content.length()))
+            ##set ($end = $content.length() - 4)
+            ##set ($content = $content.substring(0, $end))
+ 
+            $content
+        #end
+    #end
+#end
+##
+<html>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+        <title>Apache Directory - $title</title>
+        <link href="http://directory.apache.org/staticresources/common_20091029.css" rel="stylesheet" type="text/css">
+        <link href="http://directory.apache.org/staticresources/green_20091029.css" rel="stylesheet" type="text/css">
+        <link rel="shortcut icon" href="http://directory.apache.org/staticresources/images/server-icon_16x16.png">
+        <!-- Google Analytics -->
+        <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>  
+        <script type="text/javascript">
+            _uacct = "UA-1358462-1";
+            urchinTracker();
+        </script>
+        <!-- JQuery inclusion -->
+        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
+        <!-- Loading the script for the edit button -->
+        <script>
+            $(document).ready( function()
+            {
+                $("#editZone").hover( function()
+                {
+                    $("#editZoneLink").stop().animate({opacity: 1}, 1000, function()
+                    {
+                        $("#editZoneLink").fadeIn();
+                    });
+                }
+                , function ()
+                {
+                    $("#editZoneLink").stop().fadeOut();
+                });
+            });
+        </script>
+    </head>
+    <body>
+        <div id="editZone">
+            <div id="editZoneLink" style="display: none; height: 60px; width: 60px;">
+                <a href="$confluenceUri/pages/editpage.action?pageId=$page.id" title="Edit this page" alt="Edit this page"><img style="position: absolute; right:5px; top:5px;" src="http://directory.apache.org/staticresources/images/edit_20091029.png" height="52" width="39" border="0"/></a>
+            </div>
+        </div>
+        <a name="top"></a>
+        <div id="container">
+            <div id="header">
+                <div id="subProjectsNavBar">
+                    <a href="http://directory.apache.org/"><strong>Apache Directory Project</strong></a>
+                    &nbsp;|&nbsp;
+                    <a href="http://directory.apache.org/apacheds/1.5/">ApacheDS</a>
+                    &nbsp;|&nbsp;
+                    <a href="http://directory.apache.org/studio/">Apache Directory Studio</a>
+                </div><!-- subProjectsNavBar -->
+            </div><!-- header -->
+            <div id="content">
+                <div id="leftColumn">
+                    <div id="navigation">
+                        #renderPage("Navigation")
+                    </div><!-- navigation -->
+                </div><!-- leftColumn -->
+                <div id="rightColumn">
+                    $body
+                </div><!-- rightColumn -->
+                <div id="endContent"></div>
+            </div><!-- content -->
+            <div id="footer">&copy; 2003-2009, <a href="http://www.apache.org">The Apache Software Foundation</a>&nbsp;-&nbsp;<a href="http://directory.apache.org/privacy-policy.html">Privacy Policy</a></div>
+        </div><!-- container -->
+    </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/empiredb.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/empiredb.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/empiredb.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/empiredb.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,137 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="$stylesheet">
+    <style type="text/css">
+      .footer {
+        background-image:      url('$confluenceUri/images/border/border_bottom.gif');
+        background-repeat:     repeat-x;
+        background-position:   left top;
+        padding-top:           4px;
+        color:                 #666;
+      }
+    </style>
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="/wiki/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+          <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="$confluenceUri/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="$confluenceUri/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="$confluenceUri/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+        </div>
+      </div>
+      <div class="pagesubheading" style="margin: 0px 10px 0px 10px;">
+        #editReport()
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+    <div class="footer">
+      Generated by
+      $autoexport.confluenceInfo
+      $autoexport.autoexportInfo
+    </div>
+  </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/gbuild.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/gbuild.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/gbuild.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/gbuild.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,143 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <link type="text/css" rel="stylesheet" href="http://geronimo.apache.org/documentation/resources/space.css">
+    <style type="text/css">
+      .footer {
+        background-image:      url('http://geronimo.apache.org/images/border/border_bottom.gif');
+        background-repeat:     repeat-x;
+        background-position:   left top;
+        padding-top:           4px;
+        color:                 #666;
+      }
+    </style>
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="http://geronimo.apache.org/images/top_bgstretch_1x64.gif">
+      <tr>
+        <td valing="top" align="left">
+          <img src="http://geronimo.apache.org/images/topleft_logo_437x64.gif" border="0">
+        </td>
+      </tr>
+    </table>
+
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="http://geronimo.apache.org/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+<!-- -->         
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="http://geronimo.apache.org/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="http://geronimo.apache.org/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="http://geronimo.apache.org/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="http://geronimo.apache.org/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+<!-- -->	 
+        </div>
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+    <div class="footer">
+      Copyright © 2003-2006, The Apache Software Foundation
+    </div>
+  </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/geronimo.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/geronimo.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/geronimo.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/geronimo.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,183 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+  <head>
+    <META http-equiv="Content-Type" content="text/html;charset=UTF-8" />
+    <link type="text/css" rel="stylesheet" href="http://geronimo.apache.org/style/default.css">
+    <LINK rel="SHORTCUT ICON" href="http://geronimo.apache.org/images/favicon.ico">
+    <LINK rel="schema.DC" href="http://purl.org/DC/elements/1.0/">
+    <META name="Description" content="$page.title" />
+    <META name="Keywords" content="Apache Geronimo Documentation $page.title" />
+    <META name="Owner" content="dev@geronimo.apache.org" />
+    <META name="Robots" content="index, follow" />
+    <META name="Security" content="Public" />
+    <META name="Source" content="wiki template" />
+    <META name="DC.Date" scheme="iso8601" content="2009-01-06" />
+    <META name="DC.Language" scheme="rfc1766" content="en" />
+    <META name="DC.Rights" content="Copyright © 2003-2009, The Apache Software Foundation" />
+    <META http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))'/>
+
+    <script type="text/javascript" language="javascript">
+      var hide = null;
+      var show = null;
+      var children = null;
+
+      function init() {
+        /* Search form initialization */
+        var form = document.forms['search'];
+        if (form != null) {
+          form.elements['domains'].value = location.hostname;
+          form.elements['sitesearch'].value = location.hostname;
+        }
+
+        /* Children initialization */
+        hide = document.getElementById('hide');
+        show = document.getElementById('show');
+        children = document.all != null ?
+                   document.all['children'] :
+                   document.getElementById('children');
+        if (children != null) {
+          children.style.display = 'none';
+          show.style.display = 'inline';
+          hide.style.display = 'none';
+        }
+      }
+
+      function showChildren() {
+        children.style.display = 'block';
+        show.style.display = 'none';
+        hide.style.display = 'inline';
+      }
+
+      function hideChildren() {
+        children.style.display = 'none';
+        show.style.display = 'inline';
+        hide.style.display = 'none';
+      }
+    </script>
+    <title>$page.title</title>
+  </head>
+  <body onload="init()">
+
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="http://geronimo.apache.org/images/top_bgstretch_1x64.gif">
+      <tr>
+        <td valing="top" align="left">
+          <img src="http://geronimo.apache.org/images/topleft_logo_437x64.gif" border="0">
+        </td>
+      </tr>
+    </table>
+
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+      <tr class="topBar">
+        <td align="left" valign="middle" class="topBarDiv" align="left" nowrap>
+          &nbsp;$autoexport.breadcrumbs($page)
+        </td>
+        <td align="right" valign="middle" nowrap>
+          <form name="search" action="http://www.google.com/search" method="get">
+            <input type="hidden" name="ie" value="UTF-8" />
+            <input type="hidden" name="oe" value="UTF-8" />
+            <input type="hidden" name="domains" value="" />
+            <input type="hidden" name="sitesearch" value="" />
+            <input type="text" name="q" maxlength="255" value="" />        
+            <input type="submit" name="btnG" value="Google Search" />
+          </form>
+        </td>
+      </tr> 
+    </table>
+
+    <div id="PageContent">
+      <div class="pageheader" style="padding: 6px 0px 0px 0px;">
+        <!-- We'll enable this once we figure out how to access (and save) the logo resource -->
+        <!--img src="http://geronimo.apache.org/images/confluence_logo.gif" style="float: left; margin: 4px 4px 4px 10px;" border="0"-->
+        <div style="margin: 0px 10px 0px 10px" class="smalltext">$page.space.name</div>
+        <div style="margin: 0px 10px 8px 10px"  class="pagetitle">$page.title</div>
+
+        <div class="greynavbar" align="right" style="padding: 2px 10px; margin: 0px;">
+<!-- -->         
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+            <img src="http://geronimo.apache.org/images/icons/notep_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+            <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">Edit Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">
+            <img src="http://geronimo.apache.org/images/icons/browse_space.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Browse Space"></a>
+            <a href="$confluenceUri/pages/listpages.action?key=$page.spaceKey">Browse Space</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="http://geronimo.apache.org/images/icons/add_page_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add Page"></a>
+          <a href="$confluenceUri/pages/createpage.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add Page</a>
+          &nbsp;
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">
+            <img src="http://geronimo.apache.org/images/icons/add_blogentry_16.gif"
+                 height="16" width="16" border="0" align="absmiddle" title="Add News"></a>
+          <a href="$confluenceUri/pages/createblogpost.action?spaceKey=$page.spaceKey&fromPageId=$page.id">Add News</a>
+<!-- -->	 
+        </div>
+      </div>
+
+      <div class="pagecontent">
+        <div class="wiki-content">
+          $body
+        </div>
+
+        #if ($page.hasChildren())
+          <div class="tabletitle">
+            Children
+            <span class="smalltext" id="show" style="display: inline;">
+              <a href="javascript:showChildren()">Show Children</a></span>
+            <span class="smalltext" id="hide" style="display: none;">
+              <a href="javascript:hideChildren()">Hide Children</a></span>
+          </div>
+          <div class="greybox" id="children" style="display: none;">
+            #set ($children = $page.children)
+            #foreach ($child in $children)
+              $autoexport.link($child)
+              <span class="smalltext">($child.space.name)</span>
+              <br>
+            #end
+          </div>
+        #end
+
+      </div>
+    </div>
+
+    <!-- footer -->
+    <table border="0" cellpadding="2" cellspacing="0" width="100%"">
+        <tr>
+          <td align="left" valign="middle" class="footer">
+            &nbsp;&nbsp;
+            <img src="http://static.delicious.com/img/delicious.small.gif" height="10" width="10" alt="Delicious" />
+            <a href="http://delicious.com/save" onclick="window.open('http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title),'delicious','toolbar=no,width=550,height=550'); return false;">Bookmark this on Delicious</a>
+            &nbsp;&nbsp;
+            <img src="http://digg.com/img/badges/16x16-digg-guy.gif" width="16" height="16" alt="Digg!" />
+            <a href="" onclick="window.open('http://digg.com/submit?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)+'&amp;topic=programming');">Digg this</a>
+            <!-- Slicker, but no text
+            <script type="text/javascript">
+              digg_skin = 'icon';
+              digg_window = 'new';
+              digg_title = 'Apache Geronimo Documentation : $page.title';
+              digg_topic = 'programming';
+            </script>
+            <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
+            -->
+            &nbsp;&nbsp;
+          </td>
+          <td align="right" valign="middle" class="footer">
+            <a href="http://cwiki.apache.org/GMOxPMGT/geronimo-privacy-policy.html">Privacy Policy</a>&nbsp;&nbsp;-&nbsp;&nbsp;
+            Copyright &#169; 2003-2009, The Apache Software Foundation, Licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">ASL 2.0.</a>&nbsp;&nbsp;
+          </td>
+        </tr>
+    </table> 
+
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+var pageTracker = _gat._getTracker("UA-4380560-1");
+pageTracker._initData();
+pageTracker._trackPageview();
+</script>
+  </body>
+</html>