You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jl...@apache.org on 2006/03/08 11:13:54 UTC

svn commit: r384171 [2/3] - in /geronimo/sandbox/itests: ./ src/ src/site/ src/site/apt/ src/site/fml/ src/site/xdoc/ system-tests/ system-tests/src/ system-tests/src/main/ system-tests/src/main/java/ system-tests/src/test/ system-tests/src/test/java/ ...

Added: geronimo/sandbox/itests/web/format.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/format.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/format.html (added)
+++ geronimo/sandbox/itests/web/format.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,332 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo - </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=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="http://geronimo.apache.org/" id="bannerLeft">
+    
+                                    <img src="http://people.apache.org/~hogstrom/website/images/topleft_logo_437x64.gif" alt="" />
+    
+            </a>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Itests 1.0</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="results.html">Test Results</a>
+        </li>
+              
+    <li class="none">
+          <strong><a href="format.html">APT Format</a></strong>
+        </li>
+              
+    <li class="none">
+          <a href="faq.html">FAQ</a>
+        </li>
+              
+    <li class="none">
+          <a href="xdoc.html">Xdoc Example</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="index.html">About Geronimo Integration Tests</a>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>The APT format</h2><p>In the following section, boxes containing text in typewriter-like font are examples of APT source.</p><div class="section"><h3>Document structure</h3><p>A short APT document is contained in a single text file. A longer document may be contained in a ordered list of text files. For instance, first text file contains section 1, second text file contains section 2, and so on.</p><dl><dt>Note:</dt><dd>Splitting the APT document in several text files on a section boundary is not mandatory. The split may occur anywhere. However doing so is recommended because a text file containing a section is by itself a valid APT document.</dd></dl><p>A file contains a sequence of paragraphs and ``displays'' (non paragraphs such as tables) separated by open lines.</p><p>A paragraph is simply a sequence of consecutive text lines.</p><div class="source"><pre>  First line of first paragraph.
+  Second line of first paragraph.
+  Third line of first paragraph.
+  
+  Line 1 of paragraph 2 (separated from first paragraph by an open line).
+  Line 2 of paragraph 2.</pre></div><p>The indentation of the first line of a paragraph is the main method used by an APT processor to recognize the type of the paragraph. For example, a section title must not be indented at all.</p><p>A ``plain'' paragraph must be indented by a certain amount of space. For example, a plain paragraph which is not contained in a list may be indented by two spaces.</p><div class="source"><pre>My section title (not indented).
+
+  My paragraph first line (indented by 2 spaces).</pre></div><p>Indentation is not rigid. Any amount of space will do. You don't even need to use a consistent indentation all over your document. What really matters for an APT processor is whether the paragraph is not indented at all or, when inside a list, whether a paragraph is more or less indented than the first item of the list (more about this later).</p><div class="source"><pre>    First paragraph has its first line indented by four
+spaces. Then the author did even bother to indent the
+other lines of the paragraph.
+
+  Second paragraph contains several lines which are all 
+  indented by two spaces. This style is much nicer than 
+  the one used for the previous paragraph.</pre></div><p>Note that tabs are expanded with a tab width set to 8.</p></div><div class="section"><h3>Document elements</h3><div class="section"><h4>Block level elements</h4><div class="section"><h5>Title</h5><p>A title is optional. If used, it must appear as the first block of the document.</p><div class="source"><pre>                                    ------
+                                    Title
+                                    ------
+                                    Author
+                                    ------
+                                     Date</pre></div><p>A title block is indented (centering it is nicer). It begins with a line containing at least 3 dashes (<tt>---</tt>).</p><p>After the first <tt>---</tt> line, one or several consecutive lines of text (implicit line break after each line) specify the title of the document.</p><p>This text may immediately be followed by another <tt>---</tt> line and one or several consecutive lines of text which specifies the author of the document.</p><p>The author sub-block may optionaly be followed by a date sub-block using the same syntax.</p><p>The following example is used for a document with an title and a date but with no declared author.</p><div class="source"><pre>                                    ------
+                                    Title
+                                    ------
+                                    ------
+                                     Date
+                                    ------</pre></div><p>The last line is ignored. It is just there to make the block nicer.</p></div><div class="section"><h5>Paragraph</h5><p>Paragraphs other than the title block may appear before the first section.</p><div class="source"><pre>  Paragraph 1, line 1.
+  Paragraph 1, line 2.
+
+  Paragraph 2, line 1.
+  Paragraph 2, line 2.</pre></div><p>Paragraphs are indented. They have already been described in the <a href="document structure">document structure</a> section.</p></div><div class="section"><h5>Section</h5><p>Sections are created by inserting section titles into the document. Simple documents need not contain sections.</p><div class="source"><pre>Section title
+
+* Sub-section title
+
+** Sub-sub-section title
+
+*** Sub-sub-sub-section title
+
+**** Sub-sub-sub-sub-section title</pre></div><p>Section titles are not indented. A sub-section title begins with one asterisk (<tt>*</tt>), a sub-sub-section title begins with two asterisks (<tt>**</tt>), and so forth up to four sub-section levels.</p></div><div class="section"><h5>List</h5><div class="source"><pre>      * List item 1.
+
+      * List item 2.
+
+        Paragraph contained in list item 2.
+
+            * Sub-list item 1.
+
+            * Sub-list item 2.
+
+      * List item 3.</pre></div><p>List items are indented and begin with a asterisk (<tt>*</tt>). </p><p>Plain paragraphs more indented than the first list item are nested in that list. Displays such as tables (not indented) are always nested in the current list.</p><p>To nest a list inside a list, indent its first item more than its parent list. To end a list, add a paragraph or list item less indented than the current list.</p><p>Section titles always end a list. Displays cannot end a list but the <tt>[]</tt> pseudo-element may be used to force the end of a list.</p><div class="source"><pre>      * List item 3.
+        Force end of list:
+
+      []
+
+--------------------------------------------
+Verbatim text not contained in list item 3
+--------------------------------------------</pre></div><p>In the previous example, without the <tt>[]</tt>, the verbatim text (not indented as all displays) would have been contained in list item 3.</p><p>A single <tt>[]</tt> may be used to end several nested lists at the same time. The indentation of <tt>[]</tt> may be used to specify exactly which lists should be ended. Example:</p><div class="source"><pre>      * List item 1.
+
+      * List item 2.
+
+            * Sub-list item 1.
+
+            * Sub-list item 2.
+
+            []
+
+-------------------------------------------------------------------
+Verbatim text contained in list item 2, but not in sub-list item 2
+-------------------------------------------------------------------</pre></div><p>There are three kind of lists, the bulleted lists we have already described, the numbered lists and the definition lists.</p><div class="source"><pre>      [[1]] Numbered item 1.
+
+                [[A]] Numbered item A.
+
+                [[B]] Numbered item B.
+
+      [[2]] Numbered item 2.</pre></div><p>A numbered list item begins with a label beetween two square brackets. The label of the first item establishes the numbering scheme for the whole list:</p><dl><dt><tt>[[1]]</tt></dt><dd>Decimal numbering: 1, 2, 3, 4, etc.</dd><dt><tt>[[a]]</tt></dt><dd>Lower-alpha numbering: a, b, c, d, etc.</dd><dt><tt>[[A]]</tt></dt><dd>Upper-alpha numbering: A, B, C, D, etc.</dd><dt><tt>[[i]]</tt></dt><dd>Lower-roman numbering: i, ii, iii, iv, etc.</dd><dt><tt>[[I]]</tt></dt><dd>Upper-roman numbering: I, II, III, IV, etc.</dd></dl><p>The labels of the items other than the first one are ignored. It is recommended to take the time to type the correct label for each item in order to keep the APT source document readable.</p><div class="source"><pre>      [Defined term 1] of definition list 2.
+
+      [Defined term 2] of definition list 2.</pre></div><p>A definition list item begins with a defined term: text between square brackets.</p></div><div class="section"><h5>Verbatim text</h5><div class="source"><pre>----------------------------------------
+Verbatim 
+         text,
+                preformatted,
+                                escaped.
+----------------------------------------</pre></div><p>A verbatim block is not indented. It begins with a non indented line containing at least 3 dashes (<tt>---</tt>). It ends with a similar line.</p><p><tt>+--</tt> instead of <tt>---</tt> draws a box around verbatim text.</p><p>Like in HTML, verbatim text is preformatted. Unlike HTML, verbatim text is escaped: inside a verbatim display, markup is not interpreted by the APT processor.</p></div><div class="section"><h5>Figure</h5><div class="source"><pre>[Figure name] Figure caption</pre></div><p>A figure block is not indented. It begins with the figure name between square brackets. The figure name is optionally followed by some text: the figure caption.</p><p>The figure name is the pathname of the file containing the figure but without an extension. Example: if your figure is contained in <tt>/home/joe/docs/mylogo.jpeg</tt>, the figure name is <tt>/home/joe/docs/mylogo</tt>.</p><p>If the figure name comes from a relative pa
 thname (recommended practice) rather than from an absolute pathname, this relative pathname is taken to be relative to the directory of the current APT document (a la HTML) rather than relative to the current working directory.</p><p>Why not leave the file extension in the figure name? This is better explained by an example. You need to convert an APT document to PostScript and your figure name is <tt>/home/joe/docs/mylogo</tt>. A APT processor will first try to load <tt>/home/joe/docs/mylogo.eps</tt>. When the desired format is not found, a APT processor tries to convert one of the existing formats. In our example, the APT processor tries to convert <tt>/home/joe/docs/mylogo.jpeg</tt> to encapsulated PostScript.</p></div><div class="section"><h5>Table</h5><p>A table block is not indented. It begins with a non indented line containing an asterisk and at least 2 dashes (<tt>*--</tt>). It ends with a similar line.</p><p>The first line is not only used to recognize a table but 
 also to specify column justification. In the following example, </p><ul><li>the second asterisk (<tt>*</tt>) is used to specify that column 1 is centered,</li><li>the plus sign (<tt>+</tt>) specifies that column 2 is left aligned, </li><li>the colon (<tt>:</tt>) specifies that column 3 is right aligned.</li></ul><div class="source"><pre>*----------*--------------+----------------:
