summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-28bin/build-binary-dist.sh: include the RGL in binary distributionsThomas Hallgren
TODO: the corresponding changes in debian/rules
2018-11-28Merge branch 'master' of https://github.com/GrammaticalFramework/gf-coreKrasimir Angelov
2018-11-28add a few missing special tokens to the referenceKrasimir Angelov
2018-11-28Update LICENSEJohn J. Camilleri
2018-11-28remove the example-based folder. The code is still in the archiveKrasimir Angelov
2018-11-28Merge branch 'master' of https://github.com/GrammaticalFramework/gf-coreKrasimir Angelov
2018-11-28remove two obsolete optionsKrasimir Angelov
2018-11-28Remove Htmls.hsJohn J. Camilleri
2018-11-28remove gf-server.cabalJohn J. Camilleri
2018-11-28remove custom-binary flag; update Cabal version restriction; bump version to ↵John J. Camilleri
3.10
2018-11-27expose PGF and Concr for FFIKrasimir Angelov
2018-11-15Remove `src/ui` folder, moved to:John J. Camilleri
https://github.com/GrammaticalFramework/gf-offline-translator
2018-11-07Move unused `pgf-binary` into its own repository, at:John J. Camilleri
https://github.com/GrammaticalFramework/pgf-binary
2018-11-07Clean up stack fileJohn J. Camilleri
Removed alex/happy as build-deps, if needed they can be installed with `stack install alex happy`
2018-11-06Revert CSS change that produces overlapping text instead of responsive layoutThomas Hallgren
2018-11-05Add happy and alex as deps in Stack fileJohn J. Camilleri
2018-11-03Add note about using Stack in download/indexJohn J. Camilleri
2018-11-03Add stack file, using image for GHC 8.2.2John J. Camilleri
2018-10-31Remove doc/tutorial/gf-tutorial.html from version controlJohn J. Camilleri
Checked that the t2t is still valid and html should be automatically generated. Although there is some encoding issue with this file?
2018-10-31Add more phony's to MakefileJohn J. Camilleri
2018-10-19Merge pull request #10 from inariksit/masterInari Listenmaa
Add {-# LANGUAGE GADTs -#} to the generated Haskell file
2018-10-19Add {-# LANGUAGE GADTs -#} to the generated Haskell fileInari Listenmaa
2018-10-16gf -cshell bug fixThomas Hallgren
The functions cExpr and hsExpr in GF.Command.Commands2 need to handle string literals.
2018-10-15`cabal sdist` doesn't throw an error anymoreJohn J. Camilleri
This was making it impossible to install gf as external source in cabal sandbox
2018-10-15Merge branch 'master' of https://github.com/GrammaticalFramework/gf-coreKrasimir Angelov
2018-10-15hide the compatibility APIKrasimir Angelov
2018-10-10Comment out links to some old demos that no longer workThomas Hallgren
2018-09-21option rf -paragraphsAarne Ranta
2018-08-13Merge pull request #7 from odanoburu/travis-ciJohn J. Camilleri
add travis ci
2018-08-12Small fixes to gf-developers documentJohn J. Camilleri
2018-08-11(#5) rm files from nix buildodanoburu
2018-08-11(#5) reintroduce make installodanoburu
2018-08-11(#5) specify image versionodanoburu
2018-08-11(#5) no need for make installodanoburu
2018-08-11(#5) add travis CI with dockerodanoburu
dependencies are preinstalled in docker image for faster build, but this means we need to update it whenever dependencies change
2018-08-08Remove Travis build status from homepageJohn J. Camilleri
2018-08-08Add news item to homepage about repo splitJohn J. Camilleri
2018-08-06Merge pull request #3 from MUSTE-Project/masterThomas H
A version of `readPGF` where the user can handle reading files
2018-08-06A version of `readPGF` where the user handles the IO.Frederik Hanghøj Iversen
2018-07-31gf.cabal: expose GF.Text.Lexing, needed by gf-server.cabalThomas Hallgren
2018-07-31gf-server.cabal: relax network version bounds and make building the library ↵Thomas Hallgren
and pgf-service executable optional This allows you to build the content-service without installing the problematic fastcgi library.
2018-07-26Update READMEJohn J. Camilleri
2018-07-26Minimal update with new repo URLs & build instructionsJohn J. Camilleri
2018-07-26Fixes for buildWebJohn J. Camilleri
2018-07-25[GF Split] Post-split updatesJohn J. Camilleri
2018-07-22Merge pull request #8 from legalese/GF_LIB_PATHJohn J. Camilleri
GF_LIB_PATH can now be path1:path2:path3, not just 1path
2018-07-22explain that GF_LIB_PATH can now be a colon-separated listMeng Weng Wong
2018-07-22GF_LIB_PATH can now be path1:path2:path3, not just path1meng wong
Traditionally, GF_LIB_PATH points to something like `.../share/ghc-8.0.2-x86_64/gf-3.9/lib` and if you want prelude and alltenses and present, you add a `--# -path=.:present` compiler pragma to the top of your .gf file But if you are developing some kind of application grammar library or contrib of your own, you might find yourself repeating your library path at the top of all your .gf files. After painstakingly maintaining the same library path at the top of all your .gf files, you might say, let's factor this out into GF_LIB_PATH. Then you might then find to your surprise that GF_LIB_PATH doesn't accept the usual colon:separated:path notation familiar from, say, unix PATH and MANPATH. This patch allows you to define `GF_LIB_PATH=gf-3.9.lib:$HOME/gf-contrib/whatever/lib` in a more natural way. If you are an RGL hacker and have your own version of the RGL tree sitting somewhere, you should be able to have both paths in the GF_LIB_PATH, for added convenience. This minor convenience will probably lead to obscure bugs and great frustration when you find that your changes are mysteriously not being picked up by GF; so keep this in mind and use it cautiously. This caution should probably sit in the documentation somewhere. A subsequent commit will do that. If you use zsh, you can do this to quickly build up a big GF_LIB_PATH: % gf_lib_path=( $HOME/src/GF/lib/src/{api,abstract,common,english,api/libraryBrowser,prelude,..} ) % typeset -xT GF_LIB_PATH gf_lib_path
2018-07-19WebSetup: fail silently when example grammars don't buildJohn J. Camilleri
Also used installed RGL not built
2018-07-17Merge pull request #46 from odanoburu/constructJohn J. Camilleri
(Eng) use Extend instead of Extra in Construction