Mark Davis | 1 Apr 06:33

Re: LAST CALL REQUESTED

BTW, can someone point me to the tool for viewing the last call status?

Mark


On Mon, Mar 2, 2009 at 03:19, Martin Duerst <duerst <at> it.aoyama.ac.jp> wrote:
Hello Chris,

[I'm assuming you are the acting AD currently.
I'm cc'ing Alex so he knows what might be comming up for him.]

I'm glad to finally request IETF LAST CALL for
draft-ietf-ltru-4645bis(-10) and draft-ietf-ltru-4646bis(-21),
the two current WG documents of the LTRU WG.
The intended status of 4645bis is informational,
the intended status of 4646bis is BCP (BCP 47 together
with RFC 4647, which stays as it is).

I'm sending the shepherding documents in separate mails,
but I'm using this mail as a trigger; that's what Ted Hardie
told me to do when I did this thing last time.

If I need to do anything else, please don't hesitate to tell me.

Regards,    Martin.


#-#-#  Martin J. Du"rst, Assoc. Professor, Aoyama Gakuin University
#-#-#  http://www.sw.it.aoyama.ac.jp       mailto:duerst <at> it.aoyama.ac.jp


Martin J. Dürst | 1 Apr 09:56
Picon
Gravatar

Re: LAST CALL REQUESTED

On 2009/04/01 13:33, Mark Davis wrote:
> BTW, can someone point me to the tool for viewing the last call status?

https://datatracker.ietf.org/idtracker/draft-ietf-ltru-4646bis/

Alex, can you give us a hint about when to expect the next steps,
or tell us what you need from our side, if anything?

Regards,    Martin.

>
> Mark
>
>
> On Mon, Mar 2, 2009 at 03:19, Martin Duerst<duerst <at> it.aoyama.ac.jp>  wrote:
>
>> Hello Chris,
>>
>> [I'm assuming you are the acting AD currently.
>> I'm cc'ing Alex so he knows what might be comming up for him.]
>>
>> I'm glad to finally request IETF LAST CALL for
>> draft-ietf-ltru-4645bis(-10) and draft-ietf-ltru-4646bis(-21),
>> the two current WG documents of the LTRU WG.
>> The intended status of 4645bis is informational,
>> the intended status of 4646bis is BCP (BCP 47 together
>> with RFC 4647, which stays as it is).
>>
>> I'm sending the shepherding documents in separate mails,
>> but I'm using this mail as a trigger; that's what Ted Hardie
>> told me to do when I did this thing last time.
>>
>> If I need to do anything else, please don't hesitate to tell me.
>>
>> Regards,    Martin.
>>
>>
>> #-#-#  Martin J. Du"rst, Assoc. Professor, Aoyama Gakuin University
>> #-#-#  http://www.sw.it.aoyama.ac.jp       mailto:duerst <at> it.aoyama.ac.jp
>>
>>
>

--

-- 
#-# Martin J.Dürst, Professor, Aoyama Gakuin University
#-# http://www.sw.it.aoyama.ac.jp   mailto:duerst <at> it.aoyama.ac.jp
_______________________________________________
Ltru mailing list
Ltru <at> ietf.org
https://www.ietf.org/mailman/listinfo/ltru
Mark Davis | 1 Apr 16:35

Re: LAST CALL REQUESTED

Hmmm. I'd seen that page, but there wasn't any progress since 3/9, so I thought I was missing something.

Mark


On Wed, Apr 1, 2009 at 00:56, "Martin J. Dürst" <duerst <at> it.aoyama.ac.jp> wrote:
On 2009/04/01 13:33, Mark Davis wrote:
BTW, can someone point me to the tool for viewing the last call status?

https://datatracker.ietf.org/idtracker/draft-ietf-ltru-4646bis/

Alex, can you give us a hint about when to expect the next steps,
or tell us what you need from our side, if anything?

Regards,    Martin.




Mark


On Mon, Mar 2, 2009 at 03:19, Martin Duerst<duerst <at> it.aoyama.ac.jp>  wrote:

Hello Chris,

[I'm assuming you are the acting AD currently.
I'm cc'ing Alex so he knows what might be comming up for him.]

I'm glad to finally request IETF LAST CALL for
draft-ietf-ltru-4645bis(-10) and draft-ietf-ltru-4646bis(-21),
the two current WG documents of the LTRU WG.
The intended status of 4645bis is informational,
the intended status of 4646bis is BCP (BCP 47 together
with RFC 4647, which stays as it is).

I'm sending the shepherding documents in separate mails,
but I'm using this mail as a trigger; that's what Ted Hardie
told me to do when I did this thing last time.

If I need to do anything else, please don't hesitate to tell me.

Regards,    Martin.


#-#-#  Martin J. Du"rst, Assoc. Professor, Aoyama Gakuin University
#-#-#  http://www.sw.it.aoyama.ac.jp       mailto:duerst <at> it.aoyama.ac.jp




