summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2014-05-12gf -server: include list of loaded PGFs in version infohallgren
2014-05-09examples/phrasebook/Makefile2: add Chinesehallgren
Also remove arguments to raise the stack size, GF's built-in default is big enough now.
2014-05-09Add link to IRC logsjohn.j.camilleri
The logs are simply dumped there in raw form, but at least having a link should make them Google-indexed. One day we'll put something there with an interface.
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-05-06improved paths and Makefile in examples/app ; see README how to compile with ↵aarne
just 'make -j'
2014-05-06eliminated dependency of PhrasebookChi from DictionaryChi ; added 'make ↵aarne
forApp' to compile what is needed for Phrasebook in App
2014-05-03some more words and phrases in PhrasebookChi ; native speaker check should ↵aarne
be done soon
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
2014-04-24merged the editsaarne