2000-03-04
2000-03-04 22:28:12 by Martin Stjernholm <mast@lysator.liu.se>
-
b6c31997c1961aa7d24869890fa5dc1fcd8a1893
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 5.2
Renamed parse_html_compat to the less misleading old_rxml_compat.
Rev: server/etc/modules/RXML.pmod/PEnt.pike:1.12
Rev: server/etc/modules/RXML.pmod/PXml.pike:1.38
Rev: server/modules/compat/compat.pike:1.33
Rev: server/modules/configuration/config_tags.pike:1.62
4:
//!
//! Created 2000-01-28 by Martin Stjernholm.
//!
- //! $Id: PEnt.pike,v 1.11 2000/02/16 16:21:42 mast Exp $
+ //! $Id: PEnt.pike,v 1.12 2000/03/04 22:28:12 mast Exp $
//#pragma strict_types // Disabled for now since it doesn't work well enough.
59: Inside #if defined(OLD_RXML_COMPAT)
#ifdef OLD_RXML_COMPAT
if (!ctx) ctx = RXML.get_context();
- int new_not_compat = !(ctx && ctx->id && ctx->id->conf->parse_html_compat);
+ int new_not_compat = !(ctx && ctx->id && ctx->id->conf->old_rxml_compat);
if (new_not_compat == not_compat) return;
not_compat = new_not_compat;
init_entities();
84: Inside #if defined(OLD_RXML_COMPAT)
{
#ifdef OLD_RXML_COMPAT
if (!ctx) ctx = RXML.get_context();
- not_compat = !(ctx && ctx->id && ctx->id->conf->parse_html_compat);
+ not_compat = !(ctx && ctx->id && ctx->id->conf->old_rxml_compat);
#endif
_tag_set_parser_create (ctx, type, tag_set);