You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ke...@apache.org on 2010/07/28 01:03:48 UTC

svn commit: r979904 [2/5] - in /incubator/oodt/tools/oodtsite.publisher/trunk: ./ docs/ oodtsite/ oodtsite/publisher/ oodtsite/publisher/rules/ oodtsite/publisher/tests/ oodtsite/publisher/tests/data/ oodtsite/publisher/tests/data/oodt/ oodtsite/publis...

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/rules/standard.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/rules/standard.xml?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/rules/standard.xml (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/rules/standard.xml Tue Jul 27 23:03:44 2010
@@ -0,0 +1,37 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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.
+
+Standard plain old HTML page transformation for the Apache OODT website.
+-->
+<xdv:rules
+    xmlns:xdv='http://namespaces.plone.org/xdv'
+    xmlns:css='http://namespaces.plone.org/xdv+css'
+    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
+    xmlns:xi='http://www.w3.org/2001/XInclude'>
+
+    <xi:include href='head.xml' />
+    <xi:include href='globalnav.xml' />
+
+    <!-- Take the title and use it in the h1 in the blue bar; the DC description goes in the h2 -->
+    <xdv:copy css:theme='#productNameSlot' content='/html/head/title/child::text()'/>
+    <xdv:copy css:theme='#productSubheadSlot' content='string(/html/head/meta[@name="DC.description"]/@content)'/>
+
+    <!-- Place main page content on left, sidebar content (if any) on right -->
+    <xdv:copy css:theme='#leftPlate' content='/html/body/*[not(@id="sidebar")]' />
+    <xdv:copy css:theme='#rightPlate' css:content='#sidebar'/>
+
+</xdv:rules>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/__init__.py
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/__init__.py?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/__init__.py (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/__init__.py Tue Jul 27 23:03:44 2010
@@ -0,0 +1,31 @@
+# encoding: utf-8
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE.txt 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.    
+
+'''OODT Site Publisher: tests.'''
+
+__docformat__ = 'restructuredtext en'
+
+import unittest
+import test_artifacts, test_publishers, test_transformers
+
+def test_suite():
+    suite = unittest.TestSuite()
+    for module in (test_artifacts, test_publishers, test_transformers):
+        suite.addTest(module.test_suite())
+    return suite
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/base.py
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/base.py?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/base.py (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/base.py Tue Jul 27 23:03:44 2010
@@ -0,0 +1,46 @@
+# encoding: utf-8
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE.txt 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.    
+
+'''OODT Site Publisher: testing base code'''
+
+__docformat__ = 'restructuredtext en'
+
+import unittest, tempfile, shutil, pkg_resources
+
+class OODTSitePublisherTestCase(unittest.TestCase):
+    '''
+    A base test case that:
+
+    * At set up time, creates a blank working directory in which to write test artifacts
+    * A tear down time, destroys that working directory and its contents
+    * Provides a utility method to retrieve test data
+    
+    Subclasses should remember to call the superclass ``setUp`` and ``tearDown`` methods
+    as needed, and (of course), define some test methods.
+    '''
+    def setUp(self):
+        '''Set up by creating a temporary play area'''
+        super(OODTSitePublisherTestCase, self).setUp()
+        self.targetDir = tempfile.mkdtemp()
+    def tearDown(self):
+        '''Tear down by destroying the temporary play area'''
+        shutil.rmtree(self.targetDir, ignore_errors=True)
+        super(OODTSitePublisherTestCase, self).tearDown()
+    def getTestData(self, name):
+        '''Retrieve a test data file with the given ``name``.  The ``name`` may contain
+        slashes to refer to subdirectories of test data.
+        '''
+        return pkg_resources.resource_filename(__name__, 'data/' + name)

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/bad.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/bad.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/bad.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/bad.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Bad HTML</title>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print"/>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+  </head>
+  <body>
+    <div id='banner'><p>Hello.
+      <span id="bannerLeft">
+          <p>This is bad.
+      </span>
+     <div class=clear>
+     <hr/>
+     <hr>
+ </div></div></div></div></div></div></div></div></div></div>
+    </BODY>
+</HTML>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/empty.txt
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/empty.txt?rev=979904&view=auto
==============================================================================
    (empty)

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/index.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/index.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/index.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/index.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,55 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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>
+<!-- Generated by javadoc on Sat Jul 24 21:42:00 CDT 2010-->
+<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<TITLE>
+Test Service 3.0.12-dev API
+</TITLE>
+<SCRIPT type="text/javascript">
+    targetPage = "" + window.location.search;
+    if (targetPage != "" && targetPage != "undefined")
+        targetPage = targetPage.substring(1);
+    if (targetPage.indexOf(":") != -1)
+        targetPage = "undefined";
+    function loadFrames() {
+        if (targetPage != "" && targetPage != "undefined")
+             top.classFrame.location = top.targetPage;
+    }
+</SCRIPT>
+<NOSCRIPT>
+</NOSCRIPT>
+</HEAD>
+<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
+<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
+<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
+<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
+</FRAMESET>
+<FRAME src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
+<NOFRAMES>
+<H2>
+Frame Alert</H2>
+
+<P>
+This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
+<BR>
+Link to<A HREF="overview-summary.html">Non-frame version.</A>
+</NOFRAMES>
+</FRAMESET>
+</HTML>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/package-list
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/package-list?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/package-list (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/apidocs/package-list Tue Jul 27 23:03:44 2010
@@ -0,0 +1,5 @@
+org.apache.oodt.testservice
+org.apache.oodt.testservice.handlers.ofsn
+org.apache.oodt.testservice.handlers.ofsn.metadata
+org.apache.oodt.testservice.handlers.ofsn.util
+org.apache.oodt.xmlquery

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,213 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - Checkstyle Results</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-24
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-info.html">Project Information</a>
+                </li>
+              
+                
+              
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-reports.html">Project Reports</a>
+                  <ul>
+                  
+    <li class="none">
+              <strong>Checkstyle</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="findbugs.html">FindBugs Report</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="apidocs/index.html">JavaDocs</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="surefire-report.html">Maven Surefire Report</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="rat-report.html">RAT Report</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="xref/index.html">Source Xref</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="xref-test/index.html">Test Source Xref</a>
+          </li>
+              </ul>
+        </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Checkstyle Results</h2>
+<p>The following document contains the results of <a href="http://checkstyle.sourceforge.net/" class="externalLink">Checkstyle</a>.&#160;<a href="#checkstyle.rss"><img alt="rss feed" src="images/rss.png" /></a></p>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.rss
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.rss?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.rss (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/checkstyle.rss Tue Jul 27 23:03:44 2010
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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.
+-->
+
+<rss version="0.91">
+  <channel>
+    <title>Test Service - Checkstyle report</title>
+    <link>http://incubator.apache.org/oodt/test</link>
+    <description>Test Service - Checkstyle report</description>
+    <language>en-us</language>
+    <copyright>&#169;1999 - 2010 Apache Incubator</copyright>
+    <item>
+      <title>File: 32,
+             Errors: 871,
+             Warnings: 0,
+             Infos: 0
+      </title>
+            <link>http://incubator.apache.org/oodt/test/test/checkstyle.html</link>
+      <description>
+        Blah.
+      </description>
+    </item>
+  </channel>
+</rss>
+

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-base.css
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-base.css?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-base.css (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-base.css Tue Jul 27 23:03:44 2010
@@ -0,0 +1,162 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more contributor
+* license agreements.  See the NOTICE.txt 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.
+*
+* Apache OODT style sheet: we're stylin', baby!
+*/
+
+body {
+  margin: 0px;
+  padding: 0px;
+}
+img {
+  border:none;
+}
+table {
+  padding:0px;
+  width: 100%;
+  margin-left: -2px;
+  margin-right: -2px;
+}
+acronym {
+  cursor: help;
+  border-bottom: 1px dotted #feb;
+}
+table.bodyTable th, table.bodyTable td {
+  padding: 2px 4px 2px 4px;
+  vertical-align: top;
+}
+div.clear{
+  clear:both;
+  visibility: hidden;
+}
+div.clear hr{
+  display: none;
+}
+#bannerLeft, #bannerRight {
+  font-size: xx-large;
+  font-weight: bold;
+}
+#bannerLeft img, #bannerRight img {
+  margin: 0px;
+}
+.xleft, #bannerLeft img {
+  float:left;
+}
+.xright, #bannerRight {
+  float:right;
+}
+#banner {
+  padding: 0px;
+}
+#banner img {
+  border: none;
+}
+#breadcrumbs {
+  padding: 3px 10px 3px 10px;
+}
+#leftColumn {
+ width: 170px;
+ float:left;
+ overflow: auto;
+}
+#bodyColumn {
+  margin-right: 1.5em;
+  margin-left: 197px;
+}
+#legend {
+  padding: 8px 0 8px 0;
+}
+#navcolumn {
+  padding: 8px 4px 0 8px;
+}
+#navcolumn h5 {
+  margin: 0;
+  padding: 0;
+  font-size: small;
+}
+#navcolumn ul {
+  margin: 0;
+  padding: 0;
+  font-size: small;
+}
+#navcolumn li {
+  list-style-type: none;
+  background-image: none;
+  background-repeat: no-repeat;
+  background-position: 0 0.4em;
+  padding-left: 16px;
+  list-style-position: outside;
+  line-height: 1.2em;
+  font-size: smaller;
+}
+#navcolumn li.expanded {
+  background-image: url(../images/expanded.gif);
+}
+#navcolumn li.collapsed {
+  background-image: url(../images/collapsed.gif);
+}
+#poweredBy {
+  text-align: center;
+}
+#navcolumn img {
+  margin-top: 10px;
+  margin-bottom: 3px;
+}
+#poweredBy img {
+  display:block;
+  margin: 20px 0 20px 17px;
+}
+#search img {
+    margin: 0px;
+    display: block;
+}
+#search #q, #search #btnG {
+    border: 1px solid #999;
+    margin-bottom:10px;
+}
+#search form {
+    margin: 0px;
+}
+#lastPublished {
+  font-size: x-small;
+}
+.navSection {
+  margin-bottom: 2px;
+  padding: 8px;
+}
+.navSectionHead {
+  font-weight: bold;
+  font-size: x-small;
+}
+.section {
+  padding: 4px;
+}
+#footer {
+  padding: 3px 10px 3px 10px;
+  font-size: x-small;
+}
+#breadcrumbs {
+  font-size: x-small;
+  margin: 0pt;
+}
+.source {
+  padding: 12px;
+  margin: 1em 7px 1em 7px;
+}
+.source pre {
+  margin: 0px;
+  padding: 0px;
+}

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-theme.css
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-theme.css?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-theme.css (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/maven-theme.css Tue Jul 27 23:03:44 2010
@@ -0,0 +1,159 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more contributor
+* license agreements.  See the NOTICE.txt 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.
+*
+* Apache OODT style sheet: we're stylin', baby!
+*/
+body {
+  padding: 0px 0px 10px 0px;
+}
+body, td, select, input, li{
+  font-family: Verdana, Helvetica, Arial, sans-serif;
+  font-size: 13px;
+}
+code{
+  font-family: Courier, monospace;
+  font-size: 13px;
+}
+a {
+  text-decoration: none;
+}
+a:link {
+  color:#36a;
+}
+a:visited  {
+  color:#47a;
+}
+a:active, a:hover {
+  color:#69c;
+}
+#legend li.externalLink {
+  background: url(../images/external.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
+  background: url(../images/external.png) right center no-repeat;
+  padding-right: 18px;
+}
+#legend li.newWindow {
+  background: url(../images/newwindow.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
+  background: url(../images/newwindow.png) right center no-repeat;
+  padding-right: 18px;
+}
+h2 {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #999;
+  color: #900;
+  background-color: #ddd;
+  font-weight:900;
+  font-size: x-large;
+}
+h3 {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #aaa;
+  color: #900;
+  background-color: #eee;
+  font-weight: normal;
+  font-size: large;
+}
+h4 {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #bbb;
+  color: #900;
+  background-color: #fff;
+  font-weight: normal;
+  font-size: large;
+}
+h5 {
+  padding: 4px 4px 4px 6px;
+  color: #900;
+  font-size: normal;
+}
+p {
+  line-height: 1.3em;
+  font-size: small;
+}
+#breadcrumbs {
+  border-top: 1px solid #aaa;
+  border-bottom: 1px solid #aaa;
+  background-color: #ccc;
+}
+#leftColumn {
+  margin: 10px 0 0 5px;
+  border: 1px solid #999;
+  background-color: #eee;
+}
+#navcolumn h5 {
+  font-size: smaller;
+  border-bottom: 1px solid #aaaaaa;
+  padding-top: 2px;
+  color: #000;
+}
+
+table.bodyTable th {
+  color: white;
+  background-color: #bbb;
+  text-align: left;
+  font-weight: bold;
+}
+
+table.bodyTable th, table.bodyTable td {
+  font-size: 1em;
+}
+
+table.bodyTable tr.a {
+  background-color: #ddd;
+}
+
+table.bodyTable tr.b {
+  background-color: #eee;
+}
+
+.source {
+  border: 1px solid #999;
+}
+dl {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #aaa;
+  background-color: #ffc;
+}
+dt {
+  color: #900;
+}
+#organizationLogo img, #projectLogo img, #projectLogo span{
+  margin: 8px;
+}
+#banner {
+  border-bottom: 1px solid #fff;
+}
+.errormark, .warningmark, .donemark, .infomark {
+  background: url(../images/icon_error_sml.gif) no-repeat;
+}
+
+.warningmark {
+  background-image: url(../images/icon_warning_sml.gif);
+}
+
+.donemark {
+  background-image: url(../images/icon_success_sml.gif);
+}
+
+.infomark {
+  background-image: url(../images/icon_info_sml.gif);
+}
+

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/print.css
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/print.css?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/print.css (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/print.css Tue Jul 27 23:03:44 2010
@@ -0,0 +1,25 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more contributor
+* license agreements.  See the NOTICE.txt 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.
+*
+* Apache OODT style sheet: we're stylin', baby!
+*/
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {
+	display: none !important;
+}
+#bodyColumn, body.docs div.docs {
+	margin: 0 !important;
+	border: none !important
+}

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/site.css
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/site.css?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/site.css (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/css/site.css Tue Jul 27 23:03:44 2010
@@ -0,0 +1,18 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more contributor
+* license agreements.  See the NOTICE.txt 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.
+*
+* Apache OODT style sheet: we're stylin', baby!
+*/

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependencies.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependencies.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependencies.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependencies.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,228 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - Project Dependencies</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-24
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="index.html">About</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="integration.html">Continuous Integration</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Dependencies</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugin-management.html">Plugin Management</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugins.html">Project Plugins</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="project-summary.html">Project Summary</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-reports.html">Project Reports</a>
+                </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project Dependencies</h2>
+
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependency-convergence.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependency-convergence.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependency-convergence.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/dependency-convergence.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,258 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - Reactor Dependency Convergence</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-23
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="index.html">About</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="integration.html">Continuous Integration</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="dependencies.html">Dependencies</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Dependency Convergence</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugin-management.html">Plugin Management</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugins.html">Project Plugins</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="project-summary.html">Project Summary</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-reports.html">Project Reports</a>
+                </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Reactor Dependency Convergence</h2>
+<table class="bodyTable"><caption><b>Legend:</b></caption>
+<tr class="a"><td><img alt="success" src="images/icon_success_sml.gif" /></td>
+<td>All projects share one version of the dependency.</td>
+</tr>
+<tr class="b"><td><img alt="error" src="images/icon_error_sml.gif" /></td>
+<td>At least one project has a differing version of the dependency.</td>
+</tr>
+</table>
+<br />
+<table class="bodyTable"><caption><b>Statistics:</b></caption>
+<tr class="a"><th>Number of sub-projects:</th>
+<td>21</td>
+</tr>
+<tr class="b"><th>Number of dependencies (NOD):</th>
+<td>68</td>
+</tr>
+<tr class="a"><th>Number of unique artifacts (NOA):</th>
+<td>80</td>
+</tr>
+<tr class="b"><th>Number of SNAPSHOT artifacts (NOS):</th>
+<td>0</td>
+</tr>
+<tr class="a"><th>Convergence (NOD/NOA):</th>
+<td><img alt="error" src="images/icon_error_sml.gif" />&#160;<b>85%</b></td>
+</tr>
+<tr class="b"><th>Ready for Release (100% Convergence and no SNAPSHOTS):</th>
+<td><img alt="error" src="images/icon_error_sml.gif" />&#160;<b>Error</b><br />
+You do not have 100% convergence.</td>
+</tr>
+</table>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/findbugs.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/findbugs.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/findbugs.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/findbugs.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,241 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - FindBugs Bug Detector Report</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-24
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-info.html">Project Information</a>
+                </li>
+              
+                
+              
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-reports.html">Project Reports</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="checkstyle.html">Checkstyle</a>
+          </li>
+                  
+    <li class="none">
+              <strong>FindBugs Report</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="apidocs/index.html">JavaDocs</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="surefire-report.html">Maven Surefire Report</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="rat-report.html">RAT Report</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="xref/index.html">Source Xref</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="xref-test/index.html">Test Source Xref</a>
+          </li>
+              </ul>
+        </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>FindBugs Bug Detector Report</h2>
+<p>The following document contains the results of <a href="http://findbugs.sourceforge.net" class="externalLink">FindBugs Report</a></p>
+<p>FindBugs Version is <i>1.1.1</i></p>
+<p>Threshold is <i>Normal</i></p>
+<p>Effort is <i>Default</i></p>
+</div>
+<h2>Summary</h2>
+<table class="bodyTable"><tr class="a"><th>Classes</th>
+<th>Bugs</th>
+<th>Errors</th>
+<th>Missing Classes</th>
+</tr>
+<tr class="b"><td>228</td>
+<td>2</td>
+<td>0</td>
+<td>10</td>
+</tr>
+</table>
+</p>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/close.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/close.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/collapsed.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/collapsed.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/delegation.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/delegation.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/delegation.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/delegation.psd
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/delegation.psd?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/delegation.psd
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/expanded.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/expanded.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/external.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/external.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/grid-product.jpg
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/grid-product.jpg?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/grid-product.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_error_sml.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_error_sml.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_error_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_info_sml.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_info_sml.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_info_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_success_sml.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_success_sml.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_success_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_warning_sml.gif
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_warning_sml.gif?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/icon_warning_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/build-by-maven-black.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/build-by-maven-black.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/build-by-maven-black.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/build-by-maven-white.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/build-by-maven-white.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/build-by-maven-white.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/maven-feather.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/maven-feather.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/newwindow.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/newwindow.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/rss.png
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/rss.png?rev=979904&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/images/rss.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/index.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/index.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/index.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/index.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,240 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - About</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-24
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+              <strong>About</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="integration.html">Continuous Integration</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="dependencies.html">Dependencies</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugin-management.html">Plugin Management</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugins.html">Project Plugins</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="project-summary.html">Project Summary</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-reports.html">Project Reports</a>
+                </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>About Test Service</h2>
+<p>The Test Service tests crap.</p>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/integration.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/integration.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/integration.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/integration.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,240 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - Continuous Integration</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-24
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="index.html">About</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Continuous Integration</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="dependencies.html">Dependencies</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugin-management.html">Plugin Management</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugins.html">Project Plugins</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="project-summary.html">Project Summary</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-reports.html">Project Reports</a>
+                </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Continuous Integration</h2>
+<p>No continuous integration management system is defined. Please check back at a later date.</p>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/issue-tracking.html
URL: http://svn.apache.org/viewvc/incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/issue-tracking.html?rev=979904&view=auto
==============================================================================
--- incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/issue-tracking.html (added)
+++ incubator/oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/tests/data/oodt/primary/target/site/issue-tracking.html Tue Jul 27 23:03:44 2010
@@ -0,0 +1,233 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more contributor
+license agreements.  See the NOTICE.txt 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 xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Test Service - Issue Tracking</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Test Service
+    
+            </span>
+                    <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+        Last Published: 2010-07-24
+                      </div>
+            <div class="xright">            <a href="../oodt-site/">OODT</a>
+            |
+                <a href="../grid/">Grid</a>
+            
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+            
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="index.html">About</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="integration.html">Continuous Integration</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="dependencies.html">Dependencies</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Issue Tracking</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugin-management.html">Plugin Management</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="plugins.html">Project Plugins</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="project-summary.html">Project Summary</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-reports.html">Project Reports</a>
+                </li>
+          </ul>
+              <h5>User's Guide</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="tutorials/">Tutorials</a>
+          </li>
+              
+    <li class="none">
+                    <a href="servlet/">Test Servlet</a>
+          </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Overview</h2>
+This project uses <a href="http://www.atlassian.com/software/jira" class="externalLink">JIRA</a> a J2EE-based, issue tracking and project management application.</div>
+<div class="section"><h2>Issue Tracking</h2>
+<p>Issues, bugs, and feature requests should be submitted to the following issue tracking system for this project.</p>
+<div class="source"><pre><a href="https://issues.apache.org/jira/browse/OODT" class="externalLink">https://issues.apache.org/jira/browse/OODT</a></pre>
+</div>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          1999-2010
+    
+          Apache Incubator
+          
+  
+
+  
+    
+  
+  
+    
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>