Mercurial > emacs
view etc/schema/xhtml-bform.rnc @ 102944:44a517fa4d12
(Qja, Qko): New variables.
(fc_charset_table): Delete uniquifier data for iso8859-1.
(ftfont_get_latin1_charset): New function.
(get_adstyle_property): New function.
(ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
bitmap fonts.
(ftfont_lookup_cache): Handle the case that KEY is a font-entity.
Delete iso-8859-1 range from the charset of fonts whose adstyle is
`ko' or `ja'.
(ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
(ftfont_get_charset): For iso8859-1, call
ftfont_get_latin1_charset.
(ftfont_list): Don't refuse a font spec with non-nil `adstyle'
property.
(ftfont_open): Call ftfont_lookup_cache with ENTITY.
(syms_of_ftfont): DEFSYM Qja and Qko.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 13 Apr 2009 12:33:13 +0000 |
parents | 9e48c9dc543f |
children |
line wrap: on
line source
# Simplified Forms Module form = element form { form.attlist, # Don't use Block.model, because this gets redefined by the # legacy module. Block.class+ } form.attlist = Common.attrib, attribute action { URI.datatype }, attribute method { "get" | "post" }?, attribute enctype { ContentType.datatype }? label = element label { label.attlist, Inline.model } label.attlist = Common.attrib, attribute for { IDREF.datatype }?, attribute accesskey { Character.datatype }? input = element input { input.attlist } input.attlist = Common.attrib, attribute type { InputType.class }?, attribute name { text }?, attribute value { text }?, attribute checked { "checked" }?, attribute size { text }?, attribute maxlength { Number.datatype }?, attribute src { URI.datatype }?, attribute accesskey { Character.datatype }? InputType.class = "text" | "password" | "checkbox" | "radio" | "submit" | "reset" | "hidden" select = element select { select.attlist, option+ } select.attlist = Common.attrib, attribute name { text }?, attribute size { Number.datatype }?, attribute multiple { "multiple" }? option = element option { Common.attrib, attribute selected { "selected" }?, attribute value { text }?, text } textarea = element textarea { textarea.attlist } textarea.attlist = Common.attrib, attribute name { text }?, attribute rows { Number.datatype }, attribute cols { Number.datatype }, attribute accesskey { Character.datatype }?, text Form.class = form Formctrl.class = input | label | select | textarea Block.class |= Form.class Inline.class |= Formctrl.class