<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel">
    <title>gmane.comp.jakarta.tomcat.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131012"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131011"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131010"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131009"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131008"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131007"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131006"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131005"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131004"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131003"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131002"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131001"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131000"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130999"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130998"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130997"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130996"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130995"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130994"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130993"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131012">
    <title>Re: Automatic deployment changes</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131012</link>
    <description>&lt;pre&gt;2013/5/7 Mark Thomas &amp;lt;markt&amp;lt; at &amp;gt;apache.org&amp;gt;:


Finally trying to find some time to review this...

1) Is there an intent to put [4] into some version-controlled place?
E.g. webapps/docs/architecture/ ?

Or essentials of it will be included as part of config/context.html ?
I see some rows from the tables are copied as comments into
TestHostConfigAutomaticDeployment.java

2) A pair of typos:

s/ content.xml / [appname].xml / (or at least context.xml)
s/ Redploy / Redeploy /

3) It is possible to deploy a context by specifying it in server.xml.

I think such a context can be a allowed to reload, but it would be bad
to autoredeploy it (one should place such webapp outside of appbase).
What happens with it if ${catalina.base}/conf/context.xml is touched?

As far as I remember from my testing with Tomcat 7, if context that
was defined in server.xml fails to start, the whole Tomcat fails to
start (a Lifecycle exception from starting a child is propagated up
though the call chain).

4) I am a bit missing a legend for th&lt;/pre&gt;</description>
    <dc:creator>Konstantin Kolinko</dc:creator>
    <dc:date>2013-05-21T22:42:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131011">
    <title>Re: svn commit: r1484923 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131011</link>
    <description>&lt;pre&gt;2013/5/22  &amp;lt;markt&amp;lt; at &amp;gt;apache.org&amp;gt;:

2. Why if(originalDocBase == null) check was removed?



1. This change in 6.0 needs to go through voting
2. There is a bug in the above line,
"docBase" should not be there.
(Though it never executes, as antiLockingDocBase was created as
file.getAbsolutePath(),)
It will allow to simplify this block a bit.

3. Wouldn't it be more simple to have the new field as a File instead of String?
While "docBase" is a String, per API,  this field represents a proper file.

The rest of the change is OK.

(It changes the way how "originalDocBase" field is handled, but I
would say that it is OK. The new behaviour makes more sense. Regarding
lifecycleEvent() method, now it goes as:

a) BEFORE_START_EVENT -&amp;gt; beforeStart()
 -&amp;gt; call antiLocking() -&amp;gt; save docBase into originalDocBase field

b) START_EVENT -&amp;gt; (...)

c) AFTER_START_EVENT -&amp;gt; restore docBase

Thus there was OK to remove that "restoring" code from STOP_EVENT block.
)



Best regards,
Konstantin Kolinko
&lt;/pre&gt;</description>
    <dc:creator>Konstantin Kolinko</dc:creator>
    <dc:date>2013-05-21T22:10:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131010">
    <title>buildbot success in ASF Buildbot on tomcat-trunk</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131010</link>
    <description>&lt;pre&gt;The Buildbot has detected a restored build on builder tomcat-trunk while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/tomcat-trunk/builds/4356

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm_ubuntu

Build Reason: scheduler
Build Source Stamp: [branch tomcat/trunk] 1484959
Blamelist: markt

Build succeeded!

sincerely,
 -The Buildbot



&lt;/pre&gt;</description>
    <dc:creator>buildbot&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T21:52:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131009">
    <title>svn commit: r1484959 - /tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131009</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 21:08:25 2013
New Revision: 1484959

URL: http://svn.apache.org/r1484959
Log:
Fix test failures when the file timestamp hadn't moved far enough for the OS to report it as changed.

Modified:
    tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java

Modified: tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java?rev=1484959&amp;amp;r1=1484958&amp;amp;r2=1484959&amp;amp;view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java (original)
+++ tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java Tue May 21 21:08:25 2013
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1111,34 +1111,35 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; public class TestHostConfigAutomaticDepl
         tomcat.start();
         host.backgroundProcess();
 
-        // Change the specified &lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T21:08:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131008">
    <title>[Bug 53605] use tcnative-1.1.24 Tomcat shutdown still crash</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131008</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=53605

--- Comment #2 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
Is this reproducible?

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:19:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131007">
    <title>[Bug 54984] multipart/form-data is not always read with correct encoding</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131007</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54984

--- Comment #1 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
Can you post a simple test-case as a WAR (including source) to reproduce this?

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:15:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131006">
    <title>[Bug 51813] Tomcat randomly crashes with [libtcnative-1.so.1+0x152ca]  Java_org_apache_tomcat_jni_Socket_sendbb+0x5a</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131006</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=51813

