You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ni...@apache.org on 2006/05/25 17:18:59 UTC

svn commit: r409406 - in /jakarta/commons/proper/fileupload/trunk: project.properties xdocs/changes.xml

Author: niallp
Date: Thu May 25 08:18:58 2006
New Revision: 409406

URL: http://svn.apache.org/viewvc?rev=409406&view=rev
Log:
Convert Bugzilla issue numbers to Jira issue numbers in the changes report.

Modified:
    jakarta/commons/proper/fileupload/trunk/project.properties
    jakarta/commons/proper/fileupload/trunk/xdocs/changes.xml

Modified: jakarta/commons/proper/fileupload/trunk/project.properties
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/project.properties?rev=409406&r1=409405&r2=409406&view=diff
==============================================================================
--- jakarta/commons/proper/fileupload/trunk/project.properties (original)
+++ jakarta/commons/proper/fileupload/trunk/project.properties Thu May 25 08:18:58 2006
@@ -18,7 +18,7 @@
 
 maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
 
-maven.changes.issue.template=%URL%/show_bug.cgi?id=%ISSUE%
+maven.changes.issue.template=%URL%/browse/%ISSUE% 
 
 compile.debug = on
 compile.optimize = off

Modified: jakarta/commons/proper/fileupload/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/xdocs/changes.xml?rev=409406&r1=409405&r2=409406&view=diff
==============================================================================
--- jakarta/commons/proper/fileupload/trunk/xdocs/changes.xml (original)
+++ jakarta/commons/proper/fileupload/trunk/xdocs/changes.xml Thu May 25 08:18:58 2006
@@ -43,11 +43,11 @@
 
     <release version="1.1.1" date="2006-05-??" description="Bugfix release">
 
-      <action dev="martinc" type="fix" issue="39160">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-20">
         Cache disk file item size when it is moved to a new location.
       </action>
 
-      <action dev="martinc" type="fix" issue="38490">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-30">
         File names were being inadvertently converted to lower case.
       </action>
 
@@ -91,7 +91,7 @@
         Fix Checkstyle warnings.
       </action>
 
-      <action dev="martinc" type="fix" issue="37706" due-to="Rahul Akolkar">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-29" due-to="Rahul Akolkar">
         Remove Javadoc warnings.
       </action>
 
@@ -123,7 +123,7 @@
         @exception.
       </action>
 
-      <action dev="martinc" type="fix" issue="32785" due-to="Niall Pemberton">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-50" due-to="Niall Pemberton">
         Make DiskFileItem serializable. Thanks to Niall Pemberton for the
         suggestion and patch.
       </action>
@@ -133,12 +133,12 @@
         within them, by including a UID in the file name.
       </action>
 
-      <action dev="martinc" type="fix" issue="32782">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-77">
         Include the actual and permitted sizes in both the exception message
         and the exception itself.
       </action>
 
-      <action dev="martinc" type="fix" issue="34483">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-13">
         If an explicit header encoding is not specified, use the one from the
         appropriate context (i.e. ServletRequest or ActionRequest).
       </action>
@@ -147,7 +147,7 @@
         Add getCharacterEncoding to the request context.
       </action>
 
-      <action dev="martinc" type="fix" issue="34497">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-83">
         Null check and case insensitivity fixes.
       </action>
 
@@ -171,7 +171,7 @@
         </ul>
       </action>
 
-      <action dev="dion" type="fix" issue="37314">
+      <action dev="dion" type="fix" issue="COMMONSSITE-2">
         Fixes to POMs
       </action>
 
@@ -179,7 +179,7 @@
         Setting source and target for Java 1.3
       </action>
 
-      <action dev="martinc" type="fix" issue="33311">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-37">
         Fix typos in Javadoc code examples.
       </action>
 
@@ -187,7 +187,7 @@
         Fix typos in exception messages.
       </action>
 
-      <action dev="martinc" type="fix" issue="32654">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-5">
         Obtain request content type from container instead of headers.
       </action>
 
@@ -241,7 +241,7 @@
         </ul>
       </action>
 
-      <action dev="martinc" type="fix" issue="26194">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-4">
         Specify the encoding (ISO-8859-1) when converting the boundary to a
         byte array.
       </action>
@@ -254,30 +254,30 @@
         DeferredFileOutputStream moved to Commons IO.
       </action>
 
-      <action dev="martinc" type="fix" issue="30061" due-to="Justin Sampson">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-16" due-to="Justin Sampson">
         Workaround for Mac IE5 bug. Thanks to Justin Sampson for the patch and
         tests for this vexing issue.
       </action>
 
-      <action dev="martinc" type="fix" issue="25527">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-104">
         Handle unquoted header parameters.
       </action>
 
-      <action dev="martinc" type="add" issue="27193">
+      <action dev="martinc" type="add" issue="FILEUPLOAD-78">
         Some documentation on interaction with virus scanners.
       </action>
 
-      <action dev="martinc" type="add" issue="30059" due-to="Justin Sampson">
+      <action dev="martinc" type="add" issue="FILEUPLOAD-31" due-to="Justin Sampson">
         More unit tests from Justin Sampson.
       </action>
 
-      <action dev="martinc" type="update" issue="27477">
+      <action dev="martinc" type="update" issue="FILEUPLOAD-95">
         Use FileCleaner from Commons IO to clean up temp files, rather than
         File.deleteOnExit(), which can cause serious problems in long-running
         processes.
       </action>
 
-      <action dev="martinc" type="fix" issue="28085">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-53">
         Check that HTTP method is POST as part of multipart check.
       </action>
 
@@ -287,11 +287,11 @@
         component to fix additional FileUpload bugs.
       </action>
 
-      <action dev="martinc" type="add" issue="21269">
+      <action dev="martinc" type="add" issue="FILEUPLOAD-40">
         handle quoted boundary specification.
       </action>
 
-      <action dev="martinc" type="add" issue="31496">
+      <action dev="martinc" type="add" issue="FILEUPLOAD-18">
         use case-independent comparisons for encoding types.
       </action>
 
@@ -303,7 +303,7 @@
         Fix typos in comments.
       </action>
 
-      <action dev="martinc" type="add" issue="20813" due-to="Oleg Kalnichevski">
+      <action dev="martinc" type="add" issue="FILEUPLOAD-101" due-to="Oleg Kalnichevski">
         Add support for character sets specified for individual parts.
       </action>
 
@@ -311,7 +311,7 @@
         Change to Apache License 2.0
       </action>
 
-      <action dev="martinc" type="fix" issue="23822">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-22">
         Correct the comment for the no-args constructor to reflect the fact
         that a factory needs to be set before parsing uploads.
       </action>
@@ -320,15 +320,15 @@
         Collapse some all but duplicated code.
       </action>
 
-      <action dev="jmcnally" type="fix" issue="22643">
+      <action dev="jmcnally" type="fix" issue="FILEUPLOAD-72">
         Fix example showing FileItem.write to use a File object.
       </action>
 
-      <action dev="martinc" type="fix" issue="21221" due-to="Peter Chase">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-21" due-to="Peter Chase">
         Check for null before attempting to close streams in write().
       </action>
 
-      <action dev="martinc" type="fix" issue="21161" due-to="Paul Dalton">
+      <action dev="martinc" type="fix" issue="FILEUPLOAD-67" due-to="Paul Dalton">
         Correction to sample code in the docs.
       </action>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org