From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d4bbf45291b13fd3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news.glorb.com!npeer.de.kpn-eurorings.net!newsfeed.arcor.de!news.arcor.de!not-for-mail Date: Mon, 21 Mar 2005 11:55:05 +0100 From: Georg Bauhaus Organization: future apps GmbH User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.5) Gecko/20050105 Debian/1.7.5-1 X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: comp.lang.ada Digest, Vol 19, Issue 114 References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <423ea759$0$11481$9b4e6d93@newsread2.arcor-online.net> NNTP-Posting-Date: 21 Mar 2005 11:52:13 MET NNTP-Posting-Host: 6f8a30a5.newsread2.arcor-online.net X-Trace: DXC=9EYkG7GM`_D5VQnf?UOZgEQ5U85hF6f;DjW\KbG]kaMH]kI_X=5KeaF>I2NZ3h3L]DUUng9_FXZ=C>:=P9Ihe`BH@Z?dZ]MOidE X-Complaints-To: abuse@arcor.de Xref: g2news1.google.com comp.lang.ada:9664 Date: 2005-03-21T11:52:13+01:00 List-Id: Robert C. Leif wrote: Have you looked at Simon Wright's ASIS2XML? http://www.pushface.org/asis2xml/ > Although in principle these additions would be useful, the simulation > capability should be separated from the mathematical capacity. Ada should > stop being based on glass-typewriters! The new front end should be XML > including MathML. Ada sources would be in XHTML-strict. (X)HTML has been criticized for missing good structuring properties (sections are not headings, div is only a workaround ...). Examples in the book by David Megginson's book. > Ada should be able > to parse expressions written in MathML. Simulation could then be added to > this with outputs in scalable vector graphics (SVG). This would result in a > language with some SEX-Appeal. Hm. I think this is the job of a good editing environment. Ada has a grammar. The grammar can be mapped to an internal XML representation that is internal to the editor, o.K.. But why touch Ada? A fairly simple XSL program can be used to extract plain Ada source text from a combined source text document that includes graphics, reference, etc., in addition to the Ada source text. A fancy XSL program can do all sorts of project specific processing. For sure, if you only touch some non-Ada piece of a source document, the Ada part doesn't need to be recompiled. This needs some bookkeeping, at least. A piecewise intergration with a VCS seems desirable, and XML can help here. Sounds like quite a bit of work to make such a thing. A similar technique has used text processor macros to separate source text from prose and pictures, IIRC. Georg