mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 03:31:16 +00:00
* GSWExtensions.framework/Makefile.preamble: added GDL2 FLAG * GSWExtensions.framework/*/*.html: lowercase tags * GSWExtensionsGSW.framework/*/*.html: lowercase tags * GSWeb.framework/GNUmakefile : added DTDs, modified Files list * GSWeb.framework/GSWApplication.m: commented [GSWHTMLParser printsDiagnostics] changes for GDL2 * GSWeb.framework/GSWBrowser.h/.m: implementation * GSWeb.framework/GSWBundle.m: Parser call modification, handling of .gswi unarchiving * GSWeb.framework/GSWComponentContent.m: Logs * GSWeb.framework/GSWConfig.h: Added GSWEB_DEFAULT_HTML_PARSER_CLASS_NAME * GSWeb.framework/GSWConstants.h/.m: added keys * GSWeb.framework/GSWDisplayGroup.h/.m member variables renamed implementation of some missing parts * GSWeb.framework/GSWRequest.m: remove duplicate languages * GSWeb.framework/GSWTemplateParser.h/.m: make it base class for different parsers * GSWeb.framework/GSWTemplateParserXML.h/.m: XML parser * GSWeb.framework/GSWTemplateParserANTLR.h/.m: ANTLR (old) parser * GSWeb.framework/GSWUtils.h/.m: added SBIsValueIsIn() * GSWeb.framework/GSWeb.h: added includes for parsers * GSWeb.framework/Makefile.postamble: DTDs install * GSWeb.framework/Makefile.preamble: added GDL2 FLAG git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@7703 72102866-910b-0410-8b05-ffd578937521
79 lines
4 KiB
Text
79 lines
4 KiB
Text
<!-- Special characters for HTML -->
|
|
|
|
<!-- Character entity set. Typical invocation:
|
|
<!ENTITY % HTMLspecial PUBLIC
|
|
"-//W3C//ENTITIES Special for XHTML//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent">
|
|
%HTMLspecial;
|
|
-->
|
|
|
|
<!-- Portions (C) International Organization for Standardization 1986:
|
|
Permission to copy in any form is granted for use with
|
|
conforming SGML systems and applications as defined in
|
|
ISO 8879, provided this notice is included in all copies.
|
|
-->
|
|
|
|
<!-- Relevant ISO entity set is given unless names are newly introduced.
|
|
New names (i.e., not in ISO 8879 list) do not clash with any
|
|
existing ISO 8879 entity names. ISO 10646 character numbers
|
|
are given for each character, in hex. values are decimal
|
|
conversions of the ISO 10646 values and refer to the document
|
|
character set. Names are Unicode names.
|
|
-->
|
|
|
|
<!-- C0 Controls and Basic Latin -->
|
|
<!ENTITY quot """> <!-- quotation mark = APL quote,
|
|
U+0022 ISOnum -->
|
|
<!ENTITY amp "&#38;"> <!-- ampersand, U+0026 ISOnum -->
|
|
<!ENTITY lt "&#60;"> <!-- less-than sign, U+003C ISOnum -->
|
|
<!ENTITY gt ">"> <!-- greater-than sign, U+003E ISOnum -->
|
|
<!ENTITY apos "'"> <!-- apostrophe mark, U+0027 ISOnum -->
|
|
|
|
<!-- Latin Extended-A -->
|
|
<!ENTITY OElig "Œ"> <!-- latin capital ligature OE,
|
|
U+0152 ISOlat2 -->
|
|
<!ENTITY oelig "œ"> <!-- latin small ligature oe, U+0153 ISOlat2 -->
|
|
<!-- ligature is a misnomer, this is a separate character in some languages -->
|
|
<!ENTITY Scaron "Š"> <!-- latin capital letter S with caron,
|
|
U+0160 ISOlat2 -->
|
|
<!ENTITY scaron "š"> <!-- latin small letter s with caron,
|
|
U+0161 ISOlat2 -->
|
|
<!ENTITY Yuml "Ÿ"> <!-- latin capital letter Y with diaeresis,
|
|
U+0178 ISOlat2 -->
|
|
|
|
<!-- Spacing Modifier Letters -->
|
|
<!ENTITY circ "ˆ"> <!-- modifier letter circumflex accent,
|
|
U+02C6 ISOpub -->
|
|
<!ENTITY tilde "˜"> <!-- small tilde, U+02DC ISOdia -->
|
|
|
|
<!-- General Punctuation -->
|
|
<!ENTITY ensp " "> <!-- en space, U+2002 ISOpub -->
|
|
<!ENTITY emsp " "> <!-- em space, U+2003 ISOpub -->
|
|
<!ENTITY thinsp " "> <!-- thin space, U+2009 ISOpub -->
|
|
<!ENTITY zwnj "‌"> <!-- zero width non-joiner,
|
|
U+200C NEW RFC 2070 -->
|
|
<!ENTITY zwj "‍"> <!-- zero width joiner, U+200D NEW RFC 2070 -->
|
|
<!ENTITY lrm "‎"> <!-- left-to-right mark, U+200E NEW RFC 2070 -->
|
|
<!ENTITY rlm "‏"> <!-- right-to-left mark, U+200F NEW RFC 2070 -->
|
|
<!ENTITY ndash "–"> <!-- en dash, U+2013 ISOpub -->
|
|
<!ENTITY mdash "—"> <!-- em dash, U+2014 ISOpub -->
|
|
<!ENTITY lsquo "‘"> <!-- left single quotation mark,
|
|
U+2018 ISOnum -->
|
|
<!ENTITY rsquo "’"> <!-- right single quotation mark,
|
|
U+2019 ISOnum -->
|
|
<!ENTITY sbquo "‚"> <!-- single low-9 quotation mark, U+201A NEW -->
|
|
<!ENTITY ldquo "“"> <!-- left double quotation mark,
|
|
U+201C ISOnum -->
|
|
<!ENTITY rdquo "”"> <!-- right double quotation mark,
|
|
U+201D ISOnum -->
|
|
<!ENTITY bdquo "„"> <!-- double low-9 quotation mark, U+201E NEW -->
|
|
<!ENTITY dagger "†"> <!-- dagger, U+2020 ISOpub -->
|
|
<!ENTITY Dagger "‡"> <!-- double dagger, U+2021 ISOpub -->
|
|
<!ENTITY permil "‰"> <!-- per mille sign, U+2030 ISOtech -->
|
|
<!ENTITY lsaquo "‹"> <!-- single left-pointing angle quotation mark,
|
|
U+2039 ISO proposed -->
|
|
<!-- lsaquo is proposed but not yet ISO standardized -->
|
|
<!ENTITY rsaquo "›"> <!-- single right-pointing angle quotation mark,
|
|
U+203A ISO proposed -->
|
|
<!-- rsaquo is proposed but not yet ISO standardized -->
|
|
<!ENTITY euro "€"> <!-- euro sign, U+20AC NEW -->
|