Manually synchronized with 2.3.x & rebased ccm-cms to ensure all Modifications mady by Alexander Konermann are included.

git-svn-id: https://svn.libreccm.org/ccm/trunk@5178 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2017-12-22 10:42:39 +00:00
parent 2f79a0e8e6
commit dc36aea0be
12 changed files with 67 additions and 14 deletions

View File

@ -61,7 +61,6 @@ import org.xml.sax.helpers.DefaultHandler;
* an description element containing a description of the entry. * an description element containing a description of the entry.
* *
* @author Jens Pelzetter <jens@jp-digital.de> * @author Jens Pelzetter <jens@jp-digital.de>
* @version $Id$
*/ */
public class RelationAttributeImportTool { public class RelationAttributeImportTool {

View File

@ -1,3 +1,20 @@
/*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
package com.arsdigita.cms.contenttypes.ui; package com.arsdigita.cms.contenttypes.ui;
import com.arsdigita.bebop.Component; import com.arsdigita.bebop.Component;
@ -28,7 +45,6 @@ import java.math.BigDecimal;
/** /**
* *
* @author Jens Pelzetter <jens@jp-digital.de> * @author Jens Pelzetter <jens@jp-digital.de>
* @version $Id$
*/ */
public class GenericContactAddressSheet extends Table implements TableActionListener { public class GenericContactAddressSheet extends Table implements TableActionListener {

View File

@ -32,7 +32,6 @@ import com.arsdigita.xml.Element;
/** /**
* *
* @author Jens Pelzetter * @author Jens Pelzetter
* @version $Id$
*/ */
public class GenericPersonExtraXmlGenerator implements ExtraXMLGenerator { public class GenericPersonExtraXmlGenerator implements ExtraXMLGenerator {

View File

@ -1,3 +1,20 @@
/*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
package com.arsdigita.cms.contenttypes.ui.panels; package com.arsdigita.cms.contenttypes.ui.panels;
import com.arsdigita.xml.Element; import com.arsdigita.xml.Element;

View File

@ -1,3 +1,20 @@
/*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
package com.arsdigita.cms.contenttypes.ui.panels; package com.arsdigita.cms.contenttypes.ui.panels;
import com.arsdigita.persistence.DataQuery; import com.arsdigita.persistence.DataQuery;
@ -15,7 +32,6 @@ import org.apache.log4j.Logger;
* {@link com.arsdigita.cms.contenttypes.ui.GenericOrgaUnitTab}. * {@link com.arsdigita.cms.contenttypes.ui.GenericOrgaUnitTab}.
* *
* @author Jens Pelzetter * @author Jens Pelzetter
* @version $Id$
*/ */
public class Paginator { public class Paginator {

View File

@ -1,7 +1,19 @@
/* /*
* To change this license header, choose License Headers in Project Properties. *
* To change this template file, choose Tools | Templates * This library is free software; you can redistribute it and/or
* and open the template in the editor. * modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/ */
package com.arsdigita.cms.ui; package com.arsdigita.cms.ui;

View File

@ -48,7 +48,6 @@ public class IdSearchTab extends LayoutPanel {
filterform = new Form("IdSearchForm"); filterform = new Form("IdSearchForm");
formHeader = new Label("Item-id:"); formHeader = new Label("Item-id:");
textField = new TextField("IdFeld"); textField = new TextField("IdFeld");
// textField.setHint("An ID has 4 digits");
textField.addValidationListener(new NotNullValidationListener()); textField.addValidationListener(new NotNullValidationListener());
filterform.add(textField); filterform.add(textField);

View File

@ -72,7 +72,6 @@ import com.arsdigita.web.Web;
* reused in every row of the table. * reused in every row of the table.
* *
* @author <a href="mailto:mbryzek@arsdigita.com">Michael Bryzek</a> * @author <a href="mailto:mbryzek@arsdigita.com">Michael Bryzek</a>
* @version $Id: ContentSectionContainer.java 287 2005-02-22 00:29:02Z sskracic$
*/ */
public class ContentSectionContainer extends CMSContainer { public class ContentSectionContainer extends CMSContainer {

View File

@ -55,8 +55,7 @@ import org.apache.log4j.Logger;
* *
* @author Jack Chung (flattop@arsdigita.com) * @author Jack Chung (flattop@arsdigita.com)
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @author Peter Boy (pboy@barkhof.uni-bremen.de) * @author Peter Boy (pboy@uni-bremen.de)
* @version $Id: MainPage.java pboy $
*/ */
public class MainPage extends CMSApplicationPage implements ActionListener { public class MainPage extends CMSApplicationPage implements ActionListener {

View File

@ -83,7 +83,6 @@ import com.arsdigita.xml.Element;
/** /**
* *
* @version $Id: TasksPanel.java 1280 2006-07-27 09:12:09Z cgyg9330 $
*/ */
public class TasksPanel extends CMSContainer { public class TasksPanel extends CMSContainer {

View File

@ -72,7 +72,6 @@ import org.apache.log4j.Logger;
* @author Xixi D'Moon &lt;xdmoon@redhat.com&gt; * @author Xixi D'Moon &lt;xdmoon@redhat.com&gt;
* @author Justin Ross &lt;jross@redhat.com&gt; * @author Justin Ross &lt;jross@redhat.com&gt;
* @author Peter Boy (pboy@barkhof.uni-bremen.de) * @author Peter Boy (pboy@barkhof.uni-bremen.de)
* @version $Id: ContentSectionPage.java 2224 2011-08-01 07:45:23Z pboy $
*/ */
public class MainPage extends CMSApplicationPage implements ActionListener { public class MainPage extends CMSApplicationPage implements ActionListener {

View File

@ -51,7 +51,6 @@ import java.math.BigDecimal;
* *
* @author Michael Pih (pihman@arsdigita.com) * @author Michael Pih (pihman@arsdigita.com)
* @author Michael Bryzek (mbryzek@arsdigita.com) * @author Michael Bryzek (mbryzek@arsdigita.com)
* @version $Id: PartyInfo.java 287 2005-02-22 00:29:02Z sskracic $
*/ */
public class PartyInfo extends SimpleContainer { public class PartyInfo extends SimpleContainer {