- From: CVS User jkosek <cvsmail@w3.org>
- Date: Tue, 04 Dec 2012 21:37:48 +0000
- To: public-multilingualweb-lt-commits@w3.org
Update of /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas In directory gil:/tmp/cvs-serv13514 Modified Files: its20-types.rnc its20-types.rng its20.rnc its20.rng Log Message: Added more documentation comments --- /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20-types.rnc 2012/12/03 19:22:54 1.13 +++ /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20-types.rnc 2012/12/04 21:37:48 1.14 @@ -2,70 +2,76 @@ its-version.type = xsd:string { pattern = "[0-9]+\.[0-9]+" } -## The query language to be used for processing the rules. +## The query language to be used for processing the rules its-queryLanguage.type = "xpath" | "css" | text -its-absolute-selector.type = string -its-relative-selector.type = string +its-absolute-selector.type = + ## Absolute selector + string + +its-relative-selector.type = + ## Relative selector + string + its-xpath-expression.type = string its-confidence.type = xsd:decimal { minInclusive = "0" maxInclusive = "1" } -## The Translate data category information to be attached to the current node. +## The Translate data category information to be attached to the current node its-translate.type = - ## The nodes need to be translated. + ## The nodes need to be translated "yes" | - ## The nodes must not be translated. + ## The nodes must not be translated "no" its-locNote.type = string -## The type of localization note. +## The type of localization note its-locNoteType.type = - ## Localization note is an alert. + ## Localization note is an alert "alert" | - ## Localization note is a description. + ## Localization note is a description "description" its-locNoteRef.type = xsd:anyURI its-termInfoRef.type = xsd:anyURI -## Indicates a term locally. +## Indicates a term locally its-term.type = - ## The value 'yes' means that this is a term. + ## The value 'yes' means that this is a term "yes" | - ## The value 'no' means that this is not a term. + ## The value 'no' means that this is not a term "no" its-termConfidence.type = its-confidence.type -## The text direction for the context. +## The text direction for the context its-dir.type = - ## Left-to-right text. + ## Left-to-right text "ltr" | - ## Right-to-left text. + ## Right-to-left text "rtl" | - ## Left-to-right override. + ## Left-to-right override "lro" | - ## Right-to-left override. + ## Right-to-left override "rlo" -## States whether current context is regarded as "within text". +## States whether current context is regarded as "within text" its-withinText.type = - ## The element and its content are part of the flow of its parent element. + ## The element and its content are part of the flow of its parent element "yes" | - ## The element splits the text flow of its parent element and its content is an independent text flow. + ## The element splits the text flow of its parent element and its content is an independent text flow "no" | - ## The element is part of the flow of its parent element, its content is an independent flow. + ## The element is part of the flow of its parent element, its content is an independent flow "nested" ## A comma separated list of mappings between values in the content --- /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20-types.rng 2012/12/03 19:22:54 1.10 +++ /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20-types.rng 2012/12/04 21:37:48 1.11 @@ -7,7 +7,7 @@ </data> </define> <define name="its-queryLanguage.type"> - <a:documentation>The query language to be used for processing the rules.</a:documentation> + <a:documentation>The query language to be used for processing the rules</a:documentation> <choice> <value>xpath</value> <value>css</value> @@ -15,10 +15,14 @@ </choice> </define> <define name="its-absolute-selector.type"> - <data type="string" datatypeLibrary=""/> + <data type="string" datatypeLibrary=""> + <a:documentation>Absolute selector</a:documentation> + </data> </define> <define name="its-relative-selector.type"> - <data type="string" datatypeLibrary=""/> + <data type="string" datatypeLibrary=""> + <a:documentation>Relative selector</a:documentation> + </data> </define> <define name="its-xpath-expression.type"> <data type="string" datatypeLibrary=""/> @@ -30,24 +34,24 @@ </data> </define> <define name="its-translate.type"> - <a:documentation>The Translate data category information to be attached to the current node.</a:documentation> + <a:documentation>The Translate data category information to be attached to the current node</a:documentation> <choice> <value>yes</value> - <a:documentation>The nodes need to be translated.</a:documentation> + <a:documentation>The nodes need to be translated</a:documentation> <value>no</value> - <a:documentation>The nodes must not be translated.</a:documentation> + <a:documentation>The nodes must not be translated</a:documentation> </choice> </define> <define name="its-locNote.type"> <data type="string" datatypeLibrary=""/> </define> <define name="its-locNoteType.type"> - <a:documentation>The type of localization note.</a:documentation> + <a:documentation>The type of localization note</a:documentation> <choice> <value>alert</value> - <a:documentation>Localization note is an alert.</a:documentation> + <a:documentation>Localization note is an alert</a:documentation> <value>description</value> - <a:documentation>Localization note is a description.</a:documentation> + <a:documentation>Localization note is a description</a:documentation> </choice> </define> <define name="its-locNoteRef.type"> @@ -57,39 +61,39 @@ <data type="anyURI"/> </define> <define name="its-term.type"> - <a:documentation>Indicates a term locally.</a:documentation> + <a:documentation>Indicates a term locally</a:documentation> <choice> <value>yes</value> - <a:documentation>The value 'yes' means that this is a term.</a:documentation> + <a:documentation>The value 'yes' means that this is a term</a:documentation> <value>no</value> - <a:documentation>The value 'no' means that this is not a term.</a:documentation> + <a:documentation>The value 'no' means that this is not a term</a:documentation> </choice> </define> <define name="its-termConfidence.type"> <ref name="its-confidence.type"/> </define> <define name="its-dir.type"> - <a:documentation>The text direction for the context.</a:documentation> + <a:documentation>The text direction for the context</a:documentation> <choice> <value>ltr</value> - <a:documentation>Left-to-right text.</a:documentation> + <a:documentation>Left-to-right text</a:documentation> <value>rtl</value> - <a:documentation>Right-to-left text.</a:documentation> + <a:documentation>Right-to-left text</a:documentation> <value>lro</value> - <a:documentation>Left-to-right override.</a:documentation> + <a:documentation>Left-to-right override</a:documentation> <value>rlo</value> - <a:documentation>Right-to-left override.</a:documentation> + <a:documentation>Right-to-left override</a:documentation> </choice> </define> <define name="its-withinText.type"> - <a:documentation>States whether current context is regarded as "within text".</a:documentation> + <a:documentation>States whether current context is regarded as "within text"</a:documentation> <choice> <value>yes</value> - <a:documentation>The element and its content are part of the flow of its parent element.</a:documentation> + <a:documentation>The element and its content are part of the flow of its parent element</a:documentation> <value>no</value> - <a:documentation>The element splits the text flow of its parent element and its content is an independent text flow.</a:documentation> + <a:documentation>The element splits the text flow of its parent element and its content is an independent text flow</a:documentation> <value>nested</value> - <a:documentation>The element is part of the flow of its parent element, its content is an independent flow.</a:documentation> + <a:documentation>The element is part of the flow of its parent element, its content is an independent flow</a:documentation> </choice> </define> <define name="its-domainMapping.type"> --- /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20.rnc 2012/12/03 19:15:47 1.14 +++ /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20.rnc 2012/12/04 21:37:48 1.15 @@ -147,8 +147,13 @@ its-attribute.annotatorsRef = attribute its:annotatorsRef { its-annotatorsRef.type } its-attribute.annotatorsRef.nons = attribute annotatorsRef { its-annotatorsRef.type } -its-attribute.version = attribute its:version { its-version.type } -its-attribute.version.nons = attribute version { its-version.type } +its-attribute.version = + ## Version of ITS + attribute its:version { its-version.type } + +its-attribute.version.nons = + ## Version of ITS + attribute version { its-version.type } its-attribute.queryLanguage = attribute its:queryLanguage { its-queryLanguage.type } its-attribute.queryLanguage.nons = attribute queryLanguage { its-queryLanguage.type } @@ -159,7 +164,7 @@ its-attribute.selector = attribute selector { its-absolute-selector.type } its-rules = - ## Container for global rules. + ## Container for global rules element rules { its-rules.content, its-rules.attributes } its-rules.content = @@ -190,6 +195,7 @@ its-attribute.queryLanguage.nons? its-param = + ## Declaration of variable used in selectors element param { its-param.content, its-param.attributes } its-param.content = text @@ -259,7 +265,7 @@ its-attribute.annotatorsRef.nons? its-span = - ## Inline element to contain ITS information. + ## Inline element to contain ITS information element span { its-span.content, its-span.attributes } its-span.content = (text | its-ruby | its-span)* @@ -267,7 +273,7 @@ its-span.attributes = its-local.nons.attributes its-translateRule = - ## Rule about the Translate data category. + ## Rule about the Translate data category element translateRule { its-translateRule.content, its-translateRule.attributes } @@ -278,7 +284,7 @@ its-attribute.translate.nons its-locNoteRule = - ## Rule about the Localization Note data category. + ## Rule about the Localization Note data category element locNoteRule { its-attribute.selector, its-attribute.locNoteType.nons, @@ -289,7 +295,7 @@ its-attribute.locNoteRefPointer.nons = attribute locNoteRefPointer { its-relative-selector.type } its-locNote = - ## Contains a localization note. + ## Localization note element locNote { its-locNote.content, its-locNote.attributes } its-locNote.content = (text | its-ruby | its-span)* @@ -297,7 +303,7 @@ its-locNote.attributes = its-local.attributes its-termRule = - ## Rule about the Terminology data category. + ## Rule about the Terminology data category element termRule { its-termRule.content, its-termRule.attributes } its-termRule.content = empty @@ -311,7 +317,7 @@ its-attribute.termInfoRefPointer.nons = attribute termInfoRefPointer { its-relative-selector.type } its-dirRule = - ## Rule about the Directionality data category. + ## Rule about the Directionality data category element dirRule { its-dirRule.content, its-dirRule.attributes } its-dirRule.content = empty @@ -320,7 +326,7 @@ its-attribute.dir.nons its-rubyRule = - ## Rule about the Ruby data category. + ## Rule about the Ruby data category element rubyRule { its-rubyRule.content, its-rubyRule.attributes } its-rubyRule.content = its-rubyText? @@ -335,14 +341,14 @@ its-attribute.rtPointer.nons = attribute rtPointer { its-relative-selector.type } its-rubyText = - ## Ruby text. + ## Ruby text element rubyText { its-rubyText.content, its-rubyText.attributes } its-rubyText.content = text its-rubyText.attributes = its-local.attributes its-ruby = - ## Ruby markup. + ## Ruby markup element ruby { its-ruby.content, its-ruby.attributes } # FIXME: Allow nested ruby as in HTML5 @@ -352,7 +358,7 @@ its-ruby.attributes = its-local.attributes its-rt = - ## Ruby text. + ## Ruby text element rt { its-rt.content, its-rt.attributes } its-rt.content = (text | its-span)* @@ -362,14 +368,14 @@ ## Used in the case of simple ruby markup to specify characters ## that can denote the beginning and end of ruby text when user ## agents do not have other ways to present ruby text distinctively - ## from the base text. + ## from the base text. Typically contains parenthesis. element rp { its-rp.content, its-rp.attributes } its-rp.content = text its-rp.attributes = its-local.attributes its-langRule = - ## Rule about the Language Information data category. + ## Rule about the Language Information data category element langRule { its-langRule.content, its-langRule.attributes } its-langRule.content = empty @@ -380,7 +386,7 @@ its-attribute.langPointer.nons = attribute langPointer { its-relative-selector.type } its-withinTextRule = - ## Rule about the Elements Within Text data category. + ## Rule about the Elements Within Text data category element withinTextRule { its-withinTextRule.content, its-withinTextRule.attributes } @@ -391,7 +397,7 @@ its-attribute.withinText.nons its-domainRule = - ## Rule about the Domain data category. + ## Rule about the Domain data category element domainRule { its-domainRule.content, its-domainRule.attributes } @@ -405,7 +411,7 @@ its-attribute.domainPointer.nons = attribute domainPointer { its-relative-selector.type } its-disambiguationRule = - ## Rule about the Disambiguation data category. + ## Rule about the Disambiguation data category element disambiguationRule { its-disambiguationRule.content, its-disambiguationRule.attributes } @@ -425,7 +431,7 @@ its-attribute.disambigIdentRefPointer.nons = attribute disambigIdentRefPointer { its-disambigIdentRefPointer.type } its-localeFilterRule = - ## Rule about the LocaleFilter data category. + ## Rule about the LocaleFilter data category element localeFilterRule { its-localeFilterRule.content, its-localeFilterRule.attributes } @@ -436,7 +442,7 @@ its-attribute.localeFilterList.nons its-provRule = - ## Rule about the Provenance data category. + ## Rule about the Provenance data category element provRule { its-provRule.content, its-provRule.attributes } @@ -449,7 +455,7 @@ its-attribute.provenanceRecordsRefPointer.nons = attribute provenanceRecordsRefPointer { its-relative-selector.type } its-externalResourceRefRule = - ## Rule about the External Resource data category. + ## Rule about the External Resource data category element externalResourceRefRule { its-externalResourceRefRule.content, its-externalResourceRefRule.attributes @@ -463,7 +469,7 @@ its-attribute.externalResourceRefPointer.nons = attribute externalResourceRefPointer { its-relative-selector.type } its-targetPointerRule = - ## Rule about the Target Pointer data category. + ## Rule about the Target Pointer data category element targetPointerRule { its-targetPointerRule.content, its-targetPointerRule.attributes } @@ -476,7 +482,7 @@ its-attribute.targetPointer.nons = attribute targetPointer { its-relative-selector.type } its-idValueRule = - ## Rule about the Id Value data category. + ## Rule about the Id Value data category element idValueRule { its-idValueRule.content, its-idValueRule.attributes } @@ -489,7 +495,7 @@ its-attribute.idValue.nons = attribute idValue { its-xpath-expression.type } its-preserveSpaceRule = - ## Rule about the Preserve Space data category. + ## Rule about the Preserve Space data category element preserveSpaceRule { its-preserveSpaceRule.content, its-preserveSpaceRule.attributes } @@ -502,7 +508,7 @@ its-attribute.space.nons = attribute space { "default" | "preserve" } its-locQualityIssueRule = - ## Rule about the Localization Quality Issue data category. + ## Rule about the Localization Quality Issue data category element locQualityIssueRule { its-locQualityIssueRule.content, its-locQualityIssueRule.attributes } @@ -520,10 +526,8 @@ its-attribute.locQualityIssuesRefPointer.nons = attribute locQualityIssuesRefPointer { its-relative-selector.type } -# FIXME: Localization Quality Précis - its-mtConfidenceRule = - ## Rule about the MT Confidence data category. + ## Rule about the MT Confidence data category element mtConfidenceRule { its-mtConfidenceRule.content, its-mtConfidenceRule.attributes } @@ -534,7 +538,7 @@ its-attribute.mtConfidence.nons its-allowedCharactersRule = - ## Rule about the Allowed Characters data category. + ## Rule about the Allowed Characters data category element allowedCharactersRule { its-allowedCharactersRule.content, its-allowedCharactersRule.attributes } @@ -546,9 +550,8 @@ its-attribute.allowedCharactersPointer.nons = attribute allowedCharactersPointer { its-relative-selector.type } -# FIXME: Storage Size its-storageSizeRule = - ## Rule about the Allowed Characters data category. + ## Rule about the Allowed Characters data category element storageSizeRule { its-storageSizeRule.content, its-storageSizeRule.attributes } @@ -565,9 +568,13 @@ its-standoff = its-provenanceRecords | its-locQualityIssues -its-provenanceRecords = element its:provenanceRecords { its-provenanceRecord+, attribute xml:id { xsd:ID } } - -its-provenanceRecord = element its:provenanceRecord { its-provenanceRecord.attributes } +its-provenanceRecords = + ## Standoff markup for Provenance data category + element its:provenanceRecords { its-provenanceRecord+, attribute xml:id { xsd:ID } } + +its-provenanceRecord = + ## Provenance record used in Provenance standoff markup + element its:provenanceRecord { its-provenanceRecord.attributes } its-provenanceRecord.attributes = (its-attribute.person.nons | its-attribute.personRef.nons )? & @@ -578,9 +585,13 @@ (its-attribute.revTool.nons | its-attribute.revToolRef.nons )? & its-attribute.provRef.nons? -its-locQualityIssues = element its:locQualityIssues { its-locQualityIssue+, attribute xml:id { xsd:ID } } - -its-locQualityIssue = element its:locQualityIssue { its-locQualityIssue.attributes } +its-locQualityIssues = + ## Standoff markup for Localization Quality Issue data category + element its:locQualityIssues { its-locQualityIssue+, attribute xml:id { xsd:ID } } + +its-locQualityIssue = + ## Issue recorded in Localization Quality standoff markup + element its:locQualityIssue { its-locQualityIssue.attributes } its-locQualityIssue.attributes = its-attribute.locQualityIssueType.nons? & --- /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20.rng 2012/12/03 19:15:47 1.11 +++ /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/schemas/its20.rng 2012/12/04 21:37:48 1.12 @@ -483,11 +483,13 @@ </define> <define name="its-attribute.version"> <attribute name="its:version"> + <a:documentation>Version of ITS</a:documentation> <ref name="its-version.type"/> </attribute> </define> <define name="its-attribute.version.nons"> <attribute name="version"> + <a:documentation>Version of ITS</a:documentation> <ref name="its-version.type"/> </attribute> </define> @@ -518,7 +520,7 @@ </define> <define name="its-rules"> <element name="rules"> - <a:documentation>Container for global rules.</a:documentation> + <a:documentation>Container for global rules</a:documentation> <ref name="its-rules.content"/> <ref name="its-rules.attributes"/> </element> @@ -565,6 +567,7 @@ </define> <define name="its-param"> <element name="param"> + <a:documentation>Declaration of variable used in selectors</a:documentation> <ref name="its-param.content"/> <ref name="its-param.attributes"/> </element> @@ -891,7 +894,7 @@ </define> <define name="its-span"> <element name="span"> - <a:documentation>Inline element to contain ITS information.</a:documentation> + <a:documentation>Inline element to contain ITS information</a:documentation> <ref name="its-span.content"/> <ref name="its-span.attributes"/> </element> @@ -910,7 +913,7 @@ </define> <define name="its-translateRule"> <element name="translateRule"> - <a:documentation>Rule about the Translate data category.</a:documentation> + <a:documentation>Rule about the Translate data category</a:documentation> <ref name="its-translateRule.content"/> <ref name="its-translateRule.attributes"/> </element> @@ -924,7 +927,7 @@ </define> <define name="its-locNoteRule"> <element name="locNoteRule"> - <a:documentation>Rule about the Localization Note data category.</a:documentation> + <a:documentation>Rule about the Localization Note data category</a:documentation> <ref name="its-attribute.selector"/> <ref name="its-attribute.locNoteType.nons"/> <choice> @@ -947,7 +950,7 @@ </define> <define name="its-locNote"> <element name="locNote"> - <a:documentation>Contains a localization note.</a:documentation> + <a:documentation>Localization note</a:documentation> <ref name="its-locNote.content"/> <ref name="its-locNote.attributes"/> </element> @@ -966,7 +969,7 @@ </define> <define name="its-termRule"> <element name="termRule"> - <a:documentation>Rule about the Terminology data category.</a:documentation> + <a:documentation>Rule about the Terminology data category</a:documentation> <ref name="its-termRule.content"/> <ref name="its-termRule.attributes"/> </element> @@ -997,7 +1000,7 @@ </define> <define name="its-dirRule"> <element name="dirRule"> - <a:documentation>Rule about the Directionality data category.</a:documentation> + <a:documentation>Rule about the Directionality data category</a:documentation> <ref name="its-dirRule.content"/> <ref name="its-dirRule.attributes"/> </element> @@ -1011,7 +1014,7 @@ </define> <define name="its-rubyRule"> <element name="rubyRule"> - <a:documentation>Rule about the Ruby data category.</a:documentation> + <a:documentation>Rule about the Ruby data category</a:documentation> <ref name="its-rubyRule.content"/> <ref name="its-rubyRule.attributes"/> </element> @@ -1050,7 +1053,7 @@ </define> <define name="its-rubyText"> <element name="rubyText"> - <a:documentation>Ruby text.</a:documentation> + <a:documentation>Ruby text</a:documentation> <ref name="its-rubyText.content"/> <ref name="its-rubyText.attributes"/> </element> @@ -1063,7 +1066,7 @@ </define> <define name="its-ruby"> <element name="ruby"> - <a:documentation>Ruby markup.</a:documentation> + <a:documentation>Ruby markup</a:documentation> <ref name="its-ruby.content"/> <ref name="its-ruby.attributes"/> </element> @@ -1092,7 +1095,7 @@ </define> <define name="its-rt"> <element name="rt"> - <a:documentation>Ruby text.</a:documentation> + <a:documentation>Ruby text</a:documentation> <ref name="its-rt.content"/> <ref name="its-rt.attributes"/> </element> @@ -1113,7 +1116,7 @@ <a:documentation>Used in the case of simple ruby markup to specify characters that can denote the beginning and end of ruby text when user agents do not have other ways to present ruby text distinctively -from the base text.</a:documentation> +from the base text. Typically contains parenthesis.</a:documentation> <ref name="its-rp.content"/> <ref name="its-rp.attributes"/> </element> @@ -1126,7 +1129,7 @@ </define> <define name="its-langRule"> <element name="langRule"> - <a:documentation>Rule about the Language Information data category.</a:documentation> + <a:documentation>Rule about the Language Information data category</a:documentation> <ref name="its-langRule.content"/> <ref name="its-langRule.attributes"/> </element> @@ -1145,7 +1148,7 @@ </define> <define name="its-withinTextRule"> <element name="withinTextRule"> - <a:documentation>Rule about the Elements Within Text data category.</a:documentation> + <a:documentation>Rule about the Elements Within Text data category</a:documentation> <ref name="its-withinTextRule.content"/> <ref name="its-withinTextRule.attributes"/> </element> @@ -1159,7 +1162,7 @@ </define> <define name="its-domainRule"> <element name="domainRule"> - <a:documentation>Rule about the Domain data category.</a:documentation> + <a:documentation>Rule about the Domain data category</a:documentation> <ref name="its-domainRule.content"/> <ref name="its-domainRule.attributes"/> </element> @@ -1181,7 +1184,7 @@ </define> <define name="its-disambiguationRule"> <element name="disambiguationRule"> - <a:documentation>Rule about the Disambiguation data category.</a:documentation> + <a:documentation>Rule about the Disambiguation data category</a:documentation> <ref name="its-disambiguationRule.content"/> <ref name="its-disambiguationRule.attributes"/> </element> @@ -1240,7 +1243,7 @@ </define> <define name="its-localeFilterRule"> <element name="localeFilterRule"> - <a:documentation>Rule about the LocaleFilter data category.</a:documentation> + <a:documentation>Rule about the LocaleFilter data category</a:documentation> <ref name="its-localeFilterRule.content"/> <ref name="its-localeFilterRule.attributes"/> </element> @@ -1254,7 +1257,7 @@ </define> <define name="its-provRule"> <element name="provRule"> - <a:documentation>Rule about the Provenance data category.</a:documentation> + <a:documentation>Rule about the Provenance data category</a:documentation> <ref name="its-provRule.content"/> <ref name="its-provRule.attributes"/> </element> @@ -1273,7 +1276,7 @@ </define> <define name="its-externalResourceRefRule"> <element name="externalResourceRefRule"> - <a:documentation>Rule about the External Resource data category.</a:documentation> + <a:documentation>Rule about the External Resource data category</a:documentation> <ref name="its-externalResourceRefRule.content"/> <ref name="its-externalResourceRefRule.attributes"/> </element> @@ -1292,7 +1295,7 @@ </define> <define name="its-targetPointerRule"> <element name="targetPointerRule"> - <a:documentation>Rule about the Target Pointer data category.</a:documentation> + <a:documentation>Rule about the Target Pointer data category</a:documentation> <ref name="its-targetPointerRule.content"/> <ref name="its-targetPointerRule.attributes"/> </element> @@ -1311,7 +1314,7 @@ </define> <define name="its-idValueRule"> <element name="idValueRule"> - <a:documentation>Rule about the Id Value data category.</a:documentation> + <a:documentation>Rule about the Id Value data category</a:documentation> <ref name="its-idValueRule.content"/> <ref name="its-idValueRule.attributes"/> </element> @@ -1330,7 +1333,7 @@ </define> <define name="its-preserveSpaceRule"> <element name="preserveSpaceRule"> - <a:documentation>Rule about the Preserve Space data category.</a:documentation> + <a:documentation>Rule about the Preserve Space data category</a:documentation> <ref name="its-preserveSpaceRule.content"/> <ref name="its-preserveSpaceRule.attributes"/> </element> @@ -1352,7 +1355,7 @@ </define> <define name="its-locQualityIssueRule"> <element name="locQualityIssueRule"> - <a:documentation>Rule about the Localization Quality Issue data category.</a:documentation> + <a:documentation>Rule about the Localization Quality Issue data category</a:documentation> <ref name="its-locQualityIssueRule.content"/> <ref name="its-locQualityIssueRule.attributes"/> </element> @@ -1391,10 +1394,9 @@ <ref name="its-relative-selector.type"/> </attribute> </define> - <!-- FIXME: Localization Quality Précis --> <define name="its-mtConfidenceRule"> <element name="mtConfidenceRule"> - <a:documentation>Rule about the MT Confidence data category.</a:documentation> + <a:documentation>Rule about the MT Confidence data category</a:documentation> <ref name="its-mtConfidenceRule.content"/> <ref name="its-mtConfidenceRule.attributes"/> </element> @@ -1408,7 +1410,7 @@ </define> <define name="its-allowedCharactersRule"> <element name="allowedCharactersRule"> - <a:documentation>Rule about the Allowed Characters data category.</a:documentation> + <a:documentation>Rule about the Allowed Characters data category</a:documentation> <ref name="its-allowedCharactersRule.content"/> <ref name="its-allowedCharactersRule.attributes"/> </element> @@ -1428,10 +1430,9 @@ <ref name="its-relative-selector.type"/> </attribute> </define> - <!-- FIXME: Storage Size --> <define name="its-storageSizeRule"> <element name="storageSizeRule"> - <a:documentation>Rule about the Allowed Characters data category.</a:documentation> + <a:documentation>Rule about the Allowed Characters data category</a:documentation> <ref name="its-storageSizeRule.content"/> <ref name="its-storageSizeRule.attributes"/> </element> @@ -1473,6 +1474,7 @@ </define> <define name="its-provenanceRecords"> <element name="its:provenanceRecords"> + <a:documentation>Standoff markup for Provenance data category</a:documentation> <oneOrMore> <ref name="its-provenanceRecord"/> </oneOrMore> @@ -1483,6 +1485,7 @@ </define> <define name="its-provenanceRecord"> <element name="its:provenanceRecord"> + <a:documentation>Provenance record used in Provenance standoff markup</a:documentation> <ref name="its-provenanceRecord.attributes"/> </element> </define> @@ -1531,6 +1534,7 @@ </define> <define name="its-locQualityIssues"> <element name="its:locQualityIssues"> + <a:documentation>Standoff markup for Localization Quality Issue data category</a:documentation> <oneOrMore> <ref name="its-locQualityIssue"/> </oneOrMore> @@ -1541,6 +1545,7 @@ </define> <define name="its-locQualityIssue"> <element name="its:locQualityIssue"> + <a:documentation>Issue recorded in Localization Quality standoff markup</a:documentation> <ref name="its-locQualityIssue.attributes"/> </element> </define>
Received on Tuesday, 4 December 2012 21:37:51 UTC