forked from connamara/quickfixn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue connamara#134 - DD "required=N" assumed if "required" is not pr…
…esent
- Loading branch information
1 parent
7ea8357
commit bfb34f7
Showing
4 changed files
with
75 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This dictionary lacks 'required' attributes for fields and components. | ||
Per issue 134, the lack of 'required' should imply 'required=N'. | ||
--> | ||
<fix minor="9" major="9"> | ||
<header/> | ||
<trailer/> | ||
<messages> | ||
<message name="MagicMessage" msgtype="magic" msgcat="app"> | ||
<field name="MundaneField" required="Y"/> | ||
<field name="MagicField"/> | ||
<component name="MagicComponent"/> | ||
<group name="NoMagicGroups"> | ||
<field name="Delim"/> | ||
<field name="Blah"/> | ||
</group> | ||
</message> | ||
</messages> | ||
|
||
<components> | ||
<component name="MagicComponent"> | ||
<field name="MagicComponentField"/> | ||
</component> | ||
</components> | ||
|
||
<fields> | ||
<field number="1111" name="MundaneField" type="STRING"/> | ||
<field number="5555" name="MagicField" type="STRING"/> | ||
<field number="5556" name="MagicComponentField" type="STRING"/> | ||
<field number="6660" name="NoMagicGroups" type="NUMINGROUP"/> | ||
<field number="6661" name="Delim" type="STRING"/> | ||
<field number="6662" name="Blah" type="STRING"/> | ||
</fields> | ||
</fix> |