Travsersal Adapter für ccm-sci-publications

git-svn-id: https://svn.libreccm.org/ccm/trunk@529 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2010-09-08 07:00:10 +00:00
parent 6075ff4c48
commit 9815cc9b58
5 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd"> xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd">
<xrd:context name="com.arsdigita.cms.contenttypes.CollectedVolume" > <xrd:context name="com.arsdigita.cms.dispatcher.SimpleXMLGenerator" >
<xrd:adapter objectType="com.arsdigita.cms.contenttypes.CollectedVolume" <xrd:adapter objectType="com.arsdigita.cms.contenttypes.CollectedVolume"
extends="com.arsdigita.cms.PublicationWithPublisher"> extends="com.arsdigita.cms.PublicationWithPublisher">

View File

@ -4,7 +4,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd"> xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd">
<xrd:context name="com.arsdigita.cms.contenttypes.Publication" > <xrd:context name="com.arsdigita.cms.dispatcher.SimpleXMLGenerator" >
<xrd:adapter objectType="com.arsdigita.cms.contenttypes.Publication" <xrd:adapter objectType="com.arsdigita.cms.contenttypes.Publication"
extends="com.arsdigita.cms.ContentPage"> extends="com.arsdigita.cms.ContentPage">

View File

@ -4,7 +4,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd"> xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd">
<xrd:context name="com.arsdigita.cms.contenttypes.PublicationWithPublisher" > <xrd:context name="com.arsdigita.cms.dispatcher.SimpleXMLGenerator" >
<xrd:adapter objectType="com.arsdigita.cms.contenttypes.PublicationWithPublisher" <xrd:adapter objectType="com.arsdigita.cms.contenttypes.PublicationWithPublisher"
extends="com.arsdigita.cms.contenttypes.Publication"> extends="com.arsdigita.cms.contenttypes.Publication">

View File

@ -4,14 +4,14 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd"> xsi:schemaLocation="http://rhea.redhat.com/schemas/waf/xml-renderer-rules xml-renderer-rules.xsd">
<xrd:context name="com.arsdigita.cms.contenttypes.Series" > <xrd:context name="com.arsdigita.cms.dispatcher.SimpleXMLGenerator" >
<xrd:adapter objectType="com.arsdigita.cms.contenttypes.Series" <xrd:adapter objectType="com.arsdigita.cms.contenttypes.Series"
extends="com.arsdigita.cms.ContentPage"> extends="com.arsdigita.cms.ContentPage">
<xrd:associations rule="include"> <xrd:associations rule="include">
<xrd:property name="/object/editships"/> <xrd:property name="/object/editors"/>
<xrd:property name="/object/volumes"/> <xrd:property name="/object/publications"/>
</xrd:associations> </xrd:associations>
</xrd:adapter> </xrd:adapter>

View File

@ -23,7 +23,7 @@ public class ArticleInCollectedVolumeInitializer extends ContentTypeInitializer
@Override @Override
public String getTraversalXML() { public String getTraversalXML() {
return "/WEB-INF/traversal-adapters/com/arsdigita/cms/contenttypes/PublicationWithPublisher.xml"; return "/WEB-INF/traversal-adapters/com/arsdigita/cms/contenttypes/ArticleInCollectedVolume.xml";
} }
} }