caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Announcement: PXP 1.1.94 (development version)
@ 2003-06-22 15:52 Gerd Stolpmann
  2003-06-22 19:18 ` [Caml-list] Re: [Ocaml-pxp-users] " Blair Zajac
  0 siblings, 1 reply; 3+ messages in thread
From: Gerd Stolpmann @ 2003-06-22 15:52 UTC (permalink / raw)
  To: caml-list, ocaml-pxp-users

Hi list,

I have just released a new development version of PXP. This
is a big change:

The Pxp_reader module has been completely rewritten. This fixes some
problems with relative URLs. 

Pxp_yacc has been split up into four modules: Pxp_tree_parser contains
now the parser API returning object trees, Pxp_dtd_parser is the parser
API returning DTDs, Pxp_ev_parser is the event-based API, and
Pxp_core_parser is the core of the parser. Pxp_yacc is still available
as compatibility API. As part of the module redesign, Pxp_types includes
now parts of its interface from Pxp_core_types_type. I hope this style
of programming is comprehensible. 

I think PXP can now compiled with CVS releases of O'Caml.

It is now possible to turn warnings into errors.

The event-based parser can now preprocess namespaces. Furthermore, there
are normalization filters.


The new version can be found at the usual place:

http://www.ocaml-programming.de/packages/pxp-1.1.93.tar.gz

Gerd


-- 
------------------------------------------------------------
Gerd Stolpmann * Viktoriastr. 45 * 64293 Darmstadt * Germany 
gerd@gerd-stolpmann.de          http://www.gerd-stolpmann.de
------------------------------------------------------------

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

* [Caml-list] Re: [Ocaml-pxp-users] Announcement: PXP 1.1.94 (development version)
  2003-06-22 15:52 [Caml-list] Announcement: PXP 1.1.94 (development version) Gerd Stolpmann
@ 2003-06-22 19:18 ` Blair Zajac
  2003-06-23 14:09   ` Gerd Stolpmann
  0 siblings, 1 reply; 3+ messages in thread
From: Blair Zajac @ 2003-06-22 19:18 UTC (permalink / raw)
  To: Gerd Stolpmann; +Cc: caml-list, ocaml-pxp-users

Gerd Stolpmann wrote:
> 
> Hi list,
> 
> I have just released a new development version of PXP. This
> is a big change:
> 
> The Pxp_reader module has been completely rewritten. This fixes some
> problems with relative URLs.
> 
> Pxp_yacc has been split up into four modules: Pxp_tree_parser contains
> now the parser API returning object trees, Pxp_dtd_parser is the parser
> API returning DTDs, Pxp_ev_parser is the event-based API, and
> Pxp_core_parser is the core of the parser. Pxp_yacc is still available
> as compatibility API. As part of the module redesign, Pxp_types includes
> now parts of its interface from Pxp_core_types_type. I hope this style
> of programming is comprehensible.
> 
> I think PXP can now compiled with CVS releases of O'Caml.
> 
> It is now possible to turn warnings into errors.
> 
> The event-based parser can now preprocess namespaces. Furthermore, there
> are normalization filters.
> 

Hi Gerd,

Has the API changed to Pxp_reader, or will most PXP users will not
notice this change?


> The new version can be found at the usual place:
> 
> http://www.ocaml-programming.de/packages/pxp-1.1.93.tar.gz

Do you mean

http://www.ocaml-programming.de/packages/pxp-1.1.94.tar.gz

Best,
Blair

-- 
Blair Zajac <blair@orcaware.com>
Plots of your system's performance - http://www.orcaware.com/orca/

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

* [Caml-list] Re: [Ocaml-pxp-users] Announcement: PXP 1.1.94 (development version)
  2003-06-22 19:18 ` [Caml-list] Re: [Ocaml-pxp-users] " Blair Zajac
@ 2003-06-23 14:09   ` Gerd Stolpmann
  0 siblings, 0 replies; 3+ messages in thread
From: Gerd Stolpmann @ 2003-06-23 14:09 UTC (permalink / raw)
  To: Blair Zajac; +Cc: caml-list, ocaml-pxp-users

Am Son, 2003-06-22 um 21.18 schrieb Blair Zajac:
> Gerd Stolpmann wrote:
> > 
> > Hi list,
> > 
> > I have just released a new development version of PXP. This
> > is a big change:
> > 
> > The Pxp_reader module has been completely rewritten. This fixes some
> > problems with relative URLs.
> > 
> > Pxp_yacc has been split up into four modules: Pxp_tree_parser contains
> > now the parser API returning object trees, Pxp_dtd_parser is the parser
> > API returning DTDs, Pxp_ev_parser is the event-based API, and
> > Pxp_core_parser is the core of the parser. Pxp_yacc is still available
> > as compatibility API. As part of the module redesign, Pxp_types includes
> > now parts of its interface from Pxp_core_types_type. I hope this style
> > of programming is comprehensible.
> > 
> > I think PXP can now compiled with CVS releases of O'Caml.
> > 
> > It is now possible to turn warnings into errors.
> > 
> > The event-based parser can now preprocess namespaces. Furthermore, there
> > are normalization filters.
> > 
> 
> Hi Gerd,
> 
> Has the API changed to Pxp_reader, or will most PXP users will not
> notice this change?

I think most users will not notice the change. I have tried to be as
compatible as possible with previous versions, but there are some corner
cases where the new implementation behaves differently. This is
intentional, as the new implementation tries to fix "conceptual bugs".

The new signature of Pxp_reader is slightly different, but I hope this
does not matter for anybody.
 
> 
> > The new version can be found at the usual place:
> > 
> > http://www.ocaml-programming.de/packages/pxp-1.1.93.tar.gz
> 
> Do you mean
> 
> http://www.ocaml-programming.de/packages/pxp-1.1.94.tar.gz

Yes, of course. Just copying old mails is sometimes a bad idea.

Gerd
-- 
------------------------------------------------------------
Gerd Stolpmann * Viktoriastr. 45 * 64293 Darmstadt * Germany 
gerd@gerd-stolpmann.de          http://www.gerd-stolpmann.de
------------------------------------------------------------

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

end of thread, other threads:[~2003-06-23 14:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-22 15:52 [Caml-list] Announcement: PXP 1.1.94 (development version) Gerd Stolpmann
2003-06-22 19:18 ` [Caml-list] Re: [Ocaml-pxp-users] " Blair Zajac
2003-06-23 14:09   ` Gerd Stolpmann

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).