[CVS spice] Typo fix: TSL --> TLS

sjoberg-yCVjj/[email protected] 20 Oct 2005 15:07:24 -0000
Newsgroups gmane.comp.java.spice.cvs
Message-ID <[email protected]>
<html>
<head>
<style><!--
  body {background-color:#ffffff;}
  .file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
  .pathname {font-family:monospace; float:right;}
  .fileheader {margin-bottom:.5em;}
  .diff {margin:0;}
  .tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
  .tasklist ul {margin-top:0;margin-bottom:0;}
  tr.alt {background-color:#eeeeee}
  #added {background-color:#ddffdd;}
  #addedchars {background-color:#99ff99;font-weight:bolder;}
  tr.alt #added {background-color:#ccf7cc;}
  #removed {background-color:#ffdddd;}
  #removedchars {background-color:#ff9999;font-weight:bolder;}
  tr.alt #removed {background-color:#f7cccc;}
  #info {color:#888888;}
  #context {background-color:#eeeeee;}
  td {padding-left:.3em;padding-right:.3em;}
  tr.head {border-bottom-width:1px;border-bottom-style:solid;}
  tr.head td {padding:0;padding-top:.2em;}
  .task {background-color:#ffff00;}
  .comment {padding:4px;border:1px dashed #000000;background-color:#ffffdd}
  .error {color:red;}
  hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="4">Commit in <b><tt>spice/components/jervlet/src</tt></b><span id="info"> on MAIN</span></td></tr>
<tr><td><tt>java/org/codehaus/spice/jervlet/containers/jetty/pico/<a href="#file1">GroovyJettyContainerBuilder.java</a></tt></td><td align="right" id="added">+22</td><td align="right" id="removed">-7</td><td nowrap="nowrap" align="center">1.2 -&gt; 1.3</td></tr>
<tr class="alt"><td><tt>java/org/codehaus/spice/jervlet/containers/jetty/<a href="#file2">JettyServer.java</a></tt></td><td align="right" id="added">+2</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">1.4 -&gt; 1.5</td></tr>
<tr><td><tt>java/org/codehaus/spice/jervlet/<a href="#file3">Listener.java</a></tt></td><td align="right" id="added">+2</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">1.2 -&gt; 1.3</td></tr>
<tr class="alt"><td><tt>test/org/codehaus/spice/jervlet/containers/jetty/pico/PicoJettyContainerTestCase.java</tt></td><td colspan="2" align="center"><small id="info">[empty]</small></td><td nowrap="nowrap" align="center">1.6 -&gt; 1.7</td></tr>
<tr><td><tt>test/org/codehaus/spice/jervlet/containers/jetty/ShieldingJettyContainerTestCase.java</tt></td><td colspan="2" align="center"><small id="info">[empty]</small></td><td nowrap="nowrap" align="center">1.4 -&gt; 1.5</td></tr>
<tr><td></td><td align="right" id="added">+26</td><td align="right" id="removed">-11</td><td></td></tr>
</table>
<small id="info">5 modified files</small><br />
<pre class="comment">
Typo fix: TSL --&gt; TLS
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">spice/components/jervlet/src/java/org/codehaus/spice/jervlet/containers/jetty/pico<br /></span>
<div class="fileheader"><big><b>GroovyJettyContainerBuilder.java</b></big> <small id="info">1.2 -&gt; 1.3</small></div>
<pre class="diff"><small id="info">diff -u -r1.2 -r1.3
--- GroovyJettyContainerBuilder.java	19 Oct 2005 19:03:22 -0000	1.2
+++ GroovyJettyContainerBuilder.java	20 Oct 2005 15:07:24 -0000	1.3
@@ -145,11 +145,11 @@
</small></pre><pre class="diff" id="context">      * &lt;br/&gt;&lt;br/&gt;
      * Possible commands are:
      * &lt;ul&gt;
</pre><pre class="diff" id="removed">-     *  &lt;li&gt;picoJettyContainer&lt;/li&gt;
-     *  &lt;li&gt;configuration&lt;/li&gt;
-     *  &lt;li&gt;parameter&lt;/li&gt;
-     *  &lt;li&gt;listener&lt;/li&gt;
-     *  &lt;li&gt;context&lt;/li&gt;
</pre><pre class="diff" id="added">+     *  &lt;li&gt;picoJettyContainer - create a PicoJettyContainer&lt;/li&gt;
+     *  &lt;li&gt;configuration - create a configuration (Jetty's own format)&lt;/li&gt;
+     *  &lt;li&gt;parameter - add a parameter to Jetty&lt;/li&gt;
+     *  &lt;li&gt;listener - create a listener&lt;/li&gt;
+     *  &lt;li&gt;context - create a context&lt;/li&gt;
</pre><pre class="diff" id="context">      * &lt;/ul&gt;
      *
      * @param object the command
</pre><pre class="diff"><small id="info">@@ -177,6 +177,21 @@
</small></pre><pre class="diff" id="context">             {
                 return getListener( map );
             }
</pre><pre class="diff" id="added">+            else if( "httpListener".equals( command ) )
+            {
+                map.put( "type", "http" );
+                return getListener( map );
+            }
+            else if( "ajp13Listener".equals( command ) )
+            {
+                map.put( "type", "ajp13" );
+                return getListener( map );
+            }
+            else if( "tlsListener".equals( command ) )
+            {
+                map.put( "type", "tls" );
+                return getListener( map );
+            }
</pre><pre class="diff" id="context">             else if( "context".equals( command ) )
             {
                 return getContext( map );
</pre><pre class="diff"><small id="info">@@ -298,9 +313,9 @@
</small></pre><pre class="diff" id="context">         {
             type = Listener.HTTP;
         }
</pre><pre class="diff" id="removed">-        else if( typeString.equalsIgnoreCase( "t<span id="removedchars">sl</span>") || typeString.equalsIgnoreCase( "ssl" ) )
</pre><pre class="diff" id="added">+        else if( typeString.equalsIgnoreCase( "t<span id="addedchars">ls</span>") || typeString.equalsIgnoreCase( "ssl" ) )
</pre><pre class="diff" id="context">         {
</pre><pre class="diff" id="removed">-            type = Listener.T<span id="removedchars">SL</span>;
</pre><pre class="diff" id="added">+            type = Listener.T<span id="addedchars">LS</span>;
</pre><pre class="diff" id="context">         }
         else if( typeString.equalsIgnoreCase( "ajp13" ) )
         {
</pre></div>
<hr /><a name="file2" /><div class="file">
<span class="pathname">spice/components/jervlet/src/java/org/codehaus/spice/jervlet/containers/jetty<br /></span>
<div class="fileheader"><big><b>JettyServer.java</b></big> <small id="info">1.4 -&gt; 1.5</small></div>
<pre class="diff"><small id="info">diff -u -r1.4 -r1.5
--- JettyServer.java	19 Oct 2005 15:02:34 -0000	1.4
+++ JettyServer.java	20 Oct 2005 15:07:24 -0000	1.5
@@ -259,7 +259,7 @@
</small></pre><pre class="diff" id="context">         {
             case Listener.AJP13: return new AJP13Listener();
             case Listener.HTTP: return new SocketListener();
</pre><pre class="diff" id="removed">-            case Listener.T<span id="removedchars">SL</span>: return new SunJsseListener();
</pre><pre class="diff" id="added">+            case Listener.T<span id="addedchars">LS</span>: return new SunJsseListener();
</pre><pre class="diff" id="context">             default:
                 throw new IllegalArgumentException( "Unknown listener type: "
                   + listener.getType() );
</pre><pre class="diff"><small id="info">@@ -453,7 +453,7 @@
</small></pre><pre class="diff" id="context">         }
         else if( httpListener instanceof SunJsseListener )
         {
</pre><pre class="diff" id="removed">-            type = Listener.T<span id="removedchars">SL</span>;
</pre><pre class="diff" id="added">+            type = Listener.T<span id="addedchars">LS</span>;
</pre><pre class="diff" id="context">         }
         else if( httpListener instanceof SocketListener )
         {
</pre></div>
<hr /><a name="file3" /><div class="file">
<span class="pathname">spice/components/jervlet/src/java/org/codehaus/spice/jervlet<br /></span>
<div class="fileheader"><big><b>Listener.java</b></big> <small id="info">1.2 -&gt; 1.3</small></div>
<pre class="diff"><small id="info">diff -u -r1.2 -r1.3
--- Listener.java	5 Jul 2005 18:37:42 -0000	1.2
+++ Listener.java	20 Oct 2005 15:07:24 -0000	1.3
@@ -23,8 +23,8 @@
</small></pre><pre class="diff" id="context">     /** HTTP listener */
     static final int HTTP = 1;
 
</pre><pre class="diff" id="removed">-    /** SSL and TSL listener */
-    static final int TSL = 2;
</pre><pre class="diff" id="added">+    /** SSL and TLS listener */
+    static final int TLS = 2;
</pre><pre class="diff" id="context"> 
     /** AJP 1.3 listener */
     static final int AJP13 = 3;
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.8</small></center>
</body></html>