summaryrefslogtreecommitdiff
path: root/src/runtime/javascript/minibar/gf-web-api-examples.html
blob: 425b6feb915d602dbfd771b25945820f3de82f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<title>GF web services API examples</title>
<meta charset="UTF-8">

<style type="text/css">
body { background: #ddd; }
h1, h2, h3, small, th { font-family: sans-serif; }

dt { background: #cef; }
dt.js { background: white; margin-bottom: 1ex; }
dt.js em { color: #36f; }
dd { background: #ffc; margin-top: 1ex; margin-bottom: 1ex; }

dl.apiexamples>dt, dl.apiexamples>dd { font-family: monospace; }
dl.apiexamples>dd {  white-space: pre; }

div.modtime { float: right; }
.modtime { color: #666; white-space: nowrap; }

</style>

<body>
<h1>GF web services API examples</h1>

GF can be used interactively from the GF Shell. Some of the functionality
availiable in the GF shell is also available via the GF web services API.

<p>
The
<a href="http://code.google.com/p/grammatical-framework/wiki/GFWebServiceAPI">GF
Web Service API page</a> describes the calls supported by the GF web service
API. Below, we illustrate these calls by examples, and also show
how to make these calls from JavaScript using the API defined in
<a href="pgf_online.js"><code>pgf_online.js</code></a>.

<p>
<strong>Note</strong> that <code>pgf_online.js</code> was initially developed
with one particular web application in mind (the minibar), so the server API was
incomplete. It was simplified and generalized in August 2011 to support the
full API.

<dl>
  <dt class=js>These boxes show what the calls look like in the JavaScript
    API defined in <code>pgf_online.js</code>.
  <dt>These boxes show the corresponding URLs sent to the PGF server.
  <dd>These boxes show the JSON (JavaScript data structures) returned by the PGF
    server. This will be passed to the callback function supplied in the
    call.
</dl>

<h2>Initialization</h2>
<dl class=apiexamples>
  <dt class=js>
    <em>// Select which server and grammars to use:</em>
    <br>var server_options = {
    <br>&nbsp;&nbsp;grammars_url: "http://www.grammaticalframework.org/grammars/",
    <br>&nbsp;&nbsp;grammar_list: ["Foods.pgf"] <em>// It's ok to skip this</em>
    <br>}
    <br>var server = pgf_online(server_options);
</dl>

<h2>Examples</h2>

<dl class=apiexamples>
  <dt class=js> <em>//  Get the list of available grammars</em>
    <br>server.get_grammarlist(callback)
  <dt>http://localhost:41296/grammars/grammars.cgi
  <dd>["Foods.pgf","Phrasebook.pgf"]
  <dt class=js> <em>// Select which grammar to use</em>
    <br>server.switch_grammar("Foods.pgf")
  <dt class=js><em>// Get list of concrete languages and other grammar info</em>
    <br>server.grammar_info(callback)
  <dt>http://localhost:41296/grammars/Foods.pgf
  <dd>{"name":"Foods",
 "userLanguage":"FoodsEng",
 "categories":["Comment","Float","Int","Item","Kind","Quality","String"],
 "functions":["Boring","Cheese","Delicious","Expensive","Fish","Fresh",
           "Italian","Mod","Pizza","Pred","That","These","This","Those","Very",
           "Warm","Wine"],
 "languages":[{"name":"FoodsBul","languageCode":""},
 	      {"name":"FoodsEng","languageCode":"en-US"},
 	      {"name":"FoodsFin","languageCode":""},
	      {"name":"FoodsSwe","languageCode":"sv-SE"},
	      ...]
}
  <dt class=js><em>// Get a random syntax tree</em>
    <br>server.get_random({},callback)
  <dt>http://localhost:41296/grammars/Foods.pgf?command=random
  <dd>[{"tree":"Pred (That Pizza) (Very Boring)"}]
  <dt class=js><em>// Linearize a syntax tree</em>
    <br>server.linearize({tree:"Pred (That Pizza) (Very Boring)",to:"FoodsEng"},callback)
  <dt>http://localhost:41296/grammars/Foods.pgf?command=linearize&tree=Pred+(That+Pizza)+(Very+Boring)&to=FoodsEng
  <dd>[{"to":"FoodsEng","text":"that pizza is very boring"}]
  <dt class=js>server.linearize({tree:"Pred (That Pizza) (Very Boring)"},callback)
  <dt>http://localhost:41296/grammars/Foods.pgf?command=linearize&tree=Pred+(That+Pizza)+(Very+Boring)
  <dd>[{"to":"FoodsBul","text":"онази пица е много еднообразна"},
 {"to":"FoodsEng","text":"that pizza is very boring"},
 {"to":"FoodsFin","text":"tuo pizza on erittäin tylsä"},
 {"to":"FoodsSwe","text":"den där pizzan är mycket tråkig"},
 ...
]
  <dt class=js><em>// Parse a string</em>
    <br>server.parse({from:"FoodEng",input:"that pizza is very boring"},callback)
  <dt>http://localhost:41296/grammars/Foods.pgf?command=parse&input=that+pizza+is+very+boring&from=FoodsEng
  <dd>[{"from":"FoodsEng",
  "brackets":{"cat":"Comment","fid":10,"index":0,"children":[{"cat":"Item","fid":7,"index":0,"children":[{"token":"that"},{"cat":"Kind","fid":6,"index":0,"children":[{"token":"pizza"}]}]},{"token":"is"},{"cat":"Quality","fid":9,"index":0,"children":[{"token":"very"},{"cat":"Quality","fid":8,"index":0,"children":[{"token":"boring"}]}]}]},
  "trees":["Pred (That Pizza) (Very Boring)"]}]
  <dt class=js><em>// Translate to all available languages</em>
    <br>server.translate({from:"FoodEng",input:"that pizza is very boring"},callback)
  <dd>...
  <dt class=js><em>// Translate to one language</em>
    <br>server.translate({input:"that pizza is very boring", from:"FoodEng", to:"FoodSwe"}, callback)
  <dt>http://localhost:41296/grammars/Foods.pgf?command=translate&input=that+pizza+is+very+boring&from=FoodsEng&to=FoodsSwe
  <dd>[{"from":"FoodsEng",
  "brackets":{"cat":"Comment","fid":10,"index":0,"children":[{"cat":"Item","fid":7,"index":0,"children":[{"token":"that"},{"cat":"Kind","fid":6,"index":0,"children":[{"token":"pizza"}]}]},{"token":"is"},{"cat":"Quality","fid":9,"index":0,"children":[{"token":"very"},{"cat":"Quality","fid":8,"index":0,"children":[{"token":"boring"}]}]}]},
  "translations":
       [{"tree":"Pred (That Pizza) (Very Boring)",
         "linearizations":
            [{"to":"FoodsSwe",
              "text":"den där pizzan är mycket tråkig"}]}]}]
  <dt class=js><em>// Get completions (what words could come next)</em>
    <br>server.complete({from:"FoodEng",input:"that pizza is very "},callback)
  <dt>http://localhost:41296/grammars/Foods.pgf?command=complete&input=that+pizza+is+very+&from=FoodsEng
  <dd>[{"from":"FoodsEng",
  "brackets":{"cat":"_","fid":0,"index":0,"children":[{"cat":"Item","fid":7,"index":0,"children":[{"token":"that"},{"cat":"Kind","fid":6,"index":0,"children":[{"token":"pizza"}]}]},{"token":"is"},{"token":"very"}]},
  "completions":["boring","delicious","expensive","fresh","Italian","very","warm"],
  "text":""}]
</dl>
<hr>
<div class=modtime><small>
<!-- hhmts start --> Last modified: Wed Aug  3 17:19:59 CEST 2011 <!-- hhmts end -->
  </small></div>
<address><a href="http://www.cse.chalmers.se/~hallgren/">TH</a></address>