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 [10/12] - /servicemix/sandbox/ccustine/cwikitemplates/

Added: servicemix/sandbox/ccustine/cwikitemplates/TILES.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TILES.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TILES.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TILES.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/TOBAGO.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TOBAGO.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TOBAGO.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TOBAGO.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/TRINIDAD.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TRINIDAD.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TRINIDAD.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TRINIDAD.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/TS.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TS.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TS.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TS.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,154 @@
+<!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 - Traffic Server</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>
+<table border="0" width="90%">
+<tr>
+<td align="left">
+<a href="http://cwiki.apache.org/TS/traffic-server.html">
+<img src="http://incubator.apache.org/trafficserver/images/trans_logo_150x32.png" height="32" width="150" border="0"></a>
+</td>
+<td>
+</td>
+<td align="right">          <a href="http://incubator.apache.org">
+            <img src="http://incubator.apache.org/images/apache-incubator-logo.png" height="57" width="229" border="0"></a></td>
+</tr>
+</table>
+</div>
+
+
+        </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/TUSCANY.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TUSCANY.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TUSCANY.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TUSCANY.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,308 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+
+##
+
+#set ($pageContentHeaderEnabled = false)
+
+##
+
+#macro (spacer $width $height)
+
+    ##
+
+    ## Note: Replaced the spacer.gif with a table because IE wont honor the image height
+
+    ## 
+
+    ## <img src="$images/spacer.gif" width="$width" height="$height" border="0">
+
+    ##
+
+    <table> <!-- spacer -->
+
+        <tr>
+
+            <td width="$width" height="$height"></td>
+
+        </tr>
+
+    </table>
+
+#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 (generateKeywords)
+   <META name="description" content="Apache Tuscany"/>
+   <META name="keywords" content="apache, apache tuscany, tuscany, service, services, fabric, soa, service oriented architecture,  sca, service component architecture, das, sdo, csa, ruby, opensource"/>
+
+#end
+##
+
+#macro (topNav)
+
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="http://tuscany.apache.org/images/TuscanyLogoNEW_Text_120px_bg.jpg">
+
+        <tr>
+
+            <td valing="top" align="left">
+
+			    <a href="$siteroot"><img src="http://tuscany.apache.org/images/TuscanyLogoNEW_Text_120px_bg.jpg" height="91" width="25" border="0"></a>
+
+			</td>
+
+			<td>
+
+                <a href="http://tuscany.apache.org/"><img src="http://tuscany.apache.org/images/TuscanyLogo.jpg" border="0"></a>
+
+            </td>
+
+            
+
+            <td width="100%">
+
+                &nbsp;
+
+            </td>
+
+            <!--td align="right">
+
+                <img src="http://incubator.apache.org/tuscany/images/apache-incubator-logo.png" border="0">
+
+            </td-->
+
+
+
+            <!-- Adds the edit page link to the top banner-->
+
+            <td valign="bottom">
+
+                <div style="padding: 2px 10px; margin: 0px;">
+
+                    <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+
+                    <img src="http://tuscany.apache.org/images/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+
+                </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="http://tuscany.apache.org/images/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>    
+
+   </div>
+
+#end
+
+##
+
+#macro (breadCrumbs)
+
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+
+        <tr class="topBar">
+
+            <td align="left" valign="middle" class="topBarDiv" nowrap="true" width="100%">
+
+                &nbsp;$autoexport.breadcrumbs($page)
+
+            </td>
+
+            
+
+            <td align="right" valign="middle" class="topBarDiv" align="left" nowrap="true">
+
+            <a href="http://mail-archives.apache.org/mod_mbox/tuscany-user">User List</a> | <a href="http://mail-archives.apache.org/mod_mbox/tuscany-dev">Dev List</a> | <a href="http://issues.apache.org/jira/browse/Tuscany">Issue Tracker</a>&nbsp;&nbsp;
+
+            </td>
+
+        </tr>
+
+    </table>
+
+#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)
+
+    ## Google Analytics script
+
+    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+
+    </script>
+
+    <script type="text/javascript">
+
+       _uacct = "UA-1174707-5";
+
+       urchinTracker();
+
+    </script>
+
+    
+
+    ## StatCounter script
+
+    <a href="http://www.statcounter.com/" target="_blank"><img src="http://c26.statcounter.com/counter.php?sc_project=2619156&java=0&security=94bd7e7d&invisible=0" alt="website stats" border="0"></a>    
+
+
+
+    <div class="footer">
+
+        Copyright © 2003-2008, The Apache Software Foundation&nbsp;&nbsp;
+
+    </div>
+
+#end
+
+##
+
+<html>
+
+    <head>
+        #generateKeywords()
+
+
+        <link type="text/css" rel="stylesheet" href="http://tuscany.apache.org/stylesheets/default.css">
+
+        <link rel="SHORTCUT ICON" href="$images/favicon.ico">   
+
+        <title>$page.title : Apache Tuscany</title>
+
+    </head>
+
+    
+
+    <body onload="init()">
+
+        
+
+        #topNav()
+
+
+
+        #breadCrumbs()
+
+
+
+        <table border="0" cellpadding="0" width="100%" bgcolor="#FFFFFF">
+
+            <tr>
+
+                <td align="left" valign="top">
+
+                    #pageContent()
+
+                </td>
+
+            </tr>
+
+        </table>
+
+
+
+        #footer()
+
+
+
+    </body>
+
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/TUSCANYWIKI.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TUSCANYWIKI.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TUSCANYWIKI.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TUSCANYWIKI.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/TUSCANYxDOCx1x.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TUSCANYxDOCx1x.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TUSCANYxDOCx1x.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TUSCANYxDOCx1x.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/TUSCANYxDOCx2x.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/TUSCANYxDOCx2x.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/TUSCANYxDOCx2x.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/TUSCANYxDOCx2x.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,186 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+##
+#set ($pageContentHeaderEnabled = false)
+##
+#macro (spacer $width $height)
+    ##
+    ## Note: Replaced the spacer.gif with a table because IE wont honor the image height
+    ## 
+    ## <img src="$images/spacer.gif" width="$width" height="$height" border="0">
+    ##
+    <table> <!-- spacer -->
+        <tr>
+            <td width="$width" height="$height"></td>
+        </tr>
+    </table>
+#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 (generateKeywords)
+   <META name="description" content="Apache Tuscany"/>
+   <META name="keywords" content="apache, apache tuscany, tuscany, service, services, fabric, soa, service oriented architecture,  sca, service component architecture, das, sdo, csa, ruby, opensource"/>
+#end
+##
+
+#macro (topNav)
+    <table valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="http://tuscany.apache.org/images/TuscanyLogoNEW_Text_120px_bg.jpg">
+        <tr>
+            <td valing="top" align="left">
+	    <a href="$siteroot"><img src="http://tuscany.apache.org/images/TuscanyLogoNEW_Text_120px_bg.jpg" height="91" width="25" border="0"></a>
+	    </td>
+	    <td>
+            <a href="http://tuscany.apache.org/"><img src="http://tuscany.apache.org/images/TuscanyLogo.jpg" border="0"></a>
+            </td>
+
+            <td width="100%">
+                &nbsp;
+            </td>
+
+
+            <!-- Adds the edit page link to the top banner-->
+            <td valign="bottom">
+                <div style="padding: 2px 10px; margin: 0px;">
+                    <a href="$confluenceUri/pages/editpage.action?pageId=$page.id">
+                    <img src="http://tuscany.apache.org/images/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>
+                </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="http://tuscany.apache.org/images/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></a>    
+
+   </div>
+
+#end
+
+##
+
+#macro (breadCrumbs)
+
+    <table border="0" cellpadding="2" cellspacing="0" width="100%">
+        <tr class="topBar">
+            <td align="left" valign="middle" class="topBarDiv" nowrap="true" width="100%">
+                &nbsp;$autoexport.breadcrumbs($page)
+            </td>
+
+            <td align="right" valign="middle" class="topBarDiv" align="left" nowrap="true">
+            <a href="http://tuscany.apache.org">Tuscany Home</a> | <a href="http://mail-archives.apache.org/mod_mbox/tuscany-user">User List</a> | <a href="http://mail-archives.apache.org/mod_mbox/tuscany-dev">Dev List</a> | <a href="http://issues.apache.org/jira/browse/Tuscany">Issue Tracker</a>&nbsp;&nbsp;
+            </td>
+        </tr>
+    </table>
+#end
+##
+#macro (pageOutline)
+    <div class="tabletitle">Table of Contents</div>
+        <div class="spacetree">
+            #renderPage("Navigation")
+        </div>
+#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)
+    ## Google Analytics script
+    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+    </script>
+    <script type="text/javascript">
+       _uacct = "UA-1174707-5";
+       urchinTracker();
+    </script>
+    
+    ## StatCounter script
+    <a href="http://www.statcounter.com/" target="_blank"><img src="http://c26.statcounter.com/counter.php?sc_project=2619156&java=0&security=94bd7e7d&invisible=0" alt="website stats" border="0"></a>    
+    <div class="footer">
+        Copyright © 2003-2008, The Apache Software Foundation&nbsp;&nbsp;
+    </div>
+#end
+##
+<html>
+    <head>
+        #generateKeywords()
+
+        <link type="text/css" rel="stylesheet" href="http://tuscany.apache.org/stylesheets/default.css">
+        <link rel="SHORTCUT ICON" href="$images/favicon.ico">   
+        <title>$page.title : Apache Tuscany</title>
+    </head>
+
+   <style>
+    .spacetree * ul {
+       padding-left:0px;
+       margin-left: 0px;
+    }
+    .spacetree * li {
+       margin-left: 5px;
+       padding-left:5px;
+    }
+   </style>
+
+    <body onload="init()">
+        #topNav()
+
+        #breadCrumbs()
+
+        <table border="0" cellpadding="0" width="100%" bgcolor="#FFFFFF">
+            <tr>
+                <td valign="top" align="left" width="22%" bgcolor="#F9F9F9" class="noprint">
+                    #pageOutline()                 
+                </td>
+                <td align="left" valign="top" width="78%">
+                    #pageContent()
+                </td>
+            </tr>
+        </table>
+
+        #footer()
+
+    </body>
+</html>