+| Centered | Left-aligned | Right-aligned  |
+| cell 1,1 | cell 1,2     | cell 1,3       |
+*----------*--------------+----------------:
+| cell 2,1 | cell 2,2     | cell 2,3       |
+*----------*--------------+----------------:
+Table caption</pre></div><p>Rows are separated by a non indented line beginning with <tt>*--</tt>.</p><p>An optional table caption (non indented text) may immediately follow the table.</p><p>Rows may contain single line or multiple line cells. Each line of cell text is separated from the adjacent cell by the pipe character (<tt>|</tt>). (<tt>|</tt> may be used in the cell text if quoted: <tt>\|</tt>.)</p><p>The last <tt>|</tt> is only used to make the table nicer. The first <tt>|</tt> is not only used to make the table nicer, but also to specify that a grid is to be drawn around table cells.</p><p>The following example shows a simple table with no grid and no caption.</p><div class="source"><pre>*-----*------*
+ cell | cell
+*-----*------*
+ cell | cell
+*-----*------*</pre></div></div><div class="section"><h5>Horizontal rule</h5><div class="source"><pre>=====================</pre></div><p>A non indented line containing at least 3 equal signs (<tt>===</tt>).</p></div><div class="section"><h5>Page break</h5><div class="source"><pre>^L</pre></div><p>A non indented line containing a single form feed character (Control-L).</p></div></div><div class="section"><h4>Text level elements</h4><div class="section"><h5>Font</h5><div class="source"><pre>  &lt;Italic&gt; font. &lt;&lt;Bold&gt;&gt; font. &lt;&lt;&lt;Monospaced&gt;&gt;&gt; font.</pre></div><p>Text between &lt; and &gt; must be rendered in italic. Text between &lt;&lt; and &gt;&gt; must be rendered in bold. Text between &lt;&lt;&lt; and &gt;&gt;&gt; must be rendered using a monospaced, typewriter-like font.</p><p>Font elements may appear anywhere except inside other font elements.</p><p>It is not recommended to use font elements inside titles, section titles, links and define
 d terms because a APT processor automatically applies appropriate font styles to these elements.</p></div><div class="section"><h5>Anchor and link</h5><div class="source"><pre>  {Anchor}. Link to {{anchor}}. Link to {{http://www.pixware.fr}}. 
+  Link to {{{anchor}showing alternate text}}.
+  Link to {{{http://www.pixware.fr}Pixware home page}}.</pre></div><p>Text between curly braces (<tt>{}</tt>) specifies an anchor. Text between double curly braces (<tt>{{}}</tt>) specifies a link.</p><p>It is an error to create a link element that does not refer to an anchor of the same name. The name of an anchor/link is its text with all non alphanumeric characters stripped.</p><p>This rule does not apply to links to <i>external</i> anchors. Text beginning with <tt>http:/</tt>, <tt>https:/</tt>, <tt>ftp:/</tt>, <tt>file:/</tt>, <tt>mailto:</tt>, <tt>../</tt>, <tt>./</tt> (<tt>..\</tt> and <tt>.\</tt> on Windows) is recognized as an external anchor name.</p><p>When the construct <b>{{{</b><i>name</i><b>}</b><i>text</i><b>}}</b> is used, the link text <i>text</i> may differ from the link name <i>name</i>.</p><p>Anchor/link elements may appear anywhere except inside other anchor/link elements.</p><p>Section titles are implicitly defined anchors.</p></div><div class="section"
 ><h5>Line break</h5><div class="source"><pre>  Force line\
+  break.</pre></div><p>A backslash character (<tt>\</tt>) followed by a newline character.</p><p>Line breaks must not be used inside titles and tables (which are line oriented blocks with implicit line breaks).</p></div><div class="section"><h5>Non breaking space</h5><div class="source"><pre>  Non\ breaking\ space.</pre></div><p>A backslash character (<tt>\</tt>) followed by a space character.</p></div><div class="section"><h5>Special character</h5><div class="source"><pre>  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \&lt;, \&gt;, \{, \}, \\.</pre></div><p>In certain contexts, these characters have a special meaning and therefore must be escaped if needed as is. They are escaped by adding a backslash in front of them. The backslash may itself be escaped by adding another backslash in front of it.</p><p>Note that an asterisk, for example, needs to be escaped only if its begins a paragraph. (<tt>*</tt> has no special meaning in the middle of a paragraph.)</p><div 
 class="source"><pre>  Copyright symbol: \251, \xA9, \u00a9.</pre></div><p>Latin-1 characters (whatever is the encoding of the APT document) may be specified by their codes using a backslash followed by one to three octal digits or by using the <tt>\x</tt><i>NN</i> notation, where <i>NN</i> are two hexadecimal digits.</p><p>Unicode characters may be specified by their codes using the <tt>\u</tt><i>NNNN</i> notation, where <i>NNNN</i> are four hexadecimal digits.</p></div><div class="section"><h5>Comment</h5><div class="source"><pre>~~Commented out.</pre></div><p>Text found after two tildes (<tt>~~</tt>) is ignored up to the end of line.</p><p>A line of <tt>~</tt> is often used to ``underline'' section titles in order to make them stand out of other paragraphs.</p></div></div></div><div class="section"><h3>The APT format at a glance</h3><div class="source"><pre>                                    ------
+                                    Title
+                                    ------
+                                    Author
+                                    ------
+                                     Date
+
+  Paragraph 1, line 1.
+  Paragraph 1, line 2.
+
+  Paragraph 2, line 1.
+  Paragraph 2, line 2.
+
+Section title
+
+* Sub-section title
+
+** Sub-sub-section title
+
+*** Sub-sub-sub-section title
+
+**** Sub-sub-sub-sub-section title
+
+      * List item 1.
+
+      * List item 2.
+
+        Paragraph contained in list item 2.
+
+            * Sub-list item 1.
+
+            * Sub-list item 2.
+
+      * List item 3.
+        Force end of list:
+
+      []
+
++------------------------------------------+
+Verbatim text not contained in list item 3
++------------------------------------------+
+
+      [[1]] Numbered item 1.
+
+                [[A]] Numbered item A.
+
+                [[B]] Numbered item B.
+
+      [[2]] Numbered item 2.
+
+  List numbering schemes: [[1]], [[a]], [[A]], [[i]], [[I]].
+
+      [Defined term 1] of definition list.
+
+      [Defined term 2] of definition list.
+
++-------------------------------+
+Verbatim text
+                        in a box        
++-------------------------------+
+
+  --- instead of +-- suppresses the box around verbatim text.
+
+[Figure name] Figure caption
+
+*----------*--------------+----------------:
+| Centered | Left-aligned | Right-aligned  |
+| cell 1,1 | cell 1,2     | cell 1,3       |
+*----------*--------------+----------------:
+| cell 2,1 | cell 2,2     | cell 2,3       |
+*----------*--------------+----------------:
+Table caption
+
+  No grid, no caption:
+
+*-----*------*
+ cell | cell
+*-----*------*
+ cell | cell
+*-----*------*
+
+  Horizontal line:
+
+=======================================================================
+
+^L
+  New page.
+
+  &lt;Italic&gt; font. &lt;&lt;Bold&gt;&gt; font. &lt;&lt;&lt;Monospaced&gt;&gt;&gt; font.
+
+  {Anchor}. Link to {{anchor}}. Link to {{http://www.pixware.fr}}. 
+  Link to {{{anchor}showing alternate text}}.
+  Link to {{{http://www.pixware.fr}Pixware home page}}.
+
+  Force line\
+  break.
+
+  Non\ breaking\ space.
+
+  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \&lt;, \&gt;, \{, \}, \\.
+
+  Copyright symbol: \251, \xA9, \u00a9.
+
+~~Commented out.
+</pre></div></div></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/format.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/format.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-base.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-base.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-base.css (added)
+++ geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-base.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,148 @@
+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;
+  text-shadow: #7CFC00;
+}
+.xright, #bannerRight img {
+  float:right;
+  text-shadow: #7CFC00;
+}
+#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;
+  border: 1px solid black;
+  width: 90px;
+  height: 30px;
+}
+#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;
+}

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-base.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-base.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-theme.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-theme.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-theme.css (added)
+++ geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-theme.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,125 @@
+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;
+}

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-theme.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/css/maven-theme.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/geronimo-system-itests/css/print.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/css/print.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/geronimo-system-itests/css/print.css (added)
+++ geronimo/sandbox/itests/web/geronimo-system-itests/css/print.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,7 @@
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {
+	display: none !important;
+}
+#bodyColumn, body.docs div.docs {
+	margin: 0 !important;
+	border: none !important
+}

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/css/print.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/css/print.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/geronimo-system-itests/images/collapsed.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/images/collapsed.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/collapsed.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/geronimo-system-itests/images/expanded.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/images/expanded.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/expanded.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/geronimo-system-itests/images/external.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/images/external.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/external.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/geronimo-system-itests/images/logos/maven-feather.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/images/logos/maven-feather.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/geronimo-system-itests/images/newwindow.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/images/newwindow.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/newwindow.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/geronimo-system-itests/index.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/geronimo-system-itests/index.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/geronimo-system-itests/index.html (added)
+++ geronimo/sandbox/itests/web/geronimo-system-itests/index.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,130 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo :: itests :: system - Welcome to Geronimo :: itests :: system</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=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Geronimo :: itests :: system
+    
+            </span>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          |
+          <a href="">Geronimo :: itests :: system</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Parent Project</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="../../${stage}/index.html">Geronimo Integration Tests</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <strong><a href="index.html">About Geronimo :: itests :: system</a></strong>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Welcome to Geronimo :: itests :: system</h2><p>Core set of system tests. Success of tests here truly indicates the
+    health of the binary. If tests fail here, there is no point in
+    continuing with the others. This module starts the server.</p>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/index.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/geronimo-system-itests/index.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/header.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/header.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/header.html (added)
+++ geronimo/sandbox/itests/web/header.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,139 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo - The Itests Site</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 name="author" content="The Geronimo Team" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="http://geronimo.apache.org/" id="bannerLeft">
+    
+                                    <img src="http://people.apache.org/~hogstrom/website/images/topleft_logo_437x64.gif" alt="" />
+    
+            </a>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Itests 1.0</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="results.html">Test Results</a>
+        </li>
+              
+    <li class="none">
+          <a href="format.html">APT Format</a>
+        </li>
+              
+    <li class="none">
+          <a href="faq.html">FAQ</a>
+        </li>
+              
+    <li class="none">
+          <a href="xdoc.html">Xdoc Example</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="index.html">About Geronimo Integration Tests</a>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Geronimo Integration Tests</h2></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/header.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/header.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/header.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/images/collapsed.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/images/collapsed.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/images/collapsed.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/images/expanded.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/images/expanded.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/images/expanded.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/images/external.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/images/external.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/images/external.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/images/logos/maven-feather.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/images/logos/maven-feather.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/images/newwindow.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/images/newwindow.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/images/newwindow.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/index.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/index.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/index.html (added)
+++ geronimo/sandbox/itests/web/index.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,141 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo - The Site</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 name="author" content="The Maven Team" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="http://geronimo.apache.org/" id="bannerLeft">
+    
+                                    <img src="http://people.apache.org/~hogstrom/website/images/topleft_logo_437x64.gif" alt="" />
+    
+            </a>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Itests 1.0</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="results.html">Test Results</a>
+        </li>
+              
+    <li class="none">
+          <a href="format.html">APT Format</a>
+        </li>
+              
+    <li class="none">
+          <a href="faq.html">FAQ</a>
+        </li>
+              
+    <li class="none">
+          <a href="xdoc.html">Xdoc Example</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <strong><a href="index.html">About Geronimo Integration Tests</a></strong>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Maven Site for your project</h2><p>Congratulations! If you are looking at this page then you have successfully generated a template site employing the site archetype and you have run:</p><div class="source"><pre>
+m2 site:site
+</pre></div></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/index.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/index.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/results.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/results.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/results.html (added)
+++ geronimo/sandbox/itests/web/results.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,149 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo :: itests :: teardown - The Itests Site</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 name="author" content="The Geronimo Team" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Geronimo :: itests :: teardown
+    
+            </span>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          |
+          <a href="">Geronimo :: itests :: teardown</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Parent Project</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="../../${stage}/index.html">Geronimo Integration Tests</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="index.html">About Geronimo :: itests :: teardown</a>
+        </li>
+              
+                
+        <li class="collapsed">
+          <a href="project-info.html">Project Info</a>
+                
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Geronimo Integration Tests</h2><div class="section"><h3>Testbed</h3><table class="bodyTable"><tbody><tr class="a"><td align="center">Geronimo version</td><td align="center">1.1-SNAPSHOT</td></tr><tr class="b"><td align="center">Web Container</td><td align="center">Jetty 5.5.12</td></tr><tr class="a"><td align="center">EJb Container</td><td align="center">OpenEJB 3.0</td></tr></tbody></table></div><div class="section"><h3>Test Results</h3><table class="bodyTable"><tbody><tr class="b"><td align="center"><b>Test Name</b></td><td align="center"><b>Status</b></td></tr><tr class="a"><td align="center">Start Remote Server</td><td align="center"><a href="system-tests/Start Remote Server.log">success</a></td></tr><tr class="b"><td align="center">Deploy Module</td><td align="center"><a href="webcontainer-tests/Deploy Module.log">success</a></td></tr><tr class="a"><td align="center">Start Module</td><td align="center"><a href="webcontainer-tests/Start M
 odule.log">success</a></td></tr><tr class="b"><td align="center">Stop Module</td><td align="center"><a href="webcontainer-tests/Stop Module.log">success</a></td></tr><tr class="a"><td align="center">Undeploy Module</td><td align="center"><a href="webcontainer-tests/Undeploy Module.log">success</a></td></tr><tr class="b"><td align="center">Stop Remote Server</td><td align="center"><a href="teardown-tests/Stop Remote Server.log">success</a></td></tr></tbody></table></div></div>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/results.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/results.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/results.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/results.log
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/results.log?rev=384171&view=auto
==============================================================================
    (empty)

Propchange: geronimo/sandbox/itests/web/results.log
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/teardown-tests/css/maven-base.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/css/maven-base.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/teardown-tests/css/maven-base.css (added)
+++ geronimo/sandbox/itests/web/teardown-tests/css/maven-base.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,148 @@
+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;
+  text-shadow: #7CFC00;
+}
+.xright, #bannerRight img {
+  float:right;
+  text-shadow: #7CFC00;
+}
+#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;
+  border: 1px solid black;
+  width: 90px;
+  height: 30px;
+}
+#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;
+}

