forked from GitHub/gf-core
rename some modules that had GFCC in the name to PGF+something
This commit is contained in:
7
GF.cabal
7
GF.cabal
@@ -141,7 +141,7 @@ executable gf
|
|||||||
GF.Compile.Refresh
|
GF.Compile.Refresh
|
||||||
GF.Compile.Rename
|
GF.Compile.Rename
|
||||||
GF.Compile.ReadFiles
|
GF.Compile.ReadFiles
|
||||||
GF.Compile.GrammarToGFCC
|
GF.Compile.GrammarToPGF
|
||||||
GF.Compile.Concrete.TypeCheck
|
GF.Compile.Concrete.TypeCheck
|
||||||
GF.Compile.Concrete.Compute
|
GF.Compile.Concrete.Compute
|
||||||
GF.Compile.Concrete.AppPredefined
|
GF.Compile.Concrete.AppPredefined
|
||||||
@@ -150,9 +150,12 @@ executable gf
|
|||||||
GF.Compile.Abstract.Compute
|
GF.Compile.Abstract.Compute
|
||||||
GF.Compile.Optimize
|
GF.Compile.Optimize
|
||||||
GF.Compile.SubExOpt
|
GF.Compile.SubExOpt
|
||||||
GF.Compile.OptimizeGFCC
|
GF.Compile.OptimizePGF
|
||||||
GF.Compile.ModDeps
|
GF.Compile.ModDeps
|
||||||
GF.Compile.GetGrammar
|
GF.Compile.GetGrammar
|
||||||
|
GF.Compile.PGFtoHaskell
|
||||||
|
GF.Compile.PGFtoProlog
|
||||||
|
GF.Compile.PGFtoJS
|
||||||
GF.Compile
|
GF.Compile
|
||||||
GF.System.Readline
|
GF.System.Readline
|
||||||
GF.Quiz
|
GF.Quiz
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import GF.Compile.Rename
|
|||||||
import GF.Compile.CheckGrammar
|
import GF.Compile.CheckGrammar
|
||||||
import GF.Compile.Optimize
|
import GF.Compile.Optimize
|
||||||
import GF.Compile.SubExOpt
|
import GF.Compile.SubExOpt
|
||||||
import GF.Compile.OptimizeGFCC
|
import GF.Compile.OptimizePGF
|
||||||
import GF.Compile.GrammarToGFCC
|
import GF.Compile.GrammarToPGF
|
||||||
import GF.Compile.ReadFiles
|
import GF.Compile.ReadFiles
|
||||||
import GF.Compile.Update
|
import GF.Compile.Update
|
||||||
import GF.Compile.Refresh
|
import GF.Compile.Refresh
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ module GF.Compile.Export where
|
|||||||
|
|
||||||
import PGF.CId
|
import PGF.CId
|
||||||
import PGF.Data (PGF(..))
|
import PGF.Data (PGF(..))
|
||||||
import GF.Compile.GFCCtoHaskell
|
import GF.Compile.PGFtoHaskell
|
||||||
import GF.Compile.GFCCtoProlog
|
import GF.Compile.PGFtoProlog
|
||||||
import GF.Compile.GFCCtoJS
|
import GF.Compile.PGFtoJS
|
||||||
import GF.Compile.PGFPretty
|
import GF.Compile.PGFPretty
|
||||||
import GF.Infra.Option
|
import GF.Infra.Option
|
||||||
import GF.Speech.CFG
|
import GF.Speech.CFG
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{-# LANGUAGE PatternGuards #-}
|
{-# LANGUAGE PatternGuards #-}
|
||||||
module GF.Compile.GrammarToGFCC (mkCanon2gfcc,addParsers) where
|
module GF.Compile.GrammarToPGF (mkCanon2gfcc,addParsers) where
|
||||||
|
|
||||||
import GF.Compile.Export
|
import GF.Compile.Export
|
||||||
import qualified GF.Compile.GenerateFCFG as FCFG
|
import qualified GF.Compile.GenerateFCFG as FCFG
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
module GF.Compile.OptimizeGFCC where
|
module GF.Compile.OptimizePGF where
|
||||||
|
|
||||||
import PGF.CId
|
import PGF.CId
|
||||||
import PGF.Data
|
import PGF.Data
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
-- |
|
-- |
|
||||||
-- Module : GFCCtoHaskell
|
-- Module : PGFtoHaskell
|
||||||
-- Maintainer : Aarne Ranta
|
-- Maintainer : Aarne Ranta
|
||||||
-- Stability : (stable)
|
-- Stability : (stable)
|
||||||
-- Portability : (portable)
|
-- Portability : (portable)
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
-- AR 11/11/1999 -- 7/12/2000 -- 18/5/2004
|
-- AR 11/11/1999 -- 7/12/2000 -- 18/5/2004
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
|
|
||||||
module GF.Compile.GFCCtoHaskell (grammar2haskell) where
|
module GF.Compile.PGFtoHaskell (grammar2haskell) where
|
||||||
|
|
||||||
import PGF.CId
|
import PGF.CId
|
||||||
import PGF.Data
|
import PGF.Data
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
module GF.Compile.GFCCtoJS (pgf2js) where
|
module GF.Compile.PGFtoJS (pgf2js) where
|
||||||
|
|
||||||
import PGF.CId
|
import PGF.CId
|
||||||
import PGF.Data hiding (mkStr)
|
import PGF.Data hiding (mkStr)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
-- |
|
-- |
|
||||||
-- Module : GFCCtoProlog
|
-- Module : PGFtoProlog
|
||||||
-- Maintainer : Peter Ljunglöf
|
-- Maintainer : Peter Ljunglöf
|
||||||
-- Stability : (stable)
|
-- Stability : (stable)
|
||||||
-- Portability : (portable)
|
-- Portability : (portable)
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
-- to write a GF grammar into a Prolog module
|
-- to write a GF grammar into a Prolog module
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
|
|
||||||
module GF.Compile.GFCCtoProlog (grammar2prolog, grammar2prolog_abs) where
|
module GF.Compile.PGFtoProlog (grammar2prolog, grammar2prolog_abs) where
|
||||||
|
|
||||||
import PGF.CId
|
import PGF.CId
|
||||||
import PGF.Data
|
import PGF.Data
|
||||||
Reference in New Issue
Block a user