| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-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-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-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-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 | 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-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. | |||
| 2012-10-16 | gfse: small fix | hallgren | |
| 2012-10-16 | gfse: identify inherited grammars by their unique id | hallgren | |
| This helps avoiding problems if an inherited grammar is renamed, or if there is more than one grammar with the same name. | |||
| 2012-10-16 | GF.Command.Command: turn CommandOutput into a newtype | hallgren | |
| The output from commands is represented as ([Expr],String), where the [Expr] is used when data is piped between commands and the String is used for the final output. The String can represent the same list of trees as the [Expr] and/or contain diagnostic information. Sometimes the data that is piped between commands is not a list of trees, but e.g. a string or a list of strings. In those cases, functions like fromStrings and toStrings are used to encode the data as a [Expr]. This patch introduces a newtype for CommandOutput and collects the functions dealing with command output in one place to make it clearer what is going on. It also makes it easier to change to a more direct representation of piped data, and make pipes more "type safe", if desired. | |||
| 2012-10-11 | add teyjus/simulator/builtins/builtins.h | kr.angelov | |
| 2012-10-11 | added the forgoten libteyjus.pc.in file in the C runtime | kr.angelov | |
| 2012-10-09 | gfse: adding a section about public grammars in about.html | hallgren | |
| 2012-10-09 | gfse: show the grammar list if the currently selected grammar can not be loaded | hallgren | |
| Avoid showing a blank page if there is an unexpected problem with the grammars in localStorage. | |||
| 2012-10-09 | gf -server: /parse command now supports input with character codes > 255 | hallgren | |
| This enables the use of arbitrary Unicode character in text mode in GFSE. | |||
| 2012-10-05 | Factor out code for setting the console encoding | hallgren | |
| Moved similar low-level code blocks in Main and GFI for setting the console encoding to the new module GF.System.Console. | |||
| 2012-10-04 | simple translator: make it usable on iOS devices | hallgren | |
| To make the popup menus accessible, use a simple trick to activate the simulate-hovering-by-tapping behaviour. | |||
| 2012-10-04 | simple translator: bug fix | hallgren | |
| "Edit/Add a segment..." stopped working at some point. (Importing text still worked.) | |||
| 2012-10-04 | gfse: various code improvements and prelimiary support for public grammars | hallgren | |
| 2012-10-03 | gfse: fix a bug caused by sharing when copying a linearization function in ↵ | hallgren | |
| the row view Functional programming is easier than imperative programming! | |||
| 2012-10-03 | gfse: some refactoring | hallgren | |
| 2012-10-03 | gfse: row view: add a button to copy a linearization | hallgren | |
| When adding a new function, you can enter a linearization for one language and then copy it to the other languages with one button click. | |||
| 2012-10-02 | gfse and cloud service documentation update | hallgren | |
| 2012-10-02 | gfse: you can now add new functions from the matrix view | hallgren | |
| 2012-10-02 | gfse: more intuitive buttons for switching between the column, matrix & row ↵ | hallgren | |
| views | |||
| 2012-10-01 | gfse: adding a "row" view | hallgren | |
| Accessed by clicking on a function in the Abstract column in the matrix view. | |||
| 2012-10-01 | gfse: matrix view improvements | hallgren | |
| + You can click on a column header to switch to column view (i.e. the corresponding abstract/concrete syntax tab). + The categories and functions in the abstract syntax can be edited directly in the matrix view. | |||
| 2012-09-30 | gfse: small linearization type display adjustment | hallgren | |
| 2012-09-30 | gfse: display "??" instead of "null" in linearization types when lincats are ↵ | hallgren | |
| missing | |||
