| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-03-07 | haskell-bind/utils.c: add missing return | Thomas Hallgren | |
| Found via C compiler warning | |||
| 2019-02-27 | strip empty phrases in bracketedLinearize | krangelov | |
| 2019-02-26 | fixed typo on c-bracketedLinearize | krangelov | |
| 2019-02-26 | replace aeson with json | krangelov | |
| 2019-02-26 | added command c-bracketedLinearize | krangelov | |
| 2019-02-21 | Need aeson>=1.3 | Thomas Hallgren | |
| Also remove ununsed GF.Compile.PGFtoAbstract | |||
| 2019-02-21 | Merge pull request #34 from heatherleaf/master | Thomas H | |
| Encode/decode of canonical grammars to/from JSON/YAML | |||
| 2019-02-20 | added Data.Data.Data instance for Expr | krangelov | |
| 2019-02-18 | fixes in the headers for use with Microsoft Visual C++ | krangelov | |
| 2019-02-18 | fixes in the headers for compilation on Windows | krangelov | |
| 2019-02-14 | disable the parser debugger which was left enabled by accident | krangelov | |
| 2019-02-14 | fix the reader for patterns in a def rule | krangelov | |
| 2019-02-14 | different definition for GF_ARRAY_LEN | krangelov | |
| 2019-02-14 | bugfix in computing record lengths | krangelov | |
| 2019-02-08 | added helper info about canonical grammar output | Peter Ljunglöf | |
| 2019-02-08 | enable export of canonical grammars to JSON and YAML | Peter Ljunglöf | |
| 2019-02-08 | encoding/decoding canonical GF grammars to/from JSON and YAML | Peter Ljunglöf | |
| 2019-01-23 | Export of concrete syntax to Haskell now goes via Canonical GF | Thomas Hallgren | |
| TODO: better treatment of Predef functions and record subtyping coercions | |||
| 2019-01-23 | PGF.Haskell.fromStr: fix double spaces caused by empty tokens | Thomas Hallgren | |
| 2019-01-22 | More work on the canonica_gf export | Thomas Hallgren | |
| + Abstract syntax now is converted directly from the Grammar and not via PGF, so you can use `gf -batch -no-pmcfg -f canonical_gf ...`, to export to canonical_gf while skipping PMCFG and PGF file generation completely. + Flags that are normally copied to PGF files are now included in the caninical_gf output as well (in particular the startcat flag). | |||
| 2019-01-21 | gfse: prevent scrolling during drag-and-drop on iOS | Thomas Hallgren | |
| Applies to webkit-based browsers on other touch-based platforms too | |||
| 2019-01-18 | Two fixes in GF.Grammar.Canonical | Thomas Hallgren | |
| + Hide Prelude.<> to avoid ambiguity with ghc-8.6 + Vertical alternative in the pretty printer for table types A => B | |||
| 2019-01-17 | Adding -output-format canonical_gf | Thomas Hallgren | |
| This output format converts a GF grammar to a "canonical" GF grammar. A canonical GF grammar consists of - one self-contained module for the abstract syntax - one self-contained module per concrete syntax The concrete syntax modules contain param, lincat and lin definitions, everything else has been eliminated by the partial evaluator, including references to resource library modules and functors. Record types and tables are retained. The -output-format canonical_gf option writes canonical GF grammars to a subdirectory "canonical/". The canonical GF grammars are written as normal GF ".gf" source files, which can be compiled with GF in the normal way. The translation to canonical form goes via an AST for canonical GF grammars, defined in GF.Grammar.Canonical. This is a simple, self-contained format that doesn't cover everyting in GF (e.g. omitting dependent types and HOAS), but it is complete enough to translate the Foods and Phrasebook grammars found in gf-contrib. The AST is based on the GF grammar "GFCanonical" presented here: https://github.com/GrammaticalFramework/gf-core/issues/30#issuecomment-453556553 The translation of concrete syntax to canonical form is based on the previously existing translation of concrete syntax to Haskell, implemented in module GF.Compile.ConcreteToHaskell. This module could now be reimplemented and simplified significantly by going via the canonical format. Perhaps exports to other output formats could benefit by going via the canonical format too. There is also the possibility of completing the GFCanonical grammar mentioned above and using GF itself to convert canonical GF grammars to other formats... | |||
| 2019-01-07 | add CoNLLU as output format for gf2ud: merging issue (#24) | Prasanth Kolachina | |
| 2019-01-07 | Merge pull request #24 from odanoburu/gf2ud-comments | Prasanth Kolachina | |
| (gf2ud) add comments to CoNLL-U output | |||
| 2018-12-20 | fix after the change in bracketed string | Krasimir Angelov | |
| 2018-12-20 | revert to printing the unique id in ppBracketedString | Krasimir Angelov | |
| 2018-12-20 | save the original concrete category in BracketedString | Krasimir Angelov | |
| 2018-12-19 | (gf2ud) add comments to CoNLL-U output | odanoburu | |
| when debbuging labels, I find it useful to have comments saying what's the original sentence (lazy, I know) and the original tree (depending on the treebank, the trees can be similar). I know this is not the goal exactly, but UDv2 treebanks (http://universaldependencies.org/format.html) should always have a 'text =' comment, and a 'sent_id =' comment (which would be easy to implement too, but not that useful). | |||
| 2018-12-18 | added the possibility to annotate features of syncat words, e.g. @"is" PresSg3 | Aarne Ranta | |
| 2018-12-18 | refactored cnc configfile parsing a bit | Aarne Ranta | |
| 2018-12-18 | Merge branch 'master' into master | Aarne Ranta | |
| 2018-12-18 | morph. feat generation by AR | Prasanth Kolachina | |
| 2018-12-18 | added morphological tags to UD tree output. Tags are give in ↵ | Aarne Ranta | |
| CncConfiguration, e.g. @N Sg Pl. Default tag is Cat-offset, as defined for each Cat in pgf | |||
| 2018-12-17 | allow comments in dependency configs and fix conll output | Prasanth Kolachina | |
| 2018-12-16 | a pool where the smallest chunks are memory pages | krangelov | |
| 2018-12-01 | GF.Main: leave the code page unchanged on Windows | Thomas Hallgren | |
| This should make it easier to use GF with UTF-8 in the Windows Console See https://groups.google.com/forum/#!topic/gf-dev/DCou6FDhCnU | |||
| 2018-12-01 | dealing with ',' as syncategorematic token | Aarne Ranta | |
| 2018-11-30 | Fix deprecations from containers >= 0.4.0.0 | Peter Ljunglöf | |
| E.g. `foldWithKey` has been deprecated since 0.4.0.0 (November 2010)[1] and has been removed in 0.6.0.1 (2018)[2] [1]: https://github.com/haskell/containers/blob/master/changelog.md#0400--nov-2010 [2]: https://github.com/haskell/containers/blob/master/changelog.md#death-of-deprecated-functions (commit originally by @fredefox) | |||
| 2018-11-28 | fixed a bug in the cnclabel format | Aarne Ranta | |
| 2018-11-28 | Revert "Completely remove uses of example-based" | John J. Camilleri | |
| This reverts commit 69cea20dac8ac73fa0a61ed4ff427d2524ee253b. | |||
| 2018-11-28 | Revert "remove the example-based folder. The code is still in the archive" | John J. Camilleri | |
| This reverts commit 05c2cfb628147f7d6fa0a6c2f38eb9d67b2eb007. | |||
| 2018-11-28 | Completely remove uses of example-based | John J. Camilleri | |
| 2018-11-28 | remove the example-based folder. The code is still in the archive | Krasimir Angelov | |
| 2018-11-28 | Merge branch 'master' of https://github.com/GrammaticalFramework/gf-core | Krasimir Angelov | |
| 2018-11-28 | remove two obsolete options | Krasimir Angelov | |
| 2018-11-28 | Remove Htmls.hs | John J. Camilleri | |
| 2018-11-28 | remove gf-server.cabal | John J. Camilleri | |
| 2018-11-28 | remove custom-binary flag; update Cabal version restriction; bump version to ↵ | John J. Camilleri | |
| 3.10 | |||
| 2018-11-27 | expose PGF and Concr for FFI | Krasimir Angelov | |
