You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/03/19 22:07:36 UTC

svn commit: r855119 [11/11] - in /websites/production/commons/content/proper/commons-logging: ./ apidocs/ apidocs/org/apache/commons/logging/ apidocs/org/apache/commons/logging/class-use/ apidocs/org/apache/commons/logging/impl/ apidocs/org/apache/comm...

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/SecurityForbiddenTestCase.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/SecurityForbiddenTestCase.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/SecurityForbiddenTestCase.html Tue Mar 19 21:07:31 2013
@@ -86,7 +86,7 @@
 <a class="jxr_linenumber" name="76" href="#76">76</a>          <em class="jxr_comment">// save security manager so it can be restored in tearDown</em>
 <a class="jxr_linenumber" name="77" href="#77">77</a>          oldSecMgr = System.getSecurityManager();
 <a class="jxr_linenumber" name="78" href="#78">78</a>      }
-<a class="jxr_linenumber" name="79" href="#79">79</a>      
+<a class="jxr_linenumber" name="79" href="#79">79</a>  
 <a class="jxr_linenumber" name="80" href="#80">80</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> tearDown() {
 <a class="jxr_linenumber" name="81" href="#81">81</a>          <em class="jxr_comment">// Restore, so other tests don't get stuffed up if a test</em>
 <a class="jxr_linenumber" name="82" href="#82">82</a>          <em class="jxr_comment">// sets a custom security manager.</em>
@@ -95,7 +95,7 @@
 <a class="jxr_linenumber" name="85" href="#85">85</a>  
 <a class="jxr_linenumber" name="86" href="#86">86</a>      <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     * Test what happens when JCL is run with absolutely no security</em>
-<a class="jxr_linenumber" name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     * priveleges at all, including reading system properties. Everything</em>
+<a class="jxr_linenumber" name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     * privileges at all, including reading system properties. Everything</em>
 <a class="jxr_linenumber" name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     * should fall back to the built-in defaults.</em>
 <a class="jxr_linenumber" name="90" href="#90">90</a>  <em class="jxr_javadoccomment">     */</em>
 <a class="jxr_linenumber" name="91" href="#91">91</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testAllForbidden() {
@@ -103,44 +103,45 @@
 <a class="jxr_linenumber" name="93" href="#93">93</a>                  LogFactory.HASHTABLE_IMPLEMENTATION_PROPERTY,
 <a class="jxr_linenumber" name="94" href="#94">94</a>                  CustomHashtable.<strong class="jxr_keyword">class</strong>.getName());
 <a class="jxr_linenumber" name="95" href="#95">95</a>          <a href="../../../../../org/apache/commons/logging/security/MockSecurityManager.html">MockSecurityManager</a> mySecurityManager = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/logging/security/MockSecurityManager.html">MockSecurityManager</a>();
-<a class="jxr_linenumber" name="96" href="#96">96</a>          System.setSecurityManager(mySecurityManager);
-<a class="jxr_linenumber" name="97" href="#97">97</a>  
-<a class="jxr_linenumber" name="98" href="#98">98</a>          <strong class="jxr_keyword">try</strong> {
-<a class="jxr_linenumber" name="99" href="#99">99</a>              <em class="jxr_comment">// Use reflection so that we can control exactly when the static</em>
-<a class="jxr_linenumber" name="100" href="#100">100</a>             <em class="jxr_comment">// initialiser for the LogFactory class is executed.</em>
-<a class="jxr_linenumber" name="101" href="#101">101</a>             Class c = <strong class="jxr_keyword">this</strong>.getClass().getClassLoader().loadClass(
-<a class="jxr_linenumber" name="102" href="#102">102</a>                     <span class="jxr_string">"org.apache.commons.logging.LogFactory"</span>);
-<a class="jxr_linenumber" name="103" href="#103">103</a>             Method m = c.getMethod(<span class="jxr_string">"getLog"</span>, <strong class="jxr_keyword">new</strong> Class[] {Class.<strong class="jxr_keyword">class</strong>});
-<a class="jxr_linenumber" name="104" href="#104">104</a>             Log log = (Log) m.invoke(<strong class="jxr_keyword">null</strong>, <strong class="jxr_keyword">new</strong> Object[] {<strong class="jxr_keyword">this</strong>.getClass()});
-<a class="jxr_linenumber" name="105" href="#105">105</a>             log.info(<span class="jxr_string">"testing"</span>);
-<a class="jxr_linenumber" name="106" href="#106">106</a>             
-<a class="jxr_linenumber" name="107" href="#107">107</a>             <em class="jxr_comment">// check that the default map implementation was loaded, as JCL was</em>
-<a class="jxr_linenumber" name="108" href="#108">108</a>             <em class="jxr_comment">// forbidden from reading the HASHTABLE_IMPLEMENTATION_PROPERTY property.</em>
-<a class="jxr_linenumber" name="109" href="#109">109</a>             <em class="jxr_comment">//</em>
-<a class="jxr_linenumber" name="110" href="#110">110</a>             <em class="jxr_comment">// The default is either the java Hashtable class (java &lt; 1.2) or the</em>
-<a class="jxr_linenumber" name="111" href="#111">111</a>             <em class="jxr_comment">// JCL WeakHashtable (java &gt;= 1.3).</em>
-<a class="jxr_linenumber" name="112" href="#112">112</a>             System.setSecurityManager(oldSecMgr);
-<a class="jxr_linenumber" name="113" href="#113">113</a>             Field factoryField = c.getDeclaredField(<span class="jxr_string">"factories"</span>);
-<a class="jxr_linenumber" name="114" href="#114">114</a>             factoryField.setAccessible(<strong class="jxr_keyword">true</strong>);
-<a class="jxr_linenumber" name="115" href="#115">115</a>             Object factoryTable = factoryField.get(<strong class="jxr_keyword">null</strong>); 
-<a class="jxr_linenumber" name="116" href="#116">116</a>             assertNotNull(factoryTable);
-<a class="jxr_linenumber" name="117" href="#117">117</a>             String ftClassName = factoryTable.getClass().getName();
-<a class="jxr_linenumber" name="118" href="#118">118</a>             assertTrue(<span class="jxr_string">"Custom hashtable unexpectedly used"</span>, 
-<a class="jxr_linenumber" name="119" href="#119">119</a>                     !CustomHashtable.<strong class="jxr_keyword">class</strong>.getName().equals(ftClassName));
-<a class="jxr_linenumber" name="120" href="#120">120</a> 
-<a class="jxr_linenumber" name="121" href="#121">121</a>             assertEquals(0, mySecurityManager.getUntrustedCodeCount());
-<a class="jxr_linenumber" name="122" href="#122">122</a>         } <strong class="jxr_keyword">catch</strong>(Throwable t) {
-<a class="jxr_linenumber" name="123" href="#123">123</a>             <em class="jxr_comment">// Restore original security manager so output can be generated; the</em>
-<a class="jxr_linenumber" name="124" href="#124">124</a>             <em class="jxr_comment">// PrintWriter constructor tries to read the line.separator</em>
-<a class="jxr_linenumber" name="125" href="#125">125</a>             <em class="jxr_comment">// system property.</em>
-<a class="jxr_linenumber" name="126" href="#126">126</a>             System.setSecurityManager(oldSecMgr);
-<a class="jxr_linenumber" name="127" href="#127">127</a>             StringWriter sw = <strong class="jxr_keyword">new</strong> StringWriter();
-<a class="jxr_linenumber" name="128" href="#128">128</a>             PrintWriter pw = <strong class="jxr_keyword">new</strong> PrintWriter(sw);
-<a class="jxr_linenumber" name="129" href="#129">129</a>             t.printStackTrace(pw);
-<a class="jxr_linenumber" name="130" href="#130">130</a>             fail(<span class="jxr_string">"Unexpected exception:"</span> + t.getMessage() + <span class="jxr_string">":"</span> + sw.toString());
-<a class="jxr_linenumber" name="131" href="#131">131</a>         }
-<a class="jxr_linenumber" name="132" href="#132">132</a>     }
-<a class="jxr_linenumber" name="133" href="#133">133</a> }
+<a class="jxr_linenumber" name="96" href="#96">96</a>  
+<a class="jxr_linenumber" name="97" href="#97">97</a>          System.setSecurityManager(mySecurityManager);
+<a class="jxr_linenumber" name="98" href="#98">98</a>  
+<a class="jxr_linenumber" name="99" href="#99">99</a>          <strong class="jxr_keyword">try</strong> {
+<a class="jxr_linenumber" name="100" href="#100">100</a>             <em class="jxr_comment">// Use reflection so that we can control exactly when the static</em>
+<a class="jxr_linenumber" name="101" href="#101">101</a>             <em class="jxr_comment">// initialiser for the LogFactory class is executed.</em>
+<a class="jxr_linenumber" name="102" href="#102">102</a>             Class c = <strong class="jxr_keyword">this</strong>.getClass().getClassLoader().loadClass(
+<a class="jxr_linenumber" name="103" href="#103">103</a>                     <span class="jxr_string">"org.apache.commons.logging.LogFactory"</span>);
+<a class="jxr_linenumber" name="104" href="#104">104</a>             Method m = c.getMethod(<span class="jxr_string">"getLog"</span>, <strong class="jxr_keyword">new</strong> Class[] {Class.<strong class="jxr_keyword">class</strong>});
+<a class="jxr_linenumber" name="105" href="#105">105</a>             Log log = (Log) m.invoke(<strong class="jxr_keyword">null</strong>, <strong class="jxr_keyword">new</strong> Object[] {<strong class="jxr_keyword">this</strong>.getClass()});
+<a class="jxr_linenumber" name="106" href="#106">106</a>             log.info(<span class="jxr_string">"testing"</span>);
+<a class="jxr_linenumber" name="107" href="#107">107</a> 
+<a class="jxr_linenumber" name="108" href="#108">108</a>             <em class="jxr_comment">// check that the default map implementation was loaded, as JCL was</em>
+<a class="jxr_linenumber" name="109" href="#109">109</a>             <em class="jxr_comment">// forbidden from reading the HASHTABLE_IMPLEMENTATION_PROPERTY property.</em>
+<a class="jxr_linenumber" name="110" href="#110">110</a>             <em class="jxr_comment">//</em>
+<a class="jxr_linenumber" name="111" href="#111">111</a>             <em class="jxr_comment">// The default is either the java Hashtable class (java &lt; 1.2) or the</em>
+<a class="jxr_linenumber" name="112" href="#112">112</a>             <em class="jxr_comment">// JCL WeakHashtable (java &gt;= 1.3).</em>
+<a class="jxr_linenumber" name="113" href="#113">113</a>             System.setSecurityManager(oldSecMgr);
+<a class="jxr_linenumber" name="114" href="#114">114</a>             Field factoryField = c.getDeclaredField(<span class="jxr_string">"factories"</span>);
+<a class="jxr_linenumber" name="115" href="#115">115</a>             factoryField.setAccessible(<strong class="jxr_keyword">true</strong>);
+<a class="jxr_linenumber" name="116" href="#116">116</a>             Object factoryTable = factoryField.get(<strong class="jxr_keyword">null</strong>);
+<a class="jxr_linenumber" name="117" href="#117">117</a>             assertNotNull(factoryTable);
+<a class="jxr_linenumber" name="118" href="#118">118</a>             String ftClassName = factoryTable.getClass().getName();
+<a class="jxr_linenumber" name="119" href="#119">119</a>             assertTrue(<span class="jxr_string">"Custom hashtable unexpectedly used"</span>,
+<a class="jxr_linenumber" name="120" href="#120">120</a>                     !CustomHashtable.<strong class="jxr_keyword">class</strong>.getName().equals(ftClassName));
+<a class="jxr_linenumber" name="121" href="#121">121</a> 
+<a class="jxr_linenumber" name="122" href="#122">122</a>             assertEquals(0, mySecurityManager.getUntrustedCodeCount());
+<a class="jxr_linenumber" name="123" href="#123">123</a>         } <strong class="jxr_keyword">catch</strong>(Throwable t) {
+<a class="jxr_linenumber" name="124" href="#124">124</a>             <em class="jxr_comment">// Restore original security manager so output can be generated; the</em>
+<a class="jxr_linenumber" name="125" href="#125">125</a>             <em class="jxr_comment">// PrintWriter constructor tries to read the line.separator</em>
+<a class="jxr_linenumber" name="126" href="#126">126</a>             <em class="jxr_comment">// system property.</em>
+<a class="jxr_linenumber" name="127" href="#127">127</a>             System.setSecurityManager(oldSecMgr);
+<a class="jxr_linenumber" name="128" href="#128">128</a>             StringWriter sw = <strong class="jxr_keyword">new</strong> StringWriter();
+<a class="jxr_linenumber" name="129" href="#129">129</a>             PrintWriter pw = <strong class="jxr_keyword">new</strong> PrintWriter(sw);
+<a class="jxr_linenumber" name="130" href="#130">130</a>             t.printStackTrace(pw);
+<a class="jxr_linenumber" name="131" href="#131">131</a>             fail(<span class="jxr_string">"Unexpected exception:"</span> + t.getMessage() + <span class="jxr_string">":"</span> + sw.toString());
+<a class="jxr_linenumber" name="132" href="#132">132</a>         }
+<a class="jxr_linenumber" name="133" href="#133">133</a>     }
+<a class="jxr_linenumber" name="134" href="#134">134</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.security</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.security</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/security/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.security</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.security</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/servlet/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/servlet/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/servlet/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.servlet</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.servlet</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/servlet/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/servlet/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/servlet/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.servlet</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.servlet</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/simple/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/simple/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/simple/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.simple</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.simple</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/simple/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/simple/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/simple/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.simple</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.simple</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/custom/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/custom/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/custom/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl.custom</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl.custom</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/custom/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/custom/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/custom/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl.custom</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl.custom</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/log/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/log/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/log/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl.log</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl.log</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/log/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/log/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/log/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl.log</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl.log</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/logfactory/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/logfactory/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/logfactory/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl.logfactory</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl.logfactory</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/logfactory/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/logfactory/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/logfactory/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl.logfactory</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl.logfactory</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/org/apache/commons/logging/tccl/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.tccl</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.tccl</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/overview-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/overview-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/overview-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference</title>
+		<title>Commons Logging 1.1.2 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref-test/overview-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref-test/overview-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref-test/overview-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference</title>
+		<title>Commons Logging 1.1.2 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -24,7 +24,7 @@
 	        </ul>
       	</div>
 		
