summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-19runtime/c/setup.sh: use make -j to speed up compilationhallgren
The configuration script takes significantly longer to run than the compilation of all the C code, which is a hint that is in need of a major simplification.
2014-06-19release notes: record update and RGL updatesaarne
2014-06-19section on record update in gf-refmanaarne
2014-06-19Include the Python binding to the C run-time system in Debian packageshallgren
2014-06-19WebSetup.hs: skip PhrasebookLav for nowhallgren
2014-06-18Compile example grammars during the build phase instead of the install phasehallgren
This allows more errors to be detected by the build bot. TODO: fix the gf --output-dir flag, which does not seem to change where PGF file are put.
2014-06-18enabled more from Construction in Appaarne
2014-06-18build-binary-dist.sh: updated to include the Python binding to the C run-timehallgren
There are also some changes in src/runtime/python/setyp.py to support this.
2014-06-18correction in app/READMEaarne
2014-06-18quick hack: changed cat name Language to LAnguage in Phrasebook to avoid ↵aarne
clash with Construction.Language in App
2014-06-18a small change in the keyboard layout for Android to make it more user friendlykr.angelov
2014-06-18filter out identical duplicated translations from the Android UIkr.angelov
2014-06-17gf.cabal: add a maintainer fieldhallgren
2014-06-17Some updates to the GF 3.6 download page and release noteshallgren
2014-06-17Redirecting grammaticalframework.org/framenet to ↵normundsg
remu.grammaticalframework.org/framenet
2014-06-17Compute/ConcreteNew.hs: eliminate selections from wildcard tableshallgren
This patch also includes some commented out code that was used to search for the source of code size explosions and an eta expansion bug.
2014-06-17doc/gf-developers.t2t: quick note on how to compile the C run-time systemhallgren
Also a few other minor updates.
2014-06-17build-binary-dist.sh: updated to include the C runtime system in binary tarballshallgren
Also moved it to the bin directory. Run it with 'bash bin/build-binary-dish.sh'.
2014-06-17Setup.hs: System.Cmd is deprecated, import System.Process insteadhallgren
2014-06-17gf-cloud-api.html: fix a broken linkhallgren
Thanks to Dana Dannells.
2014-06-17now the named entities recognizer returns dictionary entries if the name is ↵kr.angelov
known
2014-06-16src/runtime/c/setup.sh: executable version of INSTALL, used from debian/ruleshallgren
2014-06-16debian/rules: include the C run-time system when building .deb packageshallgren
2014-06-16fixed memory leak in the Haskell binding to the C runtimekr.angelov
2014-06-15updated demos/translation.t2t with link to app and explanation of coloursaarne
2014-06-12PGF library: expose only PGF and PGF.Internal instead of all moduleshallgren
PGF exports the public, stable API. PGF.Internal exports additional things needed in the GF compiler & shell, including the nonstardard version of Data.Binary.
2014-06-12New GF home page: trying blue page title and tagline instead of redhallgren
2014-06-12swith off the debugging in the android uikr.angelov
2014-06-12now GF keywords can be used as identifiers if they are quotedkr.angelov
2014-06-11new.html: a proposed new look for the GF home pagehallgren
2014-06-10Updating the release notes and installation instructions for the next releasehallgren
2014-06-10PGF2.hsc: use throwIO instead of throwhallgren
From the documentation: the throwIO variant should be used in preference to throw to raise an exception within the IO monad because it guarantees ordering with respect to other IO operations, whereas throw does not. Also removed some unused imports.
2014-05-29CompoundN in app.probsaarne
2014-05-29FrameNet-GF API Docnormundsg
2014-05-24now we compile context-free grammars directly to PGF without going via GF ↵kr.angelov
source code. This makes it quick and lightweight to compile big grammars such as the Berkley grammar
2014-05-23bugfix in the Java binding. it was causing a crash in the Android appkr.angelov
2014-05-22small fix in tabularLinearizekr.angelov
2014-05-22added tabularLinearize in the python bindingkr.angelov
2014-05-22bugfix: the keyboard should not show completions when entering web passwordskr.angelov
2014-05-22the dictionary view in the app now filters out duplicated morphological analyseskr.angelov
2014-05-22fixed the path in AppFin.gf so that it compiles in a more general settingaarne
2014-05-21forgot to fix the path for AppFre.gfkr.angelov
2014-05-21App compilation instructions: with parallel compilation, make Phrasebook ↵aarne
separately
2014-05-21in verbosity mode the compiler warns about missing pathskr.angelov
2014-05-21probabilities for Appaarne
2014-05-21fix the path in the App grammar to the Phrasebookkr.angelov
2014-05-16Compute/ConcreteNew.hs: adding a Prawitz rewritehallgren
(table { p_i => t_i } ! x).l ==> table { p_i => t_i.l } ! x This was used in the old partial evaluator and can significantly reduce term sizes in some cases.
2014-05-16Fix an eta expansion bug in the grammar compilerhallgren
Eta expansion is applied between partial evaluation and PMCFG generation. The buggy version generated type incorrect terms, but PMCFG generation apparently worked anyway.
2014-05-15Simple Translator: fall back to word-for-word translation if the parser failshallgren
Same as in the Wide Coverage demo app.
2014-05-13Haskell binding: free memory pool to avoid space leak when readPGF failshallgren