mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
res doc updates
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<P ALIGN="center"><CENTER><H1>GF Resource Grammar Library v. 1.2</H1>
|
||||
<FONT SIZE="4">
|
||||
<I>Author: Aarne Ranta <aarne (at) cs.chalmers.se></I><BR>
|
||||
Last update: Wed Jul 4 23:15:01 2007
|
||||
Last update: Thu Jul 5 23:14:56 2007
|
||||
</FONT></CENTER>
|
||||
|
||||
<P>
|
||||
@@ -24,7 +24,8 @@ included.
|
||||
<UL>
|
||||
<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.
|
||||
<LI>Bug fixes.
|
||||
<LI>Bug fixes and new paradigms.
|
||||
<LI>Licensed under LGPL.
|
||||
</UL>
|
||||
|
||||
<H2>Authors</H2>
|
||||
@@ -58,6 +59,7 @@ Elisabet Engdahl,
|
||||
Markus Forsberg,
|
||||
Kristofer Johannisson,
|
||||
Anni Laine,
|
||||
Hans Leiß,
|
||||
Peter Ljunglöf,
|
||||
Saara Myllyntausta,
|
||||
Wanjiku Ng'ang'a,
|
||||
|
||||
@@ -19,8 +19,8 @@ included.
|
||||
**New in Version 1.2**
|
||||
- Simpler APIs using overloading: see [Synopsis synopsis.html].
|
||||
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,
|
||||
Kristofer Johannisson,
|
||||
Anni Laine,
|
||||
Hans Leiß,
|
||||
Peter Ljunglöf,
|
||||
Saara Myllyntausta,
|
||||
Wanjiku Ng'ang'a,
|
||||
|
||||
@@ -15,7 +15,7 @@ An abstract syntax:
|
||||
```
|
||||
A domain lexicon interface:
|
||||
```
|
||||
interface MusicLex = open Cat in {
|
||||
interface LexMusic = open Cat in {
|
||||
oper
|
||||
song_N : N ;
|
||||
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:
|
||||
```
|
||||
instance MusicLexGer of MusicLex = CatGer ** open ParadigmsGer in {
|
||||
instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in {
|
||||
oper
|
||||
song_N = mkN "Lied" "Lieder" neuter ;
|
||||
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:
|
||||
```
|
||||
--# -path=.:present:prelude
|
||||
|
||||
concrete MusicGer of Music = MusicI with
|
||||
(Syntax = SyntaxGer),
|
||||
(MusicLex = MusicLexGer) ;
|
||||
(LexMusic = LexMusicGer) ;
|
||||
```
|
||||
|
||||
@@ -5193,7 +5193,7 @@ An abstract syntax:
|
||||
A domain lexicon interface:
|
||||
</P>
|
||||
<PRE>
|
||||
interface MusicLex = open Cat in {
|
||||
interface LexMusic = open Cat in {
|
||||
oper
|
||||
song_N : N ;
|
||||
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:
|
||||
</P>
|
||||
<PRE>
|
||||
instance MusicLexGer of MusicLex = CatGer ** open ParadigmsGer in {
|
||||
instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in {
|
||||
oper
|
||||
song_N = mkN "Lied" "Lieder" neuter ;
|
||||
american_A = mkA "amerikanisch" ;
|
||||
@@ -5228,9 +5228,10 @@ For each language, an instantiation of the functor:
|
||||
</P>
|
||||
<PRE>
|
||||
--# -path=.:present:prelude
|
||||
|
||||
concrete MusicGer of Music = MusicI with
|
||||
(Syntax = SyntaxGer),
|
||||
(MusicLex = MusicLexGer) ;
|
||||
(LexMusic = LexMusicGer) ;
|
||||
</PRE>
|
||||
<P></P>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user