1
0
forked from GitHub/gf-core

res doc updates

This commit is contained in:
aarne
2007-07-05 21:15:48 +00:00
parent b3c5edfdc4
commit 9f29d502cb
4 changed files with 15 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1>GF Resource Grammar Library v. 1.2</H1> <P ALIGN="center"><CENTER><H1>GF Resource Grammar Library v. 1.2</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: Aarne Ranta &lt;aarne (at) cs.chalmers.se&gt;</I><BR> <I>Author: Aarne Ranta &lt;aarne (at) cs.chalmers.se&gt;</I><BR>
Last update: Wed Jul 4 23:15:01 2007 Last update: Thu Jul 5 23:14:56 2007
</FONT></CENTER> </FONT></CENTER>
<P> <P>
@@ -24,7 +24,8 @@ included.
<UL> <UL>
<LI>Simpler APIs using overloading: see <A HREF="synopsis.html">Synopsis</A>. <LI>Simpler APIs using overloading: see <A HREF="synopsis.html">Synopsis</A>.
The API of version 1.0 remains valid and can be used in combination with this. The API of version 1.0 remains valid and can be used in combination with this.
<LI>Bug fixes. <LI>Bug fixes and new paradigms.
<LI>Licensed under LGPL.
</UL> </UL>
<H2>Authors</H2> <H2>Authors</H2>
@@ -58,6 +59,7 @@ Elisabet Engdahl,
Markus Forsberg, Markus Forsberg,
Kristofer Johannisson, Kristofer Johannisson,
Anni Laine, Anni Laine,
Hans Leiß,
Peter Ljunglöf, Peter Ljunglöf,
Saara Myllyntausta, Saara Myllyntausta,
Wanjiku Ng'ang'a, Wanjiku Ng'ang'a,

View File

@@ -19,8 +19,8 @@ included.
**New in Version 1.2** **New in Version 1.2**
- Simpler APIs using overloading: see [Synopsis synopsis.html]. - Simpler APIs using overloading: see [Synopsis synopsis.html].
The API of version 1.0 remains valid and can be used in combination with this. The API of version 1.0 remains valid and can be used in combination with this.
- Bug fixes. - Bug fixes and new paradigms.
- Licensed under LGPL.
@@ -57,6 +57,7 @@ Elisabet Engdahl,
Markus Forsberg, Markus Forsberg,
Kristofer Johannisson, Kristofer Johannisson,
Anni Laine, Anni Laine,
Hans Leiß,
Peter Ljunglöf, Peter Ljunglöf,
Saara Myllyntausta, Saara Myllyntausta,
Wanjiku Ng'ang'a, Wanjiku Ng'ang'a,

View File

@@ -15,7 +15,7 @@ An abstract syntax:
``` ```
A domain lexicon interface: A domain lexicon interface:
``` ```
interface MusicLex = open Cat in { interface LexMusic = open Cat in {
oper oper
song_N : N ; song_N : N ;
american_A : A ; american_A : A ;
@@ -35,7 +35,7 @@ A functor on ``Syntax`` and the domain lexicon interface:
``` ```
For each language, an instance of the domain lexicon: For each language, an instance of the domain lexicon:
``` ```
instance MusicLexGer of MusicLex = CatGer ** open ParadigmsGer in { instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in {
oper oper
song_N = mkN "Lied" "Lieder" neuter ; song_N = mkN "Lied" "Lieder" neuter ;
american_A = mkA "amerikanisch" ; american_A = mkA "amerikanisch" ;
@@ -44,7 +44,8 @@ For each language, an instance of the domain lexicon:
For each language, an instantiation of the functor: For each language, an instantiation of the functor:
``` ```
--# -path=.:present:prelude --# -path=.:present:prelude
concrete MusicGer of Music = MusicI with concrete MusicGer of Music = MusicI with
(Syntax = SyntaxGer), (Syntax = SyntaxGer),
(MusicLex = MusicLexGer) ; (LexMusic = LexMusicGer) ;
``` ```

View File

@@ -5193,7 +5193,7 @@ An abstract syntax:
A domain lexicon interface: A domain lexicon interface:
</P> </P>
<PRE> <PRE>
interface MusicLex = open Cat in { interface LexMusic = open Cat in {
oper oper
song_N : N ; song_N : N ;
american_A : A ; american_A : A ;
@@ -5217,7 +5217,7 @@ A functor on <CODE>Syntax</CODE> and the domain lexicon interface:
For each language, an instance of the domain lexicon: For each language, an instance of the domain lexicon:
</P> </P>
<PRE> <PRE>
instance MusicLexGer of MusicLex = CatGer ** open ParadigmsGer in { instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in {
oper oper
song_N = mkN "Lied" "Lieder" neuter ; song_N = mkN "Lied" "Lieder" neuter ;
american_A = mkA "amerikanisch" ; american_A = mkA "amerikanisch" ;
@@ -5228,9 +5228,10 @@ For each language, an instantiation of the functor:
</P> </P>
<PRE> <PRE>
--# -path=.:present:prelude --# -path=.:present:prelude
concrete MusicGer of Music = MusicI with concrete MusicGer of Music = MusicI with
(Syntax = SyntaxGer), (Syntax = SyntaxGer),
(MusicLex = MusicLexGer) ; (LexMusic = LexMusicGer) ;
</PRE> </PRE>
<P></P> <P></P>