-		      	<h2>Commons Logging 1.1.2-SNAPSHOT Reference</h2>
+		      	<h2>Commons Logging 1.1.2 Reference</h2>
 
 		<table class="summary">
         	<thead>

Modified: websites/production/commons/content/proper/commons-logging/xref/index.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/index.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/index.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference</title>
+		<title>Commons Logging 1.1.2 Reference</title>
 	</head>
     <frameset cols="20%,80%">
 		<frameset rows="30%,70%">

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/Log.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/Log.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/Log.html Tue Mar 19 21:07:31 2013
@@ -64,7 +64,7 @@
 <a class="jxr_linenumber" name="54" href="#54">54</a>  <em class="jxr_javadoccomment"> * external to the Logging APIs, through whatever mechanism is supported by</em>
 <a class="jxr_linenumber" name="55" href="#55">55</a>  <em class="jxr_javadoccomment"> * that system.</em>
 <a class="jxr_linenumber" name="56" href="#56">56</a>  <em class="jxr_javadoccomment"> *</em>
-<a class="jxr_linenumber" name="57" href="#57">57</a>  <em class="jxr_javadoccomment"> * @version $Id: Log.java 1432690 2013-01-13 18:22:20Z tn $</em>
+<a class="jxr_linenumber" name="57" href="#57">57</a>  <em class="jxr_javadoccomment"> * @version $Id: Log.java 1432663 2013-01-13 17:24:18Z tn $</em>
 <a class="jxr_linenumber" name="58" href="#58">58</a>  <em class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="59" href="#59">59</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../org/apache/commons/logging/Log.html">Log</a> {
 <a class="jxr_linenumber" name="60" href="#60">60</a>  

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/LogConfigurationException.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/LogConfigurationException.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/LogConfigurationException.html Tue Mar 19 21:07:31 2013
@@ -32,7 +32,7 @@
 <a class="jxr_linenumber" name="22" href="#22">22</a>  <em class="jxr_javadoccomment"> * or &lt;code&gt;Log&lt;/code&gt; instance cannot be created by the corresponding</em>
 <a class="jxr_linenumber" name="23" href="#23">23</a>  <em class="jxr_javadoccomment"> * factory methods.</em>
 <a class="jxr_linenumber" name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> *</em>
