hallgren
5fd4efd960
Split pgf-server into pgf-fcgi and pgf-http.
...
The dependency on the fastcgi package made pgf-server difficult to compile, so
it is now split into
- pgf-fgci (main module in pgf-fcgi.hs), which is built only if fastcgi is
already installed or if you turn on the fastcgi flag (e.g. by doing
'cabal install -f fastcgi').
- pgf-http (main module in pgf-http.hs) which is always built (and hopefully
has no problematic dependencies.)
The modules FastCGIUtils and PGFService no longer depend on fastcgi.
2010-11-26 14:30:51 +00:00
hallgren
9532a34a2a
pgf-server: more useful JSON output from lineraizeAll
...
Example:
Request: http://www.grammaticalframework.org:41296/grammars/Quiz.pgf?command=linearizeAll&tree=Run+YouPl
Response: [{"to":"QuizEng","texts":["you run"]},
{"to":"QuizSwe","texts":["ni l??per","ni springer"]}]
Compared to the old command linearize:
Request: http://www.grammaticalframework.org:41296/grammars/Quiz.pgf?command=linearize&tree=Run+YouPl '
Response: [{"to":"QuizEng","text":"you run"},
{"to":"QuizSwe","text":"ni l??per"}]
2010-11-25 18:30:30 +00:00
aarne
62cfeef03e
linearizeAll in PGFService
2010-11-24 21:17:29 +00:00
hallgren
d0efcc035c
Make PGFService.hs compile again
...
+ PGFService.hs: add Nothing arguments in calls to PGF.parse_ and
PGF.getPArseOutput
+ gf-server.cabal: mark content-server as not buildable, since required source
files are missing.
2010-11-09 15:08:37 +00:00
krasimir
042790fdf6
the PGF service now can do both random and exhaustive generation. these functions now return both the generated tree and its linearization
2010-10-13 12:32:49 +00:00
krasimir
be9ad26aea
refactor the API for random generation again. Now PGF contains probabilities in the abstract syntax
2010-10-02 13:03:57 +00:00
krasimir
72f505d7df
update PGFService to work after the extensions in the random generation API
2010-09-30 07:35:54 +00:00
hallgren
c234222cd9
Bug fix: add missing error handler for statically served files in pgf-server HTTP mode
2010-09-02 13:54:16 +00:00
hallgren
ea67281820
Standalone HTTP version of pgf-server
...
pgf-server can now act as a standalone HTTP server. To activate this mode,
start it with
pfg-server http
to use the default port number (41296), or give an explicit port number, e.g.,
pgf-server http 8080
The HTTP server serves PGF files in the same way as the old FastCGI interface.
In addition, it also serves static files. The document root for static files
is the www subdirectory of the current directory where pgf-server is started.
In spite of these addition, backwards compatibility is maintaned. The old
FastCGI interface continues to work as before. (It is activated when
pgf-server is started without arguments.)
2010-09-01 14:08:52 +00:00
krasimir
9aa7c88c5a
native representation for HOAS in PMCFG and incremental type checking of the parse forest
2010-08-09 10:10:08 +00:00
krasimir
b20821dfc3
more advanced complete function in the PGFService
2010-08-24 15:58:22 +00:00
krasimir
39e83436e2
bugfix in the PGF browser
2010-07-31 16:04:15 +00:00
krasimir
57ec23e630
the PGF service now generates samples of the syntax in the browsing information
2010-07-31 15:54:03 +00:00
krasimir
fefd78222a
fix: PGFService should type-check the trees that comes from the user
2010-07-31 10:45:59 +00:00
krasimir
b57dda5d94
detailed information for the type errors from PGFService
2010-07-13 15:33:54 +00:00
krasimir
0dbe60b7bf
FridgeApp and TranslateApp now show the type errors
2010-07-08 07:57:36 +00:00
krasimir
1a7210dc18
fix PGFService after the change in the parser API
2010-07-07 14:46:24 +00:00
aarne
b66d93f44f
disambiguation in Phrasebook: show Eng instead of AST if DisambL is missing; show all alternative disambiguations for each alternative translation
2010-05-28 03:40:35 +00:00
krasimir
8742ebee38
for backward compatibility we have the old parse function again. the old functionality is exposed by parse_
2010-04-30 20:18:26 +00:00
krasimir
a3e1d43318
fix PGFService after the change in the API
2010-04-30 15:09:21 +00:00
krasimir
f806a7890d
now the PGF service communicates with Graphviz using UTF8 for the input and binary for the output
2010-04-22 14:01:08 +00:00
aarne
1040f2a10d
in PGFService disambiguation, show tree if there's no disamb grammar
2010-04-04 20:45:50 +00:00
aarne
66cca22f38
simplified the treatment of politeness in Phrasebook
2010-03-30 18:48:59 +00:00
aarne
0e91a4d84d
disambiguation in Phrasebook grammars, PGF server, and the GUI
2010-03-30 15:39:11 +00:00
aarne
1c088506b3
catching initial bind symbol in PGFServer
2010-03-28 20:32:03 +00:00
aarne
5c0fb2cb7e
text-like unlexer for phrasebook web service
2010-03-26 22:08:48 +00:00
aarne
5e4548e4da
fixes for webdemos, including bug in StructuralIta
2010-03-26 17:38:20 +00:00
aarne
cd25764350
www api command translategroup, which uses groupResults
2010-03-22 22:04:36 +00:00
hallgren
e239e3331a
Quick fix to adapt to new version of the PGF library.
2010-03-04 18:46:18 +00:00
krasimir
836e742ddf
TranslateApp now have browser for abstract syntax
2009-11-29 14:51:12 +00:00
krasimir
abe21f6fbb
function doListGrammars in PGFService is obsolete
2009-11-26 16:27:04 +00:00
krasimir
12d64654d7
the default function of the PGFService should return list of functions as well as list of categories
2009-11-26 14:47:35 +00:00
krasimir
b596086edf
change PGF.categories to return list of identifiers instead of types
2009-11-26 14:43:31 +00:00
krasimir
73e1f0e81e
added tree visualizations in TranslateApp
2009-10-24 10:38:21 +00:00
krasimir
3cf44aaa74
make the GF server to compile after that changes in the PGF runtime
2009-10-15 11:32:25 +00:00
krasimir
fe74414462
the grammars are now recognized by extension i.e. .pgf is grammar just like .php is a PHP script
2009-01-25 22:06:20 +00:00
krasimir
5913e10c44
the pgf-server is single-threaded on Windows
2009-01-25 22:04:59 +00:00
bjorn
bfa73d40fc
pgf server: return 1 result for /random without limit argument.
2008-12-04 13:54:43 +00:00
bjorn
de09e64892
pgf.fcgi: don't install any signal handlers. Since we didn't look at the variable they set, we just created zombies.
2008-11-20 15:00:53 +00:00
bjorn
76b8d37824
pgf-server: write stderr to pgf-error.log, since lighttpd closes stderr for fastcgi processes.
2008-11-04 09:28:21 +00:00
bjorn
75c5c52179
Added /random to pgf-server.
2008-11-04 09:09:22 +00:00
bjorn
12ecbdc89f
gf-server: complete noew sorts case-insensitive
2008-11-03 16:43:19 +00:00
bjorn
3e40a907ca
gf-server: added a way to list the available pgf files
2008-10-29 20:45:18 +00:00
bjorn
681648fb05
Rename MainFastCGI.hs to PGFService.hs.
2008-10-29 19:49:38 +00:00