Kleinere Anpassungen durch Abgleich mit APLAWS svn.
git-svn-id: https://svn.libreccm.org/ccm/trunk@1645 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
37a0b45da5
commit
bd190c911c
|
|
@ -168,16 +168,16 @@ public class ItemImageAttachment extends ACSObject implements CustomCopy {
|
||||||
* Automatically publish an unpublished image
|
* Automatically publish an unpublished image
|
||||||
*/
|
*/
|
||||||
public boolean copyProperty(final CustomCopy source,
|
public boolean copyProperty(final CustomCopy source,
|
||||||
final Property property,
|
final Property property,
|
||||||
final ItemCopier copier) {
|
final ItemCopier copier) {
|
||||||
String attribute = property.getName();
|
String attribute = property.getName();
|
||||||
if (ItemCopier.VERSION_COPY == copier.getCopyType()
|
if (ItemCopier.VERSION_COPY == copier.getCopyType()
|
||||||
&& IMAGE.equals(attribute)) {
|
&& IMAGE.equals(attribute)) {
|
||||||
ItemImageAttachment attachment = (ItemImageAttachment) source;
|
ItemImageAttachment attachment = (ItemImageAttachment) source;
|
||||||
ReusableImageAsset image = attachment.getImage();
|
ReusableImageAsset image = attachment.getImage();
|
||||||
|
|
||||||
ReusableImageAsset liveImage =
|
ReusableImageAsset liveImage =
|
||||||
(ReusableImageAsset) image.getLiveVersion();
|
(ReusableImageAsset) image.getLiveVersion();
|
||||||
|
|
||||||
if (null == liveImage) {
|
if (null == liveImage) {
|
||||||
liveImage = (ReusableImageAsset) image.createLiveVersion();
|
liveImage = (ReusableImageAsset) image.createLiveVersion();
|
||||||
|
|
@ -210,7 +210,7 @@ public class ItemImageAttachment extends ACSObject implements CustomCopy {
|
||||||
// when we delete the link, the image still references it in DB
|
// when we delete the link, the image still references it in DB
|
||||||
// can't make it composite because then image is deleted if we delete
|
// can't make it composite because then image is deleted if we delete
|
||||||
// link. Have to set link to null first (I think)
|
// link. Have to set link to null first (I think)
|
||||||
DomainObject link = DomainObjectFactory.newInstance((DataObject) get(IMAGE_LINK));
|
DomainObject link = DomainObjectFactory.newInstance((DataObject)get(IMAGE_LINK));
|
||||||
set(IMAGE_LINK, null);
|
set(IMAGE_LINK, null);
|
||||||
save();
|
save();
|
||||||
link.delete();
|
link.delete();
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
// License along with this library; if not, write to the Free Software
|
// License along with this library; if not, write to the Free Software
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// $Id: Package.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// $Id: Package.pdl 2141 2011-01-16 12:17:15Z pboy $
|
||||||
// $DateTime: 2004/08/16 18:10:38 $
|
// $DateTime: 2004/08/16 18:10:38 $
|
||||||
model com.arsdigita.kernel;
|
model com.arsdigita.kernel;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
// License along with this library; if not, write to the Free Software
|
// License along with this library; if not, write to the Free Software
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// $Id: SiteNode.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// $Id: SiteNode.pdl 2141 2011-01-16 12:17:15Z pboy $
|
||||||
// $DateTime: 2004/08/16 18:10:38 $
|
// $DateTime: 2004/08/16 18:10:38 $
|
||||||
model com.arsdigita.kernel;
|
model com.arsdigita.kernel;
|
||||||
|
|
||||||
|
|
@ -24,7 +24,7 @@ model com.arsdigita.kernel;
|
||||||
// A "site node" is a node in a URL hierarchy that can be mapped
|
// A "site node" is a node in a URL hierarchy that can be mapped
|
||||||
// to an application instance.
|
// to an application instance.
|
||||||
//
|
//
|
||||||
// @version "$Id: SiteNode.pdl 287 2005-02-22 00:29:02Z sskracic $"
|
// @version "$Id: SiteNode.pdl 2141 2011-01-16 12:17:15Z pboy $"
|
||||||
//
|
//
|
||||||
|
|
||||||
object type SiteNode extends ACSObject {
|
object type SiteNode extends ACSObject {
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
// License along with this library; if not, write to the Free Software
|
// License along with this library; if not, write to the Free Software
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// $Id: Admin.pdl 1230 2006-06-22 11:50:59Z apevec $
|
// $Id: Admin.pdl 2284 2012-03-11 01:37:17Z pboy $
|
||||||
// $DateTime: 2004/08/16 18:10:38 $
|
// $DateTime: 2004/08/16 18:10:38 $
|
||||||
model com.arsdigita.ui.admin;
|
model com.arsdigita.ui.admin;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
// License along with this library; if not, write to the Free Software
|
// License along with this library; if not, write to the Free Software
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// $Id: Permissions.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// $Id: Permissions.pdl 2284 2012-03-11 01:37:17Z pboy $
|
||||||
// $DateTime: 2004/08/16 18:10:38 $
|
// $DateTime: 2004/08/16 18:10:38 $
|
||||||
|
|
||||||
model com.arsdigita.ui.permissions;
|
model com.arsdigita.ui.permissions;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
// License along with this library; if not, write to the Free Software
|
// License along with this library; if not, write to the Free Software
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// $Id: SiteMap.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// $Id: SiteMap.pdl 2284 2012-03-11 01:37:17Z pboy $
|
||||||
// $DateTime: 2004/08/16 18:10:38 $
|
// $DateTime: 2004/08/16 18:10:38 $
|
||||||
model com.arsdigita.ui.sitemap;
|
model com.arsdigita.ui.sitemap;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,14 +15,14 @@
|
||||||
// License along with this library; if not, write to the Free Software
|
// License along with this library; if not, write to the Free Software
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// $Id: WebApp.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// $Id: WebApp.pdl 2190 2011-06-20 22:26:12Z pboy $
|
||||||
// $DateTime: 2004/08/16 18:10:38 $
|
// $DateTime: 2004/08/16 18:10:38 $
|
||||||
model com.arsdigita.web;
|
model com.arsdigita.web;
|
||||||
|
|
||||||
// Subject to change.
|
// Subject to change.
|
||||||
//
|
//
|
||||||
// @author Justin Ross (justin@arsdigita.com)
|
// @author Justin Ross (justin@arsdigita.com)
|
||||||
// @version $Id: WebApp.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// @version $Id: WebApp.pdl 2190 2011-06-20 22:26:12Z pboy $
|
||||||
|
|
||||||
// Class WebApp seems to be quit unfinisched work and is commented out.
|
// Class WebApp seems to be quit unfinisched work and is commented out.
|
||||||
// So we need no table for it.
|
// So we need no table for it.
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
-- License along with this library; if not, write to the Free Software
|
-- License along with this library; if not, write to the Free Software
|
||||||
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
--
|
--
|
||||||
-- $Id: oracle-se-create.sql 2070 2010-01-28 08:47:41Z pboy $
|
-- $Id: oracle-se-create.sql 2141 2011-01-16 12:17:15Z pboy $
|
||||||
-- $DateTime: 2004/08/16 18:10:38 $
|
-- $DateTime: 2004/08/16 18:10:38 $
|
||||||
|
|
||||||
@@ oracle-se/function-currentDate.sql
|
@@ oracle-se/function-currentDate.sql
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
-- License along with this library; if not, write to the Free Software
|
-- License along with this library; if not, write to the Free Software
|
||||||
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
--
|
--
|
||||||
-- $Id: postgres-create.sql 1704 2008-06-08 14:45:43Z pboy $
|
-- $Id: postgres-create.sql 2141 2011-01-16 12:17:15Z pboy $
|
||||||
-- $DateTime: 2004/08/16 18:10:38 $
|
-- $DateTime: 2004/08/16 18:10:38 $
|
||||||
|
|
||||||
begin;
|
begin;
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ import java.util.Date;
|
||||||
*
|
*
|
||||||
* @author Joseph Bank
|
* @author Joseph Bank
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @version $Id: Audited.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: Audited.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
**/
|
**/
|
||||||
public interface Audited {
|
public interface Audited {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ import java.util.Date;
|
||||||
*
|
*
|
||||||
* @author Joseph Bank
|
* @author Joseph Bank
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @version $Id: AuditedACSObject.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: AuditedACSObject.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public abstract class AuditedACSObject extends ACSObject implements Audited {
|
public abstract class AuditedACSObject extends ACSObject implements Audited {
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import org.apache.log4j.Logger;
|
||||||
*
|
*
|
||||||
* @author Joseph Bank
|
* @author Joseph Bank
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @version $Id: AuditingObserver.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: AuditingObserver.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class AuditingObserver implements DomainObjectObserver {
|
public class AuditingObserver implements DomainObjectObserver {
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ import org.apache.log4j.Logger;
|
||||||
*
|
*
|
||||||
* @author Joseph Bank
|
* @author Joseph Bank
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @version $Id: BasicAuditTrail.java 1547 2007-03-29 14:24:57Z chrisgilbert23 $
|
* @version $Id: BasicAuditTrail.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
**/
|
**/
|
||||||
public class BasicAuditTrail extends DomainObject implements Audited {
|
public class BasicAuditTrail extends DomainObject implements Audited {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ import org.apache.log4j.Logger;
|
||||||
*
|
*
|
||||||
* @author Joseph Bank
|
* @author Joseph Bank
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @version $Id: WebAuditingSaveInfo.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: WebAuditingSaveInfo.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
**/
|
**/
|
||||||
public class WebAuditingSaveInfo implements AuditingSaveInfo {
|
public class WebAuditingSaveInfo implements AuditingSaveInfo {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ import org.apache.log4j.Logger;
|
||||||
* A dispatcher that looks for "buildPage*" methods, invokes them,
|
* A dispatcher that looks for "buildPage*" methods, invokes them,
|
||||||
* and constructs an index page with links automatically.
|
* and constructs an index page with links automatically.
|
||||||
*
|
*
|
||||||
* @version $Id: AutoDispatcher.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: AutoDispatcher.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class AutoDispatcher extends BebopMapDispatcher {
|
public class AutoDispatcher extends BebopMapDispatcher {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import javax.servlet.http.HttpServletResponse;
|
||||||
* Serves one page on all urls, notifying visitors about the merging
|
* Serves one page on all urls, notifying visitors about the merging
|
||||||
* of demo-bebop into bebop-demo.
|
* of demo-bebop into bebop-demo.
|
||||||
*
|
*
|
||||||
* @version $Id: BebopDispatcher.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: BebopDispatcher.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class BebopDispatcher implements Dispatcher {
|
public class BebopDispatcher implements Dispatcher {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,7 @@ class Foo extends Label implements PrintListener {
|
||||||
* Demonstration dispatcher class. Shows how you would build pages to
|
* Demonstration dispatcher class. Shows how you would build pages to
|
||||||
* display dynamic data from the database using Bebop components.
|
* display dynamic data from the database using Bebop components.
|
||||||
*
|
*
|
||||||
* @version $Id: DemoDispatcher.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: DemoDispatcher.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class DemoDispatcher extends AutoDispatcher implements BebopConstants {
|
public class DemoDispatcher extends AutoDispatcher implements BebopConstants {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ import com.arsdigita.bebop.util.GlobalizationUtil;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @version $Id: AddProcess.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: AddProcess.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class AddProcess extends Form
|
public class AddProcess extends Form
|
||||||
implements FormProcessListener, FormInitListener,
|
implements FormProcessListener, FormInitListener,
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ import java.util.TooManyListenersException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @version $Id: AddTask.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: AddTask.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class AddTask extends Form
|
public class AddTask extends Form
|
||||||
implements FormProcessListener, FormSubmissionListener {
|
implements FormProcessListener, FormSubmissionListener {
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ import com.arsdigita.bebop.util.GlobalizationUtil;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @version $Id: AdminPane.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: AdminPane.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class AdminPane extends SimpleContainer
|
public class AdminPane extends SimpleContainer
|
||||||
implements ActionListener {
|
implements ActionListener {
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ import java.util.TooManyListenersException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @version $Id: DisplayTask.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: DisplayTask.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class DisplayTask extends Form
|
public class DisplayTask extends Form
|
||||||
implements FormProcessListener, FormSubmissionListener {
|
implements FormProcessListener, FormSubmissionListener {
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import java.util.NoSuchElementException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @version $Id: Listing.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: Listing.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Listing extends BoxPanel
|
public class Listing extends BoxPanel
|
||||||
implements ChangeListener, ActionListener {
|
implements ChangeListener, ActionListener {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ import java.util.ArrayList;
|
||||||
* load.
|
* load.
|
||||||
*
|
*
|
||||||
* @author David Lutterkort
|
* @author David Lutterkort
|
||||||
* @version $Id: Process.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: Process.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Process {
|
public class Process {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ import java.util.Iterator;
|
||||||
*
|
*
|
||||||
* @author Uday Mathur
|
* @author Uday Mathur
|
||||||
* @author David Lutterkort
|
* @author David Lutterkort
|
||||||
* @version $Id: ProcessDisplay.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: ProcessDisplay.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class ProcessDisplay extends BoxPanel
|
public class ProcessDisplay extends BoxPanel
|
||||||
implements ActionListener, ChangeListener, TableActionListener {
|
implements ActionListener, ChangeListener, TableActionListener {
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import org.apache.log4j.Logger;
|
||||||
* load.
|
* load.
|
||||||
*
|
*
|
||||||
* @author David Lutterkort
|
* @author David Lutterkort
|
||||||
* @version $Id: SampleProcesses.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: SampleProcesses.java 2167 2011-06-19 21:12:12Z pboy $
|
||||||
*/
|
*/
|
||||||
public class SampleProcesses {
|
public class SampleProcesses {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import java.util.Iterator;
|
||||||
* load.
|
* load.
|
||||||
*
|
*
|
||||||
* @author David Lutterkort
|
* @author David Lutterkort
|
||||||
* @version $Id: Task.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: Task.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Task {
|
public class Task {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ import com.arsdigita.bebop.PageState;
|
||||||
*
|
*
|
||||||
* @author David Lutterkort
|
* @author David Lutterkort
|
||||||
*
|
*
|
||||||
* @version $Id: ActionEvent.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: ActionEvent.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class ActionEvent extends PageEvent {
|
public class ActionEvent extends PageEvent {
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ import java.util.EventListener;
|
||||||
*
|
*
|
||||||
* @author David Lutterkort
|
* @author David Lutterkort
|
||||||
*
|
*
|
||||||
* @version $Id: ActionListener.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: ActionListener.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public interface ActionListener extends EventListener {
|
public interface ActionListener extends EventListener {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ import com.arsdigita.bebop.form.OptionGroup;
|
||||||
* </define:checkboxGroup>
|
* </define:checkboxGroup>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @version $Id: DefineCheckboxGroup.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: DefineCheckboxGroup.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class DefineCheckboxGroup extends DefineOptionGroup {
|
public class DefineCheckboxGroup extends DefineOptionGroup {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ import org.apache.log4j.Logger;
|
||||||
* @author Justin Ross <jross@redhat.com>
|
* @author Justin Ross <jross@redhat.com>
|
||||||
* @author chris gilbert - allow BebopApplicationServlet pages to disable
|
* @author chris gilbert - allow BebopApplicationServlet pages to disable
|
||||||
* client/middleware
|
* client/middleware
|
||||||
* @version $Id: BebopApplicationServlet.java 1372 2006-11-13 09:22:54Z chrisgilbert23 $
|
* @version $Id: BebopApplicationServlet.java 2292 2012-04-22 15:42:43Z pboy $
|
||||||
*/
|
*/
|
||||||
public class BebopApplicationServlet extends BaseApplicationServlet {
|
public class BebopApplicationServlet extends BaseApplicationServlet {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ import org.xml.sax.helpers.DefaultHandler;
|
||||||
* to be coded with a specific map or to override the map lookup for certain
|
* to be coded with a specific map or to override the map lookup for certain
|
||||||
* sets of URLs.
|
* sets of URLs.
|
||||||
*
|
*
|
||||||
* @version $Id: BebopMapDispatcher.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: BebopMapDispatcher.java 2284 2012-03-11 01:37:17Z pboy $
|
||||||
*/
|
*/
|
||||||
public class BebopMapDispatcher extends MapDispatcher {
|
public class BebopMapDispatcher extends MapDispatcher {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ import com.arsdigita.bebop.event.ParameterEvent;
|
||||||
* @author Uday Mathur
|
* @author Uday Mathur
|
||||||
* @author Stas Freidin
|
* @author Stas Freidin
|
||||||
* @author Rory Solomon
|
* @author Rory Solomon
|
||||||
* @version $Id: DateInRangeValidationListener.java 287 2005-02-22 00:29:02Z sskracic $
|
* @version $Id: DateInRangeValidationListener.java 2089 2010-04-17 07:55:43Z pboy $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class DateInRangeValidationListener implements ParameterListener {
|
public class DateInRangeValidationListener implements ParameterListener {
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,6 @@ package com.arsdigita.cms.docmgr;
|
||||||
|
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
// import com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet;
|
|
||||||
// import com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet;
|
|
||||||
import com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet;
|
import com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet;
|
||||||
import com.arsdigita.domain.DomainObject;
|
import com.arsdigita.domain.DomainObject;
|
||||||
import com.arsdigita.domain.DomainObjectFactory;
|
import com.arsdigita.domain.DomainObjectFactory;
|
||||||
|
|
@ -26,12 +24,8 @@ import com.arsdigita.kernel.ACSObjectInstantiator;
|
||||||
import com.arsdigita.persistence.DataObject;
|
import com.arsdigita.persistence.DataObject;
|
||||||
import com.arsdigita.persistence.SessionManager;
|
import com.arsdigita.persistence.SessionManager;
|
||||||
import com.arsdigita.persistence.TransactionContext;
|
import com.arsdigita.persistence.TransactionContext;
|
||||||
// import com.arsdigita.portal.PortletType;
|
|
||||||
// import com.arsdigita.portal.apportlet.AppPortletSetup;
|
|
||||||
import com.arsdigita.runtime.CompoundInitializer;
|
import com.arsdigita.runtime.CompoundInitializer;
|
||||||
import com.arsdigita.runtime.DomainInitEvent;
|
import com.arsdigita.runtime.DomainInitEvent;
|
||||||
// import com.arsdigita.web.ApplicationSetup;
|
|
||||||
// import com.arsdigita.web.ApplicationType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
prettyName="APLAWS plus Custom Spin"
|
prettyName="APLAWS plus Custom Spin"
|
||||||
version="2-0-0"
|
version="2-0-0"
|
||||||
release="custom-beta-1-r2234"
|
release="custom-beta-1-r2234"
|
||||||
webxml="web.xml-aplaws"
|
webxml="web.xml"
|
||||||
webapp="ROOT"
|
webapp="ROOT"
|
||||||
xsi:schemaLocation="http://ccm.redhat.com/ccm-project file:tools-ng/common/xsd/project.xsd">
|
xsi:schemaLocation="http://ccm.redhat.com/ccm-project file:tools-ng/common/xsd/project.xsd">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ import org.apache.log4j.Logger;
|
||||||
* configuration files and adds jsp templates to navigation.
|
* configuration files and adds jsp templates to navigation.
|
||||||
*
|
*
|
||||||
* @author Justin Ross <jross@redhat.com>
|
* @author Justin Ross <jross@redhat.com>
|
||||||
* @version $Id: Loader.java 2223 2011-08-01 07:33:57Z pboy $
|
* @version $Id: Loader.java 2255 2011-11-17 08:46:40Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Loader extends PackageLoader {
|
public class Loader extends PackageLoader {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import org.apache.log4j.Logger;
|
||||||
* Initializes ccm-simplesurvey at each system startup.
|
* Initializes ccm-simplesurvey at each system startup.
|
||||||
*
|
*
|
||||||
* @author Justin Ross <jross@redhat.com>
|
* @author Justin Ross <jross@redhat.com>
|
||||||
* @version $Id: Initializer.java 759 2005-09-02 15:25:32Z sskracic $
|
* @version $Id: Initializer.java 2297 2012-05-01 07:57:05Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Initializer extends CompoundInitializer {
|
public class Initializer extends CompoundInitializer {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ import org.apache.log4j.Logger;
|
||||||
* application type in database.
|
* application type in database.
|
||||||
*
|
*
|
||||||
* @author Justin Ross <jross@redhat.com>
|
* @author Justin Ross <jross@redhat.com>
|
||||||
* @version $Id: Loader.java 759 2005-09-02 15:25:32Z sskracic $
|
* @version $Id: Loader.java 2297 2012-05-01 07:57:05Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Loader extends PackageLoader {
|
public class Loader extends PackageLoader {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ import com.arsdigita.util.Assert;
|
||||||
*
|
*
|
||||||
* @see Survey
|
* @see Survey
|
||||||
* @author <a href="mailto:justin@arsdigita.com">Justin Ross</a>
|
* @author <a href="mailto:justin@arsdigita.com">Justin Ross</a>
|
||||||
* @version $Id: ResponseCollection.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: ResponseCollection.java 1940 2009-05-29 07:15:05Z terry $
|
||||||
*/
|
*/
|
||||||
public class ResponseCollection extends DomainCollection {
|
public class ResponseCollection extends DomainCollection {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ import java.util.Date;
|
||||||
* the main domain object of the Simple Survey application.
|
* the main domain object of the Simple Survey application.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
||||||
* @version $Id: Survey.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: Survey.java 2286 2012-03-11 09:14:14Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Survey extends ACSObject {
|
public class Survey extends ACSObject {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ import com.arsdigita.util.Assert;
|
||||||
*
|
*
|
||||||
* @see Survey
|
* @see Survey
|
||||||
* @author <a href="mailto:justin@arsdigita.com">Justin Ross</a>
|
* @author <a href="mailto:justin@arsdigita.com">Justin Ross</a>
|
||||||
* @version $Id: SurveyCollection.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: SurveyCollection.java 1940 2009-05-29 07:15:05Z terry $
|
||||||
*/
|
*/
|
||||||
public class SurveyCollection extends DomainCollection {
|
public class SurveyCollection extends DomainCollection {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ import com.arsdigita.ui.UI;
|
||||||
* A page confirming that a survey response has been submitted.
|
* A page confirming that a survey response has been submitted.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
||||||
* @version $Id: ConfirmationPanel.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: ConfirmationPanel.java 2164 2011-06-19 20:31:22Z pboy $
|
||||||
*/
|
*/
|
||||||
public class ConfirmationPanel extends SimpleSurveyPanel {
|
public class ConfirmationPanel extends SimpleSurveyPanel {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ import javax.servlet.http.HttpServletRequest;
|
||||||
* The Page class that all pages in the Simple Survey application extend.
|
* The Page class that all pages in the Simple Survey application extend.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
||||||
* @version $Id: SimpleSurveyPanel.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: SimpleSurveyPanel.java 2286 2012-03-11 09:14:14Z pboy $
|
||||||
*/
|
*/
|
||||||
public abstract class SimpleSurveyPanel extends SimpleContainer {
|
public abstract class SimpleSurveyPanel extends SimpleContainer {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ import com.arsdigita.bebop.PageState;
|
||||||
* Tables all Simple Surveys in the system.
|
* Tables all Simple Surveys in the system.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
||||||
* @version $Id: SurveyTable.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: SurveyTable.java 2286 2012-03-11 09:14:14Z pboy $
|
||||||
*/
|
*/
|
||||||
public class SurveyTable extends Table {
|
public class SurveyTable extends Table {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ import com.arsdigita.util.LockableImpl;
|
||||||
* Tables all Simple Surveys in the system.
|
* Tables all Simple Surveys in the system.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
||||||
* @version $Id: AdminSurveyTable.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: AdminSurveyTable.java 2286 2012-03-11 09:14:14Z pboy $
|
||||||
*/
|
*/
|
||||||
public class AdminSurveyTable extends Table {
|
public class AdminSurveyTable extends Table {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import com.arsdigita.util.Assert;
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
* @author <a href="mailto:pmarklun@arsdigita.com">Peter Marklund</a>
|
||||||
* @version $Id: AdminSurveyTableModel.java 755 2005-09-02 13:42:47Z sskracic $
|
* @version $Id: AdminSurveyTableModel.java 2099 2010-04-17 15:35:14Z pboy $
|
||||||
*/
|
*/
|
||||||
public class AdminSurveyTableModel implements TableModel {
|
public class AdminSurveyTableModel implements TableModel {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue