- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 35
 
Add u: options namespace #846
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
  
     Merged
                    Changes from 11 commits
      Commits
    
    
            Show all changes
          
          
            12 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      0117fee
              
                Move spec/registry.md -> spec/registry/default.md
              
              
                eemeli f969ab6
              
                Add Unicode Registry definition
              
              
                eemeli 3a3d4ab
              
                Refer to BCP47, add note about only requiring normal tags
              
              
                eemeli 6c20950
              
                Merge branch 'main' into u-options
              
              
                eemeli 087bd0d
              
                Call it a namespace
              
              
                eemeli 9c307cb
              
                Apply suggestions from code review
              
              
                eemeli af2d4e9
              
                Fix test file reference
              
              
                eemeli b4b2921
              
                Apply suggestions from code review
              
              
                eemeli 680d25d
              
                Update spec/u-namespace.md
              
              
                aphillips 01fed13
              
                Apply suggestions from code review
              
              
                eemeli de56e4c
              
                Apply suggestions from code review
              
              
                eemeli 0c9414b
              
                Add mention of functions to namespace description
              
              
                eemeli File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or 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 hidden or 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 hidden or 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,86 @@ | ||
| # MessageFormat 2.0 Unicode Namespace | ||
| 
     | 
||
| The `u:` _namespace_ is reserved for the definition of _options_ | ||
| which affect the _function context_ of the specific _expressions_ | ||
| in which they appear, | ||
| or for the definition of _options_ that are universally applicable | ||
| rather than function-specific. | ||
                
      
                  eemeli marked this conversation as resolved.
               
          
            Show resolved
            Hide resolved
         | 
||
| 
     | 
||
| The CLDR Technical Committee of the Unicode Consortium | ||
| manages the specification for this namespace, hence the name `u:`. | ||
| 
     | 
||
| ## Options | ||
| 
     | 
||
| This section describes common **_<dfn>`u:` options</dfn>_** which each implementation SHOULD support | ||
| for all _functions_ and _markup_. | ||
| 
     | 
||
| ### `u:id` | ||
| 
     | 
||
| A string value that is included as an `id` or other suitable value | ||
| in the formatted parts for the _placeholder_, | ||
| or any other structured formatted results. | ||
| 
     | 
||
| Ignored when formatting a message to a string. | ||
| 
     | 
||
| The value of the `u:id` _option_ MUST be a _literal_ or a | ||
| _variable_ whose _resolved value_ is either a string | ||
| or can be resolved to a string without error. | ||
| For other values, a _Bad Option_ error is emitted | ||
| and the `u:id` option is ignored. | ||
| 
     | 
||
| ### `u:locale` | ||
| 
     | 
||
| Replaces the _locale_ defined in the _function context_ for this _expression_. | ||
| 
     | 
||
| A comma-delimited list consisting of | ||
| well-formed [BCP 47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) | ||
| language tags, | ||
| or an implementation-defined list of such tags. | ||
| 
     | 
||
| If this option is set on _markup_, a _Bad Option_ error is emitted | ||
| and the value of the `u:locale` option is ignored. | ||
| 
     | 
||
| During processing, the `u:locale` option | ||
| MUST be removed from the resolved mapping of _options_ | ||
| before calling the _function handler_. | ||
| 
     | 
