Return-Path: Delivered-To: apmail-incubator-jspwiki-commits-archive@minotaur.apache.org Received: (qmail 45015 invoked from network); 4 Mar 2009 22:35:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Mar 2009 22:35:55 -0000 Received: (qmail 64591 invoked by uid 500); 4 Mar 2009 22:35:55 -0000 Delivered-To: apmail-incubator-jspwiki-commits-archive@incubator.apache.org Received: (qmail 64579 invoked by uid 500); 4 Mar 2009 22:35:55 -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 64568 invoked by uid 99); 4 Mar 2009 22:35:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 14:35:55 -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; Wed, 04 Mar 2009 22:35:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 89EB123888A3; Wed, 4 Mar 2009 22:35:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r750199 - /incubator/jspwiki/trunk/src/java/org/apache/wiki/PageManager.java Date: Wed, 04 Mar 2009 22:35:34 -0000 To: jspwiki-commits@incubator.apache.org From: jalkanen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090304223534.89EB123888A3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jalkanen Date: Wed Mar 4 22:35:34 2009 New Revision: 750199 URL: http://svn.apache.org/viewvc?rev=750199&view=rev Log: Deprecated PageManager. Modified: incubator/jspwiki/trunk/src/java/org/apache/wiki/PageManager.java Modified: incubator/jspwiki/trunk/src/java/org/apache/wiki/PageManager.java URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/PageManager.java?rev=750199&r1=750198&r2=750199&view=diff ============================================================================== --- incubator/jspwiki/trunk/src/java/org/apache/wiki/PageManager.java (original) +++ incubator/jspwiki/trunk/src/java/org/apache/wiki/PageManager.java Wed Mar 4 22:35:34 2009 @@ -36,18 +36,10 @@ /** - * Manages the WikiPages. This class functions as an unified interface towards - * the page providers. It handles initialization and management of the providers, - * and provides utility methods for accessing the contents. - *

- * Saving a page is a two-stage Task; first the pre-save operations and then the - * actual save. See the descriptions of the tasks for further information. - * - * @since 2.0 + * Use ContentManager instead. + * + * @deprecated */ -// FIXME: This class currently only functions just as an extra layer over providers, -// complicating things. We need to move more provider-specific functionality -// from WikiEngine (which is too big now) into this class. public class PageManager extends ModuleManager { private static final long serialVersionUID = 1L;