Author: metskem
Date: Wed Feb 22 17:28:33 2012
New Revision: 1292406
URL: http://svn.apache.org/viewvc?rev=1292406&view=rev
Log:
2.8.5-svn-10
* fixed JSPWIKI-721 Log FileNotFoundException on missing attachment
Modified:
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/providers/BasicAttachmentProvider.java
Modified: incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog?rev=1292406&r1=1292405&r2=1292406&view=diff
==============================================================================
--- incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog (original)
+++ incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog Wed Feb 22 17:28:33
2012
@@ -1,3 +1,9 @@
+2012-02-22 Harry Metske <[email protected]>
+
+ * 2.8.5-svn-10
+
+ * fixed JSPWIKI-721 Log FileNotFoundException on missing attachment
+
2012-01-14 Juan Pablo Santos (juanpablo AT apache DOT org)
* no version bump
Modified:
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java?rev=1292406&r1=1292405&r2=1292406&view=diff
==============================================================================
---
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
(original)
+++
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
Wed Feb 22 17:28:33 2012
@@ -77,7 +77,7 @@ public final class Release
* <p>
* If the build identifier is empty, it is not added.
*/
- public static final String BUILD = "9";
+ public static final String BUILD = "10";
/**
* This is the generic version string you should use
Modified:
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/providers/BasicAttachmentProvider.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/providers/BasicAttachmentProvider.java?rev=1292406&r1=1292405&r2=1292406&view=diff
==============================================================================
---
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/providers/BasicAttachmentProvider.java
(original)
+++
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/providers/BasicAttachmentProvider.java
Wed Feb 22 17:28:33 2012
@@ -624,6 +624,7 @@ public class BasicAttachmentProvider
}
catch( FileNotFoundException e )
{
+ log.error( "Can't get attachment properties for " + att, e );
return null;
}
catch( IOException e )