-<a class="jxr_linenumber" name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> * @version $Id: LogConfigurationException.java 1432690 2013-01-13 18:22:20Z tn $</em>
+<a class="jxr_linenumber" name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> * @version $Id: LogConfigurationException.java 1432663 2013-01-13 17:24:18Z tn $</em>
 <a class="jxr_linenumber" name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="27" href="#27">27</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/commons/logging/LogConfigurationException.html">LogConfigurationException</a> <strong class="jxr_keyword">extends</strong> RuntimeException {
 <a class="jxr_linenumber" name="28" href="#28">28</a>  

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/LogSource.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/LogSource.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/LogSource.html Tue Mar 19 21:07:31 2013
@@ -60,7 +60,7 @@
 <a class="jxr_linenumber" name="50" href="#50">50</a>  <em class="jxr_javadoccomment"> * @deprecated Use {@link LogFactory} instead - The default factory</em>
 <a class="jxr_linenumber" name="51" href="#51">51</a>  <em class="jxr_javadoccomment"> *  implementation performs exactly the same algorithm as this class did</em>
 <a class="jxr_linenumber" name="52" href="#52">52</a>  <em class="jxr_javadoccomment"> *</em>
-<a class="jxr_linenumber" name="53" href="#53">53</a>  <em class="jxr_javadoccomment"> * @version $Id: LogSource.java 1432690 2013-01-13 18:22:20Z tn $</em>
+<a class="jxr_linenumber" name="53" href="#53">53</a>  <em class="jxr_javadoccomment"> * @version $Id: LogSource.java 1432675 2013-01-13 17:53:30Z tn $</em>
 <a class="jxr_linenumber" name="54" href="#54">54</a>  <em class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="55" href="#55">55</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/commons/logging/LogSource.html">LogSource</a> {
 <a class="jxr_linenumber" name="56" href="#56">56</a>  

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/Jdk13LumberjackLogger.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/Jdk13LumberjackLogger.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/Jdk13LumberjackLogger.html Tue Mar 19 21:07:31 2013
@@ -42,7 +42,7 @@
 <a class="jxr_linenumber" name="32" href="#32">32</a>  <em class="jxr_javadoccomment"> * interface that wraps the standard JDK logging mechanisms that are</em>
 <a class="jxr_linenumber" name="33" href="#33">33</a>  <em class="jxr_javadoccomment"> * available in SourceForge's Lumberjack for JDKs prior to 1.4.</em>
 <a class="jxr_linenumber" name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> *</em>
