CCM NG/ccm-cms: AttachmentListManager current status

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4416 8810af33-2d31-482b-a856-94f89814c4df
pull/2/head
jensp 2016-10-30 17:50:09 +00:00
parent 8d0bfbcc42
commit 642ae17169
16 changed files with 6075 additions and 90 deletions

View File

@ -39,6 +39,8 @@ import javax.persistence.Id;
import javax.persistence.JoinColumn; import javax.persistence.JoinColumn;
import javax.persistence.JoinTable; import javax.persistence.JoinTable;
import javax.persistence.ManyToOne; import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany; import javax.persistence.OneToMany;
import javax.persistence.Table; import javax.persistence.Table;
@ -55,6 +57,14 @@ import static org.librecms.CmsConstants.*;
@Entity @Entity
@Table(name = "ATTACHMENT_LISTS", schema = DB_SCHEMA) @Table(name = "ATTACHMENT_LISTS", schema = DB_SCHEMA)
@Audited @Audited
@NamedQueries({
@NamedQuery(
name = "AttachmentList.findForItemAndName",
query = "SELECT l FROM AttachmentList l "
+ "WHERE l.name = :name "
+ "AND l.item = :item "
+ "ORDER BY l.order")
})
public class AttachmentList implements Comparable<AttachmentList>, public class AttachmentList implements Comparable<AttachmentList>,
Identifiable, Identifiable,
Serializable { Serializable {

View File

@ -18,20 +18,39 @@
*/ */
package org.librecms.attachments; package org.librecms.attachments;
import org.librecms.assets.Asset; import org.libreccm.security.PermissionChecker;
import org.librecms.contentsection.ContentItem; import org.librecms.contentsection.ContentItem;
import org.librecms.contentsection.ContentItemManager;
import org.librecms.contentsection.privileges.ItemPrivileges;
import java.util.Collections;
import java.util.List; import java.util.List;
import java.util.stream.Collectors;
import javax.enterprise.context.RequestScoped; import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;
import javax.persistence.Entity;
import javax.persistence.EntityManager;
import javax.persistence.TypedQuery;
import javax.transaction.Transactional;
/** /**
* Provides methods for managing the assets attached to an item. * Provides methods for managing the {@link AttachmentList}s of an
* {@link ContentItem}.
* *
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a> * @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/ */
@RequestScoped @RequestScoped
public class AttachmentManager { public class AttachmentListManager {
@Inject
private ContentItemManager itemManager;
@Inject
private PermissionChecker permissionChecker;
@Inject
private EntityManager entityManager;
/** /**
* Retrieves the names of all {@link AttachmentList}s of an * Retrieves the names of all {@link AttachmentList}s of an
@ -42,8 +61,30 @@ public class AttachmentManager {
* @return A list containing the names all the attachment lists of the item, * @return A list containing the names all the attachment lists of the item,
* in the order of the attachment lists. * in the order of the attachment lists.
*/ */
@Transactional(Transactional.TxType.REQUIRED)
public List<String> getAttachmentListNames(final ContentItem item) { public List<String> getAttachmentListNames(final ContentItem item) {
throw new UnsupportedOperationException("Not implemented yet"); if (item == null) {
throw new IllegalArgumentException(
"Can't get AttachmentList(s) from null.");
}
//We have to distinguish between live and draft versions, therefore
//we can't use the CDI interceptor here.
if (itemManager.isLive(item)) {
permissionChecker.checkPermission(ItemPrivileges.VIEW_PUBLISHED,
item);
} else {
permissionChecker.checkPermission(ItemPrivileges.PREVIEW, item);
}
final List<AttachmentList> lists = item.getAttachments();
final List<String> names = lists.stream()
.map(list -> list.getName())
.collect(Collectors.toList());
Collections.sort(names);
return names;
} }
/** /**
@ -53,7 +94,7 @@ public class AttachmentManager {
* @param item The item from which the lists are retrieved. * @param item The item from which the lists are retrieved.
* @param name The name of the lists to retrieve. * @param name The name of the lists to retrieve.
* *
* @return A list of the attachment list with the specified name. If no * @return A list of the attachment lists with the specified name. If no
* attachment list of the {@code item} does match the provided * attachment list of the {@code item} does match the provided
* {@code name} an empty list is returned. * {@code name} an empty list is returned.
*/ */
@ -61,7 +102,31 @@ public class AttachmentManager {
final ContentItem item, final ContentItem item,
final String name) { final String name) {
throw new UnsupportedOperationException("Not implemented yet"); if (item == null) {
throw new IllegalArgumentException(
"Can't get attachments lists from null.");
}
if (name == null || name.trim().isEmpty()) {
throw new IllegalArgumentException(
"An AttachmentList can't have an empty name.");
}
//We have to distinguish between live and draft versions, therefore
//we can't use the CDI interceptor here.
if (itemManager.isLive(item)) {
permissionChecker.checkPermission(ItemPrivileges.VIEW_PUBLISHED,
item);
} else {
permissionChecker.checkPermission(ItemPrivileges.PREVIEW, item);
}
final TypedQuery<AttachmentList> query = entityManager.createNamedQuery(
"AttachmentList.findForItemAndName", AttachmentList.class);
query.setParameter("name", name);
query.setParameter("item", item);
return query.getResultList();
} }
/** /**
@ -75,7 +140,20 @@ public class AttachmentManager {
*/ */
public AttachmentList createAttachmentList(final ContentItem item, public AttachmentList createAttachmentList(final ContentItem item,
final String name) { final String name) {
throw new UnsupportedOperationException("Not implemented yet");
final List<AttachmentList> lists = item.getAttachments();
Collections.sort(lists,
(list1, list2) -> Long.compare(list1.getOrder(),
list2.getOrder()));
final long lastOrder = lists.get(lists.size() - 1).getOrder();
final AttachmentList newList = new AttachmentList();
newList.setItem(item);
newList.setName(name);
newList.setOrder(lastOrder + 1);
// item.addAttachmentList(newList);
} }
/** /**
@ -97,14 +175,12 @@ public class AttachmentManager {
} }
/** /**
* Removes an {@link AttachentList} from an item. All non shared assets * Removes an {@link AttachentList} from the owning item. All non shared
* assigned to the {@code attachmentList} are deleted. * assets assigned to the {@code attachmentList} are deleted.
* *
* @param item The item from the attachment list is removed.
* @param attachmentList The attachment list to remove. * @param attachmentList The attachment list to remove.
*/ */
public void removeAttachmentList(final ContentItem item, public void removeAttachmentList(final AttachmentList attachmentList) {
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet"); throw new UnsupportedOperationException("Not implemented yet");
} }
@ -140,77 +216,4 @@ public class AttachmentManager {
throw new UnsupportedOperationException("Not implemented yet"); throw new UnsupportedOperationException("Not implemented yet");
} }
/**
* Adds the provided {@link Asset} to the provided {@link AttachmentList}.
*
* @param asset The {@link Asset} to add.
* @param attachmentList The attachment list to which the asset is added.
*/
public void attachAsset(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Removes the provided {@link Asset} from the provided
* {@link AttachmentList}. If the asset is a non shared asset the asset is
* deleted.
*
* @param asset The {@link Asset} to remove.
* @param attachmentList The attachment list to which the asset is removed
* from.
*/
public void unattachAsset(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Moves the {@link Asset} one position up in the provided
* {@link AttachmentList}.
*
* @param asset The asset to move up. If the asset is not part of
* the provided {@link AttachmentList} an
* {@link IllegalArgumentException} is thrown.
* @param attachmentList The attachment list in which the item is moved.
*/
public void moveUp(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Moves the {@link Asset} one position down in the provided
* {@link AttachmentList}.
*
* @param asset The asset to move down. If the asset is not part of
* the provided {@link AttachmentList} an
* {@link IllegalArgumentException} is thrown.
* @param attachmentList The attachment list in which the item is moved.
*/
public void moveDown(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Moves the {@link Asset} to the specified position in the provided
* {@link AttachmentList}.
*
* @param asset The asset to move. If the asset is not part of the
* provided {@link AttachmentList} an
* {@link IllegalArgumentException} is thrown.
* @param attachmentList The attachment list in which the item is moved.
* @param position The position to which the asset is moved. The asset
* occupying the provided index is moved down. If the
* provided position is larger than the size of the
* attachment list the item is moved to the end of the
* list.
*/
public void moveTo(final Asset asset,
final AttachmentList attachmentList,
final long position) {
throw new UnsupportedOperationException("Not implemented yet");
}
} }

View File

@ -0,0 +1,106 @@
/*
* Copyright (C) 2016 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.librecms.attachments;
import org.librecms.assets.Asset;
import javax.enterprise.context.RequestScoped;
/**
* Provides methods for managing the {@link Asset} of an {@link AttachmentList}.
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@RequestScoped
public class ItemAttachmentManager {
/**
* Adds the provided {@link Asset} to the provided {@link AttachmentList}.
*
* @param asset The {@link Asset} to add.
* @param attachmentList The attachment list to which the asset is added.
*/
public void attachAsset(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Removes the provided {@link Asset} from the provided
* {@link AttachmentList}. If the asset is a non shared asset the asset is
* deleted.
*
* @param asset The {@link Asset} to remove.
* @param attachmentList The attachment list to which the asset is removed
* from.
*/
public void unattachAsset(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Moves the {@link Asset} one position up in the provided
* {@link AttachmentList}.
*
* @param asset The asset to move up. If the asset is not part of
* the provided {@link AttachmentList} an
* {@link IllegalArgumentException} is thrown.
* @param attachmentList The attachment list in which the item is moved.
*/
public void moveUp(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Moves the {@link Asset} one position down in the provided
* {@link AttachmentList}.
*
* @param asset The asset to move down. If the asset is not part of
* the provided {@link AttachmentList} an
* {@link IllegalArgumentException} is thrown.
* @param attachmentList The attachment list in which the item is moved.
*/
public void moveDown(final Asset asset,
final AttachmentList attachmentList) {
throw new UnsupportedOperationException("Not implemented yet");
}
/**
* Moves the {@link Asset} to the specified position in the provided
* {@link AttachmentList}.
*
* @param asset The asset to move. If the asset is not part of the
* provided {@link AttachmentList} an
* {@link IllegalArgumentException} is thrown.
* @param attachmentList The attachment list in which the item is moved.
* @param position The position to which the asset is moved. The asset
* occupying the provided index is moved down. If the
* provided position is larger than the size of the
* attachment list the item is moved to the end of the
* list.
*/
public void moveTo(final Asset asset,
final AttachmentList attachmentList,
final long position) {
throw new UnsupportedOperationException("Not implemented yet");
}
}

View File

@ -73,9 +73,6 @@ import static org.junit.Assert.*;
@CreateSchema({"create_ccm_cms_schema.sql"}) @CreateSchema({"create_ccm_cms_schema.sql"})
public class AssetManagerTest { public class AssetManagerTest {
@Inject
private ContentItemRepository itemRepo;
@Inject @Inject
private AssetRepository assetRepo; private AssetRepository assetRepo;
@ -112,8 +109,8 @@ public class AssetManagerTest {
return ShrinkWrap return ShrinkWrap
.create(WebArchive.class, .create(WebArchive.class,
"LibreCCM-org.librecms.assets.AssetManagerTest.war") "LibreCCM-org.librecms.assets.AssetManagerTest.war")
.addPackage(org.libreccm.auditing.CcmRevision.class.getPackage()). .addPackage(org.libreccm.auditing.CcmRevision.class.getPackage())
addPackage(org.libreccm.categorization.Categorization.class .addPackage(org.libreccm.categorization.Categorization.class
.getPackage()) .getPackage())
.addPackage(org.libreccm.cdi.utils.CdiUtil.class.getPackage()) .addPackage(org.libreccm.cdi.utils.CdiUtil.class.getPackage())
.addPackage(org.libreccm.configuration.Configuration.class .addPackage(org.libreccm.configuration.Configuration.class

View File

@ -0,0 +1,687 @@
/*
* Copyright (C) 2016 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.librecms.attachments;
import static org.libreccm.testutils.DependenciesHelpers.*;
import org.apache.shiro.subject.Subject;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.ShouldThrowException;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.junit.InSequence;
import org.jboss.arquillian.persistence.CreateSchema;
import org.jboss.arquillian.persistence.PersistenceTest;
import org.jboss.arquillian.persistence.ShouldMatchDataSet;
import org.jboss.arquillian.persistence.UsingDataSet;
import org.jboss.arquillian.transaction.api.annotation.TransactionMode;
import org.jboss.arquillian.transaction.api.annotation.Transactional;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.libreccm.security.Shiro;
import org.libreccm.tests.categories.IntegrationTest;
import org.librecms.assets.Asset;
import org.librecms.contentsection.ContentItem;
import org.librecms.contentsection.ContentItemRepository;
import java.util.List;
import java.util.Optional;
import javax.inject.Inject;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
/**
* Tests for the {@link AttachmentListManager}.
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@org.junit.experimental.categories.Category(IntegrationTest.class)
@RunWith(Arquillian.class)
@PersistenceTest
@Transactional(TransactionMode.COMMIT)
@CreateSchema({"create_ccm_cms_schema.sql"})
public class AttachmentListManagerTest {
@Inject
private ContentItemRepository itemRepo;
@Inject
private AttachmentListManager listManager;
@Inject
private Shiro shiro;
public AttachmentListManagerTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
@Deployment
public static WebArchive createDeployment() {
return ShrinkWrap
.create(WebArchive.class,
"LibreCCM-org.librecms.assets.AssetManagerTest.war")
.addPackage(org.libreccm.auditing.CcmRevision.class.getPackage())
.addPackage(org.libreccm.categorization.Categorization.class
.getPackage())
.addPackage(org.libreccm.cdi.utils.CdiUtil.class.getPackage())
.addPackage(org.libreccm.configuration.Configuration.class
.getPackage())
.addPackage(org.libreccm.core.CcmCore.class.getPackage())
.addPackage(org.libreccm.jpa.EntityManagerProducer.class
.getPackage())
.addPackage(org.libreccm.jpa.utils.MimeTypeConverter.class
.getPackage())
.addPackage(org.libreccm.l10n.LocalizedString.class
.getPackage())
.addPackage(org.libreccm.security.Permission.class.getPackage())
.addPackage(org.libreccm.web.CcmApplication.class.getPackage())
.addPackage(org.libreccm.workflow.Workflow.class.getPackage())
.addPackage(com.arsdigita.bebop.Component.class.getPackage())
.addPackage(com.arsdigita.bebop.util.BebopConstants.class
.getPackage())
.addClass(com.arsdigita.kernel.KernelConfig.class)
.addClass(com.arsdigita.runtime.CCMResourceManager.class)
.addClass(
com.arsdigita.ui.admin.applications.AbstractAppInstanceForm.class)
.addClass(
com.arsdigita.ui.admin.applications.AbstractAppSettingsPane.class)
.addClass(
com.arsdigita.ui.admin.applications.DefaultApplicationInstanceForm.class)
.addClass(
com.arsdigita.ui.admin.applications.DefaultApplicationSettingsPane.class)
.addClass(com.arsdigita.cms.dispatcher.ItemResolver.class)
.addPackage(com.arsdigita.util.Lockable.class.getPackage())
.addPackage(com.arsdigita.web.BaseServlet.class.getPackage())
.addPackage(org.librecms.Cms.class.getPackage())
.addPackage(org.librecms.assets.Asset.class.getPackage())
.addPackage(org.librecms.attachments.AttachmentList.class
.getPackage())
.addPackage(org.librecms.lifecycle.Lifecycle.class.getPackage())
.addPackage(org.librecms.contentsection.ContentSection.class
.getPackage())
.addPackage(org.librecms.contenttypes.Article.class.getPackage()).
addClass(com.arsdigita.kernel.security.SecurityConfig.class)
.addPackage(org.libreccm.tests.categories.IntegrationTest.class
.getPackage())
// .addAsLibraries(getModuleDependencies())
.addAsLibraries(getCcmCoreDependencies())
.addAsResource("configs/shiro.ini", "shiro.ini")
.addAsResource(
"configs/org/librecms/contentsection/ContentItemManagerTest/log4j2.xml",
"log4j2.xml")
.addAsResource("test-persistence.xml",
"META-INF/persistence.xml")
.addAsWebInfResource("test-web.xml", "web.xml")
.addAsWebInfResource(EmptyAsset.INSTANCE, "WEB-INF/beans.xml");
}
/**
* Verify that all dependencies have injected.
*/
@Test
@InSequence(1)
public void checkInjections() {
assertThat(itemRepo, (is(not(nullValue()))));
assertThat(listManager, is(not(nullValue())));
assertThat(shiro, is(not(nullValue())));
}
/**
* Verify that Shiro is working.
*/
@Test
@InSequence(20)
public void checkShiro() {
assertThat(shiro.getSecurityManager(), is(not(nullValue())));
assertThat(shiro.getSystemUser(), is(not(nullValue())));
}
/**
* Tries to retrieve the names of the {@link AttachmentList}s of some
* {@link ContentItem}s using
* {@link AttachmentListManager#getAttachmentListNames(org.librecms.contentsection.ContentItem)}
* and verifies that the names match the expected values.
*/
@Test
@InSequence(100)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
public void getAttachmentListNames() {
shiro.getSystemUser().execute(() -> {
final Optional<ContentItem> article1 = itemRepo.findById(-510);
final Optional<ContentItem> article2 = itemRepo.findById(-520);
assertThat(article1.isPresent(), is(true));
assertThat(article2.isPresent(), is(true));
final List<String> names1 = listManager.getAttachmentListNames(
article1.get());
final List<String> names2 = listManager.getAttachmentListNames(
article2.get());
assertThat(names1, is(not(nullValue())));
assertThat(names1.size(), is(3));
assertThat(names1.get(0), is("list1"));
assertThat(names1.get(1), is("list2"));
assertThat(names1.get(2), is("list3"));
assertThat(names2, is(not(nullValue())));
assertThat(names2.size(), is(2));
assertThat(names2.get(0), is("list1"));
assertThat(names2.get(1), is("list2"));
});
}
/**
* Verifies that
* {@link AttachmentListManager#getAttachmentListNames(org.librecms.contentsection.ContentItem)}
* throws an {@link IllegalArgumentException} if called for {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(110)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void getAttachmentListNamesFromNull() {
final ContentItem item = null;
shiro.getSystemUser().execute(() -> {
listManager.getAttachmentListNames(item);
});
}
/**
* Tries to retrieve various {@link AttachmentList}s by there name from some
* {@link ContentItem}s using
* {@link AttachmentListManager#getAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* and verifies that the list have the expected size.
*/
@Test
@InSequence(200)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
public void getAttachmentList() {
final Subject systemUser = shiro.getSystemUser();
final Optional<ContentItem> article1 = systemUser
.execute(() -> itemRepo.findById(-510));
final Optional<ContentItem> article2 = systemUser
.execute(() -> itemRepo.findById(-520));
assertThat(article1.isPresent(), is(true));
assertThat(article2.isPresent(), is(true));
final List<AttachmentList> article1List1 = systemUser.execute(
() -> listManager.getAttachmentList(article1.get(), "list1"));
assertThat(article1List1, is(not(nullValue())));
assertThat(article1List1.size(), is(2));
final List<AttachmentList> article1List2 = systemUser.execute(
() -> listManager.getAttachmentList(article1.get(), "list2"));
assertThat(article1List2, is(not(nullValue())));
assertThat(article1List2.size(), is(1));
final List<AttachmentList> article1List3 = systemUser.execute(
() -> listManager.getAttachmentList(article1.get(), "list3"));
assertThat(article1List3, is(not(nullValue())));
assertThat(article1List3.isEmpty(), is(true));
final List<AttachmentList> article2List1 = systemUser.execute(
() -> listManager.getAttachmentList(article2.get(), "list1"));
assertThat(article2List1, is(not(nullValue())));
assertThat(article2List1.size(), is(1));
final List<AttachmentList> article2List2 = systemUser.execute(
() -> listManager.getAttachmentList(article2.get(), "list2"));
assertThat(article2List2, is(not(nullValue())));
assertThat(article2List2.size(), is(1));
}
/**
* Verifies that
* {@link AttachmentListManager#getAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* throws an {@link IllegalArgumentException} if called for item
* {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(210)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void getAttachmentListFromItemNull() {
final Subject systemUser = shiro.getSystemUser();
final ContentItem item = null;
listManager.getAttachmentList(item, "list1");
}
/**
* Verifies that
* {@link AttachmentListManager#getAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* throws an {@link IllegalArgumentException} if called with {@code null}
* for then {@code name} of the attachment list to retrieve.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(220)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void getAttachmentListNameIsNull() {
final Subject systemUser = shiro.getSystemUser();
final Optional<ContentItem> item = systemUser
.execute(() -> itemRepo.findById(-510));
assertThat(item.isPresent(), is(true));
listManager.getAttachmentList(item.get(), null);
}
/**
* Verifies that
* {@link AttachmentListManager#getAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* throws an {@link IllegalArgumentException} if called with and empty
* string for then {@code name} of the attachment list to retrieve.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(230)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void getAttachmentListWithEmptyName() {
final Subject systemUser = shiro.getSystemUser();
final Optional<ContentItem> item = systemUser
.execute(() -> itemRepo.findById(-510));
assertThat(item.isPresent(), is(true));
listManager.getAttachmentList(item.get(), " ");
}
/**
* Tries to create a new {@link AttachmentList} for an {@link ContentItem}
* using
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}.
*/
@Test
@InSequence(300)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
value = "datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-create.xml",
excludeColumns = {"timestamp",
"list_id",
"uuid"})
public void createAttachmentList() {
final Optional<ContentItem> item = itemRepo.findById(-520);
assertThat(item.isPresent(), is(true));
listManager.createAttachmentList(item.get(), "newList");
}
/**
* Verifies that
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* throw new an {@link IllegalArgumentException} if the {@code item} is
* {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(310)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void createAttachmentListForItemNull() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* throws an {@link IllegalArgumentException} if the name of the new list
* {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(320)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
public void createAttachmentListNameIsNull() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String)}
* throws an {@link IllegalArgumentException} if the name of the new list an
* empty string.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(330)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
public void createAttachmentListNameIsEmpty() {
fail("Not implemented yet");
}
/**
* Tries to create a new {@link AttachmentList} for an {@link ContentItem}
* using
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String, long) }.
*/
@Test
@InSequence(400)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-create.xml")
public void createAttachmentListAfterPosition() {
fail("Not implemented yet");
}
/**
* Tries to create a new {@link AttachmentList} for an {@link ContentItem}
* using
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String, long) }
* with a negative position. The new attachment list should be the first one
* in the list of attachment lists.
*/
@Test
@InSequence(410)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-create-with-negative-position.xml")
public void createAttachmentListNegativePosition() {
fail("Not implemented yet");
}
/**
* Tries to create a new {@link AttachmentList} for an {@link ContentItem}
* using
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String, long) }
* with position larger then the number of attachment lists of the item. The
* new attachment list should be the last one in the list of attachment
* lists.
*/
@Test
@InSequence(420)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-create-after-last.xml")
public void createAttachmentListAfterLastPosition() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String, long) }.
* throw new an {@link IllegalArgumentException} if the {@code item} is
* {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(430)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void createAttachmentListAfterPositionForItemNull() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String, long) }.
* throws an {@link IllegalArgumentException} if the name of the new list
* {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(440)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void createAttachmentListAfterPositionNameIsNull() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#createAttachmentList(org.librecms.contentsection.ContentItem, java.lang.String, long) }.
* throws an {@link IllegalArgumentException} if the name of the new list an
* empty string.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(450)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void createAttachmentListAfterPositionNameIsEmpty() {
fail("Not implemented yet");
}
/**
* Tries to remove an {@link AttchmentList} from the owning
* {@link ContentItem} using
* {@link AttachmentListManager#removeAttachmentList(org.librecms.attachments.AttachmentList)}.
* Verifies that all non shared {@link Asset} in the list have been deleted.
*/
@Test
@InSequence(500)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-remove.xml")
public void removeAttachmentList() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#removeAttachmentList(org.librecms.attachments.AttachmentList)}
* throws an {@link IllegalArgumentException} if called for {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(510)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void removeAttachmentListNull() {
fail("Not implemented yet");
}
/**
* Tries to move an {@link AttachmentList} up one position up using
* {@link AttachmentListManager#moveUp(org.librecms.attachments.AttachmentList)}.
*/
@Test
@InSequence(600)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-move-up.xml")
public void moveUp() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#moveUp(org.librecms.attachments.AttachmentList)}
* throws an {@link IllegalArgumentException} if called for {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(510)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void moveUpListNull() {
fail("Not implemented yet");
}
/**
* Tries to move an {@link AttachmentList} up one position down using
* {@link AttachmentListManager#moveUp(org.librecms.attachments.AttachmentList)}.
*/
@Test
@InSequence(600)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-move-down.xml")
public void moveDown() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#moveDown(org.librecms.attachments.AttachmentList)}
* throws an {@link IllegalArgumentException} if called for {@code null}.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(510)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void moveDownListNull() {
fail("Not implemented yet");
}
/**
* Tries to move an {@link AttachmentList} to an specific position using
* {@link AttachmentListManager#moveTo(org.librecms.attachments.AttachmentList, long)}.
*/
@Test
@InSequence(600)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-move-to.xml")
public void moveTo() {
fail("Not implemented yet");
}
/**
* Tries to move an {@link AttachmentList} to the first position using
* {@link AttachmentListManager#moveTo(org.librecms.attachments.AttachmentList, long)}
* with a negative value for {@code position}.
*/
@Test
@InSequence(600)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-move-to-first.xml")
public void moveToNegativePosition() {
fail("Not implemented yet");
}
/**
* Tries to move an {@link AttachmentList} to the last position using
* {@link AttachmentListManager#moveTo(org.librecms.attachments.AttachmentList, long)}
* with a value larger than the number of attachment lists.
*/
@Test
@InSequence(600)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "after-move-to-last.xml")
public void moveToLargerThanLast() {
fail("Not implemented yet");
}
/**
* Verifies that
* {@link AttachmentListManager#moveTo(org.librecms.attachments.AttachmentList, long)}
* throws an {@link IllegalArgumentException} if called with {@code null}
* for the attachment list to move.
*/
@Test(expected = IllegalArgumentException.class)
@InSequence(510)
@UsingDataSet("datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldMatchDataSet(
"datasets/org/librecms/attachments/AttachmentListManagerTest/"
+ "data.xml")
@ShouldThrowException(IllegalArgumentException.class)
public void moveToListNull() {
fail("Not implemented yet");
}
}

View File

@ -0,0 +1,95 @@
/*
* Copyright (C) 2016 LibreCCM Foundation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package org.librecms.attachments;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.libreccm.tests.categories.UnitTest;
import org.libreccm.testutils.DatasetType;
import org.libreccm.testutils.DatasetsVerifier;
import java.util.Arrays;
import java.util.Collection;
/**
* Verify the datasets for the tests in {@code org.librecms.attachments}.
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@RunWith(Parameterized.class)
@Category(UnitTest.class)
public class DatasetsTest extends DatasetsVerifier {
@Parameterized.Parameters(name = "Dataset {0}")
public static Collection<String> data() {
return Arrays.asList(new String[]{
"/datasets/org/librecms/attachments/AttachmentListManagerTest/data.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-create-after-last.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-create-with-negative-position.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-create.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-move-down.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-move-to-first.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-move-to-last.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-move-to.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-move-up.xml",
"/datasets/org/librecms/attachments/AttachmentListManagerTest/after-remove.xml"
});
}
public DatasetsTest(final String datasetPath) {
super(datasetPath);
}
@Override
public DatasetType getDatasetType() {
return DatasetType.FLAT_XML;
}
@Override
public String[] getSchemas() {
return new String[]{"ccm_core", "ccm_cms"};
}
@Override
public String[] getDdlFiles() {
return new String[]{"/datasets/create_ccm_cms_schema.sql"};
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
}

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,515 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_revisions id="1"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list1"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list2"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520030"
name="newList"
list_order="2"
uuid="00000000-0000-0000-0000-000000000000"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list1"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list2"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list2"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list2"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list3"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
itme_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>

View File

@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<dataset>
<ccm_core.ccm_revisions id="0"
timestamp="1451602800" />
<ccm_core.ccm_objects object_id="-100"
display_name="info"
uuid="963bcae7-3aeb-4b62-891c-e16c4defa1f2" />
<ccm_core.ccm_objects object_id="-200"
display_name="info_root"
uuid="82014239-9c06-486d-ae8c-4ae47f52a699" />
<ccm_core.ccm_objects object_id="-300"
display_name="info_assets"
uuid="b163f73c-9ac2-44d7-a037-de621f5ca828" />
<ccm_core.ccm_objects object_id="-400"
display_name="org.librecms.contenttypes.Article"
uuid="bd061ab6-9c4f-45ff-ab69-f521008eeac3" />
<ccm_core.ccm_objects object_id="-510"
display_name="article1"
uuid="aed4b402-1180-46c6-b42d-7245f4dca248" />
<ccm_core.ccm_objects object_id="-520"
display_name="article2"
uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a" />
<ccm_core.ccm_objects object_id="-610"
display_name="sharedAsset1"
uuid="3be6e343-1fc3-47a8-8a39-c729e11b485f" />
<ccm_core.ccm_objects object_id="-620"
display_name="sharedAsset2"
uuid="e6cb989b-021b-4a55-b095-63239a9425b2" />
<ccm_core.ccm_objects object_id="-630"
display_name="sharedAsset3"
uuid="2f66baca-7e5a-4556-a4c5-f9285d71293d" />
<ccm_core.ccm_objects object_id="-710"
display_name="asset510-1a"
uuid="cdc1bea7-7d3e-4019-a73c-d00e41efc9d0" />
<ccm_core.ccm_objects object_id="-720"
display_name="asset510-1b"
uuid="71479eae-28bd-446e-82a9-21581192d298" />
<ccm_core.ccm_objects object_id="-730"
display_name="asset520-2a"
uuid="1b8e879e-cf79-4c1d-a732-56b4053ec311" />
<ccm_core.ccm_objects_aud object_id="-510"
rev="0"
revtype="0"
display_name="article1" />
<ccm_core.ccm_objects_aud object_id="-520"
rev="0"
revtype="0"
display_name="article2" />
<ccm_core.ccm_objects_aud object_id="-610"
rev="0"
revtype="0"
display_name="sharedAsset1" />
<ccm_core.ccm_objects_aud object_id="-620"
rev="0"
revtype="0"
display_name="sharedAsset2" />
<ccm_core.ccm_objects_aud object_id="-630"
rev="0"
revtype="0"
display_name="sharedAsset3" />
<ccm_core.ccm_objects_aud object_id="-710"
rev="0"
revtype="0"
display_name="asset510-1a" />
<ccm_core.ccm_objects_aud object_id="-720"
rev="0"
revtype="0"
display_name="asset510-1b" />
<ccm_core.ccm_objects_aud object_id="-730"
rev="0"
revtype="0"
display_name="asset520-2a" />
<ccm_core.categories object_id="-200"
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="-300"
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="-200"
locale="en"
localized_value="info_root" />
<ccm_core.category_titles object_id="-300"
locale="en"
localized_value="info_assets" />
<ccm_core.resources object_id="-100"
created="2016-07-15" />
<ccm_core.applications object_id="-100"
application_type="org.librecms.contentsection.ContentSection"
primary_url="info" />
<ccm_cms.folders object_id="-200"
type="DOCUMENTS_FOLDER" />
<ccm_cms.folders object_id="-300"
type="ASSETS_FOLDER" />
<ccm_cms.content_sections object_id="-100"
label="info"
root_documents_folder_id="-200"
root_assets_folder_id="-300" />
<ccm_cms.folder_content_section_map folder_id="-200"
content_section_id="-100" />
<ccm_cms.folder_content_section_map folder_id="-300"
content_section_id="-100" />
<ccm_cms.content_types object_id="-400"
content_item_class="org.librecms.contenttypes.Article"
content_section_id="-100" />
<ccm_cms.content_items object_id="-510"
item_uuid="aed4b402-1180-46c6-b42d-7245f4dca248"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.content_items object_id="-520"
item_uuid="8b5a3eda-afbb-4d1c-a579-e2f45da6540a"
version="DRAFT"
content_type_id="-400" />
<ccm_cms.articles object_id="-510" />
<ccm_cms.articles object_id="-520" />
<ccm_cms.article_texts
object_id="-510"
locale="en"
localized_value="Quisque varius turpis et nibh rhoncus consequat. In sapien metus, fermentum quis." />
<ccm_cms.article_texts
object_id="-520"
locale="en"
localized_value="In hac habitasse platea dictumst." />
<ccm_cms.article_texts_aud
rev="0"
object_id="-510"
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="-520"
localized_value="In hac habitasse platea dictumst."
locale="en"
revtype="0" />
<ccm_cms.assets object_id="-610" />
<ccm_cms.assets object_id="-620" />
<ccm_cms.assets object_id="-630" />
<ccm_cms.assets object_id="-710" />
<ccm_cms.assets object_id="-720" />
<ccm_cms.assets object_id="-730" />
<ccm_cms.assets_aud object_id="-610"
rev="0" />
<ccm_cms.assets_aud object_id="-620"
rev="0" />
<ccm_cms.assets_aud object_id="-630"
rev="0" />
<ccm_cms.assets_aud object_id="-710"
rev="0" />
<ccm_cms.assets_aud object_id="-720"
rev="0" />
<ccm_cms.assets_aud object_id="-730"
rev="0" />
<ccm_cms.asset_titles asset_id="-610"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles asset_id="-620"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles asset_id="-630"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles asset_id="-710"
localized_value="asset-510-1a"
locale="en" />
<ccm_cms.asset_titles asset_id="-720"
localized_value="asset-510-1b"
locale="en" />
<ccm_cms.asset_titles asset_id="-730"
localized_value="asset-520-2a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-610"
rev="0"
revtype="0"
localized_value="sharedAsset1"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-620"
rev="0"
revtype="0"
localized_value="sharedAsset2"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-630"
rev="0"
revtype="0"
localized_value="sharedAsset3"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-710"
rev="0"
revtype="0"
localized_value="asset510-1a"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-720"
rev="0"
revtype="0"
localized_value="asset510-1b"
locale="en" />
<ccm_cms.asset_titles_aud asset_id="-730"
rev="0"
revtype="0"
localized_value="asset520-2a"
locale="en" />
<ccm_cms.binary_assets object_id="-610"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-620"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-630"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-710"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-720"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets object_id="-730"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-610"
rev="0"
filename="shared-asset-1.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-620"
rev="0"
filename="shared-asset-2.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-630"
rev="0"
filename="shared-asset-3.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-710"
rev="0"
filename="asset-510-1a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-720"
rev="0"
filename="asset-510-1b.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.binary_assets_aud object_id="-730"
rev="0"
filename="asset-520-2a.pdf"
mime_type="application/pdf"
data_size="0" />
<ccm_cms.files object_id="-610" />
<ccm_cms.files object_id="-620" />
<ccm_cms.files object_id="-630" />
<ccm_cms.files object_id="-710" />
<ccm_cms.files object_id="-720" />
<ccm_cms.files object_id="-730" />
<ccm_cms.files_aud object_id="-610"
rev="0" />
<ccm_cms.files_aud object_id="-620"
rev="0" />
<ccm_cms.files_aud object_id="-630"
rev="0" />
<ccm_cms.files_aud object_id="-710"
rev="0" />
<ccm_cms.files_aud object_id="-720"
rev="0" />
<ccm_cms.files_aud object_id="-730"
rev="0" />
<ccm_core.categorizations categorization_id="-30100"
category_id="-200"
object_id="-510"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30200"
category_id="-200"
object_id="-520"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30300"
category_id="-300"
object_id="-610"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30340"
category_id="-300"
object_id="-620"
category_order="1"
object_order="2"
category_index="false"
type="folder" />
<ccm_core.categorizations categorization_id="-30500"
category_id="-300"
object_id="-630"
category_order="1"
object_order="1"
category_index="false"
type="folder" />
<ccm_cms.attachment_lists list_id="-510010"
name="list1"
list_order="1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510020"
name="list1"
list_order="2"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-510030"
name="list2"
list_order="3"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists list_id="-520010"
name="list1"
list_order="1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists list_id="-520020"
name="list2"
list_order="1"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-510010"
rev="0"
revtype="0"
name="list1"
uuid="209e3f76-1523-4601-84bd-dbae91f4f26d"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510020"
rev="0"
revtype="0"
name="list1"
uuid="57850f9c-e191-4f6f-9537-d5c2d2f118ec"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-510030"
rev="0"
revtype="0"
name="list2"
uuid="a0c2ba42-d506-48c0-b7cc-d32b2a031a50"
item_id="-510" />
<ccm_cms.attachment_lists_aud list_id="-520010"
rev="0"
revtype="0"
name="list1"
uuid="7f954258-3ec9-4eee-bafe-5339ebf8b832"
item_id="-520" />
<ccm_cms.attachment_lists_aud list_id="-520020"
rev="0"
revtype="0"
name="list2"
uuid="a6841869-6ebd-4a14-9c52-627cfc880f4e"
item_id="-520" />
<ccm_cms.attachments attachment_id="-510110"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510120"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510130"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments attachment_id="-510140"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments attachment_id="-510150"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments attachment_id="-520110"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520120"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments attachment_id="-520130"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments attachment_id="-520140"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-510110"
rev="0"
revtype="0"
sort_key="1"
uuid="de1d8531-df11-4808-9679-9ffa7537ebd1"
asset_id="-710"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510120"
rev="0"
revtype="0"
sort_key="2"
uuid="5a34deae-9e3a-41e8-abd8-6a7d10dd9e7d"
asset_id="-720"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510130"
rev="0"
revtype="0"
sort_key="3"
uuid="9e34627c-2da9-45fe-aae3-48801bd27cbe"
asset_id="-610"
attachment_list_id="-510010" />
<ccm_cms.attachments_aud attachment_id="-510140"
rev="0"
revtype="0"
sort_key="1"
uuid="6b5f86db-dd35-4674-a089-2a0b999a17c7"
asset_id="-620"
attachment_list_id="-510020" />
<ccm_cms.attachments_aud attachment_id="-510150"
rev="0"
revtype="0"
sort_key="1"
uuid="395c43dc-4aea-43e3-a2de-13e10f3a63f7"
asset_id="-630"
attachment_list_id="-510030" />
<ccm_cms.attachments_aud attachment_id="-520110"
rev="0"
revtype="0"
sort_key="1"
uuid="192d338b-8267-4566-a509-918d3323bf74"
asset_id="-620"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520120"
rev="0"
revtype="0"
sort_key="2"
uuid="7cf32235-2794-457c-8436-e82bf1693382"
asset_id="-630"
attachment_list_id="-520010" />
<ccm_cms.attachments_aud attachment_id="-520130"
rev="0"
revtype="0"
sort_key="1"
uuid="324c95da-b44d-415e-b20a-612b94b9d604"
asset_id="-730"
attachment_list_id="-520020" />
<ccm_cms.attachments_aud attachment_id="-520140"
rev="0"
revtype="0"
sort_key="2"
uuid="d4b764cb-63d7-460f-87f8-f12032cab17c"
asset_id="-610"
attachment_list_id="-520020" />
</dataset>