Propchange: geronimo/sandbox/itests/web/teardown-tests/css/maven-base.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/teardown-tests/css/maven-base.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/teardown-tests/css/maven-theme.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/css/maven-theme.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/teardown-tests/css/maven-theme.css (added)
+++ geronimo/sandbox/itests/web/teardown-tests/css/maven-theme.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,125 @@
+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;
+}

Propchange: geronimo/sandbox/itests/web/teardown-tests/css/maven-theme.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/teardown-tests/css/maven-theme.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/teardown-tests/css/print.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/css/print.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/teardown-tests/css/print.css (added)
+++ geronimo/sandbox/itests/web/teardown-tests/css/print.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,7 @@
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {
+	display: none !important;
+}
+#bodyColumn, body.docs div.docs {
+	margin: 0 !important;
+	border: none !important
+}

Propchange: geronimo/sandbox/itests/web/teardown-tests/css/print.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/teardown-tests/css/print.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/teardown-tests/images/collapsed.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/images/collapsed.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/collapsed.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/teardown-tests/images/expanded.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/images/expanded.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/expanded.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/teardown-tests/images/external.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/images/external.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/external.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/teardown-tests/images/logos/maven-feather.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/images/logos/maven-feather.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/teardown-tests/images/newwindow.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/images/newwindow.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/newwindow.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/teardown-tests/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/teardown-tests/index.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/teardown-tests/index.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/teardown-tests/index.html (added)
+++ geronimo/sandbox/itests/web/teardown-tests/index.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,130 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo :: itests :: teardown - Welcome to Geronimo :: itests :: teardown</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=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Geronimo :: itests :: teardown
+    
+            </span>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          |
+          <a href="">Geronimo :: itests :: teardown</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Parent Project</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="../../${stage}/index.html">Geronimo Integration Tests</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <strong><a href="index.html">About Geronimo :: itests :: teardown</a></strong>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Welcome to Geronimo :: itests :: teardown</h2><p>Teardown the test setup. This module stops the Geronimo server. As
+    the last module to execute, it updates the site generation of it's
+    parent.</p>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/teardown-tests/index.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/teardown-tests/index.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/webcontainer-tests/Deploy Module.log
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/Deploy%20Module.log?rev=384171&view=auto
==============================================================================
    (empty)

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/Deploy Module.log
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/webcontainer-tests/css/maven-base.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/css/maven-base.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/webcontainer-tests/css/maven-base.css (added)
+++ geronimo/sandbox/itests/web/webcontainer-tests/css/maven-base.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,148 @@
+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;
+  text-shadow: #7CFC00;
+}
+.xright, #bannerRight img {
+  float:right;
+  text-shadow: #7CFC00;
+}
+#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;
+  border: 1px solid black;
+  width: 90px;
+  height: 30px;
+}
+#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;
+}

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/css/maven-base.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/css/maven-base.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/webcontainer-tests/css/maven-theme.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/css/maven-theme.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/webcontainer-tests/css/maven-theme.css (added)
+++ geronimo/sandbox/itests/web/webcontainer-tests/css/maven-theme.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,125 @@
+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;
+}

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/css/maven-theme.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/css/maven-theme.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/webcontainer-tests/css/print.css
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/css/print.css?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/webcontainer-tests/css/print.css (added)
+++ geronimo/sandbox/itests/web/webcontainer-tests/css/print.css Wed Mar  8 02:13:46 2006
@@ -0,0 +1,7 @@
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {
+	display: none !important;
+}
+#bodyColumn, body.docs div.docs {
+	margin: 0 !important;
+	border: none !important
+}

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/css/print.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/css/print.css
------------------------------------------------------------------------------
    svn:executable = *

