ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* (Ctx)Lua, diacritics & string.upper()
@ 2011-04-05 16:28 Procházka Lukáš Ing. - Pontex s. r. o.
  2011-04-05 16:30 ` Wolfgang Schuster
  0 siblings, 1 reply; 6+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2011-04-05 16:28 UTC (permalink / raw)
  To: ConTeXt

Hello,

is there a possibility to use Ctx Lua to convert strings containing diacritics to upper/lower case?

I have a .cld file, UTF-8, and

("Přehledná"):upper() gives "PřEHLEDNá"

whilst the desired result is "PŘEHLEDNÁ".

Is there a way how to solve this? (Maybe another function than Lua's "string.upper()".)

Kind regards,

Lukas


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: (Ctx)Lua, diacritics & string.upper()
  2011-04-05 16:28 (Ctx)Lua, diacritics & string.upper() Procházka Lukáš Ing. - Pontex s. r. o.
@ 2011-04-05 16:30 ` Wolfgang Schuster
  2011-04-05 16:34   ` Procházka Lukáš Ing. - Pontex s. r. o.
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfgang Schuster @ 2011-04-05 16:30 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 05.04.2011 um 18:28 schrieb Procházka Lukáš Ing. - Pontex s. r. o.:

> Hello,
> 
> is there a possibility to use Ctx Lua to convert strings containing diacritics to upper/lower case?
> 
> I have a .cld file, UTF-8, and
> 
> ("Přehledná"):upper() gives "PřEHLEDNá"
> 
> whilst the desired result is "PŘEHLEDNÁ".
> 
> Is there a way how to solve this? (Maybe another function than Lua's "string.upper()".)

context.WORD("…")

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: (Ctx)Lua, diacritics & string.upper()
  2011-04-05 16:30 ` Wolfgang Schuster
@ 2011-04-05 16:34   ` Procházka Lukáš Ing. - Pontex s. r. o.
  2011-04-05 16:52     ` Wolfgang Schuster
  0 siblings, 1 reply; 6+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2011-04-05 16:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users

... Well, the situation is that the .cld creates an extra file where the converted (uppercased) string should be written.

So I don't need to pass the string to Ctx to convert it and typeset, but to convert it first and to flush it to another file.

Lukas


On Tue, 05 Apr 2011 18:30:34 +0200, Wolfgang Schuster <schuster.wolfgang@googlemail.com> wrote:

>
> Am 05.04.2011 um 18:28 schrieb Procházka Lukáš Ing. - Pontex s. r. o.:
>
>> Hello,
>>
>> is there a possibility to use Ctx Lua to convert strings containing diacritics to upper/lower case?
>>
>> I have a .cld file, UTF-8, and
>>
>> ("Přehledná"):upper() gives "PřEHLEDNá"
>>
>> whilst the desired result is "PŘEHLEDNÁ".
>>
>> Is there a way how to solve this? (Maybe another function than Lua's "string.upper()".)
>
> context.WORD("…")
>
> Wolfgang
>
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
>
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: (Ctx)Lua, diacritics & string.upper()
  2011-04-05 16:34   ` Procházka Lukáš Ing. - Pontex s. r. o.
@ 2011-04-05 16:52     ` Wolfgang Schuster
  2011-04-06  6:35       ` Procházka Lukáš Ing. - Pontex s. r. o.
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfgang Schuster @ 2011-04-05 16:52 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 05.04.2011 um 18:34 schrieb Procházka Lukáš Ing. - Pontex s. r. o.:

> ... Well, the situation is that the .cld creates an extra file where the converted (uppercased) string should be written.
> 
> So I don't need to pass the string to Ctx to convert it and typeset, but to convert it first and to flush it to another file.

\starttext
\ctxsprint{"Přehledná"}
\ctxsprint{utf.upper("Přehledná")}
\stoptext

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: (Ctx)Lua, diacritics & string.upper()
  2011-04-05 16:52     ` Wolfgang Schuster
@ 2011-04-06  6:35       ` Procházka Lukáš Ing. - Pontex s. r. o.
  2011-04-06  7:43         ` Wolfgang Schuster
  0 siblings, 1 reply; 6+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2011-04-06  6:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Thanks W&H, both solutions work perfectly.

Lukas


>> ... Well, the situation is that the .cld creates an extra file where the converted (uppercased) string should be written.
>>

> \starttext
> \ctxsprint{"Přehledná"}
> \ctxsprint{utf.upper("Přehledná")}
> \stoptext
>
> Wolfgang

> characters.upper(str)


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: (Ctx)Lua, diacritics & string.upper()
  2011-04-06  6:35       ` Procházka Lukáš Ing. - Pontex s. r. o.
@ 2011-04-06  7:43         ` Wolfgang Schuster
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Schuster @ 2011-04-06  7:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 06.04.2011 um 08:35 schrieb Procházka Lukáš Ing. - Pontex s. r. o.:

> Thanks W&H, both solutions work perfectly.

I see, characters.upper is also mentioned in Hans Lua manual: http://www.pragma-ade.com/show-man-44.htm

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-04-06  7:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-05 16:28 (Ctx)Lua, diacritics & string.upper() Procházka Lukáš Ing. - Pontex s. r. o.
2011-04-05 16:30 ` Wolfgang Schuster
2011-04-05 16:34   ` Procházka Lukáš Ing. - Pontex s. r. o.
2011-04-05 16:52     ` Wolfgang Schuster
2011-04-06  6:35       ` Procházka Lukáš Ing. - Pontex s. r. o.
2011-04-06  7:43         ` Wolfgang Schuster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).