summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-06-20PGF Service, command=grammar: include the last modified time of the grammar ↵hallgren
in the output
2014-06-20added a note that the green translation comes from the phrasebookaarne
2014-06-19language status in app help file as table ; less textaarne
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-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-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-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-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-16fixed memory leak in the Haskell binding to the C runtimekr.angelov
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-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-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-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-21in verbosity mode the compiler warns about missing pathskr.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
2014-05-12gf -server: include list of loaded PGFs in version infohallgren
2014-05-08fix the literals API in Java for strings with non-latin characterskr.angelov
2014-05-08Wide Coverage Demo Web App: bug fix: swapping source and target works againhallgren
2014-05-08Wide Coverage Demo Web App: bug fix: restore lost quality indications after ↵hallgren
switching target languages
2014-05-08PGF web api, command c-wordforword: re-enable parsing of individual wordshallgren
The space leak in the Haskell binding to the C parser has been fixed.
2014-05-08fix memory leak in the Haskell bindingkr.angelov
2014-05-07Wide Coverage Demo App: show all Phrasebook translationshallgren
Also improve behaviour for languages that are missing in Phrasebook (Chinese). Also update the initial set of languages in the menus to match Translate11.pgf.
2014-05-07pgf-shell.hs: fix compilation problem with GHC 7.4hallgren
2014-05-07Two improvements in the pgf-shell examplehallgren
1. Like pgf-translate, it now shows one result at a time, press Enter to get more results. 2. You can load a new grammar with the command 'i <path-to-pgf>'
2014-04-29Wide Coverage Web Demo: fix bug introduced in previous patchhallgren
Word-for-word translations were shown in the wrong language after switching traget language.
2014-04-29Wide Coverage Demo App: translate to all available target langauges at oncehallgren
This means that the new translation is available instantly when switching target languages. It can also reduce space leaks problems in the server somewhat by avoiding repeated parsing of the source text.
2014-04-29PGF web api, command c-wordforword: don't repeat parsing/morpho analysis for ↵hallgren
each target language Also omit attemts to parse individual words for now, to avoid space leaks in the Haskell binding to the C parser.
2014-04-28Spring cleaninghallgren
Nothing major...
2014-04-28Simple Translator: remove extra space before punctuationhallgren
2014-04-25an initial Java/C API for predicting literals. Still not utilizedkr.angelov
2014-04-24remove dead code to avoid warningskr.angelov
2014-04-24make the input box in the conversation view self-adjustable when entering ↵kr.angelov
longer text
2014-04-24a better solution for restoring the state of the main activity when the ↵kr.angelov
device is flipped. This one doesn't require hacks.
2014-04-24Simple Translator: remove punctuation before wide coverage translationhallgren
This gives better translations with Translate11.pgf and is how the Wide Coverage Demo App works.
2014-04-24a small fix to avoid showing * in some translationskr.angelov
2014-04-24show the alternative translations in colorkr.angelov
2014-04-24show the probabilities for the alternative translationskr.angelov
2014-04-24bugfix in the word completion in the input methodkr.angelov