--- Comment #6 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
(Note the above example patch is against tcnative/1.1.x branch)

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:13:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131005">
    <title>[Bug 51813] Tomcat randomly crashes with [libtcnative-1.so.1+0x152ca]  Java_org_apache_tomcat_jni_Socket_sendbb+0x5a</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131005</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=51813

--- Comment #5 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
I think this ought to do it (though I'm sure there are other places in tcnative
that could afford to have this same kind of checking):


Index: native/src/network.c
===================================================================
--- native/src/network.c    (revision 1484904)
+++ native/src/network.c    (working copy)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -587,6 +587,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
         tcn_ThrowAPRException(e, APR_ENOTSOCK);
         return -(jint)APR_ENOTSOCK;
     }
+    if(!s-&amp;gt;net) {
+      tcn_ThrowAPRException(e, APR_EINVALSOCK);
+      return -(jint)APR_EINVALSOCK;
+    }
     TCN_ASSERT(s-&amp;gt;opaque != NULL);
     TCN_ASSERT(s-&amp;gt;jsbbuff != NULL);
 #ifdef TCN_DO_STATISTICS

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:12:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131004">
    <title>[Bug 51813] Tomcat randomly crashes with [libtcnative-1.so.1+0x152ca]  Java_org_apache_tomcat_jni_Socket_sendbb+0x5a</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131004</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=51813

--- Comment #4 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
We have another bite:
http://markmail.org/message/f5idaje4a4vg7vkd

Updated versions of everything, but the symptom is the same: ImageIO bug + APR
+ sendbb() + si_addr=0x0000000000000040

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:12:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131003">
    <title>[Bug 54983] C  [tcnative-1.dll+0x52f0]  Java_org_apache_tomcat_jni_Socket_send+0xa0</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131003</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54983

