Verschiedene deprecated Klassen und Methoden entfernt.

git-svn-id: https://svn.libreccm.org/ccm/trunk@373 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2010-04-17 08:24:52 +00:00
parent a6edf12f62
commit 4635433f20
9 changed files with 16 additions and 18 deletions

View File

@ -82,7 +82,7 @@ import com.arsdigita.xml.XML;
* Executes recursivly at each system startup. * Executes recursivly at each system startup.
* *
* @author Justin Ross <jross@redhat.com> * @author Justin Ross <jross@redhat.com>
* @version $Id: Initializer.java 755 2005-09-02 13:42:47Z sskracic $ * @version $Id: Initializer.java 2070 2010-01-28 08:47:41Z pboy $
*/ */
public class Initializer extends CompoundInitializer { public class Initializer extends CompoundInitializer {

View File

@ -52,7 +52,7 @@ import org.apache.log4j.Logger;
* Loader. * Loader.
* *
* @author Justin Ross <jross@redhat.com> * @author Justin Ross <jross@redhat.com>
* @version $Id: Loader.java 287 2005-02-22 00:29:02Z sskracic $ * @version $Id: Loader.java 2070 2010-01-28 08:47:41Z pboy $
*/ */
public class Loader extends PackageLoader { public class Loader extends PackageLoader {

View File

@ -30,7 +30,7 @@ import com.arsdigita.london.navigation.ui.portlet.ItemListPortletRenderer;
* The items can be selected / restricted by base type and filtered by a * The items can be selected / restricted by base type and filtered by a
* category or category tree. Ordering and length of the list can be configured. * category or category tree. Ordering and length of the list can be configured.
* *
* @version $Id: $ * @version $Id: ItemListPortlet.java 2070 2010-01-28 08:47:41Z pboy $
*/ */
public class ItemListPortlet extends ObjectListPortlet { public class ItemListPortlet extends ObjectListPortlet {

View File

@ -49,7 +49,7 @@ import org.apache.log4j.Logger;
* The objects can be selected / restricted by object type and filtered by a * The objects can be selected / restricted by object type and filtered by a
* category or category tree. Ordering and length of the list can be configured. * category or category tree. Ordering and length of the list can be configured.
* *
* @version $Id: $ * @version $Id: ObjectListPortlet.java 2070 2010-01-28 08:47:41Z pboy $
*/ */
public class ObjectListPortlet extends Portlet { public class ObjectListPortlet extends Portlet {
private static final Logger s_log = private static final Logger s_log =

View File

@ -63,7 +63,7 @@ public abstract class AbstractObjectList
// attribute so that it can decide whether to order by date for // attribute so that it can decide whether to order by date for
// a date order category // a date order category
m_definition.setDateAttribute(m_renderer); m_definition.setDateAttribute(m_renderer);
return m_definition.getDataCollection(getModel()); return m_definition.getDataCollection(getModel());
} }

View File

@ -67,32 +67,30 @@ import org.apache.log4j.Logger;
* <xsl:include href="../../navigation/xsl/content-lists.xsl" /> * <xsl:include href="../../navigation/xsl/content-lists.xsl" />
* </ul> * </ul>
* *
* @version $Revision: $ $Date: $ * @version $Id: ContentList.java 1173 2006-06-14 13:54:39Z fabrice $
*/ */
public class ContentList extends AbstractComponent { public class ContentList extends AbstractComponent {
// extends SimpleComponent // extends SimpleComponent
public static final String versionId = "$Id: ContentList.java 1173 2006-06-14 13:54:39Z fabrice $"; private static Logger log = Logger.getLogger(ContentList.class);
private static Logger log = Logger.getLogger(ContentList.class);;
private static final String TAG_ITEMLISTS = "cms:contentLists"; private static final String TAG_ITEMLISTS = "cms:contentLists";
private static final String TAG_ITEMLIST = "cms:contentList"; private static final String TAG_ITEMLIST = "cms:contentList";
private static final String TAG_ITEMLIST_TYPE = "type"; private static final String TAG_ITEMLIST_TYPE = "type";
private static final String TAG_ITEM = "cms:item"; private static final String TAG_ITEM = "cms:item";
private static final String TAG_ITEM_ISINDEX = "name"; private static final String TAG_ITEM_ISINDEX = "name";
private static final String TAG_ITEM_ISINDEX_VALUE = "index"; private static final String TAG_ITEM_ISINDEX_VALUE = "index";
private static final String NAVIGATION_ROOT_NAME = "Navigation"; private static final String NAVIGATION_ROOT_NAME = "Navigation";
private static final String CATEGORYID_PARAM = "categoryID"; private static final String CATEGORYID_PARAM = "categoryID";
private static final String CONTENTITEM_CLASS_NAME = ContentItem.class.getName(); private static final String CONTENTITEM_CLASS_NAME = ContentItem.class.getName();
public ContentList() { public ContentList() {
super(); super();
} }
/** /**
* Generates the XML. * Generates the XML.
* *

View File

@ -41,7 +41,7 @@ import org.apache.log4j.Logger;
* @version $Id: $ * @version $Id: $
*/ */
public class NavigationRootIndexItem extends AbstractComponent { public class NavigationRootIndexItem extends AbstractComponent {
private static Logger log = Logger.getLogger(NavigationRootIndexItem.class);; private static Logger log = Logger.getLogger(NavigationRootIndexItem.class);;
private static final String TAG_PARENT = "navrootindex"; private static final String TAG_PARENT = "navrootindex";

View File

@ -38,7 +38,7 @@ import org.apache.log4j.Logger;
* model generates a component that contains related items. * model generates a component that contains related items.
* *
* @author <a href="mailto:tzumainn@arsdigita.com">Tzu-Mainn Chen</a> * @author <a href="mailto:tzumainn@arsdigita.com">Tzu-Mainn Chen</a>
* @version $Id: RelatedItems.java 755 2005-09-02 13:42:47Z sskracic $ * @version $Id: RelatedItems.java 2011 2009-10-04 01:03:56Z pboy $
* *
*/ */

View File

@ -35,7 +35,7 @@ import com.arsdigita.london.navigation.Navigation;
* Lists category tree. * Lists category tree.
* *
* @author Tri Tran (tri@arsdigita.com) * @author Tri Tran (tri@arsdigita.com)
* @version $Id: CategoryTree.java 1695 2008-03-18 11:47:59Z terry $ * @version $Id: CategoryTree.java 2070 2010-01-28 08:47:41Z pboy $
*/ */
public class CategoryTree extends Tree { public class CategoryTree extends Tree {