--
#-# Martin J.Dürst, Professor, Aoyama Gakuin University

Mark Davis | 3 Apr 03:32

Regex

I just redid my regex for the new version. The only tweak I made was that it only allows one extlang (as per the description, item 4), which means that I had to retain zh-min-nan as irregular.

(?i)
  (?:
      (?: ( [a-z]{2,8} | [a-z]{2,3} [-_] [a-z]{3} )
      (?: [-_] ( [a-z]{4} ) )?
      (?: [-_] ( [a-z]{2} | [0-9]{3} ) )?
      (?: [-_] ( (?: [a-z 0-9]{5,8} | [0-9] [a-z 0-9]{3} ) (?: [-_] (?: [a-z 0-9]{5,8} | [0-9] [a-z 0-9]{3} ) )* ) )?
      (?: [-_] ( [a-w y-z] (?: [-_] [a-z 0-9]{2,8} )+ (?: [-_] [a-w y-z] (?: [-_] [a-z 0-9]{2,8} )+ )* ) )?
      (?: [-_] ( x (?: [-_] [a-z 0-9]{1,8} )+ ) )? )
    | ( x (?: [-_] [a-z 0-9]{1,8} )+ )
    | ( en [-_] GB [-_] oed
      | i [-_] (?: ami | bnn | default | enochian | hak | klingon | lux | mingo | navajo | pwn | tao | tay | tsu )
      | no [-_] (?: bok | nyn )
      | sgn [-_] (?: BE [-_] (?: fr | nl) | CH [-_] de )
      | zh [-_] min [-_] nan ) )

As before,

  • the (?i) is for case insensitive matching,
  • the [-_] is for implemenatations (like Unicode) that allow alternate separators (can be replaced by [-] otherwise), and
  • the (?: is Perl/Java syntax for non-capturing groups. [That is, the regular (..) capture the main components of the regex, for extraction later.]

Mark
Doug Ewell | 6 Apr 15:21
Favicon

Re: LAST CALL REQUESTED

Mark Davis <mark at macchiato dot com> wrote:

>>> BTW, can someone point me to the tool for viewing the last call 
>>> status?
>>
>> https://datatracker.ietf.org/idtracker/draft-ietf-ltru-4646bis/
>>
>> Alex, can you give us a hint about when to expect the next steps, or 
>> tell us what you need from our side, if anything?
>
> Hmmm. I'd seen that page, but there wasn't any progress since 3/9, so 
> I thought I was missing something.

I too would be interested to know what is causing the delay in moving 
these documents forward.

--
Doug Ewell  *  Thornton, Colorado, USA  *  RFC 4645  *  UTN #14
http://www.ewellic.org
http://www1.ietf.org/html.charters/ltru-charter.html
http://www.alvestrand.no/mailman/listinfo/ietf-languages  ˆ

_______________________________________________
Ltru mailing list
Ltru <at> ietf.org
https://www.ietf.org/mailman/listinfo/ltru
Randy Presuhn | 7 Apr 01:05
Picon

Re: LAST CALL REQUESTED

Hi -

> From: "Doug Ewell" <doug <at> ewellic.org>
> To: "LTRU Working Group" <ltru <at> ietf.org>
> Sent: Monday, April 06, 2009 6:21 AM
> Subject: Re: [Ltru] LAST CALL REQUESTED
...
> >> https://datatracker.ietf.org/idtracker/draft-ietf-ltru-4646bis/
...
> I too would be interested to know what is causing the delay in moving 
> these documents forward.

We're just waiting.  The responsible AD (or someone designated by him)
needs to complete a review of the documents before bringing them to
the full IESG or taking up an IETF last call.  This information is
in the "State Exmplanations" link from the web page cited above.

Randy

Randy Presuhn | 9 Apr 01:06
Picon

Re: LAST CALL REQUESTED

Hi -

Update -

Our Area Director (Alexey Melnikov <alexey.melnikov <at> isode.com>) has
started digging into the documents.  He has some questions, which he
has promised to send out soon.

Randy

Randy Presuhn | 9 Apr 01:32
Picon

Fw: AD review of draft-ietf-ltru-4645bis-10.txt

Hi -

This from our AD.

Randy

----- Original Message ----- 
From: "Alexey Melnikov" <alexey.melnikov <at> isode.com>
To: "Martin J. Dürst" <duerst <at> it.aoyama.ac.jp>; "Mark Davis" <mark <at> macchiato.com>; "Chris Newman"
<Chris.Newman <at> sun.com>; "Randy
Presuhn" <randy_presuhn <at> mindspring.com>; "Addison Phillips" <addison <at> inter-locale.com>; "Doug
Ewell" <doug <at> ewellic.org>
Cc: "Lisa Dusseault" <lisa.dusseault <at> messagingarchitects.com>
Sent: Wednesday, April 08, 2009 4:10 PM
Subject: AD review of draft-ietf-ltru-4645bis-10.txt

> Alexey Melnikov wrote:
>
> Martin J. Dürst wrote:
>
>> On 2009/04/01 13:33, Mark Davis wrote:
>>
>>> BTW, can someone point me to the tool for viewing the last call status?
>>
>> https://datatracker.ietf.org/idtracker/draft-ietf-ltru-4646bis/
>>
>> Alex, can you give us a hint about when to expect the next steps,
>> or tell us what you need from our side, if anything?
>
> Folks,
> I am on my last day of holidays before returning home.
> I've started reviewing 4645bis few days (and forgot to download
> 4646bis on my laptop), which proved to be problematic.
> I have some comments/questions about 4645bis which I try to summarize
> and send out shortly.

