diff options
| author | bringert <unknown> | 2005-09-12 14:46:44 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2005-09-12 14:46:44 +0000 |
| commit | ddda900d53ee3b8fa968bc8acb49f035f9ef860c (patch) | |
| tree | b83a52f978fbeffda4ed95d936b55a91b9f6c535 /src/GF/UseGrammar | |
| parent | f882f97a22c9ed16c6f1735930698b8fba162351 (diff) | |
Completed unoptimized SLF generation.
Diffstat (limited to 'src/GF/UseGrammar')
| -rw-r--r-- | src/GF/UseGrammar/Custom.hs | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/GF/UseGrammar/Custom.hs b/src/GF/UseGrammar/Custom.hs index c952bcd5c..2c6b26a95 100644 --- a/src/GF/UseGrammar/Custom.hs +++ b/src/GF/UseGrammar/Custom.hs @@ -5,9 +5,9 @@ -- Stability : (stable) -- Portability : (portable) -- --- > CVS $Date: 2005/09/04 11:45:38 $ --- > CVS $Author: aarne $ --- > CVS $Revision: 1.70 $ +-- > CVS $Date: 2005/09/12 15:46:44 $ +-- > CVS $Author: bringert $ +-- > CVS $Revision: 1.71 $ -- -- A database for customizable GF shell commands. -- @@ -57,7 +57,7 @@ import GF.Canon.MkGFC import GF.CF.CFtoSRG import GF.Speech.PrGSL (gslPrinter) import GF.Speech.PrJSGF (jsgfPrinter) -import GF.Speech.PrSLF (slfPrinter) +import GF.Speech.PrSLF (slfPrinter,slfGraphvizPrinter,faGraphvizPrinter) import GF.Data.Zipper @@ -241,6 +241,12 @@ customGrammarPrinter = ,(strCI "slf", \s -> let opts = stateOptions s name = cncId s in slfPrinter name opts $ stateCFG s) + ,(strCI "slf_graphviz", \s -> let opts = stateOptions s + name = cncId s + in slfGraphvizPrinter name opts $ stateCFG s) + ,(strCI "fa_graphviz", \s -> let opts = stateOptions s + name = cncId s + in faGraphvizPrinter name opts $ stateCFG s) ,(strCI "plbnf", prLBNF True) ,(strCI "lbnf", prLBNF False) ,(strCI "bnf", prBNF False) |
