Return-Path: Delivered-To: apmail-incubator-jspwiki-commits-archive@locus.apache.org Received: (qmail 84267 invoked from network); 14 Jun 2008 21:10:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Jun 2008 21:10:02 -0000 Received: (qmail 68753 invoked by uid 500); 14 Jun 2008 21:10:04 -0000 Delivered-To: apmail-incubator-jspwiki-commits-archive@incubator.apache.org Received: (qmail 68738 invoked by uid 500); 14 Jun 2008 21:10:04 -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 68729 invoked by uid 99); 14 Jun 2008 21:10:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Jun 2008 14:10:04 -0700 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 Jun 2008 21:09:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1724C2388A03; Sat, 14 Jun 2008 14:09:41 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r667884 - /incubator/jspwiki/trunk/src/webdocs/Comment.jsp Date: Sat, 14 Jun 2008 21:09:40 -0000 To: jspwiki-commits@incubator.apache.org From: jalkanen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080614210941.1724C2388A03@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jalkanen Date: Sat Jun 14 14:09:40 2008 New Revision: 667884 URL: http://svn.apache.org/viewvc?rev=667884&view=rev Log: JSPWIKI-292: didn't compile due to API signature changes. Modified: incubator/jspwiki/trunk/src/webdocs/Comment.jsp Modified: incubator/jspwiki/trunk/src/webdocs/Comment.jsp URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/Comment.jsp?rev=667884&r1=667883&r2=667884&view=diff ============================================================================== --- incubator/jspwiki/trunk/src/webdocs/Comment.jsp (original) +++ incubator/jspwiki/trunk/src/webdocs/Comment.jsp Sat Jun 14 14:09:40 2008 @@ -9,6 +9,7 @@ <%@ page import="com.ecyrd.jspwiki.preferences.Preferences" %> <%@ page import="com.ecyrd.jspwiki.auth.login.CookieAssertionLoginModule" %> <%@ page import="com.ecyrd.jspwiki.workflow.DecisionRequiredException" %> +<%@ page import="com.ecyrd.jspwiki.preferences.Preferences.TimeFormat" %> <%@ page errorPage="/Error.jsp" %> <%@ page import="javax.servlet.http.Cookie" %> <%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %> @@ -179,7 +180,7 @@ } Calendar cal = Calendar.getInstance(); - SimpleDateFormat fmt = Preferences.getDateFormat( wikiContext ); + SimpleDateFormat fmt = Preferences.getDateFormat( wikiContext , TimeFormat.DATETIME); pageText.append("\n\n--"+signature+", "+fmt.format(cal.getTime()));