some minor comments, formating, svn tags
git-svn-id: https://svn.libreccm.org/ccm/trunk@75 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
bbc371a738
commit
52afa2443e
|
|
@ -5,15 +5,15 @@
|
||||||
objectType="com.arsdigita.cms.contenttypes.FAQItem"
|
objectType="com.arsdigita.cms.contenttypes.FAQItem"
|
||||||
classname="com.arsdigita.cms.contenttypes.FAQItem">
|
classname="com.arsdigita.cms.contenttypes.FAQItem">
|
||||||
|
|
||||||
<ctd:authoring-kit createComponent="com.arsdigita.cms.contenttypes.ui.authoring.FAQItemCreate">
|
<ctd:authoring-kit createComponent="com.arsdigita.cms.contenttypes.ui.authoring.FAQItemCreate">
|
||||||
|
|
||||||
<ctd:authoring-step
|
<ctd:authoring-step
|
||||||
labelKey="cms.contenttypes.shared.basic_properties.title"
|
labelKey="cms.contenttypes.shared.basic_properties.title"
|
||||||
labelBundle="com.arsdigita.cms.ui.CMSResources"
|
labelBundle="com.arsdigita.cms.ui.CMSResources"
|
||||||
descriptionKey="faq_item.authoring.basic_properties.description"
|
descriptionKey="faq_item.authoring.basic_properties.description"
|
||||||
descriptionBundle="com.arsdigita.cms.contenttypes.FAQItemResources"
|
descriptionBundle="com.arsdigita.cms.contenttypes.FAQItemResources"
|
||||||
component="com.arsdigita.cms.contenttypes.ui.FAQItemPropertiesStep"
|
component="com.arsdigita.cms.contenttypes.ui.FAQItemPropertiesStep"
|
||||||
ordering="1"/>
|
ordering="1"/>
|
||||||
|
|
||||||
<ctd:include href="/WEB-INF/content-types/assign-categories-step.xml"/>
|
<ctd:include href="/WEB-INF/content-types/assign-categories-step.xml"/>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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: MultiPartArticle.pdl 287 2005-02-22 00:29:02Z sskracic $
|
// $Id: MultiPartArticle.pdl 1690 2007-10-26 13:11:10Z chrisg23 $
|
||||||
// $DateTime: 2004/08/17 23:15:09 $
|
// $DateTime: 2004/08/17 23:15:09 $
|
||||||
model com.arsdigita.cms.contenttypes;
|
model com.arsdigita.cms.contenttypes;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,12 +40,12 @@ import org.apache.log4j.Logger;
|
||||||
* Loader.
|
* Loader.
|
||||||
*
|
*
|
||||||
* @author Justin Ross <jross@redhat.com>
|
* @author Justin Ross <jross@redhat.com>
|
||||||
* @version $Id: Loader.java 753 2005-09-02 13:22:34Z sskracic $
|
* @version $Id: Loader.java 1763 2009-01-22 20:01:31Z pboy $
|
||||||
*/
|
*/
|
||||||
public class Loader extends PackageLoader {
|
public class Loader extends PackageLoader {
|
||||||
public final static String versionId =
|
public final static String versionId =
|
||||||
"$Id: Loader.java 753 2005-09-02 13:22:34Z sskracic $" +
|
"$Id: Loader.java 1763 2009-01-22 20:01:31Z pboy $" +
|
||||||
"$Author: sskracic $" +
|
"$Author: pboy $" +
|
||||||
"$DateTime: 2003/11/08 01:27:15 $";
|
"$DateTime: 2003/11/08 01:27:15 $";
|
||||||
|
|
||||||
private static final Logger s_log = Logger.getLogger(Loader.class);
|
private static final Logger s_log = Logger.getLogger(Loader.class);
|
||||||
|
|
|
||||||
|
|
@ -18,22 +18,27 @@
|
||||||
|
|
||||||
package com.arsdigita.london.util;
|
package com.arsdigita.london.util;
|
||||||
|
|
||||||
import com.arsdigita.runtime.Startup;
|
// unused imports
|
||||||
|
// import com.arsdigita.runtime.Startup;
|
||||||
|
|
||||||
import org.apache.commons.cli.Options;
|
//import org.apache.commons.cli.Options;
|
||||||
import org.apache.commons.cli.HelpFormatter;
|
// import org.apache.commons.cli.HelpFormatter;
|
||||||
import org.apache.commons.cli.OptionBuilder;
|
// import org.apache.commons.cli.OptionBuilder;
|
||||||
import org.apache.commons.cli.GnuParser;
|
// import org.apache.commons.cli.GnuParser;
|
||||||
import org.apache.commons.cli.ParseException;
|
// import org.apache.commons.cli.ParseException;
|
||||||
import org.apache.commons.cli.CommandLine;
|
// import org.apache.commons.cli.CommandLine;
|
||||||
|
|
||||||
import java.io.OutputStream;
|
// import java.io.OutputStream;
|
||||||
import java.io.PrintWriter;
|
// import java.io.PrintWriter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @deprecated - use {@link com.arsdigita.packaging.Program}
|
* @deprecated - use {@link com.arsdigita.packaging.Program}
|
||||||
*
|
* pboy (Jan 2009):
|
||||||
|
* This replacement might be a bad idea. Program is used by a) the packaging
|
||||||
|
* programs during installation, configuration and updates and b) by all
|
||||||
|
* modules which provide a cli interface for bulk tasks (e.g. the import
|
||||||
|
* program). The latter may not be considered to a typical packaging task.
|
||||||
*/
|
*/
|
||||||
public abstract class Program extends com.arsdigita.packaging.Program {
|
public abstract class Program extends com.arsdigita.packaging.Program {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue