From: <cl...@fe...> - 2008-08-08 15:48:42
|
Author: clasohm Date: 2008-08-08 15:48:31 +0000 (Fri, 08 Aug 2008) New Revision: 1735 Modified: contrib/camden/ccm-ldn-camden-decisiontree/trunk/pdl/com/arsdigita/camden/cms/contenttypes/DecisionTree.pdl Log: fixed DecisionTree and OptionTarget so that VersionCopier does not create PublishedLink objects for them during publication - this caused publication of large DecisionTrees to take extremely long Modified: contrib/camden/ccm-ldn-camden-decisiontree/trunk/pdl/com/arsdigita/camden/cms/contenttypes/DecisionTree.pdl =================================================================== --- contrib/camden/ccm-ldn-camden-decisiontree/trunk/pdl/com/arsdigita/camden/cms/contenttypes/DecisionTree.pdl 2008-08-01 02:53:32 UTC (rev 1734) +++ contrib/camden/ccm-ldn-camden-decisiontree/trunk/pdl/com/arsdigita/camden/cms/contenttypes/DecisionTree.pdl 2008-08-08 15:48:31 UTC (rev 1735) @@ -24,7 +24,7 @@ object type DecisionTree extends ContentPage { String[0..1] cancelURL = cam_decision_trees.cancel_url; - TreeSection[0..1] firstSection = + component TreeSection[0..1] firstSection = join cam_decision_trees.first_section to cam_tree_sections.section_id; reference key (cam_decision_trees.tree_id); @@ -74,7 +74,7 @@ object type OptionTarget extends ContentItem { String[0..1] targetURL = cam_option_targets.target_url; - TreeSection[0..1] targetSection = + component TreeSection[0..1] targetSection = join cam_option_targets.target_section to cam_tree_sections.section_id; reference key (cam_option_targets.target_id); |