| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-07 | bugfix in pgf-translate | kr.angelov | |
| 2014-03-06 | C run-time: protect from Windows specific #includes with #ifdef __MINGW32__ | hallgren | |
| 2014-03-05 | bugfix in the android keyboard for multiline documents | kr.angelov | |
| 2014-03-05 | bugfix in the Android UI | kr.angelov | |
| 2014-03-05 | implementation for pre in the C runtime | kr.angelov | |
| 2014-03-04 | Fix the fix | hallgren | |
| 2014-03-04 | Fixes for GHC 7.6 compatibility | hallgren | |
| 2014-03-04 | Three fixes for compatibility with GHC 7.8 | hallgren | |
| Two of the fixes were in the custom version of the binary package. We should get rid of it at some point, to reduce the maintenance burden. The third fix was to add new version constraints for happy and alex in gf.cabal. New versions of them are needed because of the ugly, low-level, GHC-specific code they produce need to be different for GHC 7.8. More fixes might be needed for -server mode, but the cgi package is not compatible with GHC 7.8 at the moment, so it will have to wait. | |||
| 2014-03-04 | use pgf_linearize instead of pgf_lzr_linearize_simple in pgf-translate.c | kr.angelov | |
| 2014-03-04 | memory leak in parseval.c | kr.angelov | |
| 2014-03-04 | rename pgf_lzr_linearize_table to pgf_lzr_get_table | kr.angelov | |
| 2014-02-27 | more in src/runtime/java/INSTALL | kr.angelov | |
| 2014-02-27 | another fix for building the Java binding | kr.angelov | |
| 2014-02-27 | added file with instructions for compiling the Java binding | kr.angelov | |
| 2014-02-27 | instructions for compiling the C runtime on Windows | kr.angelov | |
| 2014-02-27 | changes in Makefile.am to make it easier to compile the C runtime on Windows | kr.angelov | |
| 2014-02-27 | include malloc.h in a few places to avoid warnings on Windows | kr.angelov | |
| 2014-02-27 | update the Eclipse project for jpgf with settings needed for Windows | kr.angelov | |
| 2014-02-25 | bugfix with the keyboard label for Chinese | kr.angelov | |
| 2014-02-25 | the Android UI uses a new progress indicator which works on both Nexus 1 and ↵ | kr.angelov | |
| Nexus 7 | |||
| 2014-02-21 | the Android App is now using the documentation modules instead of xml files ↵ | kr.angelov | |
| for generating the inflection tables. The xml files are removed | |||
| 2014-02-19 | Wide coverage demo web app: add link to Google Translate | hallgren | |
| 2014-02-19 | src/www/js/langcode.js: functions for converting language codes | hallgren | |
| factored out from src/www/translator/translator.js | |||
| 2014-02-18 | bugfix in the android ui | kr.angelov | |
| 2014-02-17 | fix in GF.Compile.Compute.ConcreteNew which makes it possible to compile ↵ | kr.angelov | |
| DocumentationBul.gf | |||
| 2014-02-13 | demos/translation.t2t: the translation app needs more space | hallgren | |
| 2014-02-12 | Wide coverage demo: show up to 10 translations | hallgren | |
| The translations are loaded one at a time so you don't have to wait for all 10 to see the first one. | |||
| 2014-02-11 | Work on web api & apps based on the C run-time system | hallgren | |
| + PGFService.hs: add command c-grammar, include probability in parse results + js/gftranslation.js: add start position and limit parameters, return more info to applications + Simple Translator: show two wide coverage translations + Wide coverage demo: show parse tree and probability (intended as grammar debugging aids) | |||
| 2014-02-11 | GFServer.hs: avoid intertwined log messages from parallel requests | hallgren | |
| 2014-02-10 | Restore compatibility with GHC 7.0 | hallgren | |
| 2014-02-10 | Fix broken C runtime support in gf.cabal and PGFService.hs | hallgren | |
| Also add PGF service command c-flush to explicitly flush cached parse results from memory. | |||
| 2014-02-10 | proper error checking in the C runtime | kr.angelov | |
| 2014-02-10 | haskell-bind: fix broken pgf-shell | hallgren | |
| The type CId was replaced with String, so can't use show and read anymore. | |||
| 2014-02-10 | bugfix in pgf2-bind.cabal | kr.angelov | |
| 2014-02-09 | disabled ad hoc overloading, as it still causes mysterious errors. It is ↵ | aarne | |
| just a few lines in Rename.hs | |||
| 2014-02-09 | updated haskell-bind/README | kr.angelov | |
| 2014-02-09 | cleanup the code for the FFI binding. The API is now more uniform with the ↵ | kr.angelov | |
| Python and the Java bindings. Fixed a lot of memory leaks. | |||
| 2014-02-09 | GuVariant is now plain uintptr_t instead of a structure to make it easier to ↵ | kr.angelov | |
| write Haskell bindings | |||
| 2014-02-07 | gf.cabal: pgf-shell needs containers now | hallgren | |
| 2014-02-07 | pgf-shell: show the names of the concrete syntaxes after loading the grammar | hallgren | |
| 2014-02-07 | haskell-bind: add function languages | inari | |
| 2014-02-07 | pgf-shell: enable -rtsopts, call performGC between commands | hallgren | |
| This is to make it easier to find the cause of space leaks. | |||
| 2014-02-06 | fixed some memory leaks | inari | |
| 2014-02-05 | bugfix in the recognizer for literals in the C runtime | kr.angelov | |
| 2014-02-04 | PGF.Optimize: one more fix for unsafeFreeze | hallgren | |
| 2014-02-04 | PGF.Optimize: import unsafeFreeze from Data.Array.Unsafe for compatibility ↵ | hallgren | |
| with ghc-7.8 | |||
| 2014-02-04 | GFC.hs: encodeFile_ is not available in the standard Data.Binary | hallgren | |
| 2014-02-03 | gf.cabal: add default-language to silence warning | hallgren | |
| 2014-02-01 | new overload resolution, taking care of ad hoc overloading. | aarne | |
| 2014-02-01 | ad hoc overloading: a new way to deal with name resolution conflicts. ↵ | aarne | |
| Previously the renamer warned if there was e.g. an unqualified reference to mkAdv, which could come from either Syntax or Paradigms. The renamer picked randomly one of the alternatives, which then often failed in type checking. Now, all candidates are collected into a new structure AdHocOverload [Term], which is accessed by the type checker to make the choice based on the type of the constant. This eliminates some of the warnings and some of the error due to wrong choices. In some rare cases, the inherited constants have the same type, which cannot be resolved by overloading. In such cases, the type checker does the same as the renamer did before: pick the "first" option (i.e. the one that happens to be the first in the list returned by the renamer) and issues a warning. In this patch, only a couple of lines are changed. The typechecker (RConcrete) has more substantial changes, and will be recorded as the next patch. | |||
