History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEABKL-5111
Type: New Feature New Feature
Status: Open Open
Priority: Normal Normal
Assignee: Maxim Mossienko
Reporter: Mikhail Gedzberg
Votes: 0
Watchers: 1
Available Workflow Actions

Mark as Stalled
Operations

If you were logged in you would be able to see more operations.
IDEA: Backlog

Refactoring: extract selected attributes into group (XSD)

Created: 26 Apr 07 15:02   Updated: 26 Apr 07 18:53
Component/s: XML editing
Affects Version/s: None
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 6,922


 Description  « Hide
Before:
...
<xsd:attribute name="partNum" type="SKU" use="required"/>
<xsd:attribute name="weight" type="xsd:decimal"/>
<xsd:attribute name="shipBy">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="air"/>
<xsd:enumeration value="land"/>
<xsd:enumeration value="any"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
....

After:

<xsd:attributeGroup ref="ItemDelivery"/>
...
<xsd:attributeGroup name="ItemDelivery">
<xsd:attribute name="partNum" type="SKU" use="required"/>
<xsd:attribute name="weight" type="xsd:decimal"/>
<xsd:attribute name="shipBy">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="air"/>
<xsd:enumeration value="land"/>
<xsd:enumeration value="any"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:attributeGroup>



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.