||
| Values matching the following ABNF are always accepted: | ||
| ```abnf | ||
| u-locale-option = unicode_bcp47_locale_id *(o "," o unicode_bcp47_locale_id) | ||
| ``` | ||
| using `unicode_bcp47_locale_id` as defined for | ||
| [Unicode Locale Identifier](https://cldr-smoke.unicode.org/spec/main/ldml/tr35.html#unicode_bcp47_locale_id). | ||
| 
     | 
||
| Implementations MAY support additional language tags, | ||
| such as private-use or grandfathered tags, | ||
| or tags using `_` instead of `-` as a separator. | ||
| When the value of `u:locale` is set by a _variable_, | ||
| implementations MAY support non-string values otherwise representing locales. | ||
| 
     | 
||
| Implementations MAY emit a _Bad Option_ error | ||
| and MAY ignore the value of the `u:locale` _option_ as a whole | ||
| or any of the entries in the list of language tags. | ||
| This might be because the locale specified is not supported | ||
| or because the language tag is not well-formed, | ||
| not valid, or some other reason. | ||
| 
     | 
||
| ### `u:dir` | ||
| 
     | 
||
| Replaces the base directionality defined in | ||
| the _function context_ for this _expression_. | ||
| 
     | 
||
| If this option is set on _markup_, a _Bad Option_ error is emitted | ||
| and the value of the `u:dir` option is ignored. | ||
| 
     | 
||
| During processing, the `u:dir` option | ||
| MUST be removed from the resolved mapping of _options_ | ||
| before calling the _function handler_. | ||
| 
     | 
||
| The value of the `u:dir` _option_ MUST be one of the following _literal_ values | ||
| or a _variable_ whose _resolved value_ is one of these _literals_: | ||
| - `ltr`: left-to-right directionality | ||
| - `rtl`: right-to-left directionality | ||
| - `auto`: directionality determined from _expression_ contents | ||
| 
     | 
||
| For other values, a _Bad Option_ error is emitted | ||
| and the value of the `u:dir` option is ignored. | ||
  
    
      This file contains hidden or 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 hidden or 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 | 
|---|---|---|
| 
          
            
          
           | 
    @@ -269,6 +269,9 @@ | |
| "name": { | ||
| "type": "string" | ||
| }, | ||
| "id": { | ||
| "type": "string" | ||
| }, | ||
| "options": { | ||
| "type": "object" | ||
| } | ||
| 
          
            
          
           | 
    ||
  
    
      This file contains hidden or 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,126 @@ | ||
| { | ||
| "$schema": "https://raw.githubusercontent.com/unicode-org/message-format-wg/main/test/schemas/v0/tests.schema.json", | ||
| "scenario": "u: Options", | ||
| "description": "Common options affecting the function context", | ||
| "defaultTestProperties": { | ||
| "locale": "en-US" | ||
| }, | ||
| "tests": [ | ||
| { | ||
| "src": "{#tag u:id=x}content{/ns:tag u:id=x}", | ||
| "exp": "content", | ||
| "expParts": [ | ||
| { | ||
| "type": "markup", | ||
| "kind": "open", | ||
| "id": "x", | ||
| "name": "tag" | ||
| }, | ||
| { | ||
| "type": "literal", | ||
| "value": "content" | ||
| }, | ||
| { | ||
| "type": "markup", | ||
| "kind": "close", | ||
| "id": "x", | ||
| "name": "tag" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "src": "{#tag u:dir=rtl u:locale=ar}content{/ns:tag}", | ||
| "exp": "content", | ||
| "expErrors": [{ "type": "bad-option" }, { "type": "bad-option" }], | ||
| "expParts": [ | ||
| { | ||
| "type": "markup", | ||
| "kind": "open", | ||
| "name": "tag" | ||
| }, | ||
| { | ||
| "type": "literal", | ||
| "value": "content" | ||
| }, | ||
| { | ||
| "type": "markup", | ||
| "kind": "close", | ||
| "name": "tag" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "src": "hello {4.2 :number u:locale=fr}", | ||
| "exp": "hello 4,2" | ||
| }, | ||
| { | ||
| "src": "hello {world :string u:dir=ltr u:id=foo}", | ||
| "exp": "hello world", | ||
| "expParts": [ | ||
| { | ||
| "type": "literal", | ||
| "value": "hello " | ||
| }, | ||
| { | ||
| "type": "string", | ||
| "source": "|world|", | ||
| "dir": "ltr", | ||
| "id": "foo", | ||
| "value": "world" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "src": "hello {world :string u:dir=rtl}", | ||
| "exp": "hello \u2067world\u2069", | ||
| "expParts": [ | ||
| { | ||
| "type": "literal", | ||
| "value": "hello " | ||
| }, | ||
| { | ||
| "type": "string", | ||
| "source": "|world|", | ||
| "dir": "rtl", | ||
| "value": "world" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "src": "hello {world :string u:dir=auto}", | ||
| "exp": "hello \u2068world\u2069", | ||
| "expParts": [ | ||
| { | ||
| "type": "literal", | ||
| "value": "hello " | ||
| }, | ||
| { | ||
| "type": "string", | ||
| "source": "|world|", | ||
| "dir": "auto", | ||
| "value": "world" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "locale": "ar", | ||
| "src": "أهلاً {بالعالم :string u:dir=rtl}", | ||
| "exp": "أهلاً \u2067بالعالم\u2069" | ||
| }, | ||
| { | ||
| "locale": "ar", | ||
| "src": "أهلاً {بالعالم :string u:dir=auto}", | ||
| "exp": "أهلاً \u2068بالعالم\u2069" | ||
| }, | ||
| { | ||
| "locale": "ar", | ||
| "src": "أهلاً {world :string u:dir=ltr}", | ||
| "exp": "أهلاً \u2066world\u2069" | ||
| }, | ||
| { | ||
| "locale": "ar", | ||
| "src": "أهلاً {بالعالم :string}", | ||
| "exp": "أهلاً \u2067بالعالم\u2069" | ||
| } | ||
| ] | ||
| } | 
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.