| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-27 | GF shell, show_operations: also show the types of linearization functions | hallgren | |
| This is a simple change in GF.Grammar.Lookup.allOpers, which is used only in the implementation of the show_operations command in the shell. This is useful when importing a concrete syntax (like LexiconEng) as a resource. However, the types don't always look as nice as I hoped... | |||
| 2012-09-27 | Setup.hs: add Maltese to the list of known RGL languages, but don't compile ↵ | hallgren | |
| it by default | |||
| 2012-09-26 | SIO bug fix | hallgren | |
| Line breaks were missing when capturing stdout. (putStrLn acted like putStr.) | |||
| 2012-09-26 | phrasbook/Compile.hs: make it work with ghc>=7.2 | hallgren | |
| 2012-09-26 | gf -server: add a GF version info request | hallgren | |
| GF version info can now be obtained from http://localhost:41926/version Also removed some unused imports. | |||
| 2012-09-26 | Setup.hs: Persian does not support mkPresent | hallgren | |
| 2012-09-26 | Add Persian to the list of installed RGL langauges | hallgren | |
| 2012-09-25 | Use the SIO monad in the GF shell | hallgren | |
| + The restrictions on arbitrary IO when GF is running in restricted mode is now enforced in the types. + This hopefully also solves an intermittent problem when accessing the GF shell through the web API provided by gf -server. This was visible in the Simple Translation Tool and probably caused by some low-level bug in the GHC IO libraries. | |||
| 2012-09-25 | GF.Infra.SIO.hs: adding the SIO monad (where S = Shell or Safe) | hallgren | |
| The SIO monad is a restriction of the IO monad with two purposes: + Access to arbitrary IO operations can be turned off by setting the environment variable GF_RESTRICTED. There is a limited set of IO operations that are considered safe and always allowed. + It allows output to stdout to be captured. This can be used in gf -server mode, where output of GF shell commands is made part of HTTP responses returned to clients. | |||
| 2012-09-25 | GF.Command.Commands: allCommands is now a constant | hallgren | |
| The dependency on PGFEnv has been moved from the list to the exec function of the commands in the list. This means that the help command no longer needs to generate a new list of commands and that the state of the shell (type GF.Command.Interpreter.CommandEnv) no longer needs to contain the list of commands. | |||
| 2012-09-24 | now the meta probability for a category is explicitly specified in the ↵ | kr.angelov | |
| statistical model instead of computed internally. this avoids rounding errors while computing the sum of a large number of small values. | |||
| 2012-09-24 | in the robust parser we don't have to care about trees which yeld empty ↵ | kr.angelov | |
| strings. this makes the parser a lot faster | |||
| 2012-09-23 | refactoring German VP | aarne | |
| 2012-09-22 | GFServer.hs: code improvements | hallgren | |
| Use a monad in the request handler to make the code a bit more modular and readable. | |||
| 2012-09-21 | gf -server: also restrict the paths of uploaded files | hallgren | |
| 2012-09-21 | gfse: added a new "matrix view" of grammars | hallgren | |
| 2012-09-21 | simple translator: make it possible to delete documents | hallgren | |
| 2012-09-21 | gf -server: improved security checks | hallgren | |
| + More restrictive limits on which file paths can be downloaded and removed. + Add more extensions to the list of file types that may be removed. In particular, allow documents created by simple translation tool to be removed. | |||
| 2012-09-20 | simple translator: bug fix | hallgren | |
| A bug in the line break change prevented text import from working. | |||
| 2012-09-18 | link to ICFP slides, part 1 | aarne | |
| 2012-09-18 | the Haskell runtime now exports 'functionsByCat' which returns the list of ↵ | kr.angelov | |
| all functions for a given category | |||
| 2012-09-18 | the C runtime now has a type prob_t which is used only for probability values | kr.angelov | |
| 2012-09-18 | catch all case in GenerateBC.genFun | kr.angelov | |
| 2012-09-14 | negative patterns in gfmorpho | aarne | |
| 2012-09-17 | simple translator: accept DOS, Mac and Unix line breaks when importing text | hallgren | |
| 2012-09-17 | minibar-api.html: documentation fixes | hallgren | |
| 2012-09-17 | PhrasebookLav: the word order generated by "action" functions (ALike, ALive ↵ | Normunds Gruzitis | |
| etc.) is now natural | |||
| 2012-09-14 | doc/icfp-2012: adding a link to my slides | hallgren | |
| 2012-09-13 | make Lang for languages that have complete morphology when running make in ↵ | aarne | |
| lib/src | |||
| 2012-09-12 | example with computer terminology from the Wikipedia | aarne | |
| 2012-09-12 | First version of a web server for morphological paradigms. | aarne | |
| 2012-09-11 | doc/gf-developers: a few more small fixes | hallgren | |
| 2012-09-11 | doc/gf-developers: fixed a typo | hallgren | |
| 2012-09-11 | simple translator: export GlobalSight Download Files | hallgren | |
| TODO: consider using a better way to save to a local file | |||
| 2012-09-11 | simple translator: more work on GlobalSight support | hallgren | |
| Disable editing source segments in GlobalSight documents | |||
| 2012-09-10 | simple translator: more work on GlobalSight support | hallgren | |
| + Retain metadata from GlobalSight Download Files. + Disable adding&removing segments when editing a GlobalSight documents. | |||
| 2012-09-09 | minibar: fix links to Wikipedia article on JSONP | hallgren | |
| Wikipedia moved it. | |||
| 2012-09-09 | simple translator: support for importing GlobalSight Download Files | hallgren | |
| TODO: support for export translations in the same format. | |||
| 2012-09-07 | The training script for the PennTreebank is updated to compute more statistics | kr.angelov | |
| 2012-09-06 | bugfix in the C parser | kr.angelov | |
| 2012-09-06 | Add type info to "Warning: ignoring lock fields in resolving..." | hallgren | |
| 2012-08-30 | simple translator: make it work even if Apertium is unavailable | hallgren | |
| Since Apertium is unavaiable at the moment, I can't check that things still work properly when Aprtium *is* availalbe. | |||
| 2012-08-30 | another fix for teyjus | kr.angelov | |
| 2012-08-30 | the loading of PGF files was broken by the Teyjus patch. Now this is fixed | kr.angelov | |
| 2012-08-29 | Use nub' instead of nub in some places, remove some unused nub imports | peter.ljunglof | |
| 2012-08-29 | Added an O(n log n) version of nub | peter.ljunglof | |
| The new nub is called nub', and it replaces the old sortNub which was not lazy and did not retain the order between the elements. | |||
| 2012-08-29 | Emacs only recognizes utf-8, not UTF-8, in file headers | peter.ljunglof | |
| 2012-08-29 | A basic infrastructure for generating Teyjus bytecode from the GF abstract ↵ | kr.angelov | |
| syntax | |||
| 2012-08-28 | added Lav in compilation; commented out extensions of Words that are only ↵ | aarne | |
| available for a fraction of languages; fixed a couple of type errors in WordsLav, to be checked | |||
| 2012-08-27 | minibar documentation URL typo fix | hallgren | |
