Moved Java classes for authoring steps of article to separate package.

pull/10/head
Jens Pelzetter 2021-12-14 19:23:58 +01:00
parent e640261066
commit 470b1628e9
10 changed files with 14 additions and 14 deletions

View File

@ -39,9 +39,9 @@ import org.librecms.CmsConstants;
import static org.librecms.CmsConstants.*; import static org.librecms.CmsConstants.*;
import org.librecms.contentsection.ContentItem; import org.librecms.contentsection.ContentItem;
import org.librecms.ui.contenttypes.MvcArticleCreateStep; import org.librecms.ui.contenttypes.article.MvcArticleCreateStep;
import org.librecms.ui.contenttypes.MvcArticlePropertiesStep; import org.librecms.ui.contenttypes.article.MvcArticlePropertiesStep;
import org.librecms.ui.contenttypes.MvcArticleTextBodyStep; import org.librecms.ui.contenttypes.article.MvcArticleTextBodyStep;
import org.librecms.ui.contentsections.documents.MvcAuthoringKit; import org.librecms.ui.contentsections.documents.MvcAuthoringKit;
import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlRootElement;

View File

@ -22,9 +22,9 @@ import org.librecms.ui.contentsections.documents.media.MediaStep;
import org.librecms.ui.contentsections.documents.media.MediaStepService; import org.librecms.ui.contentsections.documents.media.MediaStepService;
import org.librecms.ui.contentsections.documents.relatedinfo.RelatedInfoStep; import org.librecms.ui.contentsections.documents.relatedinfo.RelatedInfoStep;
import org.librecms.ui.contentsections.documents.relatedinfo.RelatedInfoStepService; import org.librecms.ui.contentsections.documents.relatedinfo.RelatedInfoStepService;
import org.librecms.ui.contenttypes.MvcArticlePropertiesStep; import org.librecms.ui.contenttypes.article.MvcArticlePropertiesStep;
import org.librecms.ui.contenttypes.MvcArticleTextBodyStep; import org.librecms.ui.contenttypes.article.MvcArticleTextBodyStep;
import org.librecms.ui.contenttypes.MvcArticleTextBodyStepResources; import org.librecms.ui.contenttypes.article.MvcArticleTextBodyStepResources;
import java.util.Set; import java.util.Set;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import org.libreccm.ui.AbstractMessagesBean; import org.libreccm.ui.AbstractMessagesBean;
import org.librecms.contenttypes.Article; import org.librecms.contenttypes.Article;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
/** /**
* Constants for the authoring steps for editing an {@link Article}. * Constants for the authoring steps for editing an {@link Article}.

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import org.libreccm.l10n.GlobalizationHelper; import org.libreccm.l10n.GlobalizationHelper;
import org.libreccm.l10n.LocalizedString; import org.libreccm.l10n.LocalizedString;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import org.libreccm.l10n.GlobalizationHelper; import org.libreccm.l10n.GlobalizationHelper;
import org.libreccm.l10n.LocalizedString; import org.libreccm.l10n.LocalizedString;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import com.arsdigita.kernel.KernelConfig; import com.arsdigita.kernel.KernelConfig;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import org.librecms.ui.contentsections.documents.CmsEditorLocaleVariantRow; import org.librecms.ui.contentsections.documents.CmsEditorLocaleVariantRow;

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA * MA 02110-1301 USA
*/ */
package org.librecms.ui.contenttypes; package org.librecms.ui.contenttypes.article;
import org.jsoup.Jsoup; import org.jsoup.Jsoup;
import org.jsoup.nodes.Document; import org.jsoup.nodes.Document;