-<a class="jxr_linenumber" name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * @version $Id: Jdk13LumberjackLogger.java 1432690 2013-01-13 18:22:20Z tn $</em>
+<a class="jxr_linenumber" name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * @version $Id: Jdk13LumberjackLogger.java 1432663 2013-01-13 17:24:18Z tn $</em>
 <a class="jxr_linenumber" name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * @since 1.1</em>
 <a class="jxr_linenumber" name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="38" href="#38">38</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/logging/impl/Jdk13LumberjackLogger.html">Jdk13LumberjackLogger</a> <strong class="jxr_keyword">implements</strong> Log, Serializable {

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/NoOpLog.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/NoOpLog.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/NoOpLog.html Tue Mar 19 21:07:31 2013
@@ -34,7 +34,7 @@
 <a class="jxr_linenumber" name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> * Trivial implementation of Log that throws away all messages.  No</em>
 <a class="jxr_linenumber" name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> * configurable system properties are supported.</em>
 <a class="jxr_linenumber" name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> *</em>
-<a class="jxr_linenumber" name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * @version $Id: NoOpLog.java 1432690 2013-01-13 18:22:20Z tn $</em>
+<a class="jxr_linenumber" name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * @version $Id: NoOpLog.java 1432663 2013-01-13 17:24:18Z tn $</em>
 <a class="jxr_linenumber" name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="29" href="#29">29</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/logging/impl/NoOpLog.html">NoOpLog</a> <strong class="jxr_keyword">implements</strong> Log, Serializable {
 <a class="jxr_linenumber" name="30" href="#30">30</a>  

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/ServletContextCleaner.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/ServletContextCleaner.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/ServletContextCleaner.html Tue Mar 19 21:07:31 2013
@@ -54,7 +54,7 @@
 <a class="jxr_linenumber" name="44" href="#44">44</a>  <em class="jxr_javadoccomment"> * every accessible LogFactory class that the entry in its map for the</em>
 <a class="jxr_linenumber" name="45" href="#45">45</a>  <em class="jxr_javadoccomment"> * current webapp's context classloader should be cleared.</em>
 <a class="jxr_linenumber" name="46" href="#46">46</a>  <em class="jxr_javadoccomment"> *</em>