Added: geronimo/sandbox/itests/web/webcontainer-tests/images/collapsed.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/images/collapsed.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/collapsed.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/webcontainer-tests/images/expanded.gif
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/images/expanded.gif?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/expanded.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: geronimo/sandbox/itests/web/webcontainer-tests/images/external.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/images/external.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/external.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/webcontainer-tests/images/logos/maven-feather.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/images/logos/maven-feather.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/webcontainer-tests/images/newwindow.png
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/images/newwindow.png?rev=384171&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/newwindow.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: geronimo/sandbox/itests/web/webcontainer-tests/index.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/webcontainer-tests/index.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/webcontainer-tests/index.html (added)
+++ geronimo/sandbox/itests/web/webcontainer-tests/index.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,130 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo::itests::webcontainer - Welcome to Geronimo::itests::webcontainer</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=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                    <span id="bannerLeft">
+    
+            Geronimo::itests::webcontainer
+    
+            </span>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          |
+          <a href="">Geronimo::itests::webcontainer</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Parent Project</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="../../${stage}/index.html">Geronimo Integration Tests</a>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <strong><a href="index.html">About Geronimo::itests::webcontainer</a></strong>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Welcome to Geronimo::itests::webcontainer</h2><p>Tests for the webcontainer. Non critical tests throw a
+    MojoFailureException and continue with the tests. Critical tests
+    throw a MojoExceutionException and stop the tests.</p>
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/index.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/webcontainer-tests/index.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/web/xdoc.html
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/web/xdoc.html?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/web/xdoc.html (added)
+++ geronimo/sandbox/itests/web/xdoc.html Wed Mar  8 02:13:46 2006
@@ -0,0 +1,150 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+<html>
+  <head>
+    <title>Geronimo - 
+    Welcome</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 name="author" content="
+    The Maven Team" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+      </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="http://geronimo.apache.org/" id="bannerLeft">
+    
+                                    <img src="http://people.apache.org/~hogstrom/website/images/topleft_logo_437x64.gif" alt="" />
+    
+            </a>
+                          <span id="bannerRight">
+    
+                                    <img src="http://geronimo.apache.org/images/geronimo-logo.png" alt="" />
+    
+            </span>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+            <div class="xleft">
+        Last Published: 02/24/2006
+                      </div>
+            <div class="xright">      <a href="http://www.apache.org/">Apache</a>
+          |
+          <a href="http://geronimo.apache.org/">Geronimo</a>
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+               <h5>Itests 1.0</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="results.html">Test Results</a>
+        </li>
+              
+    <li class="none">
+          <a href="format.html">APT Format</a>
+        </li>
+              
+    <li class="none">
+          <a href="faq.html">FAQ</a>
+        </li>
+              
+    <li class="none">
+          <strong><a href="xdoc.html">Xdoc Example</a></strong>
+        </li>
+          </ul>
+      <h5>Project Documentation</h5>
+    <ul>
+              
+    <li class="none">
+          <a href="index.html">About Geronimo Integration Tests</a>
+        </li>
+          </ul>
+                                       <a href="http://maven.apache.org/" title="Built by Maven" id="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>Welcome to an XDOC file!</h2>
+      <p>
+        This is some text for the xdoc file.
+      </p>
+    </div>
+  
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2006
+    
+          Geronimo
+          
+  
+
+  
+    
+  
+  
+  </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Propchange: geronimo/sandbox/itests/web/xdoc.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/itests/web/xdoc.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: geronimo/sandbox/itests/webcontainer-tests/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/sandbox/itests/webcontainer-tests/pom.xml?rev=384171&view=auto
==============================================================================
--- geronimo/sandbox/itests/webcontainer-tests/pom.xml (added)
+++ geronimo/sandbox/itests/webcontainer-tests/pom.xml Wed Mar  8 02:13:46 2006
@@ -0,0 +1,51 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.geronimo.itests</groupId>
+    <artifactId>geronimo-itests-parent</artifactId>
+    <version>1.0</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>webcontainer-tests</artifactId>
+  <version>1.0</version>
+  <name>Geronimo :: itests :: webcontainer</name>
+  <description>
+    Tests for the webcontainer. Non critical tests throw a
+    MojoFailureException and continue with the tests. Critical tests
+    throw a MojoExceutionException and stop the tests.
+  </description>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>geronimo-deployment-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>distribute</goal>
+              <goal>start</goal>
+              <goal>stop</goal>
+              <goal>undeploy</goal>
+            </goals>
+            <configuration>
+              <failOnError>false</failOnError>
+              <outputDirectory>
+                ${project.build.directory}/logs
+              </outputDirectory>
+              <resultsLog>${resultsLog}</resultsLog>
+              <id>geronimo/jsp-examples-jetty/1.0-SNAPSHOT/car</id>
+              <module>
+                ${basedir}/src/test/resources/jsp-examples-jetty.war
+              </module>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>