kr.angelov
a9ebeaea44
now fully functional Java API for custom literals
2014-04-10 14:14:31 +00:00
kr.angelov
3a0aa8b997
bugfix in the C runtime
2014-04-10 07:42:49 +00:00
aarne
0525c7837a
improved generation of BNC dictionaries ; now called TopDictionary for clarity
2014-04-10 13:07:05 +00:00
aarne
7eb4097681
added a list of split word senses and their explanations generated from Dictionary.gf
2014-04-10 11:58:22 +00:00
aarne
7a8706aa7e
removed but_Subj from Dictionary: but is never a subjunction, and treating it so causes word order errors in many languages
2014-04-10 11:53:11 +00:00
kr.angelov
66d60ce9d1
a quick hack to enable the NERC from bindings. This should be made available from the API but for now I just hacked the C runtime
2014-04-10 07:27:07 +00:00
aarne
4b34c51e4c
more automatic creation of files in CheckDict ; words for translation in DictionaryFre
2014-04-10 07:06:57 +00:00
hallgren
37c473a559
Wide Coverage Demo App: new buttons: to switch colors on/off & to try Google Translate
2014-04-09 20:51:31 +00:00
hallgren
739dc3f29d
localstorage.js: bug fix
...
If you stored "false" and tried to retrieve it with a default value, you got
the default value instead of "false".
2014-04-09 20:49:53 +00:00
hallgren
17cf501d4c
Wide Coverage Demo App: use PGF service lexing/unlexing
...
It is now enough to make one server call per translation, and the results can
cached by the browser.
2014-04-09 19:49:45 +00:00
hallgren
43e61a1e3b
PGF web service: add unlexers and enable client side caching
...
Most PGF web API commands that produce linearizations now accept an
unlexer parameter. Possible values are "text", "code" and "mixed".
The web service now include Date and Last-Modified headers in the HTTP,
responses. This means that browsers can treat responses as static content and
cache them, so it becomes less critical to cache parse results in the server.
Also did some cleanup in PGFService.hs, e.g. removed a couple of functions
that can now be imported from PGF.Lexing instead.
2014-04-09 17:51:25 +00:00
hallgren
f2cc1d2c68
Change the type of PGF.Lexing.bindTok to [String] -> [String]
...
The old type was [String] -> String. This function was only used
in GF.Text.Lexing.stringOp, which now uses (unwords . bindTok) instead,
with no change in behaviour.
2014-04-09 17:39:21 +00:00
hallgren
0d1ad2f0e5
Unlexers: move capitalization of first word from GF.Text.Lexing to PGF.Lexing
...
The capitalization of the first word was done in GF.Text.Lexing.stringOp,
but is now done in the functions unlexText and unlexMixed in PGF.Lexing.
These functions are only used in stringOp and in PGFService (where the change
is needed), so the subtle change in behaviour should not cause any bugs.
2014-04-09 17:26:23 +00:00
aarne
1397bb4528
restored passives in Extensions for Bul,Fre,Ita,Spa ; PassAgentVPSlash in ExtraBul to be verified
2014-04-09 16:16:32 +00:00
hallgren
1602eab5b6
PGF Service: a bit more clever lexer=text
...
Only change the first word to lowercase if the original input is not found in
the grammar's morphology. This allows parsing of sentenses starting with "I" in
English, nouns in German and proper names in other languages, but it can make
the wrong choice for multi-words.
2014-04-09 14:13:18 +00:00
hallgren
02b57c3f79
Wide Coverage Demo App updates
...
+ Add Clear button.
+ Use localstorage to remember entered text between visits.
+ Add a link to it on the GF cloud service start page.
2014-04-09 13:59:35 +00:00
aarne
6c7f1245ce
more passives in App. Import changes are now produced with MkApp.hs, which copies the exclude list from App.gf to the concrete syntax files.
2014-04-09 14:01:06 +00:00
aarne
6d6d641b73
more explicit inheritance list for Extensions in Translate
2014-04-09 13:06:14 +00:00
aarne
d1cddd04aa
rewrote App so that it just inherits Translate and excludes some functions. This minimizes the duplication of code between Translate and App. Also added some functions, which make App 15% slower but increase the coverage and quality. This trade-off has to be studied further.
2014-04-09 13:04:19 +00:00
aarne
6fc7271950
adjusted the contents of Translate.gf: (1) inherit everything in Idiom since it is useful and cheap ; (2) inherit ComplVV and SlashV2V from Verb rather than Extensions, since it is more efficient and already available for all languages. Actually the previous version didn't have these functions at all, which affected the quality quite a bit.
2014-04-09 09:40:43 +00:00
aarne
edcb328b70
revised TopDict Ger,Ita,Spa with the new Dictionary improvements
2014-04-08 21:18:39 +00:00
hallgren
5d4b849b14
Fix build problem in PGFService.hs when configured without c-runtime
2014-04-08 20:45:54 +00:00
aarne
2ca8024ba4
smart paradigm for refl verbs ending "se" in Spa
2014-04-08 20:28:27 +00:00
aarne
70dddec7e1
further clean-up in DictionaryIta and Spa
2014-04-08 20:21:37 +00:00
aarne
d7e25e7bdd
DictionarySpa and Ita: retrieved a few thousand unpredictable noun genders from Wiktionary
2014-04-08 19:44:18 +00:00
hallgren
0341fd035f
PGF web service: add lexer support
...
The PGF web API commands parse, translate, translategroup, c-parse and
c-translate now support a lexer parameter. Possible values are "text",
"code" and "mixed".
This is used in the Wide Coverage Demo App to save one server roundtrip.
2014-04-08 16:10:33 +00:00
aarne
8c3d91f405
small fixes in App grammar - don't affect performance
2014-04-08 16:14:05 +00:00
aarne
8fc7cc5541
some words in DictionaryGer
2014-04-08 16:13:46 +00:00
aarne
0d564c15ff
smartened Paradigms in Ita and Spa to recognize some more nouns as feminine
2014-04-08 15:37:43 +00:00
aarne
72b6d8da9c
checked 600 entries in DictionaryFre ; CheckDict.hs, functions for dictionary checking
2014-04-08 15:12:34 +00:00
hallgren
cf34ee8890
Move basic lexing functions from GF.Text.Lexing to the new module PGF.Lexing
...
They are thus part of the PGF Run-Time Library, making it possible to add
lexing functionality in PGF service in a natural way.
2014-04-08 14:07:49 +00:00
hallgren
4f2bd4aa5f
Wide Coverage Demo App: remove quality markers ("+" or "*") before unlexing
...
Otherwise the first word won't be capitalized.
2014-04-08 13:46:57 +00:00
kr.angelov
be62b047f4
added preliminary API for custom literals from Java. Not functional yet
2014-04-08 13:54:49 +00:00
aarne
2198d18d3a
TopDictFre checked to 500
2014-04-08 12:53:03 +00:00
kr.angelov
52377b46cf
bugfix in the C runtime that shows up with only some grammars
2014-04-08 12:41:41 +00:00
hallgren
581a0336a5
Wide Coverage Demo App: restore swap button
2014-04-08 11:32:54 +00:00
aarne
feb4ff5dd1
plural of stad in Dut
2014-04-08 09:19:50 +00:00
aarne
04f9a50da0
some new ParadigmsFre and DictionarySwe
2014-04-07 20:23:11 +00:00
aarne
02a0372b41
checked 300+ words in TopDictFre ; not yet merged in DictionaryFre
2014-04-07 20:22:42 +00:00
hallgren
9f3e9d8626
demos/translation.t2t: more space for the demo app
2014-04-07 13:01:00 +00:00
hallgren
620f30d187
Wide Coverage Demo Web App: add segmentation
...
Click on sentences to choose among alternative translations.
2014-04-07 12:51:13 +00:00
kr.angelov
baef6eee90
Expr and ExprProb are now serializable objects
2014-04-07 12:52:51 +00:00
kr.angelov
e4555d2dce
fix in the keyboard
2014-04-07 12:42:02 +00:00
kr.angelov
dc476cce50
added alternative_item.xml
2014-04-07 12:41:23 +00:00
aarne
2825f9e420
VPI chunks linearized ; nouns with ión in Spanish and zione in Italian marked as feminine
2014-04-07 12:02:52 +00:00
kr.angelov
1671383e1c
another fix in DictionaryBul
2014-04-07 09:53:31 +00:00
kr.angelov
024321b520
fixes in DictionaryBul
2014-04-07 09:52:12 +00:00
kr.angelov
78e7f0e87d
a bit more text in the help
2014-04-07 09:43:20 +00:00
kr.angelov
e8303dc761
show alternative translations on Android
2014-04-07 09:14:14 +00:00
aarne
0df4d4bef6
restored passives in Translate, generalized IdRP in Eng
2014-04-07 07:57:55 +00:00