CCM NG: Some bug fixing for H2 compatibility
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4308 8810af33-2d31-482b-a856-94f89814c4dfpull/2/head
parent
5421a8dc30
commit
930c20ccbd
|
|
@ -101,28 +101,23 @@ import static org.librecms.CmsConstants.*;
|
||||||
+ "WHERE c.category = :folder "
|
+ "WHERE c.category = :folder "
|
||||||
+ "AND c.type = '" + CATEGORIZATION_TYPE_FOLDER + "' "
|
+ "AND c.type = '" + CATEGORIZATION_TYPE_FOLDER + "' "
|
||||||
+ "AND LOWER(i.displayName) LIKE CONCAT(LOWER(:name), '%')"
|
+ "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(
|
@NamedQuery(
|
||||||
name = "ContentItem.hasLiveVersion",
|
name = "ContentItem.hasLiveVersion",
|
||||||
query = "SELECT (CASE WHEN COUNT(i) > 0 THEN true ELSE false END) "
|
query = "SELECT (CASE WHEN COUNT(i) > 0 THEN true ELSE false END) "
|
||||||
+ "FROM ContentItem i "
|
+ "FROM ContentItem i "
|
||||||
+ "WHERE i.uuid = ':uuid' "
|
+ "WHERE i.itemUuid = :uuid "
|
||||||
+ "AND i.version = 'LIVE'"),
|
+ "AND i.version = org.librecms.contentsection.ContentItemVersion.LIVE"),
|
||||||
@NamedQuery(
|
@NamedQuery(
|
||||||
name = "ContentItem.findDraftVersion",
|
name = "ContentItem.findDraftVersion",
|
||||||
query = "SELECT i FROM ContentItem i "
|
query = "SELECT i FROM ContentItem i "
|
||||||
+ "WHERE i.uuid = :uuid "
|
+ "WHERE i.itemUuid = :uuid "
|
||||||
+ "AND i.version = 'DRAFT'"),
|
+ "AND i.version = org.librecms.contentsection.ContentItemVersion.DRAFT"),
|
||||||
@NamedQuery(
|
@NamedQuery(
|
||||||
name = "ContentItem.findLiveVersion",
|
name = "ContentItem.findLiveVersion",
|
||||||
query = "SELECT i FROM ContentItem i "
|
query = "SELECT i FROM ContentItem i "
|
||||||
+ "WHERE i.uuid = :uuid "
|
+ "WHERE i.itemUuid = :uuid "
|
||||||
+ "AND i.version = 'LIVE'")
|
+ "AND i.version = org.librecms.contentsection.ContentItemVersion.LIVE")
|
||||||
|
|
||||||
})
|
})
|
||||||
public class ContentItem extends CcmObject implements Serializable,
|
public class ContentItem extends CcmObject implements Serializable,
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,6 @@ import java.beans.Introspector;
|
||||||
import java.beans.PropertyDescriptor;
|
import java.beans.PropertyDescriptor;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.Locale;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
|
@ -151,7 +150,8 @@ public class ContentItemManager {
|
||||||
*
|
*
|
||||||
* @param <T> The type of the content item.
|
* @param <T> The type of the content item.
|
||||||
* @param name The name (URL stub) of the new 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 folder The folder in which in the item is stored.
|
||||||
* @param workflowTemplate The template for the workflow to apply to the new
|
* @param workflowTemplate The template for the workflow to apply to the new
|
||||||
* item.
|
* item.
|
||||||
|
|
@ -265,8 +265,9 @@ public class ContentItemManager {
|
||||||
*
|
*
|
||||||
* @param item The item to copy.
|
* @param item The item to copy.
|
||||||
* @param targetFolder The folder in which the copy is created. If the
|
* @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
|
* target folder is the same folder as the folder of the
|
||||||
* index is appended to the name of the item.
|
* original item an index is appended to the name of the
|
||||||
|
* item.
|
||||||
*/
|
*/
|
||||||
@Transactional(Transactional.TxType.REQUIRED)
|
@Transactional(Transactional.TxType.REQUIRED)
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
|
@ -538,6 +539,8 @@ public class ContentItemManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
liveItem.setVersion(ContentItemVersion.PUBLISHING);
|
||||||
|
liveItem.setItemUuid(draftItem.getItemUuid());
|
||||||
liveItem.setContentType(draftItem.getContentType());
|
liveItem.setContentType(draftItem.getContentType());
|
||||||
|
|
||||||
final Lifecycle lifecycle = lifecycleManager.createLifecycle(
|
final Lifecycle lifecycle = lifecycleManager.createLifecycle(
|
||||||
|
|
@ -547,9 +550,9 @@ public class ContentItemManager {
|
||||||
liveItem.setWorkflow(draftItem.getWorkflow());
|
liveItem.setWorkflow(draftItem.getWorkflow());
|
||||||
|
|
||||||
draftItem.getCategories().forEach(categorization -> categoryManager
|
draftItem.getCategories().forEach(categorization -> categoryManager
|
||||||
.addObjectToCategory(item, categorization.getCategory()));
|
.addObjectToCategory(liveItem,
|
||||||
|
categorization.getCategory(),
|
||||||
liveItem.setUuid(draftItem.getUuid());
|
categorization.getType()));
|
||||||
|
|
||||||
// !!!!!!!!!!!!!!!!!!!!!
|
// !!!!!!!!!!!!!!!!!!!!!
|
||||||
// ToDo copy Attachments
|
// ToDo copy Attachments
|
||||||
|
|
@ -574,6 +577,10 @@ public class ContentItemManager {
|
||||||
final Method readMethod = propertyDescriptor.getReadMethod();
|
final Method readMethod = propertyDescriptor.getReadMethod();
|
||||||
final Method writeMethod = propertyDescriptor.getWriteMethod();
|
final Method writeMethod = propertyDescriptor.getWriteMethod();
|
||||||
|
|
||||||
|
if (writeMethod == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (LocalizedString.class.equals(propType)) {
|
if (LocalizedString.class.equals(propType)) {
|
||||||
final LocalizedString source;
|
final LocalizedString source;
|
||||||
final LocalizedString target;
|
final LocalizedString target;
|
||||||
|
|
@ -672,6 +679,9 @@ public class ContentItemManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
liveItem.setVersion(ContentItemVersion.LIVE);
|
||||||
|
contentItemRepo.save(liveItem);
|
||||||
|
|
||||||
return liveItem;
|
return liveItem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -717,9 +727,9 @@ public class ContentItemManager {
|
||||||
* @param type Type of the content item.
|
* @param type Type of the content item.
|
||||||
*
|
*
|
||||||
* @return The live version of an item. If the item provided is already the
|
* @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
|
* live version the provided item is returned, otherwise the live
|
||||||
* returned. If there is no live version an empty {@link Optional} is
|
* version is returned. If there is no live version an empty
|
||||||
* returned.
|
* {@link Optional} is returned.
|
||||||
*/
|
*/
|
||||||
public <T extends ContentItem> Optional<T> getLiveVersion(
|
public <T extends ContentItem> Optional<T> getLiveVersion(
|
||||||
final ContentItem item,
|
final ContentItem item,
|
||||||
|
|
@ -759,10 +769,10 @@ public class ContentItemManager {
|
||||||
* @param type Type of the item.
|
* @param type Type of the item.
|
||||||
*
|
*
|
||||||
* @return The draft version of the provided content item. If the provided
|
* @return The draft version of the provided content item. If the provided
|
||||||
* item is the draft version the provided item is simply returned. Otherwise
|
* item is the draft version the provided item is simply returned.
|
||||||
* the draft version is retrieved from the database and is returned. Each
|
* Otherwise the draft version is retrieved from the database and is
|
||||||
* content item has a draft version (otherwise something is seriously wrong
|
* returned. Each content item has a draft version (otherwise
|
||||||
* with the database) this method will
|
* something is seriously wrong with the database) this method will
|
||||||
* <b>never</b> return {@code null}.
|
* <b>never</b> return {@code null}.
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
|
|
||||||
|
|
@ -15,11 +15,11 @@
|
||||||
create table CCM_CMS.ARTICLE_TEXTS_AUD (
|
create table CCM_CMS.ARTICLE_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.ARTICLES (
|
create table CCM_CMS.ARTICLES (
|
||||||
|
|
@ -47,7 +47,7 @@
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, ASSET_ID, LOCALE)
|
primary key (REV, ASSET_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.ASSETS (
|
create table CCM_CMS.ASSETS (
|
||||||
|
|
@ -79,7 +79,7 @@
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, LIST_ID, LOCALE)
|
primary key (REV, LIST_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.ATTACHMENT_LISTS (
|
create table CCM_CMS.ATTACHMENT_LISTS (
|
||||||
|
|
@ -100,7 +100,7 @@
|
||||||
primary key (LIST_ID, REV)
|
primary key (LIST_ID, REV)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.AttachmentList_ItemAttachment_AUD (
|
create table CCM_CMS.ATTACHMENTLIST_ITEMATTACHMENT_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
LIST_ID bigint not null,
|
LIST_ID bigint not null,
|
||||||
ATTACHMENT_ID bigint not null,
|
ATTACHMENT_ID bigint not null,
|
||||||
|
|
@ -156,7 +156,7 @@
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, ASSET_ID, LOCALE)
|
primary key (REV, ASSET_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.BINARY_ASSETS (
|
create table CCM_CMS.BINARY_ASSETS (
|
||||||
|
|
@ -192,7 +192,7 @@
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, ASSET_ID, LOCALE)
|
primary key (REV, ASSET_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.BOOKMARKS (
|
create table CCM_CMS.BOOKMARKS (
|
||||||
|
|
@ -218,11 +218,11 @@
|
||||||
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
|
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_NAMES (
|
create table CCM_CMS.CONTENT_ITEM_NAMES (
|
||||||
|
|
@ -235,11 +235,11 @@
|
||||||
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
|
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_TITLES (
|
create table CCM_CMS.CONTENT_ITEM_TITLES (
|
||||||
|
|
@ -252,11 +252,11 @@
|
||||||
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
|
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEMS (
|
create table CCM_CMS.CONTENT_ITEMS (
|
||||||
|
|
@ -341,11 +341,11 @@
|
||||||
create table CCM_CMS.EVENT_COSTS_AUD (
|
create table CCM_CMS.EVENT_COSTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_DATES (
|
create table CCM_CMS.EVENT_DATES (
|
||||||
|
|
@ -358,11 +358,11 @@
|
||||||
create table CCM_CMS.EVENT_DATES_AUD (
|
create table CCM_CMS.EVENT_DATES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_LOCATIONS (
|
create table CCM_CMS.EVENT_LOCATIONS (
|
||||||
|
|
@ -375,11 +375,11 @@
|
||||||
create table CCM_CMS.EVENT_LOCATIONS_AUD (
|
create table CCM_CMS.EVENT_LOCATIONS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
|
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
|
||||||
|
|
@ -392,11 +392,11 @@
|
||||||
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
|
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_TEXTS (
|
create table CCM_CMS.EVENT_TEXTS (
|
||||||
|
|
@ -409,11 +409,11 @@
|
||||||
create table CCM_CMS.EVENT_TEXTS_AUD (
|
create table CCM_CMS.EVENT_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_TYPES (
|
create table CCM_CMS.EVENT_TYPES (
|
||||||
|
|
@ -426,11 +426,11 @@
|
||||||
create table CCM_CMS.EVENT_TYPES_AUD (
|
create table CCM_CMS.EVENT_TYPES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENTS (
|
create table CCM_CMS.EVENTS (
|
||||||
|
|
@ -628,11 +628,11 @@
|
||||||
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
|
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MPA_SECTION_TITLES (
|
create table CCM_CMS.MPA_SECTION_TITLES (
|
||||||
|
|
@ -645,11 +645,11 @@
|
||||||
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
|
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MPA_SUMMARIES (
|
create table CCM_CMS.MPA_SUMMARIES (
|
||||||
|
|
@ -662,11 +662,11 @@
|
||||||
create table CCM_CMS.MPA_SUMMARIES_AUD (
|
create table CCM_CMS.MPA_SUMMARIES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
|
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
|
||||||
|
|
@ -732,11 +732,11 @@
|
||||||
create table CCM_CMS.NEWS_TEXTS_AUD (
|
create table CCM_CMS.NEWS_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.NOTE_TEXTS (
|
create table CCM_CMS.NOTE_TEXTS (
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,7 @@ import org.libreccm.workflow.WorkflowTemplate;
|
||||||
import org.libreccm.workflow.WorkflowTemplateRepository;
|
import org.libreccm.workflow.WorkflowTemplateRepository;
|
||||||
import org.librecms.contenttypes.Article;
|
import org.librecms.contenttypes.Article;
|
||||||
import org.librecms.contenttypes.Event;
|
import org.librecms.contenttypes.Event;
|
||||||
|
import org.librecms.lifecycle.LifecycleDefinition;
|
||||||
import org.librecms.lifecycle.LifecycleDefinitionRepository;
|
import org.librecms.lifecycle.LifecycleDefinitionRepository;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
@ -595,7 +596,6 @@ public class ContentItemManagerTest {
|
||||||
itemManager.copy(item.get(), null);
|
itemManager.copy(item.get(), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
// publish item (draft)
|
|
||||||
@Test
|
@Test
|
||||||
@InSequence(5100)
|
@InSequence(5100)
|
||||||
@UsingDataSet("datasets/org/librecms/contentsection/"
|
@UsingDataSet("datasets/org/librecms/contentsection/"
|
||||||
|
|
@ -613,10 +613,74 @@ public class ContentItemManagerTest {
|
||||||
"workflow_id"
|
"workflow_id"
|
||||||
})
|
})
|
||||||
public void publishItem() {
|
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
|
// publish item null
|
||||||
// unpublish item
|
// unpublish item
|
||||||
// unpublish non live
|
// unpublish non live
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,13 @@
|
||||||
*/
|
*/
|
||||||
package org.librecms.contentsection;
|
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.container.test.api.Deployment;
|
||||||
import org.jboss.arquillian.junit.Arquillian;
|
import org.jboss.arquillian.junit.Arquillian;
|
||||||
import org.jboss.arquillian.junit.InSequence;
|
import org.jboss.arquillian.junit.InSequence;
|
||||||
import org.jboss.arquillian.persistence.CreateSchema;
|
import org.jboss.arquillian.persistence.CreateSchema;
|
||||||
import org.jboss.arquillian.persistence.PersistenceTest;
|
import org.jboss.arquillian.persistence.PersistenceTest;
|
||||||
|
import org.jboss.arquillian.persistence.ShouldMatchDataSet;
|
||||||
import org.jboss.arquillian.persistence.UsingDataSet;
|
import org.jboss.arquillian.persistence.UsingDataSet;
|
||||||
import org.jboss.arquillian.transaction.api.annotation.TransactionMode;
|
import org.jboss.arquillian.transaction.api.annotation.TransactionMode;
|
||||||
import org.jboss.arquillian.transaction.api.annotation.Transactional;
|
import org.jboss.arquillian.transaction.api.annotation.Transactional;
|
||||||
|
|
@ -49,6 +51,7 @@ import org.librecms.contenttypes.News;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.stream.IntStream;
|
import java.util.stream.IntStream;
|
||||||
|
|
||||||
|
|
@ -350,4 +353,22 @@ public class ContentItemRepositoryTest {
|
||||||
is(0L));
|
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());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@ public class DatasetsTest extends DatasetsVerifier {
|
||||||
"/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-rename.xml",
|
"/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-rename.xml",
|
||||||
|
|
||||||
"/datasets/org/librecms/contentsection/ContentItemRepositoryTest/data.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/data.xml",
|
||||||
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-create-contentitem.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-move.xml",
|
||||||
"/datasets/org/librecms/contentsection/ContentItemManagerTest/after-copy-to-other-folder.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-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) {
|
public DatasetsTest(final String datasetPath) {
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.ARTICLE_TEXTS_AUD (
|
create table CCM_CMS.ARTICLE_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.ARTICLES (
|
create table CCM_CMS.ARTICLES (
|
||||||
|
|
@ -226,11 +226,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
|
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_NAMES (
|
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 (
|
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_TITLES (
|
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 (
|
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEMS (
|
create table CCM_CMS.CONTENT_ITEMS (
|
||||||
|
|
@ -355,11 +355,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_COSTS_AUD (
|
create table CCM_CMS.EVENT_COSTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_DATES (
|
create table CCM_CMS.EVENT_DATES (
|
||||||
|
|
@ -372,11 +372,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_DATES_AUD (
|
create table CCM_CMS.EVENT_DATES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_LOCATIONS (
|
create table CCM_CMS.EVENT_LOCATIONS (
|
||||||
|
|
@ -389,11 +389,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_LOCATIONS_AUD (
|
create table CCM_CMS.EVENT_LOCATIONS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
|
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 (
|
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_TEXTS (
|
create table CCM_CMS.EVENT_TEXTS (
|
||||||
|
|
@ -423,11 +423,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_TEXTS_AUD (
|
create table CCM_CMS.EVENT_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_TYPES (
|
create table CCM_CMS.EVENT_TYPES (
|
||||||
|
|
@ -440,11 +440,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_TYPES_AUD (
|
create table CCM_CMS.EVENT_TYPES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENTS (
|
create table CCM_CMS.EVENTS (
|
||||||
|
|
@ -642,11 +642,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
|
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MPA_SECTION_TITLES (
|
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 (
|
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MPA_SUMMARIES (
|
create table CCM_CMS.MPA_SUMMARIES (
|
||||||
|
|
@ -676,11 +676,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.MPA_SUMMARIES_AUD (
|
create table CCM_CMS.MPA_SUMMARIES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
|
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
|
||||||
|
|
@ -746,11 +746,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.NEWS_TEXTS_AUD (
|
create table CCM_CMS.NEWS_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.NOTE_TEXTS (
|
create table CCM_CMS.NOTE_TEXTS (
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.ARTICLE_TEXTS_AUD (
|
create table CCM_CMS.ARTICLE_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.ARTICLES (
|
create table CCM_CMS.ARTICLES (
|
||||||
|
|
@ -226,11 +226,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
|
create table CCM_CMS.CONTENT_ITEM_DESCRIPTIONS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_NAMES (
|
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 (
|
create table CCM_CMS.CONTENT_ITEM_NAMES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEM_TITLES (
|
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 (
|
create table CCM_CMS.CONTENT_ITEM_TITLES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.CONTENT_ITEMS (
|
create table CCM_CMS.CONTENT_ITEMS (
|
||||||
|
|
@ -355,11 +355,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_COSTS_AUD (
|
create table CCM_CMS.EVENT_COSTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_DATES (
|
create table CCM_CMS.EVENT_DATES (
|
||||||
|
|
@ -372,11 +372,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_DATES_AUD (
|
create table CCM_CMS.EVENT_DATES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_LOCATIONS (
|
create table CCM_CMS.EVENT_LOCATIONS (
|
||||||
|
|
@ -389,11 +389,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_LOCATIONS_AUD (
|
create table CCM_CMS.EVENT_LOCATIONS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS (
|
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 (
|
create table CCM_CMS.EVENT_MAIN_CONTRIBUTORS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_TEXTS (
|
create table CCM_CMS.EVENT_TEXTS (
|
||||||
|
|
@ -423,11 +423,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_TEXTS_AUD (
|
create table CCM_CMS.EVENT_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENT_TYPES (
|
create table CCM_CMS.EVENT_TYPES (
|
||||||
|
|
@ -440,11 +440,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.EVENT_TYPES_AUD (
|
create table CCM_CMS.EVENT_TYPES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.EVENTS (
|
create table CCM_CMS.EVENTS (
|
||||||
|
|
@ -642,11 +642,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
|
create table CCM_CMS.MPA_SECTION_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MPA_SECTION_TITLES (
|
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 (
|
create table CCM_CMS.MPA_SECTION_TITLES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MPA_SUMMARIES (
|
create table CCM_CMS.MPA_SUMMARIES (
|
||||||
|
|
@ -676,11 +676,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.MPA_SUMMARIES_AUD (
|
create table CCM_CMS.MPA_SUMMARIES_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
|
create table CCM_CMS.MULTIPART_ARTICLE_SECTIONS (
|
||||||
|
|
@ -746,11 +746,11 @@ create table CCM_CMS.ARTICLE_LEADS (
|
||||||
create table CCM_CMS.NEWS_TEXTS_AUD (
|
create table CCM_CMS.NEWS_TEXTS_AUD (
|
||||||
REV integer not null,
|
REV integer not null,
|
||||||
OBJECT_ID bigint not null,
|
OBJECT_ID bigint not null,
|
||||||
LOCALIZED_VALUE clob,
|
LOCALIZED_VALUE varchar,
|
||||||
LOCALE varchar(255) not null,
|
LOCALE varchar(255) not null,
|
||||||
REVTYPE tinyint,
|
REVTYPE tinyint,
|
||||||
REVEND integer,
|
REVEND integer,
|
||||||
primary key (REV, OBJECT_ID, LOCALE)
|
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table CCM_CMS.NOTE_TEXTS (
|
create table CCM_CMS.NOTE_TEXTS (
|
||||||
|
|
|
||||||
|
|
@ -247,7 +247,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -249,7 +249,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -272,7 +272,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -285,7 +285,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -237,7 +237,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -247,7 +247,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
@ -237,7 +237,7 @@
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
<ccm_cms.content_item_titles object_id="-10200"
|
<ccm_cms.content_item_titles object_id="-10200"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 2" />
|
localized_value="Article 2 Title" />
|
||||||
<ccm_cms.content_item_titles object_id="-10300"
|
<ccm_cms.content_item_titles object_id="-10300"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 3" />
|
localized_value="Article 3" />
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<dataset>
|
<dataset>
|
||||||
|
|
||||||
|
<ccm_core.ccm_revisions id="0"
|
||||||
|
timestamp="1451602800" />
|
||||||
|
|
||||||
<ccm_core.ccm_objects object_id="-1100"
|
<ccm_core.ccm_objects object_id="-1100"
|
||||||
display_name="info"
|
display_name="info"
|
||||||
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
|
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
|
||||||
|
|
@ -29,6 +32,23 @@
|
||||||
display_name="org.librecms.contenttypes.News"
|
display_name="org.librecms.contenttypes.News"
|
||||||
uuid="47740f22-f89f-4ec3-90cf-d62859e53c7e" />
|
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"
|
<ccm_core.categories object_id="-2100"
|
||||||
unique_id="82014239-9c06-486d-ae8c-4ae47f52a699"
|
unique_id="82014239-9c06-486d-ae8c-4ae47f52a699"
|
||||||
name="info_root"
|
name="info_root"
|
||||||
|
|
@ -90,6 +110,27 @@
|
||||||
version="DRAFT"
|
version="DRAFT"
|
||||||
content_type_id="-20200" />
|
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"
|
<ccm_cms.content_item_names object_id="-10100"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="article1" />
|
localized_value="article1" />
|
||||||
|
|
@ -103,6 +144,27 @@
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="news1" />
|
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"
|
<ccm_cms.content_item_titles object_id="-10100"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article 1" />
|
localized_value="Article 1" />
|
||||||
|
|
@ -116,6 +178,27 @@
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="News 1" />
|
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"
|
<ccm_cms.content_type_labels object_id="-20100"
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Article" />
|
localized_value="Article" />
|
||||||
|
|
@ -127,6 +210,13 @@
|
||||||
<ccm_cms.articles object_id="-10200" />
|
<ccm_cms.articles object_id="-10200" />
|
||||||
<ccm_cms.articles object_id="-10300" />
|
<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
|
<ccm_cms.article_texts
|
||||||
object_id="-10100"
|
object_id="-10100"
|
||||||
locale="en"
|
locale="en"
|
||||||
|
|
@ -140,6 +230,25 @@
|
||||||
locale="en"
|
locale="en"
|
||||||
localized_value="Etiam euismod lacus laoreet sodales ultricies. Pellentesque non elit vitae purus sagittis." />
|
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"
|
<ccm_cms.news object_id="-10400"
|
||||||
news_date="2016-08-08"
|
news_date="2016-08-08"
|
||||||
homepage="false" />
|
homepage="false" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue