-
Type:
Bug
-
Status: Implemented (View Workflow)
-
Priority:
Normal
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.1, 2.0 errata
-
Component/s: Intents
-
Labels:None
How to define a single component brochure?
Option A (One Product Node):
<ProductList> <Product IsRoot="true"> <Intent Name="BindingIntent"> <BindingIntent Type="SaddleStitched" ... /> </Intent> <Intent Name="ColorIntent"> <ColorIntent ... /> </Intent> <Intent Name="MediaIntent"> <MediaIntent ... /> </Intent> </Product> </ProductList>
Option B (Two Product Nodes):
<ProductList> <Product IsRoot="true"> <Intent Name="BindingIntent"> <BindingIntent Type="SaddleStitched" ChildRef="PRD-1" /> </Intent> </Product> <Product ID="PRD-1" IsRoot="false"> <Intent Name="ColorIntent"> <ColorIntent ... /> </Intent> <Intent Name="MediaIntent"> <MediaIntent ... /> </Intent> </Product> </ProductList>
This has to be clarified in the specification
Table 4.1: Product Element
IsRoot ? | ... | If true, this Product is a self-contained product. If false, this Product is a product part of another Product, such as a cover or insert. Multiple Product elements with @IsRoot=”true” MAY be specified, for instance in a gang job. If the parent ProductList element contains multiple Product elements, @IsRoot SHOULD be specified in all root products. |
Table 4.9: BindingIntent Element
ChildRefs ? | ... | Reference to one two or more child products each identified by Product/@ID (e.g., cover and body of a book) that SHALL be bound together. ChildRefs SHALL NOT be specified if a single Product is bound. |