mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-17 18:33:58 +00:00
Estimated hours taken: 1 Add a sample directory in the XML parser directory extras/xml/README update the README file extras/xml/tryit.m modify the file to print out all output messages as well as any error messages extras/xml/samples a sample directory containing instructions on how to run the parser and some sample files extras/xml/samples/README README file extras/xml/samples/newsarticles.xml sample XML file for running the XML parser extras/xml/samples/newsarticles.dtd sample DTD file for running the XML parser extras/xml/samples/catalog a catalog file
13 lines
912 B
XML
13 lines
912 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE NEWSARTICLE SYSTEM "newsarticles.dtd">
|
|
<NEWSARTICLE>
|
|
<ARTICLE DATE="10/05/00">
|
|
<TITLE>Events and Reports</TITLE>
|
|
<BODY>Two new sections have been added to the web site. The events section will give information about events Mercury has been involved in -- we start this section with a page on Mercury coming 4th (of 38 teams) in the ICFP 2000 programming contest. The reports section contains regular reports from the developers, such as minutes from Mercury meetings. Both are available from the sidebar menu.</BODY>
|
|
</ARTICLE>
|
|
<ARTICLE DATE="10/04/00">
|
|
<TITLE>Two new papers</TITLE>
|
|
<BODY>Two new papers on Mercury are now available from our papers page. One describes a binding-time analysis for higher order code, while the other describes an analysis for detecting whether a memory cell is availble for reuse.</BODY>
|
|
</ARTICLE>
|
|
</NEWSARTICLE>
|