Return-Path: Delivered-To: apmail-incubator-jspwiki-commits-archive@minotaur.apache.org Received: (qmail 69924 invoked from network); 14 Feb 2009 14:16:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Feb 2009 14:16:17 -0000 Received: (qmail 201 invoked by uid 500); 14 Feb 2009 14:16:17 -0000 Delivered-To: apmail-incubator-jspwiki-commits-archive@incubator.apache.org Received: (qmail 191 invoked by uid 500); 14 Feb 2009 14:16:17 -0000 Mailing-List: contact jspwiki-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jspwiki-dev@incubator.apache.org Delivered-To: mailing list jspwiki-commits@incubator.apache.org Received: (qmail 182 invoked by uid 99); 14 Feb 2009 14:16:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Feb 2009 06:16:17 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Feb 2009 14:16:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BA62123888F4; Sat, 14 Feb 2009 14:15:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r744499 - in /incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH: ChangeLog src/com/ecyrd/jspwiki/Release.java tests/com/ecyrd/jspwiki/providers/FileSystemProviderTest.java Date: Sat, 14 Feb 2009 14:15:54 -0000 To: jspwiki-commits@incubator.apache.org From: metskem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090214141554.BA62123888F4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: metskem Date: Sat Feb 14 14:15:54 2009 New Revision: 744499 URL: http://svn.apache.org/viewvc?rev=744499&view=rev Log: 2.8.2-svn-12 * JSPWIKI-466 - FileSystemProviderTest rücksichtslos empties java.io.tmpdir 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/tests/com/ecyrd/jspwiki/providers/FileSystemProviderTest.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=744499&r1=744498&r2=744499&view=diff ============================================================================== --- incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog (original) +++ incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog Sat Feb 14 14:15:54 2009 @@ -1,3 +1,9 @@ +2008-02-14 Harry Metske + + * 2.8.2-svn-12 + + * JSPWIKI-466 - FileSystemProviderTest rücksichtslos empties java.io.tmpdir + 2008-02-12 Janne Jalkanen * 2.8.2-svn-11 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=744499&r1=744498&r2=744499&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 Sat Feb 14 14:15:54 2009 @@ -77,7 +77,7 @@ *

* If the build identifier is empty, it is not added. */ - public static final String BUILD = "11"; + public static final String BUILD = "12"; /** * This is the generic version string you should use Modified: incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/providers/FileSystemProviderTest.java URL: http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/providers/FileSystemProviderTest.java?rev=744499&r1=744498&r2=744499&view=diff ============================================================================== --- incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/providers/FileSystemProviderTest.java (original) +++ incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/providers/FileSystemProviderTest.java Sat Feb 14 14:15:54 2009 @@ -26,7 +26,7 @@ public void setUp() throws Exception { - m_pagedir = System.getProperties().getProperty("java.io.tmpdir"); + m_pagedir = System.getProperties().getProperty("java.io.tmpdir") + File.separatorChar + "jspwiki.test.pages"; Properties props2 = new Properties();