Added: servicemix/sandbox/ccustine/cwikitemplates/UIMA.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/UIMA.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/UIMA.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/UIMA.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/VCL.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/VCL.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/VCL.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/VCL.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/VCLDOCS.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/VCLDOCS.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/VCLDOCS.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/VCLDOCS.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/VXQUERY.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/VXQUERY.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/VXQUERY.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/VXQUERY.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/VYSPER.template
URL: http://svn.apache.org/viewvc/servicemix/sandbox/ccustine/cwikitemplates/VYSPER.template?rev=939023&view=auto
==============================================================================
--- servicemix/sandbox/ccustine/cwikitemplates/VYSPER.template (added)
+++ servicemix/sandbox/ccustine/cwikitemplates/VYSPER.template Wed Apr 28 17:41:27 2010
@@ -0,0 +1,123 @@
+<!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://mina.apache.org/vysper/staticresources/images")
+#set ($siteroot = "http://mina.apache.org/vysper/")
+#set ($pageContentHeaderEnabled = false)
+##
+#if ( $page.title.equals("Index") )
+    #set ($title = "Welcome to Apache Vysper Project!")
+#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>$title - Apache Vysper</title>
+        <link href="http://mina.apache.org/vysper/staticresources/common.css" rel="stylesheet" type="text/css">
+        <link href="http://mina.apache.org/vysper/staticresources/vysper.css" rel="stylesheet" type="text/css">
+        <link rel="shortcut icon" href="http://mina.apache.org/mina2/staticresources/images/mina-icon_16x16.png">
+        <!-- Google Analytics -->
+        <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>  
+        <script type="text/javascript">
+            _uacct = "UA-11074178";
+            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://mina.apache.org/vysper/staticresources/images/edit.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://mina.apache.org/">MINA</a>
+                    &nbsp;|&nbsp;
+                    <a href="http://mina.apache.org/asyncWeb/">AsyncWeb</a>
+                    &nbsp;|&nbsp;
+                    <a href="http://mina.apache.org/ftpserver/">FTPServer</a>
+                    &nbsp;|&nbsp;
+                    <a href="http://mina.apache.org/sshd/">SSHd</a>
+                    &nbsp;|&nbsp;
+                    <a href="http://mina.apache.org/vysper/"><strong>Vysper</strong></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-2010, <a href="http://www.apache.org">The Apache Software Foundation</a></div>
+        </div><!-- container -->
+    </body>
+</html>