
|
If you were logged in you would be able to see more operations.
|
|
|
|
In the 2.7 dtd, conditions is defined like this :
<!ELEMENT conditions (conditions*, condition*)>
<!ATTLIST conditions
type (AND | OR) #IMPLIED
>
But, it could be best to not have order between conditions and condition.
So :
<!ELEMENT conditions (conditions | condition)*>
<!ATTLIST conditions
type (AND | OR) #IMPLIED
>
Just a little improvement for a great project...
|
|
Description
|
In the 2.7 dtd, conditions is defined like this :
<!ELEMENT conditions (conditions*, condition*)>
<!ATTLIST conditions
type (AND | OR) #IMPLIED
>
But, it could be best to not have order between conditions and condition.
So :
<!ELEMENT conditions (conditions | condition)*>
<!ATTLIST conditions
type (AND | OR) #IMPLIED
>
Just a little improvement for a great project... |
Show » |
|