-<a class="jxr_linenumber" name="47" href="#47">47</a>  <em class="jxr_javadoccomment"> * @version $Id: ServletContextCleaner.java 1432690 2013-01-13 18:22:20Z tn $</em>
+<a class="jxr_linenumber" name="47" href="#47">47</a>  <em class="jxr_javadoccomment"> * @version $Id: ServletContextCleaner.java 1432580 2013-01-13 10:41:05Z tn $</em>
 <a class="jxr_linenumber" name="48" href="#48">48</a>  <em class="jxr_javadoccomment"> * @since 1.1</em>
 <a class="jxr_linenumber" name="49" href="#49">49</a>  <em class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="50" href="#50">50</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/logging/impl/ServletContextCleaner.html">ServletContextCleaner</a> <strong class="jxr_keyword">implements</strong> ServletContextListener {

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.impl</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.impl</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/impl/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging.impl</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging.impl</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/package-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging</title>
 		<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/org/apache/commons/logging/package-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference Package org.apache.commons.logging</title>
+		<title>Commons Logging 1.1.2 Reference Package org.apache.commons.logging</title>
 		<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref/overview-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/overview-frame.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/overview-frame.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference</title>
+		<title>Commons Logging 1.1.2 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-logging/xref/overview-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-logging/xref/overview-summary.html (original)
+++ websites/production/commons/content/proper/commons-logging/xref/overview-summary.html Tue Mar 19 21:07:31 2013
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Commons Logging 1.1.2-SNAPSHOT Reference</title>
+		<title>Commons Logging 1.1.2 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -24,7 +24,7 @@
 	        </ul>
       	</div>
 		
-		      	<h2>Commons Logging 1.1.2-SNAPSHOT Reference</h2>
+		      	<h2>Commons Logging 1.1.2 Reference</h2>
 
 		<table class="summary">
         	<thead>