CCM NG: Some bug fixing for H2 compatibility

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4308 8810af33-2d31-482b-a856-94f89814c4df
pull/2/head
jensp 2016-09-18 17:05:06 +00:00
parent 5421a8dc30
commit 930c20ccbd
20 changed files with 1506 additions and 254 deletions

View File

@ -101,28 +101,23 @@ import static org.librecms.CmsConstants.*;
+ "WHERE c.category = :folder "
+ "AND c.type = '" + CATEGORIZATION_TYPE_FOLDER + "' "
+ "AND LOWER(i.displayName) LIKE CONCAT(LOWER(:name), '%')"
// query = "SELECT COUNT(c) FROM Categorization c "
// + "JOIN c.categorizedObject o "
// + "WHERE c.category = :folder "
// + "AND TYPE(o) IN (ContentItem) "
// + "AND LOWER(o.displayName) LIKE CONCAT(LOWER(:name), '%s') "
),
@NamedQuery(
name = "ContentItem.hasLiveVersion",
query = "SELECT (CASE WHEN COUNT(i) > 0 THEN true ELSE false END) "
+ "FROM ContentItem i "
+ "WHERE i.uuid = ':uuid' "
+ "AND i.version = 'LIVE'"),
+ "WHERE i.itemUuid = :uuid "
+ "AND i.version = org.librecms.contentsection.ContentItemVersion.LIVE"),
@NamedQuery(
name = "ContentItem.findDraftVersion",
query = "SELECT i FROM ContentItem i "
+ "WHERE i.uuid = :uuid "
+ "AND i.version = 'DRAFT'"),
+ "WHERE i.itemUuid = :uuid "
+ "AND i.version = org.librecms.contentsection.ContentItemVersion.DRAFT"),
@NamedQuery(
name = "ContentItem.findLiveVersion",
query = "SELECT i FROM ContentItem i "
+ "WHERE i.uuid = :uuid "
+ "AND i.version = 'LIVE'")
+ "WHERE i.itemUuid = :uuid "
+ "AND i.version = org.librecms.contentsection.ContentItemVersion.LIVE")
})
public class ContentItem extends CcmObject implements Serializable,

View File

