Modified:
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/src-html/org/apache/fulcrum/parser/ParameterParserTest.html
==============================================================================
---
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/src-html/org/apache/fulcrum/parser/ParameterParserTest.html
(original)
+++
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/src-html/org/apache/fulcrum/parser/ParameterParserTest.html
Thu Oct 3 10:37:43 2013
@@ -29,100 +29,109 @@
<FONT color="green">026</FONT> import
org.apache.commons.fileupload.FileItem;<a name="line.26"></a>
<FONT color="green">027</FONT> import
org.apache.commons.fileupload.FileItemFactory;<a name="line.27"></a>
<FONT color="green">028</FONT> import
org.apache.commons.fileupload.disk.DiskFileItemFactory;<a name="line.28"></a>
-<FONT color="green">029</FONT> import
org.apache.fulcrum.testcontainer.BaseUnitTest;<a name="line.29"></a>
-<FONT color="green">030</FONT> /**<a name="line.30"></a>
-<FONT color="green">031</FONT> * Basic test that ParameterParser
instantiates.<a name="line.31"></a>
-<FONT color="green">032</FONT> *<a name="line.32"></a>
-<FONT color="green">033</FONT> * @author <a
href="[email protected]">Eric Pugh</a><a
name="line.33"></a>
-<FONT color="green">034</FONT> * @version $Id: ParameterParserTest.java
645892 2008-04-08 13:04:40Z tv $<a name="line.34"></a>
-<FONT color="green">035</FONT> */<a name="line.35"></a>
-<FONT color="green">036</FONT> public class ParameterParserTest extends
BaseUnitTest<a name="line.36"></a>
-<FONT color="green">037</FONT> {<a name="line.37"></a>
-<FONT color="green">038</FONT> private ParameterParser parameterParser
= null;<a name="line.38"></a>
-<FONT color="green">039</FONT> <a name="line.39"></a>
-<FONT color="green">040</FONT> private ParserService parserService;<a
name="line.40"></a>
-<FONT color="green">041</FONT> <a name="line.41"></a>
-<FONT color="green">042</FONT> /**<a name="line.42"></a>
-<FONT color="green">043</FONT> * Defines the testcase name for
JUnit.<a name="line.43"></a>
-<FONT color="green">044</FONT> *<a name="line.44"></a>
-<FONT color="green">045</FONT> * @param name the testcase's name.<a
name="line.45"></a>
-<FONT color="green">046</FONT> */<a name="line.46"></a>
-<FONT color="green">047</FONT> public ParameterParserTest(String
name)<a name="line.47"></a>
-<FONT color="green">048</FONT> {<a name="line.48"></a>
-<FONT color="green">049</FONT> super(name);<a name="line.49"></a>
-<FONT color="green">050</FONT> }<a name="line.50"></a>
-<FONT color="green">051</FONT> <a name="line.51"></a>
-<FONT color="green">052</FONT> protected void setUp() throws
Exception<a name="line.52"></a>
-<FONT color="green">053</FONT> {<a name="line.53"></a>
-<FONT color="green">054</FONT> super.setUp();<a name="line.54"></a>
-<FONT color="green">055</FONT> try<a name="line.55"></a>
-<FONT color="green">056</FONT> {<a name="line.56"></a>
-<FONT color="green">057</FONT> parserService =
(ParserService)this.lookup(ParserService.ROLE);<a name="line.57"></a>
-<FONT color="green">058</FONT> parameterParser =
(ParameterParser) parserService.getParser(DefaultParameterParser.class);<a
name="line.58"></a>
-<FONT color="green">059</FONT> }<a name="line.59"></a>
-<FONT color="green">060</FONT> catch (ComponentException e)<a
name="line.60"></a>
-<FONT color="green">061</FONT> {<a name="line.61"></a>
-<FONT color="green">062</FONT> e.printStackTrace();<a
name="line.62"></a>
-<FONT color="green">063</FONT> fail(e.getMessage());<a
name="line.63"></a>
-<FONT color="green">064</FONT> }<a name="line.64"></a>
-<FONT color="green">065</FONT> }<a name="line.65"></a>
-<FONT color="green">066</FONT> <a name="line.66"></a>
-<FONT color="green">067</FONT> public void
testConfiguredUrlCaseFolding() throws Exception<a name="line.67"></a>
-<FONT color="green">068</FONT> {<a name="line.68"></a>
-<FONT color="green">069</FONT>
assertTrue(parameterParser.getUrlFolding() ==
ParserService.URL_CASE_FOLDING_NONE);<a name="line.69"></a>
-<FONT color="green">070</FONT> }<a name="line.70"></a>
-<FONT color="green">071</FONT> <a name="line.71"></a>
-<FONT color="green">072</FONT> /**<a name="line.72"></a>
-<FONT color="green">073</FONT> * Simple test to verify that URL Case
Folding works properly<a name="line.73"></a>
-<FONT color="green">074</FONT> *<a name="line.74"></a>
-<FONT color="green">075</FONT> * @throws Exception<a
name="line.75"></a>
-<FONT color="green">076</FONT> */<a name="line.76"></a>
-<FONT color="green">077</FONT> public void testRepositoryExists()
throws Exception<a name="line.77"></a>
-<FONT color="green">078</FONT> {<a name="line.78"></a>
-<FONT color="green">079</FONT>
assertEquals("TRIMMED_and_Not_Modified",parameterParser.convertAndTrim("
TRIMMED_and_Not_Modified ", ParserService.URL_CASE_FOLDING_NONE));<a
name="line.79"></a>
-<FONT color="green">080</FONT>
assertEquals("trimmed_and_lower_case",parameterParser.convertAndTrim("
TRIMMED_and_Lower_Case ", ParserService.URL_CASE_FOLDING_LOWER));<a
name="line.80"></a>
-<FONT color="green">081</FONT>
assertEquals("TRIMMED_AND_UPPER_CASE",parameterParser.convertAndTrim("
TRIMMED_and_Upper_Case ", ParserService.URL_CASE_FOLDING_UPPER));<a
name="line.81"></a>
-<FONT color="green">082</FONT> }<a name="line.82"></a>
-<FONT color="green">083</FONT> <a name="line.83"></a>
-<FONT color="green">084</FONT> /**<a name="line.84"></a>
-<FONT color="green">085</FONT> * This Test method checks the
DefaultParameterParser which carries two Sets inside it.<a name="line.85"></a>
-<FONT color="green">086</FONT> * The suggested problem was that
pp.keySet() returns both Keys, but pp.getStrings("key")<a name="line.86"></a>
-<FONT color="green">087</FONT> * only checks for keys which are not
FileItems.<a name="line.87"></a>
-<FONT color="green">088</FONT> *<a name="line.88"></a>
-<FONT color="green">089</FONT> * @throws Exception<a
name="line.89"></a>
-<FONT color="green">090</FONT> */<a name="line.90"></a>
-<FONT color="green">091</FONT> public void testAddPathInfo() throws
Exception<a name="line.91"></a>
-<FONT color="green">092</FONT> {<a name="line.92"></a>
-<FONT color="green">093</FONT> FileItemFactory factory = new
DiskFileItemFactory(10240, null);<a name="line.93"></a>
-<FONT color="green">094</FONT> <a name="line.94"></a>
-<FONT color="green">095</FONT> assertEquals("keySet() is not
empty!", 0, parameterParser.keySet().size());<a name="line.95"></a>
-<FONT color="green">096</FONT> <a name="line.96"></a>
-<FONT color="green">097</FONT> FileItem test =
factory.createItem("upload-field", "application/octet-stream", false, null);<a
name="line.97"></a>
-<FONT color="green">098</FONT> // Push this into the parser using
DefaultParameterParser's add() method.<a name="line.98"></a>
-<FONT color="green">099</FONT> ((DefaultParameterParser)
parameterParser).add("upload-field", test);<a name="line.99"></a>
-<FONT color="green">100</FONT> <a name="line.100"></a>
-<FONT color="green">101</FONT> assertEquals("FileItem not found in
keySet()!", 1, parameterParser.keySet().size());<a name="line.101"></a>
-<FONT color="green">102</FONT> <a name="line.102"></a>
-<FONT color="green">103</FONT> Iterator it =
parameterParser.keySet().iterator();<a name="line.103"></a>
-<FONT color="green">104</FONT> assertTrue(it.hasNext());<a
name="line.104"></a>
+<FONT color="green">029</FONT> import
org.apache.fulcrum.parser.ValueParser.URLCaseFolding;<a name="line.29"></a>
+<FONT color="green">030</FONT> import
org.apache.fulcrum.testcontainer.BaseUnitTest;<a name="line.30"></a>
+<FONT color="green">031</FONT> /**<a name="line.31"></a>
+<FONT color="green">032</FONT> * Basic test that ParameterParser
instantiates.<a name="line.32"></a>
+<FONT color="green">033</FONT> *<a name="line.33"></a>
+<FONT color="green">034</FONT> * @author <a
href="[email protected]">Eric Pugh</a><a
name="line.34"></a>
+<FONT color="green">035</FONT> * @version $Id: ParameterParserTest.java
1528777 2013-10-03 10:14:42Z tv $<a name="line.35"></a>
+<FONT color="green">036</FONT> */<a name="line.36"></a>
+<FONT color="green">037</FONT> public class ParameterParserTest extends
BaseUnitTest<a name="line.37"></a>
+<FONT color="green">038</FONT> {<a name="line.38"></a>
+<FONT color="green">039</FONT> private ParameterParser parameterParser
= null;<a name="line.39"></a>
+<FONT color="green">040</FONT> <a name="line.40"></a>
+<FONT color="green">041</FONT> private ParserService parserService;<a
name="line.41"></a>
+<FONT color="green">042</FONT> <a name="line.42"></a>
+<FONT color="green">043</FONT> /**<a name="line.43"></a>
+<FONT color="green">044</FONT> * Defines the testcase name for
JUnit.<a name="line.44"></a>
+<FONT color="green">045</FONT> *<a name="line.45"></a>
+<FONT color="green">046</FONT> * @param name the testcase's name.<a
name="line.46"></a>
+<FONT color="green">047</FONT> */<a name="line.47"></a>
+<FONT color="green">048</FONT> public ParameterParserTest(String
name)<a name="line.48"></a>
+<FONT color="green">049</FONT> {<a name="line.49"></a>
+<FONT color="green">050</FONT> super(name);<a name="line.50"></a>
+<FONT color="green">051</FONT> }<a name="line.51"></a>
+<FONT color="green">052</FONT> <a name="line.52"></a>
+<FONT color="green">053</FONT> protected void setUp() throws
Exception<a name="line.53"></a>
+<FONT color="green">054</FONT> {<a name="line.54"></a>
+<FONT color="green">055</FONT> super.setUp();<a name="line.55"></a>
+<FONT color="green">056</FONT> try<a name="line.56"></a>
+<FONT color="green">057</FONT> {<a name="line.57"></a>
+<FONT color="green">058</FONT> parserService =
(ParserService)this.lookup(ParserService.ROLE);<a name="line.58"></a>
+<FONT color="green">059</FONT> parameterParser =
parserService.getParser(DefaultParameterParser.class);<a name="line.59"></a>
+<FONT color="green">060</FONT> }<a name="line.60"></a>
+<FONT color="green">061</FONT> catch (ComponentException e)<a
name="line.61"></a>
+<FONT color="green">062</FONT> {<a name="line.62"></a>
+<FONT color="green">063</FONT> e.printStackTrace();<a
name="line.63"></a>
+<FONT color="green">064</FONT> fail(e.getMessage());<a
name="line.64"></a>
+<FONT color="green">065</FONT> }<a name="line.65"></a>
+<FONT color="green">066</FONT> }<a name="line.66"></a>
+<FONT color="green">067</FONT> <a name="line.67"></a>
+<FONT color="green">068</FONT> public void
testConfiguredUrlCaseFolding() throws Exception<a name="line.68"></a>
+<FONT color="green">069</FONT> {<a name="line.69"></a>
+<FONT color="green">070</FONT>
assertTrue(parameterParser.getUrlFolding() == URLCaseFolding.NONE);<a
name="line.70"></a>
+<FONT color="green">071</FONT> }<a name="line.71"></a>
+<FONT color="green">072</FONT> <a name="line.72"></a>
+<FONT color="green">073</FONT> public void
testConfiguredAutomaticUpload() throws Exception {<a name="line.73"></a>
+<FONT color="green">074</FONT>
assertTrue(parserService.getAutomaticUpload());<a name="line.74"></a>
+<FONT color="green">075</FONT> }<a name="line.75"></a>
+<FONT color="green">076</FONT> <a name="line.76"></a>
+<FONT color="green">077</FONT> public void
testConfiguredParameterEncoding() throws Exception {<a name="line.77"></a>
+<FONT color="green">078</FONT> assertEquals("utf-8",
parserService.getParameterEncoding());<a name="line.78"></a>
+<FONT color="green">079</FONT> }<a name="line.79"></a>
+<FONT color="green">080</FONT> <a name="line.80"></a>
+<FONT color="green">081</FONT> /**<a name="line.81"></a>
+<FONT color="green">082</FONT> * Simple test to verify that URL Case
Folding works properly<a name="line.82"></a>
+<FONT color="green">083</FONT> *<a name="line.83"></a>
+<FONT color="green">084</FONT> * @throws Exception<a
name="line.84"></a>
+<FONT color="green">085</FONT> */<a name="line.85"></a>
+<FONT color="green">086</FONT> public void testRepositoryExists()
throws Exception<a name="line.86"></a>
+<FONT color="green">087</FONT> {<a name="line.87"></a>
+<FONT color="green">088</FONT>
assertEquals("TRIMMED_and_Not_Modified",parameterParser.convertAndTrim("
TRIMMED_and_Not_Modified ", URLCaseFolding.NONE));<a name="line.88"></a>
+<FONT color="green">089</FONT>
assertEquals("trimmed_and_lower_case",parameterParser.convertAndTrim("
TRIMMED_and_Lower_Case ", URLCaseFolding.LOWER));<a name="line.89"></a>
+<FONT color="green">090</FONT>
assertEquals("TRIMMED_AND_UPPER_CASE",parameterParser.convertAndTrim("
TRIMMED_and_Upper_Case ", URLCaseFolding.UPPER));<a name="line.90"></a>
+<FONT color="green">091</FONT> }<a name="line.91"></a>
+<FONT color="green">092</FONT> <a name="line.92"></a>
+<FONT color="green">093</FONT> /**<a name="line.93"></a>
+<FONT color="green">094</FONT> * This Test method checks the
DefaultParameterParser which carries two Sets inside it.<a name="line.94"></a>
+<FONT color="green">095</FONT> * The suggested problem was that
pp.keySet() returns both Keys, but pp.getStrings("key")<a name="line.95"></a>
+<FONT color="green">096</FONT> * only checks for keys which are not
FileItems.<a name="line.96"></a>
+<FONT color="green">097</FONT> *<a name="line.97"></a>
+<FONT color="green">098</FONT> * @throws Exception<a
name="line.98"></a>
+<FONT color="green">099</FONT> */<a name="line.99"></a>
+<FONT color="green">100</FONT> public void testAddPathInfo() throws
Exception<a name="line.100"></a>
+<FONT color="green">101</FONT> {<a name="line.101"></a>
+<FONT color="green">102</FONT> FileItemFactory factory = new
DiskFileItemFactory(10240, null);<a name="line.102"></a>
+<FONT color="green">103</FONT> <a name="line.103"></a>
+<FONT color="green">104</FONT> assertEquals("keySet() is not
empty!", 0, parameterParser.keySet().size());<a name="line.104"></a>
<FONT color="green">105</FONT> <a name="line.105"></a>
-<FONT color="green">106</FONT> String name = (String) it.next();<a
name="line.106"></a>
-<FONT color="green">107</FONT> assertEquals("Wrong name found",
"upload-field", name);<a name="line.107"></a>
-<FONT color="green">108</FONT> <a name="line.108"></a>
-<FONT color="green">109</FONT> assertFalse(it.hasNext());<a
name="line.109"></a>
-<FONT color="green">110</FONT> <a name="line.110"></a>
-<FONT color="green">111</FONT> parameterParser.add("other-field",
"foo");<a name="line.111"></a>
-<FONT color="green">112</FONT> <a name="line.112"></a>
-<FONT color="green">113</FONT> assertEquals("Wrong number of fields
found ", 2, parameterParser.getKeys().length);<a name="line.113"></a>
+<FONT color="green">106</FONT> FileItem test =
factory.createItem("upload-field", "application/octet-stream", false, null);<a
name="line.106"></a>
+<FONT color="green">107</FONT> // Push this into the parser using
DefaultParameterParser's add() method.<a name="line.107"></a>
+<FONT color="green">108</FONT> ((DefaultParameterParser)
parameterParser).add("upload-field", test);<a name="line.108"></a>
+<FONT color="green">109</FONT> <a name="line.109"></a>
+<FONT color="green">110</FONT> assertEquals("FileItem not found in
keySet()!", 1, parameterParser.keySet().size());<a name="line.110"></a>
+<FONT color="green">111</FONT> <a name="line.111"></a>
+<FONT color="green">112</FONT> Iterator<String> it =
parameterParser.keySet().iterator();<a name="line.112"></a>
+<FONT color="green">113</FONT> assertTrue(it.hasNext());<a
name="line.113"></a>
<FONT color="green">114</FONT> <a name="line.114"></a>
-<FONT color="green">115</FONT>
assertTrue(parameterParser.containsKey("upload-field"));<a name="line.115"></a>
-<FONT color="green">116</FONT>
assertTrue(parameterParser.containsKey("other-field"));<a name="line.116"></a>
+<FONT color="green">115</FONT> String name = it.next();<a
name="line.115"></a>
+<FONT color="green">116</FONT> assertEquals("Wrong name found",
"upload-field", name);<a name="line.116"></a>
<FONT color="green">117</FONT> <a name="line.117"></a>
-<FONT color="green">118</FONT> // The following will actually cause
a ClassCastException because getStrings() (and others) are not catering for
FileItems.<a name="line.118"></a>
-<FONT color="green">119</FONT> assertNull("The returned should be
null because a FileItem is not a String",
parameterParser.getStrings("upload-field"));<a name="line.119"></a>
-<FONT color="green">120</FONT>
assertFalse(parameterParser.containsKey("missing-field"));<a
name="line.120"></a>
-<FONT color="green">121</FONT> }<a name="line.121"></a>
-<FONT color="green">122</FONT> }<a name="line.122"></a>
+<FONT color="green">118</FONT> assertFalse(it.hasNext());<a
name="line.118"></a>
+<FONT color="green">119</FONT> <a name="line.119"></a>
+<FONT color="green">120</FONT> parameterParser.add("other-field",
"foo");<a name="line.120"></a>
+<FONT color="green">121</FONT> <a name="line.121"></a>
+<FONT color="green">122</FONT> assertEquals("Wrong number of fields
found ", 2, parameterParser.getKeys().length);<a name="line.122"></a>
+<FONT color="green">123</FONT> <a name="line.123"></a>
+<FONT color="green">124</FONT>
assertTrue(parameterParser.containsKey("upload-field"));<a name="line.124"></a>
+<FONT color="green">125</FONT>
assertTrue(parameterParser.containsKey("other-field"));<a name="line.125"></a>
+<FONT color="green">126</FONT> <a name="line.126"></a>
+<FONT color="green">127</FONT> // The following will actually cause
a ClassCastException because getStrings() (and others) are not catering for
FileItems.<a name="line.127"></a>
+<FONT color="green">128</FONT> assertNull("The returned should be
null because a FileItem is not a String",
parameterParser.getStrings("upload-field"));<a name="line.128"></a>
+<FONT color="green">129</FONT>
assertFalse(parameterParser.containsKey("missing-field"));<a
name="line.129"></a>
+<FONT color="green">130</FONT> }<a name="line.130"></a>
+<FONT color="green">131</FONT> }<a name="line.131"></a>
@@ -185,4 +194,4 @@
</PRE>
</BODY>
-</HTML>
+</HTML>
\ No newline at end of file
Modified:
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/src-html/org/apache/fulcrum/parser/PropertyBean.html
==============================================================================
---
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/src-html/org/apache/fulcrum/parser/PropertyBean.html
(original)
+++
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/src-html/org/apache/fulcrum/parser/PropertyBean.html
Thu Oct 3 10:37:43 2013
@@ -206,4 +206,4 @@
</PRE>
</BODY>
-</HTML>
+</HTML>
\ No newline at end of file
Modified:
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/stylesheet.css
==============================================================================
---
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/stylesheet.css
(original)
+++
websites/production/turbine/content/fulcrum/fulcrum-parser/testapidocs/stylesheet.css
Thu Oct 3 10:37:43 2013
@@ -3,27 +3,26 @@
/* Define colors, fonts and other style attributes here to override the
defaults */
/* Page background color */
-body { background-color: #FFFFFF }
+body { background-color: #FFFFFF; color:#000000 }
/* Headings */
h1 { font-size: 145% }
/* Table colors */
-.TableHeadingColor { background: #CCCCFF } /* Dark mauve */
-.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */
-.TableRowColor { background: #FFFFFF } /* White */
+.TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */
+.TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */
+.TableRowColor { background: #FFFFFF; color:#000000 } /* White */
/* Font used in left-hand frame lists */
-.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif
}
-.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif
}
-.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif
}
+.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial,
sans-serif; color:#000000 }
+.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial,
sans-serif; color:#000000 }
+.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial,
sans-serif; color:#000000 }
/* Navigation bar fonts and colors */
-.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */
-.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */
-.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;}
-.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
-
-.NavBarCell2 { font-family: Arial, Helvetica, sans-serif;
background-color:#FFFFFF;}
-.NavBarCell3 { font-family: Arial, Helvetica, sans-serif;
background-color:#FFFFFF;}
+.NavBarCell1 { background-color:#EEEEFF; color:#000000} /* Light mauve */
+.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */
+.NavBarFont1 { font-family: Arial, Helvetica, sans-serif;
color:#000000;color:#000000;}
+.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif;
color:#FFFFFF;color:#FFFFFF;}
+.NavBarCell2 { font-family: Arial, Helvetica, sans-serif;
background-color:#FFFFFF; color:#000000}
+.NavBarCell3 { font-family: Arial, Helvetica, sans-serif;
background-color:#FFFFFF; color:#000000}
Modified:
websites/production/turbine/content/fulcrum/fulcrum-parser/xref-test/allclasses-frame.html
==============================================================================
---
websites/production/turbine/content/fulcrum/fulcrum-parser/xref-test/allclasses-frame.html
(original)
+++
websites/production/turbine/content/fulcrum/fulcrum-parser/xref-test/allclasses-frame.html
Thu Oct 3 10:37:43 2013
@@ -1,26 +1,26 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
-<html xml:lang="en" lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1" />
- <title>All Classes</title>
- <link rel="stylesheet" type="text/css" href="stylesheet.css"
title="style" />
- </head>
- <body>
-
- <h3>All Classes</h3>
-
- <ul>
- <li>
- <a
href="org/apache/fulcrum/parser/BaseValueParserTest.html"
target="classFrame">BaseValueParserTest</a>
- </li>
- <li>
- <a
href="org/apache/fulcrum/parser/ParameterParserTest.html"
target="classFrame">ParameterParserTest</a>
- </li>
- <li>
- <a
href="org/apache/fulcrum/parser/PropertyBean.html"
target="classFrame">PropertyBean</a>
- </li>
- </ul>
-
- </body>
- </html>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
+ <title>All Classes</title>
+ <link rel="stylesheet" type="text/css" href="stylesheet.css"
title="style" />
+ </head>
+ <body>
+
+ <h3>All Classes</h3>
+
+ <ul>
+ <li>
+ <a
href="org/apache/fulcrum/parser/BaseValueParserTest.html"
target="classFrame">BaseValueParserTest</a>
+ </li>
+ <li>
+ <a
href="org/apache/fulcrum/parser/ParameterParserTest.html"
target="classFrame">ParameterParserTest</a>
+ </li>
+ <li>
+ <a
href="org/apache/fulcrum/parser/PropertyBean.html"
target="classFrame">PropertyBean</a>
+ </li>
+ </ul>
+
+ </body>
+ </html>
\ No newline at end of file
Modified:
websites/production/turbine/content/fulcrum/fulcrum-parser/xref-test/index.html
==============================================================================
---
websites/production/turbine/content/fulcrum/fulcrum-parser/xref-test/index.html
(original)
+++
websites/production/turbine/content/fulcrum/fulcrum-parser/xref-test/index.html
Thu Oct 3 10:37:43 2013
@@ -1,24 +1,23 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"DTD/xhtml1-frameset.dtd">
-<html xml:lang="en" lang="en">
- <head>
- <meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1" />
- <title>Fulcrum Parser 1.0.2 Reference</title>
- </head>
- <frameset cols="20%,80%">
- <frameset rows="30%,70%">
- <frame src="overview-frame.html"
name="packageListFrame" />
- <frame src="allclasses-frame.html" name="packageFrame"
/>
- </frameset>
- <frame src="overview-summary.html" name="classFrame" />
- <noframes>
- <body>
- <h1>Frame Alert</h1>
- <p>
- You don't have frames. Go <a
href="overview-summary.html">here</a>
- </p>
- </body>
- </noframes>
- </frameset>
-</html>
-
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
+<html xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
+ <title>Fulcrum Parser Service 1.0.3-SNAPSHOT Reference</title>
+ </head>
+ <frameset cols="20%,80%">
+ <frameset rows="30%,70%">
+ <frame src="overview-frame.html"
name="packageListFrame" />
+ <frame src="allclasses-frame.html" name="packageFrame"
/>
+ </frameset>
+ <frame src="overview-summary.html" name="classFrame" />
+ <noframes>
+ <body>
+ <h1>Frame Alert</h1>
+ <p>
+ You don't have frames. Go <a
href="overview-summary.html">here</a>
+ </p>
+ </body>
+ </noframes>
+ </frameset>
+</html>