X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Fcompatibility%2Fmarkup_dtd.ml;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Fcompatibility%2Fmarkup_dtd.ml;h=7df5e29c65349d9b36d97ab06f1b6fe96a164c80;hb=c03d2c1fdab8d228cb88aaba5ca0f556318bebc5;hp=0000000000000000000000000000000000000000;hpb=758057e85325f94cd88583feb1fdf6b038e35055;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/compatibility/markup_dtd.ml b/helm/DEVEL/pxp/pxp/compatibility/markup_dtd.ml new file mode 100644 index 000000000..7df5e29c6 --- /dev/null +++ b/helm/DEVEL/pxp/pxp/compatibility/markup_dtd.ml @@ -0,0 +1,36 @@ +(* $Id$ + * ---------------------------------------------------------------------- + *) + +class dtd w = + Pxp_dtd.dtd + (w : Markup_types.collect_warnings :> Pxp_types.collect_warnings) + `Enc_iso88591;; + +class dtd_element dtd name = + Pxp_dtd.dtd_element dtd name;; + +class dtd_notation name id = + Pxp_dtd.dtd_notation name id `Enc_iso88591;; + +class proc_instruction target value = + Pxp_dtd.proc_instruction target value `Enc_iso88591;; + + +(* ====================================================================== + * History: + * + * $Log$ + * Revision 1.1 2000/11/17 09:57:30 lpadovan + * Initial revision + * + * Revision 1.3 2000/07/14 21:35:35 gerd + * Updated because of the simplification of Pxp_types.collect_warnings. + * + * Revision 1.2 2000/06/14 22:19:27 gerd + * Update because of additional 'encoding' methods. + * + * Revision 1.1 2000/05/29 23:43:51 gerd + * Initial compatibility revision. + * + *)