@ -54,7 +54,6 @@ import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
@ -151,7 +150,8 @@ public class ContentItemManager {
*
* @param <T> The type of the content item.
* @param name The name (URL stub) of the new content item.
* @param section The content section in which the item is generated.
* @param section The content section in which the item is
* generated.
* @param folder The folder in which in the item is stored.
* @param workflowTemplate The template for the workflow to apply to the new
* item.
@ -265,8 +265,9 @@ public class ContentItemManager {
*
* @param item The item to copy.
* @param targetFolder The folder in which the copy is created. If the
* target folder is the same folder as the folder of the original item an
* index is appended to the name of the item.
* target folder is the same folder as the folder of the
* original item an index is appended to the name of the
* item.
*/
@Transactional(Transactional.TxType.REQUIRED)
@SuppressWarnings("unchecked")
@ -538,6 +539,8 @@ public class ContentItemManager {
}
}
liveItem.setVersion(ContentItemVersion.PUBLISHING);
liveItem.setItemUuid(draftItem.getItemUuid());
liveItem.setContentType(draftItem.getContentType());
final Lifecycle lifecycle = lifecycleManager.createLifecycle(
@ -547,9 +550,9 @@ public class ContentItemManager {
liveItem.setWorkflow(draftItem.getWorkflow());
draftItem.getCategories().forEach(categorization -> categoryManager
.addObjectToCategory(item, categorization.getCategory()));
liveItem.setUuid(draftItem.getUuid());
.addObjectToCategory(liveItem,
categorization.getCategory(),
categorization.getType()));
// !!!!!!!!!!!!!!!!!!!!!
// ToDo copy Attachments
@ -574,6 +577,10 @@ public class ContentItemManager {
final Method readMethod = propertyDescriptor.getReadMethod();
final Method writeMethod = propertyDescriptor.getWriteMethod();
if (writeMethod == null) {
continue;
}
if (LocalizedString.class.equals(propType)) {
final LocalizedString source;
final LocalizedString target;
@ -672,6 +679,9 @@ public class ContentItemManager {
}
}
liveItem.setVersion(ContentItemVersion.LIVE);
contentItemRepo.save(liveItem);
return liveItem;
}
@ -717,9 +727,9 @@ public class ContentItemManager {
* @param type Type of the content item.
*
* @return The live version of an item. If the item provided is already the
* live version the provided item is returned, otherwise the live version is
* returned. If there is no live version an empty {@link Optional} is
* returned.
* live version the provided item is returned, otherwise the live
* version is returned. If there is no live version an empty
* {@link Optional} is returned.
*/
public <T extends ContentItem> Optional<T> getLiveVersion(
final ContentItem item,
@ -759,10 +769,10 @@ public class ContentItemManager {
* @param type Type of the item.
*
* @return The draft version of the provided content item. If the provided
* item is the draft version the provided item is simply returned. Otherwise
* the draft version is retrieved from the database and is returned. Each
* content item has a draft version (otherwise something is seriously wrong
* with the database) this method will
* item is the draft version the provided item is simply returned.
* Otherwise the draft version is retrieved from the database and is
* returned. Each content item has a draft version (otherwise
* something is seriously wrong with the database) this method will
* <b>never</b> return {@code null}.
*/
@SuppressWarnings("unchecked")

View File

@ -15,11 +15,11 @@
create table CCM_CMS.ARTICLE_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.ARTICLES (
@ -47,7 +47,7 @@
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, ASSET_ID, LOCALE)
primary key (REV, ASSET_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.ASSETS (
@ -79,7 +79,7 @@
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, LIST_ID, LOCALE)
primary key (REV, LIST_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.ATTACHMENT_LISTS (
@ -100,7 +100,7 @@
primary key (LIST_ID, REV)
);
create table CCM_CMS.AttachmentList_ItemAttachment_AUD (
create table CCM_CMS.ATTACHMENTLIST_ITEMATTACHMENT_AUD (
REV integer not null,
LIST_ID bigint not null,
ATTACHMENT_ID bigint not null,
@ -156,7 +156,7 @@
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, ASSET_ID, LOCALE)
primary key (REV, ASSET_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.BINARY_ASSETS (
@ -192,7 +192,7 @@
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, ASSET_ID, LOCALE)
primary key (REV, ASSET_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.BOOKMARKS (
@ -218,11 +218,11 @@
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEM_NAMES (
@ -235,11 +235,11 @@
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEM_TITLES (
@ -252,11 +252,11 @@
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEMS (
@ -341,11 +341,11 @@
create table CCM_CMS.EVENT_COSTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_DATES (
@ -358,11 +358,11 @@
create table CCM_CMS.EVENT_DATES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_LOCATIONS (
@ -375,11 +375,11 @@
create table CCM_CMS.EVENT_LOCATIONS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
@ -392,11 +392,11 @@
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_TEXTS (
@ -409,11 +409,11 @@
create table CCM_CMS.EVENT_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_TYPES (
@ -426,11 +426,11 @@
create table CCM_CMS.EVENT_TYPES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENTS (
@ -628,11 +628,11 @@
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MPA_SECTION_TITLES (
@ -645,11 +645,11 @@
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MPA_SUMMARIES (
@ -662,11 +662,11 @@
create table CCM_CMS.MPA_SUMMARIES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
@ -732,11 +732,11 @@
create table CCM_CMS.NEWS_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.NOTE_TEXTS (

View File

@ -49,6 +49,7 @@ import org.libreccm.workflow.WorkflowTemplate;
import org.libreccm.workflow.WorkflowTemplateRepository;
import org.librecms.contenttypes.Article;
import org.librecms.contenttypes.Event;
import org.librecms.lifecycle.LifecycleDefinition;
import org.librecms.lifecycle.LifecycleDefinitionRepository;
import java.io.File;
@ -595,7 +596,6 @@ public class ContentItemManagerTest {
itemManager.copy(item.get(), null);
}
// publish item (draft)
@Test
@InSequence(5100)
@UsingDataSet("datasets/org/librecms/contentsection/"
@ -613,10 +613,74 @@ public class ContentItemManagerTest {
"workflow_id"
})
public void publishItem() {
final Optional<ContentItem> item = itemRepo.findById(-10100L);
assertThat(item.isPresent(), is(true));
final ContentItem live = itemManager.publish(item.get());
assertThat(live, is(not(nullValue())));
assertThat(live.getVersion(), is(ContentItemVersion.LIVE));
}
@Test
@InSequence(5200)
@UsingDataSet("datasets/org/librecms/contentsection/"
+ "ContentItemManagerTest/data.xml")
@ShouldMatchDataSet(
value = "datasets/org/librecms/contentsection/"
+ "ContentItemManagerTest/after-publish.xml",
excludeColumns = {"categorization_id",
"lifecycle_id",
"object_id",
"object_order",
"phase_id",
"task_id",
"uuid",
"workflow_id"
})
public void publishItemWithLifecycle() {
final Optional<ContentItem> item = itemRepo.findById(-10100L);
final LifecycleDefinition lifecycleDef = lifecycleDefinitionRepo
.findById(-200L);
assertThat(item.isPresent(), is(true));
assertThat(lifecycleDef, is(not(nullValue())));
final ContentItem live = itemManager.publish(item.get(), lifecycleDef);
assertThat(live, is(not(nullValue())));
assertThat(live.getVersion(), is(ContentItemVersion.LIVE));
}
//Republish
@Test
@InSequence(5300)
@UsingDataSet("datasets/org/librecms/contentsection/"
+ "ContentItemManagerTest/data.xml")
@ShouldMatchDataSet(
value = "datasets/org/librecms/contentsection/"
+ "ContentItemManagerTest/after-republish.xml",
excludeColumns = {"categorization_id",
"lifecycle_id",
"object_id",
"object_order",
"phase_id",
"task_id",
"uuid",
"workflow_id"
})
public void republishItem() {
final Optional<ContentItem> item = itemRepo.findById(-10200L);
assertThat(item.isPresent(), is(true));
item.get().getName().addValue(Locale.ENGLISH, "article2-edited");
item.get().getTitle()
.addValue(Locale.ENGLISH, "Article has been edited");
itemRepo.save(item.get());
final Optional<ContentItem> draft = itemRepo.findById(-10200L);
assertThat(draft.get().getName().getValue(Locale.ENGLISH),
is(equalTo("article2-edited")));
itemManager.publish(draft.get());
}
// publish item (live)
// publish item null
// unpublish item
// unpublish non live

View File

@ -18,11 +18,13 @@
*/
package org.librecms.contentsection;
import com.sun.org.apache.bcel.internal.generic.LADD;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.junit.InSequence;
import org.jboss.arquillian.persistence.CreateSchema;
import org.jboss.arquillian.persistence.PersistenceTest;
import org.jboss.arquillian.persistence.ShouldMatchDataSet;
import org.jboss.arquillian.persistence.UsingDataSet;
import org.jboss.arquillian.transaction.api.annotation.TransactionMode;
import org.jboss.arquillian.transaction.api.annotation.Transactional;
@ -49,6 +51,7 @@ import org.librecms.contenttypes.News;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import java.util.Optional;
import java.util.stream.IntStream;
@ -350,4 +353,22 @@ public class ContentItemRepositoryTest {
is(0L));
}
@Test
@InSequence(600)
@UsingDataSet("datasets/org/librecms/contentsection/"
+ "ContentItemRepositoryTest/data.xml")
@ShouldMatchDataSet(value = "datasets/org/librecms/contentsection/"
+ "ContentItemRepositoryTest/after-save.xml",
excludeColumns = {"object_id", "uuid", "item_uuid"})
public void saveChangedItem() {
final Optional<ContentItem> item = itemRepo.findById(-10100L);
assertThat(item.isPresent(), is(true));
item.get().getName().addValue(Locale.ENGLISH, "first-article");
item.get().getTitle().addValue(Locale.ENGLISH, "First Article");
itemRepo.save(item.get());
}
}

View File

@ -50,6 +50,7 @@ public class DatasetsTest extends DatasetsVerifier {
"/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-rename.xml",
"/datasets/org/librecms/contentsection/ContentItemRepositoryTest/data.xml",
"/datasets/org/librecms/contentsection/ContentItemRepositoryTest/after-save.xml",
"/datasets/org/librecms/contentsection/ContentItemManagerTest/data.xml",
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-create-contentitem.xml",
@ -57,7 +58,8 @@ public class DatasetsTest extends DatasetsVerifier {
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-move.xml",
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-copy-to-other-folder.xml",
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-copy-to-same-folder.xml",
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-publish.xml"});
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-publish.xml",
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-republish.xml"});
}
public DatasetsTest(final String datasetPath) {

View File

@ -23,11 +23,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.ARTICLE_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.ARTICLES (
@ -226,11 +226,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEM_NAMES (
@ -243,11 +243,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEM_TITLES (
@ -260,11 +260,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEMS (
@ -355,11 +355,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_COSTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_DATES (
@ -372,11 +372,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_DATES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_LOCATIONS (
@ -389,11 +389,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_LOCATIONS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
@ -406,11 +406,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_TEXTS (
@ -423,11 +423,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_TYPES (
@ -440,11 +440,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_TYPES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENTS (
@ -642,11 +642,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MPA_SECTION_TITLES (
@ -659,11 +659,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MPA_SUMMARIES (
@ -676,11 +676,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.MPA_SUMMARIES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
@ -746,11 +746,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.NEWS_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.NOTE_TEXTS (

View File

@ -23,11 +23,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.ARTICLE_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.ARTICLES (
@ -226,11 +226,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEM_NAMES (
@ -243,11 +243,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEM_TITLES (
@ -260,11 +260,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.CONTENT_ITEMS (
@ -355,11 +355,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_COSTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_DATES (
@ -372,11 +372,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_DATES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_LOCATIONS (
@ -389,11 +389,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_LOCATIONS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
@ -406,11 +406,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_TEXTS (
@ -423,11 +423,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENT_TYPES (
@ -440,11 +440,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.EVENT_TYPES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.EVENTS (
@ -642,11 +642,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MPA_SECTION_TITLES (
@ -659,11 +659,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MPA_SUMMARIES (
@ -676,11 +676,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.MPA_SUMMARIES_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
@ -746,11 +746,11 @@ create table CCM_CMS.ARTICLE_LEADS (
create table CCM_CMS.NEWS_TEXTS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE clob,
LOCALIZED_VALUE varchar,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALE)
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table CCM_CMS.NOTE_TEXTS (

View File

@ -247,7 +247,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -249,7 +249,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -272,7 +272,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -285,7 +285,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -237,7 +237,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -247,7 +247,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -0,0 +1,533 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.workflows workflow_id="-100" />
<ccm_core.workflows workflow_id="-110" />
<ccm_core.workflow_names workflow_id="-100"
locale="en"
localized_value="Standard workflow" />
<ccm_core.workflow_names workflow_id="-110"
locale="en"
localized_value="Fast workflow" />
<ccm_core.workflow_templates workflow_id="-100" />
<ccm_core.workflow_templates workflow_id="-110" />
<ccm_core.workflow_tasks task_id="-100100"
active="false"
task_state="waiting"
workflow_id="-100" />
<ccm_core.workflow_tasks task_id="-100200"
active="false"
task_state="waiting"
workflow_id="-100" />
<ccm_core.workflow_tasks task_id="-110100"
active="false"
task_state="waiting"
workflow_id="-110" />
<ccm_core.workflow_task_labels task_id="-100100"
localized_value="Task 1.1"
locale="en" />
<ccm_core.workflow_task_labels task_id="-100200"
localized_value="Task 1.2"
locale="en" />
<ccm_core.workflow_task_labels task_id="-110100"
localized_value="Task 2.1"
locale="en" />
<ccm_core.workflow_user_tasks task_id="-100100"
duration_minutes="0"
locked="false" />
<ccm_core.workflow_user_tasks task_id="-100200"
duration_minutes="0"
locked="false" />
<ccm_core.workflow_user_tasks task_id="-110100"
duration_minutes="0"
locked="false" />
<ccm_cms.lifecyle_definitions lifecycle_definition_id="-200" />
<ccm_cms.lifecyle_definitions lifecycle_definition_id="-210" />
<ccm_cms.lifecycle_definition_labels object_id="-200"
localized_value="Default lifecycle"
locale="en" />
<ccm_cms.lifecycle_definition_labels object_id="-210"
localized_value="Alternate lifecycle"
locale="en" />
<ccm_cms.lifecycle_phase_definitions phase_definition_id="-200100"
lifecycle_definition_id="-200"
default_delay="0"
default_duration="0" />
<ccm_cms.lifecycle_phase_definitions phase_definition_id="-200200"
lifecycle_definition_id="-200"
default_delay="0"
default_duration="0" />
<ccm_cms.lifecycle_phase_definitions phase_definition_id="-210100"
lifecycle_definition_id="-210"
default_delay="0"
default_duration="0" />
<ccm_cms.lifecycle_phase_definition_labels object_id="-200100"
localized_value="Phase 1"
locale="en" />
<ccm_cms.lifecycle_phase_definition_labels object_id="-200200"
localized_value="Phase 2"
locale="en" />
<ccm_cms.lifecycle_phase_definition_labels object_id="-210100"
localized_value="The only phase"
locale="en" />
<ccm_core.ccm_objects object_id="-1100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-2100"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-2110"
display_name="folder1"
uuid="c634c1c3-41b7-4773-bb2e-5b6cd14492a3" />
<ccm_core.ccm_objects object_id="-2120"
display_name="folder2"
uuid="3b2a3a92-cdea-4fe3-b364-401eb3fb0ffc" />
<ccm_core.ccm_objects object_id="-2200"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-10100"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-10300"
display_name="article3"
uuid="f4b38abb-234b-4354-bc92-e36c068a1ebd" />
<ccm_core.ccm_objects object_id="-10200"
display_name="article2"
uuid="acae860f-2ffa-450d-b486-054292f0dae6" />
<ccm_core.ccm_objects object_id="-99200"
display_name="article2"
uuid="ad8aaec6-1a0d-4e4f-a1e1-8b7bdc3014a4" />
<ccm_core.ccm_objects object_id="-10400"
display_name="news1"
uuid="d9ea527d-c6e3-4bdd-962d-c0a1a80c6c72" />
<ccm_core.ccm_objects object_id="-20100"
display_name="org.librecms.contenttypes.Article"
uuid="2c8ec2fb-319d-4d44-9698-697c08b2b941" />
<ccm_core.ccm_objects object_id="-20200"
display_name="org.librecms.contenttypes.News"
uuid="47740f22-f89f-4ec3-90cf-d62859e53c7e" />
<ccm_core.categories object_id="-2100"
unique_id="82014239-9c06-486d-ae8c-4ae47f52a699"
name="info_root"
enabled="true"
visible="true"
abstract_category="false"
category_order="1" />
<ccm_core.categories object_id="-2110"
unique_id="c634c1c3-41b7-4773-bb2e-5b6cd14492a3"
parent_category_id="-2100"
name="folder1"
enabled="true"
visible="true"
abstract_category="false"
category_order="1" />
<ccm_core.categories object_id="-2120"
unique_id="3b2a3a92-cdea-4fe3-b364-401eb3fb0ffc"
parent_category_id="-2100"
name="folder2"
enabled="true"
visible="true"
abstract_category="false"
category_order="2" />
<ccm_core.categories object_id="-2200"
unique_id="b163f73c-9ac2-44d7-a037-de621f5ca828"
name="info_assets"
enabled="true"
visible="true"
abstract_category="false"
category_order="1" />
<ccm_core.category_titles object_id="-2100"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-2200"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-1100"
created="2016-07-15" />
<ccm_core.resource_titles object_id="-1100"
locale="en"
localized_value="info" />
<ccm_core.applications object_id="-1100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.content_sections object_id="-1100"
label="info"
root_documents_folder_id="-2100"
root_assets_folder_id="-2200" />
<ccm_cms.content_section_workflow_templates
content_section_id="-1100"
workflow_template_id="-100" />
<ccm_cms.content_section_workflow_templates
content_section_id="-1100"
workflow_template_id="-110" />
<ccm_cms.content_section_lifecycle_definitions
content_section_id="-1100"
lifecycle_definition_id="-200" />
<ccm_cms.content_section_lifecycle_definitions
content_section_id="-1100"
lifecycle_definition_id="-210" />
<ccm_cms.content_types object_id="-20100"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-1100"
default_workflow="-100"
default_lifecycle_id="-200" />
<ccm_cms.content_types object_id="-20200"
content_item_class="org.librecms.contenttypes.News"
content_section_id="-1100"
default_workflow="-100"
default_lifecycle_id="-200" />
<ccm_cms.content_items object_id="-10100"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items object_id="-10200"
item_uuid="acae860f-2ffa-450d-b486-054292f0dae6"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items object_id="-10300"
item_uuid="f4b38abb-234b-4354-bc92-e36c068a1ebd"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items object_id="-10400"
item_uuid="d9ea527d-c6e3-4bdd-962d-c0a1a80c6c72"
version="DRAFT"
content_type_id="-20200" />
<ccm_cms.content_items object_id="-99200"
item_uuid="acae860f-2ffa-450d-b486-054292f0dae6"
version="LIVE"
content_type_id="-20100" />
<ccm_cms.content_item_names object_id="-10100"
locale="en"
localized_value="article1" />
<ccm_cms.content_item_names object_id="-10200"
locale="en"
localized_value="article2" />
<ccm_cms.content_item_names object_id="-10300"
locale="en"
localized_value="article3" />
<ccm_cms.content_item_names object_id="-10400"
locale="en"
localized_value="news1" />
<ccm_cms.content_item_names object_id="-99200"
locale="en"
localized_value="article2" />
<ccm_cms.content_item_titles object_id="-10100"
locale="en"
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />
<ccm_cms.content_item_titles object_id="-10400"
locale="en"
localized_value="News 1" />
<ccm_cms.content_item_titles object_id="-99200"
locale="en"
localized_value="Article 2 Title" />
<ccm_cms.content_type_labels object_id="-20100"
locale="en"
localized_value="Article" />
<ccm_cms.content_type_labels object_id="-20200"
locale="en"
localized_value="News" />
<ccm_cms.articles object_id="-10100" />
<ccm_cms.articles object_id="-10200" />
<ccm_cms.articles object_id="-10300" />
<ccm_cms.articles object_id="-99200" />
<ccm_cms.article_texts
object_id="-10100"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-10200"
locale="en"
localized_value="Duis quis tincidunt elit. In pharetra justo sit amet ipsum dictum, at." />
<ccm_cms.article_texts
object_id="-10300"
locale="en"
localized_value="Etiam euismod lacus laoreet sodales ultricies. Pellentesque non elit vitae purus sagittis." />
<ccm_cms.article_texts
object_id="-99200"
locale="en"
localized_value="Duis quis tincidunt elit. In pharetra justo sit amet ipsum dictum, at." />
<ccm_cms.news object_id="-10400"
news_date="2016-08-08"
homepage="false" />
<ccm_cms.news_texts
object_id="-10400"
locale="en"
localized_value="Curabitur vel sapien eu eros gravida bibendum vitae." />
<ccm_core.categorizations categorization_id="-30100"
category_id="-2110"
object_id="-10100"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-2100"
object_id="-10200"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-2100"
object_id="-10300"
category_order="1"
object_order="3"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30400"
category_id="-2100"
object_id="-10400"
category_order="1"
object_order="4"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-98200"
category_id="-2100"
object_id="-99200"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.ccm_roles role_id="-3100"
name="info_alert_recipient" />
<ccm_core.ccm_roles role_id="-3200"
name="info_author" />
<ccm_core.ccm_roles role_id="-3300"
name="info_editor" />
<ccm_core.ccm_roles role_id="-3400"
name="info_manager" />
<ccm_core.ccm_roles role_id="-3500"
name="info_publisher" />
<ccm_core.ccm_roles role_id="-3600"
name="info_content_reader" />
<ccm_core.task_assignments task_assignment_id="-910"
task_id="-100100"
role_id="-3200" />
<ccm_core.task_assignments task_assignment_id="-920"
task_id="-100100"
role_id="-3300" />
<ccm_core.task_assignments task_assignment_id="-930"
task_id="-110100"
role_id="-3200" />
<ccm_cms.content_section_roles role_id="-3100"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3200"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3300"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3400"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3500"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3600"
section_id="-1100" />
<ccm_core.permissions permission_id="-4110"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4120"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4130"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4140"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4150"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4210"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4220"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4230"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4240"
granted_privilege="approve_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4250"
granted_privilege="delete_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4260"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4270"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4310"
granted_privilege="administer_roles"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4320"
granted_privilege="administer_workflow"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4330"
granted_privilege="administer_lifecyles"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4340"
granted_privilege="administer_categories"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4350"
granted_privilege="administer_content_types"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4360"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4370"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4380"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4390"
granted_privilege="approve_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4400"
granted_privilege="publish_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4410"
granted_privilege="delete_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4420"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4430"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4510"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4520"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4530"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4540"
granted_privilege="approve_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4550"
granted_privilege="publish_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4560"
granted_privilege="delete_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4570"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4580"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4610"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3600"
creation_date="2016-07-15"/>
</dataset>

View File

@ -237,7 +237,7 @@
localized_value="Article 1" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
localized_value="Article 2 Title" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />

View File

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="14516028000000" />
<ccm_core.ccm_revisions id="1"
timestamp="99999999990000" />
<ccm_core.ccm_objects object_id="-1100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-2100"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-2200"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-10100"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-10300"
display_name="article3"
uuid="f4b38abb-234b-4354-bc92-e36c068a1ebd" />
<ccm_core.ccm_objects object_id="-10200"
display_name="article2"
uuid="acae860f-2ffa-450d-b486-054292f0dae6" />
<ccm_core.ccm_objects object_id="-10400"
display_name="news1"
uuid="d9ea527d-c6e3-4bdd-962d-c0a1a80c6c72" />
<ccm_core.ccm_objects object_id="-20100"
display_name="org.librecms.contenttypes.Article"
uuid="2c8ec2fb-319d-4d44-9698-697c08b2b941" />
<ccm_core.ccm_objects object_id="-20200"
display_name="org.librecms.contenttypes.News"
uuid="47740f22-f89f-4ec3-90cf-d62859e53c7e" />
<ccm_core.ccm_objects_aud object_id="-10100"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-10200"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-10300"
rev="0"
revtype="0"
display_name="article3" />
<ccm_core.ccm_objects_aud object_id="-10400"
rev="0"
revtype="0"
display_name="news1" />
<ccm_core.ccm_objects_aud object_id="-10100"
rev="1"
revtype="2"
display_name="article1" />
<ccm_core.categories object_id="-2100"
unique_id="82014239-9c06-486d-ae8c-4ae47f52a699"
name="info_root"
enabled="true"
visible="true"
abstract_category="false"
category_order="1" />
<ccm_core.categories object_id="-2200"
unique_id="b163f73c-9ac2-44d7-a037-de621f5ca828"
name="info_assets"
enabled="true"
visible="true"
abstract_category="false"
category_order="1" />
<ccm_core.category_titles object_id="-2100"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-2200"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-1100"
created="2016-07-15" />
<ccm_core.resource_titles object_id="-1100"
locale="en"
localized_value="info" />
<ccm_core.applications object_id="-1100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.content_sections object_id="-1100"
label="info"
root_documents_folder_id="-2100"
root_assets_folder_id="-2200" />
<ccm_cms.content_types object_id="-20100"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-1100" />
<ccm_cms.content_types object_id="-20200"
content_item_class="org.librecms.contenttypes.News"
content_section_id="-1100" />
<ccm_cms.content_items object_id="-10100"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items object_id="-10200"
item_uuid="acae860f-2ffa-450d-b486-054292f0dae6"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items object_id="-10300"
item_uuid="f4b38abb-234b-4354-bc92-e36c068a1ebd"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items object_id="-10400"
item_uuid="d9ea527d-c6e3-4bdd-962d-c0a1a80c6c72"
version="DRAFT"
content_type_id="-20200" />
<ccm_cms.content_items_aud object_id="-10100"
rev="0"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items_aud object_id="-10100"
rev="1"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items_aud object_id="-10200"
rev="0"
item_uuid="acae860f-2ffa-450d-b486-054292f0dae6"
version="DRAFT"
content_type_id="-20100"/>
<ccm_cms.content_items_aud object_id="-10300"
rev="0"
item_uuid="f4b38abb-234b-4354-bc92-e36c068a1ebd"
version="DRAFT"
content_type_id="-20100"/>
<ccm_cms.content_items_aud object_id="-10400"
rev="0"
item_uuid="d9ea527d-c6e3-4bdd-962d-c0a1a80c6c72"
version="DRAFT"
content_type_id="-20200"/>
<ccm_cms.content_item_names object_id="-10100"
locale="en"
localized_value="first-article" />
<ccm_cms.content_item_names object_id="-10200"
locale="en"
localized_value="article2" />
<ccm_cms.content_item_names object_id="-10300"
locale="en"
localized_value="article3" />
<ccm_cms.content_item_names object_id="-10400"
locale="en"
localized_value="news1" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10100"
localized_value="article1"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10200"
localized_value="article2"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10300"
localized_value="article3"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10400"
localized_value="news1"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="1"
object_id="-10100"
localized_value="first-article"
locale="en"
revtype="1" />
<ccm_cms.content_item_titles object_id="-10100"
locale="en"
localized_value="first-article" />
<ccm_cms.content_item_titles object_id="-10200"
locale="en"
localized_value="Article 2" />
<ccm_cms.content_item_titles object_id="-10300"
locale="en"
localized_value="Article 3" />
<ccm_cms.content_item_titles object_id="-10400"
locale="en"
localized_value="News 1" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10100"
localized_value="Article 1"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10200"
localized_value="Article 2"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10300"
localized_value="Article 3"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10400"
localized_value="News 1"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="1"
object_id="-10100"
localized_value="First Article"
locale="en"
revtype="0" />
<ccm_cms.content_type_labels object_id="-20100"
locale="en"
localized_value="Article" />
<ccm_cms.content_type_labels object_id="-20200"
locale="en"
localized_value="News" />
<ccm_cms.articles object_id="-10100" />
<ccm_cms.articles object_id="-10200" />
<ccm_cms.articles object_id="-10300" />
<ccm_cms.articles_aud object_id="-10100"
rev="0" />
<ccm_cms.articles_aud object_id="-10200"
rev="0" />
<ccm_cms.articles_aud object_id="-10300"
rev="0" />
<ccm_cms.articles_aud object_id="-10100"
rev="1" />
<ccm_cms.article_texts
object_id="-10100"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-10200"
locale="en"
localized_value="Duis quis tincidunt elit. In pharetra justo sit amet ipsum dictum, at." />
<ccm_cms.article_texts
object_id="-10300"
locale="en"
localized_value="Etiam euismod lacus laoreet sodales ultricies. Pellentesque non elit vitae purus sagittis." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-10100"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis."
locale="en"
revtype="0" />
<ccm_cms.article_texts_aud
rev="0"
object_id="-10200"
localized_value="Duis quis tincidunt elit. In pharetra justo sit amet ipsum dictum, at."
locale="en"
revtype="0" />
<ccm_cms.article_texts_aud
rev="0"
object_id="-10300"
localized_value="Etiam euismod lacus laoreet sodales ultricies. Pellentesque non elit vitae purus sagittis."
locale="en"
revtype="0" />
<ccm_cms.article_texts_aud
rev="1"
object_id="-10100"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis."
locale="en"
revtype="0" />
<ccm_cms.news object_id="-10400"
news_date="2016-08-08"
homepage="false" />
<ccm_cms.news_texts
object_id="-10400"
locale="en"
localized_value="Curabitur vel sapien eu eros gravida bibendum vitae." />
<ccm_core.categorizations categorization_id="-30100"
category_id="-2100"
object_id="-10100"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-2100"
object_id="-10200"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-2100"
object_id="-10300"
category_order="1"
object_order="3"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30400"
category_id="-2100"
object_id="-10400"
category_order="1"
object_order="4"
category_index="false"
type="folder" />
<ccm_core.ccm_roles role_id="-3100"
name="info_alert_recipient" />
<ccm_core.ccm_roles role_id="-3200"
name="info_author" />
<ccm_core.ccm_roles role_id="-3300"
name="info_editor" />
<ccm_core.ccm_roles role_id="-3400"
name="info_manager" />
<ccm_core.ccm_roles role_id="-3500"
name="info_publisher" />
<ccm_core.ccm_roles role_id="-3600"
name="info_content_reader" />
<ccm_cms.content_section_roles role_id="-3100"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3200"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3300"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3400"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3500"
section_id="-1100" />
<ccm_cms.content_section_roles role_id="-3600"
section_id="-1100" />
<ccm_core.permissions permission_id="-4110"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4120"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4130"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4140"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4150"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3200"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4210"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4220"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4230"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4240"
granted_privilege="approve_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4250"
granted_privilege="delete_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4260"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4270"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3300"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4310"
granted_privilege="administer_roles"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4320"
granted_privilege="administer_workflow"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4330"
granted_privilege="administer_lifecyles"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4340"
granted_privilege="administer_categories"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4350"
granted_privilege="administer_content_types"
object_id="-1100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4360"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4370"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4380"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4390"
granted_privilege="approve_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4400"
granted_privilege="publish_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4410"
granted_privilege="delete_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4420"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4430"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3400"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4510"
granted_privilege="categorize_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4520"
granted_privilege="create_new_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4530"
granted_privilege="edit_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4540"
granted_privilege="approve_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4550"
granted_privilege="publish_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4560"
granted_privilege="delete_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4570"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4580"
granted_privilege="preview_items"
object_id="-2100"
grantee_id="-3500"
creation_date="2016-07-15"/>
<ccm_core.permissions permission_id="-4610"
granted_privilege="view_published_items"
object_id="-2100"
grantee_id="-3600"
creation_date="2016-07-15"/>
</dataset>

View File

@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-1100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
@ -29,6 +32,23 @@
display_name="org.librecms.contenttypes.News"
uuid="47740f22-f89f-4ec3-90cf-d62859e53c7e" />
<ccm_core.ccm_objects_aud object_id="-10100"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-10200"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-10300"
rev="0"
revtype="0"
display_name="article3" />
<ccm_core.ccm_objects_aud object_id="-10400"
rev="0"
revtype="0"
display_name="news1" />
<ccm_core.categories object_id="-2100"
unique_id="82014239-9c06-486d-ae8c-4ae47f52a699"
name="info_root"
@ -90,6 +110,27 @@
version="DRAFT"
content_type_id="-20200" />
<ccm_cms.content_items_aud object_id="-10100"
rev="0"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-20100" />
<ccm_cms.content_items_aud object_id="-10200"
rev="0"
item_uuid="acae860f-2ffa-450d-b486-054292f0dae6"
version="DRAFT"
content_type_id="-20100"/>
<ccm_cms.content_items_aud object_id="-10300"
rev="0"
item_uuid="f4b38abb-234b-4354-bc92-e36c068a1ebd"
version="DRAFT"
content_type_id="-20100"/>
<ccm_cms.content_items_aud object_id="-10400"
rev="0"
item_uuid="d9ea527d-c6e3-4bdd-962d-c0a1a80c6c72"
version="DRAFT"
content_type_id="-20200"/>
<ccm_cms.content_item_names object_id="-10100"
locale="en"
localized_value="article1" />
@ -103,6 +144,27 @@
locale="en"
localized_value="news1" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10100"
localized_value="article1"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10200"
localized_value="article2"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10300"
localized_value="article3"
locale="en"
revtype="0" />
<ccm_cms.content_item_names_aud rev="0"
object_id="-10400"
localized_value="news1"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles object_id="-10100"
locale="en"
localized_value="Article 1" />
@ -116,6 +178,27 @@
locale="en"
localized_value="News 1" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10100"
localized_value="Article 1"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10200"
localized_value="Article 2"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10300"
localized_value="Article 3"
locale="en"
revtype="0" />
<ccm_cms.content_item_titles_aud rev="0"
object_id="-10400"
localized_value="News 1"
locale="en"
revtype="0" />
<ccm_cms.content_type_labels object_id="-20100"
locale="en"
localized_value="Article" />
@ -127,6 +210,13 @@
<ccm_cms.articles object_id="-10200" />
<ccm_cms.articles object_id="-10300" />
<ccm_cms.articles_aud object_id="-10100"
rev="0" />
<ccm_cms.articles_aud object_id="-10200"
rev="0" />
<ccm_cms.articles_aud object_id="-10300"
rev="0" />
<ccm_cms.article_texts
object_id="-10100"
locale="en"
@ -140,6 +230,25 @@
locale="en"
localized_value="Etiam euismod lacus laoreet sodales ultricies. Pellentesque non elit vitae purus sagittis." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-10100"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis."
locale="en"
revtype="0" />
<ccm_cms.article_texts_aud
rev="0"
object_id="-10200"
localized_value="Duis quis tincidunt elit. In pharetra justo sit amet ipsum dictum, at."
locale="en"
revtype="0" />
<ccm_cms.article_texts_aud
rev="0"
object_id="-10300"
localized_value="Etiam euismod lacus laoreet sodales ultricies. Pellentesque non elit vitae purus sagittis."
locale="en"
revtype="0" />
<ccm_cms.news object_id="-10400"
news_date="2016-08-08"
homepage="false" />