mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-09 03:02:50 -06:00
ma -status; sep lines for l -all
This commit is contained in:
@@ -213,14 +213,16 @@ allLinsAsRec gr c t = linearizeNoMark gr c t >>= expandLinTables gr >>= allLinVa
|
||||
|
||||
-- | the value is a list of structures arranged as records of tables of strings
|
||||
-- only taking into account string fields
|
||||
allLinTables :: CanonGrammar ->Ident ->A.Tree ->Err [[(Label,[([Patt],[String])])]]
|
||||
allLinTables gr c t = do
|
||||
-- True: sep. by /, False: sep by \n
|
||||
allLinTables ::
|
||||
Bool -> CanonGrammar ->Ident ->A.Tree ->Err [[(Label,[([Patt],[String])])]]
|
||||
allLinTables slash gr c t = do
|
||||
r' <- allLinsAsRec gr c t
|
||||
mapM (mapM getS) r'
|
||||
where
|
||||
getS (lab,pss) = liftM (curry id lab) $ mapM gets pss
|
||||
gets (ps,t) = liftM (curry id ps . cc . map str2strings) $ strsFromTerm t
|
||||
cc = concat . intersperse ["/"]
|
||||
cc = concat . intersperse [if slash then "/" else "\n"]
|
||||
|
||||
-- | the value is a list of strings gathered from all fields
|
||||
|
||||
|
||||
@@ -113,9 +113,14 @@ allMorphoWords = map fst . collapse
|
||||
|
||||
-- analyse running text and show results either in short form or on separate lines
|
||||
|
||||
-- | analyse running text and show results in short form
|
||||
-- | analyse running text and show just the word, with "*" if not found
|
||||
morphoTextStatus :: Morpho -> String -> String
|
||||
morphoTextStatus mo = unlines . map (prMark . appMorpho mo) . words where
|
||||
prMark (w,fs) = if null fs then "*" +++ w else w
|
||||
|
||||
-- | analyse running text and show results in short form, one word per line
|
||||
morphoTextShort :: Morpho -> String -> String
|
||||
morphoTextShort mo = unwords . map (prMorphoAnalysisShort . appMorpho mo) . words
|
||||
morphoTextShort mo = unlines . map (prMorphoAnalysisShort . appMorpho mo) . words
|
||||
|
||||
-- | analyse running text and show results on separate lines
|
||||
morphoText :: Morpho -> String -> String
|
||||
|
||||
@@ -241,9 +241,9 @@ linearize opts mgr lang = lin where
|
||||
lin
|
||||
| oElem showRecord opts = err id id . liftM prt . linearizeNoMark cgr zlang
|
||||
| oElem tableLin opts =
|
||||
err id id . liftM (unlines . map untok . prLinTable True) . allLinTables cgr zlang
|
||||
err id id . liftM (unlines . map untok . prLinTable True) . allLinTables True cgr zlang
|
||||
| oElem showAll opts =
|
||||
err id id . liftM (unlines . map untok . prLinTable False) . allLinTables cgr zlang
|
||||
err id id . liftM (unlines . map untok . prLinTable False) . allLinTables False cgr zlang
|
||||
|
||||
| otherwise = untok . linTree2string noMark cgr zlang
|
||||
|
||||
|
||||
Reference in New Issue
Block a user