| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-11-15 | download/release-3.4.t2t: starting to prepare for the next release of GF | hallgren | |
| Feel free to add to the release notes. The file can be renamed if the next release will not be called GF 3.4. | |||
| 2012-11-15 | Syntax editor: jump to next hole in tree | john.j.camilleri | |
| 2012-11-15 | Syntax editor: fix bug in Firefox, Seamonkey | john.j.camilleri | |
| 2012-11-14 | Add flag --document-root for user with gf --server | hallgren | |
| This can make it easier to test cloud service updates before installing them. | |||
| 2012-11-14 | GF usage message fixes | hallgren | |
| Change the command name from gfc to gf in the usage message header. Correct spelling of "overide" to "override" in -gf-lib-path description. | |||
| 2012-11-14 | revised heuristic in the statistical parser | kr.angelov | |
| 2012-11-13 | Add first demo of new syntax editor | john.j.camilleri | |
| As part of the GF cloud stuff, it can be accessed from http://cloud.grammaticalframework.org/syntax-editor/editor.html | |||
| 2012-11-13 | Adding a new experimental partial evalutator | hallgren | |
| GF.Compile.Compute.ConcreteNew + two new modules contain a new partial evaluator intended to solve some performance problems with the old partial evalutator in GF.Compile.Compute.ConcreteLazy. It has been around for a while, but is now complete enough to compile the RGL and the Phrasebook. The old partial evaluator is still used by default. The new one can be activated in two ways: - by using the command line option -new-comp when invoking GF. - by using cabal configure -fnew-comp to make -new-comp the default. In this case you can also use the command line option -old-comp to revert to the old partial evaluator. In the GF shell, the cc command uses the old evaluator regardless of -new-comp for now, but you can use "cc -new ..." to invoke the new evaluator. With -new-comp, computations happen in GF.Compile.GeneratePMCFG instead of GF.Compile.Optimize. This is implemented by testing the flag optNewComp in both modules, to omit calls to the old partial evaluator from GF.Compile.Optimize and add calls to the new partial evaluator in GF.Compile.GeneratePMCFG. This also means that -new-comp effectively implies -noexpand. In GF.Compile.CheckGrammar, there is a check that restricted inheritance is used correctly. However, when -noexpand is used, this check causes unexpected errors, so it has been converted to generate warnings, for now. -new-comp no longer enables the new type checker in GF.Compile.Typeckeck.ConcreteNew. The GF version number has been bumped to 3.3.10-darcs | |||
| 2012-11-13 | bugfix in the statistical parser | kr.angelov | |
| 2012-11-12 | two simple heuristics which speed up the statistical parser more than seven ↵ | kr.angelov | |
| times. | |||
| 2012-11-12 | a simple refactoring in the statistical parser | kr.angelov | |
| 2012-11-12 | more counters in the profiler for the statistical parser | kr.angelov | |
| 2012-11-12 | now we store the state instead of the offset for every continuation in the ↵ | kr.angelov | |
| chart for the statistical parser | |||
| 2012-11-12 | in the statistical parser: move the outside probability from the parse items ↵ | kr.angelov | |
| to their continuation. this makes the value slot shared between many items | |||
| 2012-11-12 | small refactoring in the C runtime | kr.angelov | |
| 2012-11-12 | use size_t consistently as the type for constituent indices in the C runtime | kr.angelov | |
| 2012-11-12 | implemented gu_map_count in runtime/c/gu/map.c | kr.angelov | |
| 2012-11-08 | Eliminate warnings about deprecated use of catch and try | hallgren | |
| This is also needed for compatibility with GHC 7.6. | |||
| 2012-11-07 | GF.Grammar.PatternMatch: relax overly restrictive type signatures | hallgren | |
| 2012-11-07 | Some changed/new utility functions | hallgren | |
| GF.Data.Utilities: Rename mapFst to apFst, mapSnd to apSnd. Add apBoth, mapFst, mapSnd, mapBoth. GF.Data.Operations: Remove onSnd (same as apSnd) | |||
| 2012-11-06 | gf -server: make it possible to pass arbitrary flags/options to gf when ↵ | hallgren | |
| compiling grammars For example, you can add -optimize-pgf: http://localhost:41296/cloud?dir=...&command=remake&-optimize-pgf=&Foods2Eng.gf=&Foods2Swe.gf= | |||
| 2012-11-05 | unicode4k-changed | virk.shafqat | |
| 2012-11-01 | PhrasebookLav: synchronised with the latest changes in the resource grammar | normundsg | |
| 2012-10-30 | TransQuiz: use the grammars from the same server | hallgren | |
| Unlike the other web apps in the cloud, the translation quiz was configured to use the grammars at http://www.grammaticalframework.org/grammars. | |||
| 2012-10-30 | Small update to summer school 2013 page | john.j.camilleri | |
| 2012-10-30 | Add initial page for 2013 summer school | john.j.camilleri | |
| 2012-10-29 | use prob_t instead of float in a few places | kr.angelov | |
| 2012-10-26 | Minibar: cursor over editable words is now a "hand" | john.j.camilleri | |
| This had been bugging me for ages! | |||
| 2012-10-26 | GF home page: avoid line breaks in dates in the news section | hallgren | |
| 2012-10-26 | gf.cabal: version of parallel needs to be >=3 | hallgren | |
| 2012-10-26 | Added my name to authors list | john.j.camilleri | |
| 2012-10-25 | forgot to add one #ifdef | kr.angelov | |
| 2012-10-25 | GF.Grammar.Macros: add function collectPattOp | hallgren | |
| collectPattOp :: (Patt -> [a]) -> Patt -> [a] | |||
| 2012-10-25 | a major refactoring in the robust parser: bottom-up filtering and garbage ↵ | kr.angelov | |
| collection for the chart | |||
| 2012-10-24 | GF.Grammar.Macros: add function composPattOp | hallgren | |
| For Patt, analogous to composOp for Term. | |||
| 2012-10-24 | Compute.ConcreteNew: support variants | hallgren | |
| Also add a missing check for Predef values in apply. | |||
| 2012-10-24 | GeneratePMCFG: prefix messages about "impossible" errors with 'Internal error:' | hallgren | |
| Just to make them easier to spot when wading through thousands of lines of warnings... | |||
| 2012-10-24 | Link to the GF Developers Guide from the download page | hallgren | |
| 2012-10-23 | gf-cloud-api.html: document the new command=remake | hallgren | |
| Also improve the documentation of the responses to the upload and make commands. | |||
| 2012-10-23 | gf -server: introduce command=remake for recompiling previously uploaded ↵ | hallgren | |
| grammars Also remove some old commented out code. | |||
| 2012-10-23 | fracas: code to generate HTML treebank | hallgren | |
| 2012-10-23 | cleanup | hallgren | |
| Simplify the implementation of writeUTF8File and use it in one more place. Remove unused imports left over after a previous change. | |||
| 2012-10-22 | Add Chinese to the list of installed RGL languages and support it in the web ↵ | hallgren | |
| apps Aarne says the Chinese resource grammar is complete, but not yet completely correct. | |||
| 2012-10-19 | Refactor compileSourceModule | hallgren | |
| There was 55 lines of rather repetitive code with calls to 6 compiler passes. They have been replaced with 19 lines that call the 6 compiler passes plus 26 lines of helper functions. | |||
| 2012-10-19 | Consistenly use SourceGrammar instead of [SourceModule] when calling ↵ | hallgren | |
| compiler passes | |||
| 2012-10-19 | Phrasebook: make clean | hallgren | |
| 2012-10-19 | fixes to previous | inari.listenmaa | |
| 2012-10-19 | spanish_catalan_corrections | inari.listenmaa | |
| 2012-10-18 | Use NOINLINE for build info and darcs version info | hallgren | |
| ... to avoid unnecessary recompilation of other modules. | |||
| 2012-10-18 | gfse: grammars can now contain one-line descriptions | hallgren | |
| Also fixed two small problems with public grammars. | |||
