-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from josephbredahl/annotations
Fix annotation and namespace issue (continued)
- Loading branch information
Showing
10 changed files
with
212 additions
and
49 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
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 |
---|---|---|
@@ -1,2 +1,13 @@ | ||
datatypes xsd = "http://www.w3.org/2001/XMLSchema-datatypes" | ||
element height { xsd:double } | ||
datatypes custom="uri:custom-datatype-library" | ||
|
||
start = element token { token }, | ||
element token_abc { token "abc" }, | ||
element string { string }, | ||
element string_abc { string "abc" }, | ||
element xsd_string { xsd:string }, | ||
element xsd_string_abc { xsd:string "abc" }, | ||
element xsd_double { xsd:double }, | ||
element xsd_double_42 { xsd:double "42" }, | ||
element custom_foo { custom:foo }, | ||
element custom_foo_abc { custom:foo "abc" } |
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
Oops, something went wrong.