--- Comment #3 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
(In reply to comment #2)

Erp, probably not, after reading the dump.

Apologies for the noise.

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:11:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131002">
    <title>[Bug 54983] C  [tcnative-1.dll+0x52f0]  Java_org_apache_tomcat_jni_Socket_send+0xa0</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131002</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54983

Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #30287|application/octet-stream    |text/plain
          mime type|                            |

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:10:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131001">
    <title>[Bug 54983] C  [tcnative-1.dll+0x52f0]  Java_org_apache_tomcat_jni_Socket_send+0xa0</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131001</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54983

--- Comment #2 from Christopher Schultz &amp;lt;chris&amp;lt; at &amp;gt;christopherschultz.net&amp;gt; ---
Possible dupe of bug #51813?

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:09:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131000">
    <title>svn commit: r1484924 - in /tomcat/tc6.0.x/trunk: ./ webapps/docs/changelog.xml</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/131000</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 20:02:41 2013
New Revision: 1484924

URL: http://svn.apache.org/r1484924
Log:
Make deletion of the copied WARs used for anti-resource locking more robust if the context fails to start (there were some circumstances where the original WAR could get deleted).
(missed in previous commit)

Modified:
    tomcat/tc6.0.x/trunk/   (props changed)
    tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc6.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1484862
  Merged /tomcat/tc7.0.x/trunk:r1484919

Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=1484924&amp;amp;r1=1484923&amp;amp;r2=1484924&amp;amp;view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Tue May 21 20:02:41 2013
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -43,6 &lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:02:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130999">
    <title>svn commit: r1484923 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130999</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 20:01:02 2013
New Revision: 1484923

URL: http://svn.apache.org/r1484923
Log:
Make deletion of the copied WARs used for anti-resource locking more robust if the context fails to start (there were some circumstances where the original WAR could get deleted).

Modified:
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java

Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java?rev=1484923&amp;amp;r1=1484922&amp;amp;r2=1484923&amp;amp;view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java (original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java Tue May 21 20:01:02 2013
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -127,6 +127,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; public class ContextConfig
     
 
     /**
+     * Anti-locking docBase
+     */
+    private String antiLockingDocBase &lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T20:01:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130998">
    <title>[Bug 54999] JSESSIONIDSSO not re-created upon re-authentication on the same request - logout() and login(username,password)</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130998</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54999

Keith Mashinter &amp;lt;kmashint&amp;lt; at &amp;gt;yahoo.com&amp;gt; changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|JSESSIONIDSSO not           |JSESSIONIDSSO not
                   |re-created upon             |re-created upon
                   |re-authentication via       |re-authentication on the
                   |logout() and                |same request - logout() and
                   |login(username,password) in |login(username,password)
                   |the same request            |

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T19:54:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130997">
    <title>[Bug 54999] New: JSESSIONIDSSO not re-created upon re-authentication via logout() and login(username,password) in the same request</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130997</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54999

            Bug ID: 54999
           Summary: JSESSIONIDSSO not re-created upon re-authentication
                    via logout() and login(username,password) in the same
                    request
           Product: Tomcat 7
           Version: 7.0.40
          Hardware: PC
                OS: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Catalina
          Assignee: dev&amp;lt; at &amp;gt;tomcat.apache.org
          Reporter: kmashint&amp;lt; at &amp;gt;yahoo.com
    Classification: Unclassified

In testing I found that the JSESSIONIDSSO was not re-created upon
re-authentication via logout() and login(username,password) in the same
request.  The problem stemmed from the REQ_SSOID_NOTE that was was not reset
upon request.logout(), whereas the documentation indicates that a logout() from
any web-app should logout() from all web-apps.  When the REQ_SSOID_NOTE is not
removed upon logout(), a subsequent login(username,password) on&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T19:50:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130996">
    <title>svn commit: r1484919 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/startup/ContextConfig.java webapps/docs/changelog.xml</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130996</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 19:49:54 2013
New Revision: 1484919

URL: http://svn.apache.org/r1484919
Log:
Make deletion of the copied WARs used for anti-resource locking more robust if the context fails to start (there were some circumstances where the original WAR could get deleted).

Modified:
    tomcat/tc7.0.x/trunk/   (props changed)
    tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
    tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1484862

Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java?rev=1484919&amp;amp;r1=1484918&amp;amp;r2=1484919&amp;amp;view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java (original)
++&lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T19:49:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130995">
    <title>svn commit: r1484862 - in /tomcat/trunk: java/org/apache/catalina/startup/ContextConfig.java test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130995</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 16:34:27 2013
New Revision: 1484862

URL: http://svn.apache.org/r1484862
Log:
Make deletion of the copied WARs used for anti-resource locking more robust if the context fails to start (there were some circumstances where the original WAR could get deleted). Add some test cases to check this.

Modified:
    tomcat/trunk/java/org/apache/catalina/startup/ContextConfig.java
    tomcat/trunk/test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java

Modified: tomcat/trunk/java/org/apache/catalina/startup/ContextConfig.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/ContextConfig.java?rev=1484862&amp;amp;r1=1484861&amp;amp;r2=1484862&amp;amp;view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/startup/ContextConfig.java (original)
+++ tomcat/trunk/java/org/apache/catalina/startup/ContextConfig.java Tue May 21 16:34:27 2013
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -213,6 +213,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; public class ContextConfig implements&lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T16:34:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130994">
    <title>svn commit: r1484861 - /tomcat/trunk/test/deployment/broken.war</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130994</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 16:33:08 2013
New Revision: 1484861

URL: http://svn.apache.org/r1484861
Log:
Make WAR break later in the deployment process

Modified:
    tomcat/trunk/test/deployment/broken.war

Modified: tomcat/trunk/test/deployment/broken.war
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/deployment/broken.war?rev=1484861&amp;amp;r1=1484860&amp;amp;r2=1484861&amp;amp;view=diff
==============================================================================
Binary files - no diff available.
&lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T16:33:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130993">
    <title>[Bug 54060] DigestAuthenticator doesn't parse Authorization header correctly</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130993</link>
    <description>&lt;pre&gt;https://issues.apache.org/bugzilla/show_bug.cgi?id=54060

--- Comment #15 from Mark Thornton &amp;lt;mthornton&amp;lt; at &amp;gt;optrak.com&amp;gt; ---
HttpClient is a culprit in quoting algorithm. Unfortunately Ubuntu 13.04 uses
TomCat 7.0.35 and is thus affected. I have filed an issue with HttpClient:
https://issues.apache.org/jira/browse/HTTPCLIENT-1354

&lt;/pre&gt;</description>
    <dc:creator>bugzilla&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T13:00:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130992">
    <title>svn commit: r1484786 - /tomcat/trunk/test/deployment/broken.war</title>
    <link>http://permalink.gmane.org/gmane.comp.jakarta.tomcat.devel/130992</link>
    <description>&lt;pre&gt;Author: markt
Date: Tue May 21 12:49:18 2013
New Revision: 1484786

URL: http://svn.apache.org/r1484786
Log:
Add a web app that fails to start for use in deployment testing

Added:
    tomcat/trunk/test/deployment/broken.war   (with props)

Added: tomcat/trunk/test/deployment/broken.war
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/deployment/broken.war?rev=1484786&amp;amp;view=auto
==============================================================================
Binary file - no diff available.

Propchange: tomcat/trunk/test/deployment/broken.war
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream
&lt;/pre&gt;</description>
    <dc:creator>markt&lt; at &gt;apache.org</dc:creator>
    <dc:date>2013-05-21T12:49:18</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.jakarta.tomcat.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.jakarta.tomcat.devel</link>
  </textinput>
</rdf:RDF>
