Return-Path: Delivered-To: apmail-incubator-roller-commits-archive@www.apache.org Received: (qmail 15926 invoked from network); 13 Oct 2006 21:05:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Oct 2006 21:05:34 -0000 Received: (qmail 25262 invoked by uid 500); 13 Oct 2006 21:05:34 -0000 Delivered-To: apmail-incubator-roller-commits-archive@incubator.apache.org Received: (qmail 25228 invoked by uid 500); 13 Oct 2006 21:05:34 -0000 Mailing-List: contact roller-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: roller-dev@incubator.apache.org Delivered-To: mailing list roller-commits@incubator.apache.org Received: (qmail 25212 invoked by uid 99); 13 Oct 2006 21:05:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Oct 2006 14:05:34 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Oct 2006 14:05:33 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id B637E1A981A; Fri, 13 Oct 2006 14:05:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r463826 - in /incubator/roller/trunk: ./ src/org/apache/roller/business/pings/ src/org/apache/roller/ui/authoring/struts/actions/ src/org/apache/roller/ui/core/ src/org/apache/roller/ui/core/pings/ Date: Fri, 13 Oct 2006 21:05:12 -0000 To: roller-commits@incubator.apache.org From: agilliland@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061013210512.B637E1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: agilliland Date: Fri Oct 13 14:05:10 2006 New Revision: 463826 URL: http://svn.apache.org/viewvc?view=rev&rev=463826 Log: move ping queue processing code into business layer where it makes more sense, there is nothing ui related about processing the ping queue. Added: incubator/roller/trunk/src/org/apache/roller/business/pings/ incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueProcessor.java - copied, changed from r463752, incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueProcessor.java incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueTask.java - copied, changed from r463752, incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueTask.java incubator/roller/trunk/src/org/apache/roller/business/pings/WeblogUpdatePinger.java - copied, changed from r463752, incubator/roller/trunk/src/org/apache/roller/ui/core/pings/WeblogUpdatePinger.java Removed: incubator/roller/trunk/src/org/apache/roller/ui/core/pings/ Modified: incubator/roller/trunk/properties.xmlf incubator/roller/trunk/src/org/apache/roller/ui/authoring/struts/actions/PingSetupAction.java incubator/roller/trunk/src/org/apache/roller/ui/core/RollerContext.java Modified: incubator/roller/trunk/properties.xmlf URL: http://svn.apache.org/viewvc/incubator/roller/trunk/properties.xmlf?view=diff&rev=463826&r1=463825&r2=463826 ============================================================================== --- incubator/roller/trunk/properties.xmlf (original) +++ incubator/roller/trunk/properties.xmlf Fri Oct 13 14:05:10 2006 @@ -94,11 +94,11 @@ - + + - Copied: incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueProcessor.java (from r463752, incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueProcessor.java) URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueProcessor.java?view=diff&rev=463826&p1=incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueProcessor.java&r1=463752&p2=incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueProcessor.java&r2=463826 ============================================================================== --- incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueProcessor.java (original) +++ incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueProcessor.java Fri Oct 13 14:05:10 2006 @@ -17,7 +17,7 @@ */ -package org.apache.roller.ui.core.pings; +package org.apache.roller.business.pings; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; Copied: incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueTask.java (from r463752, incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueTask.java) URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueTask.java?view=diff&rev=463826&p1=incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueTask.java&r1=463752&p2=incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueTask.java&r2=463826 ============================================================================== --- incubator/roller/trunk/src/org/apache/roller/ui/core/pings/PingQueueTask.java (original) +++ incubator/roller/trunk/src/org/apache/roller/business/pings/PingQueueTask.java Fri Oct 13 14:05:10 2006 @@ -16,7 +16,7 @@ * directory of this distribution. */ -package org.apache.roller.ui.core.pings; +package org.apache.roller.business.pings; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; Copied: incubator/roller/trunk/src/org/apache/roller/business/pings/WeblogUpdatePinger.java (from r463752, incubator/roller/trunk/src/org/apache/roller/ui/core/pings/WeblogUpdatePinger.java) URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/business/pings/WeblogUpdatePinger.java?view=diff&rev=463826&p1=incubator/roller/trunk/src/org/apache/roller/ui/core/pings/WeblogUpdatePinger.java&r1=463752&p2=incubator/roller/trunk/src/org/apache/roller/business/pings/WeblogUpdatePinger.java&r2=463826 ============================================================================== --- incubator/roller/trunk/src/org/apache/roller/ui/core/pings/WeblogUpdatePinger.java (original) +++ incubator/roller/trunk/src/org/apache/roller/business/pings/WeblogUpdatePinger.java Fri Oct 13 14:05:10 2006 @@ -16,7 +16,7 @@ * directory of this distribution. */ -package org.apache.roller.ui.core.pings; +package org.apache.roller.business.pings; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; Modified: incubator/roller/trunk/src/org/apache/roller/ui/authoring/struts/actions/PingSetupAction.java URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/ui/authoring/struts/actions/PingSetupAction.java?view=diff&rev=463826&r1=463825&r2=463826 ============================================================================== --- incubator/roller/trunk/src/org/apache/roller/ui/authoring/struts/actions/PingSetupAction.java (original) +++ incubator/roller/trunk/src/org/apache/roller/ui/authoring/struts/actions/PingSetupAction.java Fri Oct 13 14:05:10 2006 @@ -32,7 +32,7 @@ import org.apache.roller.ui.core.RequestConstants; import org.apache.roller.ui.core.RollerRequest; import org.apache.roller.ui.core.RollerSession; -import org.apache.roller.ui.core.pings.WeblogUpdatePinger; +import org.apache.roller.business.pings.WeblogUpdatePinger; import org.apache.struts.action.*; import org.apache.struts.actions.DispatchAction; import org.apache.xmlrpc.XmlRpcException; Modified: incubator/roller/trunk/src/org/apache/roller/ui/core/RollerContext.java URL: http://svn.apache.org/viewvc/incubator/roller/trunk/src/org/apache/roller/ui/core/RollerContext.java?view=diff&rev=463826&r1=463825&r2=463826 ============================================================================== --- incubator/roller/trunk/src/org/apache/roller/ui/core/RollerContext.java (original) +++ incubator/roller/trunk/src/org/apache/roller/ui/core/RollerContext.java Fri Oct 13 14:05:10 2006 @@ -49,7 +49,7 @@ import org.apache.roller.config.RollerConfig; import org.apache.roller.model.Roller; import org.apache.roller.model.RollerFactory; -import org.apache.roller.ui.core.pings.PingQueueTask; +import org.apache.roller.business.pings.PingQueueTask; import org.apache.roller.ui.core.security.AutoProvision; import org.apache.roller.util.cache.CacheManager; import org.apache.velocity.runtime.RuntimeSingleton;