Ok, here is my AD review of 4645bis. Please let me know if you
agree/disagree with various issues I've raised.
Answers to some of my questions might be obvious after I review 4646bis
in details (I've only skimmed it so far). But I am sending my comments
anyway in order to speed up the process.

So far I don't have any issues with the document that I think need to be
fixed before IETF LC. However, I would appreciate a reply to my review
before issuing IETF LC. Also please let me know if you want me to last
call the document as is, or if you would like to update the document to
address my comments first.

General: I hope the WG has discussed "let's remove all registrations
from the document before publication" approach. Personally I would
rather the document contain IANA registrations upon publication.

> 1.  Introduction

 [...]

>    In its initial phase as an Internet-Draft, this memo also contained a
>    complete replacement of the contents of the Language Subtag Registry
>    to be used by the Internet Assigned Numbers Authority (IANA) in
>    updating it.  This content was deleted from this memo prior to
>    publication as an RFC.

Is this paragraph useful? If the content is deleted when the updated
RFC  is published, this doesn't give a reader any useful information. If
the content is not deleted when the updated RFC is published, then this
text would be wrong.

I think there is at least one more place where there is a similar  issue.

I've just picked a nearly random registration from the document:

> Type: language
> Subtag: orv
> Description: Old Russian
> Added: 2029-09-09

I am confused here. Why is the "Added" date in the future?

> 6.  Changes
>
>    [RFC EDITOR NOTE: this section is provided for the convenience of
>    reviewers and will be removed from the final document.]
>
>    This memo is a new work, not an incremental update of [RFC4645].  The
>    procedure for populating the original Language Subtag Registry,
>    specified by the earlier [RFC4646], is included by reference to
>    [RFC4645].  Therefore, no changes from [RFC4645] are listed in this
>    section.

I am not sure I understand this comment and I don't think I find it
convincing. At least one of the acting ADs thinks that any XXXXbis draft
must contain "Changes since RFC XXXX" section, which tries to summarize
all major changes. (I.e. the AD would put a DISCUSS on the document
until this is resolved). Personally I find a section listing all changes
to be very useful, but I don't consider lack of it as a blocking issue.

If the document is really not a bis draft, then the draft name is confusing.

Regards,
Alexey

_______________________________________________
Ltru mailing list
Ltru <at> ietf.org
https://www.ietf.org/mailman/listinfo/ltru
Don Osborn | 9 Apr 01:40

How to handle macrolanguage when no code?

In looking at the BBC website's offerings in African languages, one notes that they have grouped Kinyarwanda and Kirundi together under http://www.bbc.co.uk/greatlakes/  . This makes sense from a linguistic point of view since as I understand it, the two languages are almost the same. When looking at the view (page) source, one notes that they use lang="rw" (for Kinyarwanda). It may be that the pages I checked are properly Kinyarwanda and an expert would know that they are not Kirundi (rn), but it is in any event true that there is no code element to cover both languages.

 

I'm curious if there is any other recommended way to handle such a situation where web content may be deliberately and easily designed to cover more than one language as defined by ISO 639 when there is not currently any macrolanguage code for them. Could one for example define a whole page as having two languages? E.g., something like lang="rw, rn"?

 

Thanks in advance for any feedback.

 

Don

 

 

Randy Presuhn | 9 Apr 02:01
Picon

Re: AD review of draft-ietf-ltru-4645bis-10.txt

Hi -

(I've added the ltru WG list, and trimmed from the recipient list those people
subscribed to that list.)

Responding as a co-chair...

> From: "Alexey Melnikov" <alexey.melnikov <at> isode.com>
> To: "Martin J. Dürst" <duerst <at> it.aoyama.ac.jp>; "Mark Davis" <mark <at> macchiato.com>; "Chris Newman"
<Chris.Newman <at> sun.com>; "Randy
Presuhn" <randy_presuhn <at> mindspring.com>; "Addison Phillips" <addison <at> inter-locale.com>; "Doug
Ewell" <doug <at> ewellic.org>
> Cc: "Lisa Dusseault" <lisa.dusseault <at> messagingarchitects.com>
> Sent: Wednesday, April 08, 2009 4:10 PM
> Subject: AD review of draft-ietf-ltru-4645bis-10.txt
...
> Ok, here is my AD review of 4645bis. Please let me know if you
> agree/disagree with various issues I've raised.
> Answers to some of my questions might be obvious after I review 4646bis
> in details (I've only skimmed it so far). But I am sending my comments
> anyway in order to speed up the process.

Thanks!

> So far I don't have any issues with the document that I think need to be
> fixed before IETF LC. However, I would appreciate a reply to my review
> before issuing IETF LC. Also please let me know if you want me to last
> call the document as is, or if you would like to update the document to
> address my comments first.

I'd prefer to last call it as is, but would defer to co-chair (and document
shepherd) Martin Duerst's opinion.

> General: I hope the WG has discussed "let's remove all registrations
> from the document before publication" approach. Personally I would
> rather the document contain IANA registrations upon publication.

Yes, this was discussed at some length back when the WG produced RFC 4645.
There was considerable concern that if the content were left in the
RFC, even with health warnings, the risk would be too great that
developers would use the RFC rather than the registry.

> > 1.  Introduction
>
> [...]
>
> >    In its initial phase as an Internet-Draft, this memo also contained a
> >    complete replacement of the contents of the Language Subtag Registry
> >    to be used by the Internet Assigned Numbers Authority (IANA) in
> >    updating it.  This content was deleted from this memo prior to
> >    publication as an RFC.
>
> Is this paragraph useful? If the content is deleted when the updated
> RFC  is published, this doesn't give a reader any useful information. If
> the content is not deleted when the updated RFC is published, then this
> text would be wrong.

It's there to explain the absence of content in the RFC.  Without it,
the document would be puzzlingly content-free.  We were pretty much
painted into this corner by the rules on references to I-Ds, etc.
Back when we did 4645, we considered many alternatives, and this was
the path that got consensus.  When we started the update, the question
was raised whether we wanted to go this route again, but there was
no groundswell of support for any alternative.

> I think there is at least one more place where there is a similar  issue.

There is strong consensus to delete the content upon publication.
If we had known of a tidier way of delivering the bulk update to IANA,
we'd have used it.

I've just picked a nearly random registration from the document:

> > Type: language
> > Subtag: orv
> > Description: Old Russian
> > Added: 2029-09-09
>
> I am confused here. Why is the "Added" date in the future?

See section 2.1:
   The values of the File-Date field, the Added date for each new subtag
   record, and the Deprecated date for each existing grandfathered or
   redundant tag deprecated by this update were set to a date as near as
   practical to the date of IESG approval of this memo.  [RFC EDITOR
   NOTE: these dates are initially set to 2029-09-09 for easy
   recognition, and MUST be updated during AUTH48.]

> > 6.  Changes
> >
> >    [RFC EDITOR NOTE: this section is provided for the convenience of
> >    reviewers and will be removed from the final document.]
> >
> >    This memo is a new work, not an incremental update of [RFC4645].  The
> >    procedure for populating the original Language Subtag Registry,
> >    specified by the earlier [RFC4646], is included by reference to
> >    [RFC4645].  Therefore, no changes from [RFC4645] are listed in this
> >    section.
>
> I am not sure I understand this comment and I don't think I find it
> convincing. At least one of the acting ADs thinks that any XXXXbis draft
> must contain "Changes since RFC XXXX" section, which tries to summarize
> all major changes. (I.e. the AD would put a DISCUSS on the document
> until this is resolved). Personally I find a section listing all changes
> to be very useful, but I don't consider lack of it as a blocking issue.
>
> If the document is really not a bis draft, then the draft name is confusing.

We did discuss whether an incremental update or bulk-replace update was
easier to cope with, and opted for the bulk-replace approach.  To describe
the detailed differences in the changes section would be counterproductive at best.
If this MUST be done to clear a potential DISCUSS, perhaps a compromise
would be to add a summary of the form "XXX new records added, YYY old
records modified."  Actually listing all the new ones would NOT be something
I'd like to even consider.  I think the scientific term is "a gazillion,"
and would nearly double the length of the document, which might make it a
little unwieldy.  :-)  I *would* consider asking the editor to list the
ones to which changes (other thatn formatting changes) were made (without
detailing the nature of the change), but only if (1) necessary to clear a
DISCUSS, and (2) endorsed by the WG.  However, my strong preference
is to provide no more detail than is absolutely necessary, particularly
since the body is to be gutted as part of the publication process anyway.

Randy

_______________________________________________
Ltru mailing list
Ltru <at> ietf.org
https://www.ietf.org/mailman/listinfo/ltru

Gmane