|
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
|
#-*- coding:utf-8 -*-
from semantics.models import LexicalUnitExamples
#Copyright (c) 2015, Bartłomiej Nitoń
#All rights reserved.
#Redistribution and use in source and binary forms, with or without modification, are permitted provided
#that the following conditions are met:
# Redistributions of source code must retain the above copyright notice, this list of conditions and
# the following disclaimer.
# Redistributions in binary form must reproduce the above copyright notice, this list of conditions
# and the following disclaimer in the documentation and/or other materials provided with the distribution.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
'''
File with functions responsible for creating TEI xml.
'''
import datetime
import operator
from lxml import etree
from xml.sax.saxutils import escape
|
|
34
35
36
|
from dictionary.models import Atribute_Model, Frame_Opinion_Value, Frame_Char_Model, \
PositionCategory, Argument_Model, \
sortArguments, sortatributes, sortPositions, sort_positions
|
|
37
38
39
40
|
XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'
|
|
41
|
def createteixml(outpath, lemmas, frame_opinion_values):
|
|
42
43
|
root = write_root()
write_header(root)
|
|
44
45
46
47
48
49
|
#lemmas = lemmas.filter(entry=u'brnąć')
write_entries(root, lemmas, frame_opinion_values)
with open(outpath, 'w') as output_file:
output_file.write(etree.tostring(root, pretty_print=True,
xml_declaration=True, encoding='UTF-8',
doctype=u'<!DOCTYPE TEI SYSTEM "tei_all.dtd">'))
|
|
50
51
52
|
def write_root():
root = etree.Element('TEI')
|
|
53
54
|
root.attrib[etree.QName(XML_NAMESPACE, 'lang')] = u'pl'
root.attrib['xmlns'] = u'http://www.tei-c.org/ns/1.0'
|
|
55
56
57
58
59
60
61
62
|
return root
def write_header(root):
tei_header = etree.SubElement(root, 'teiHeader')
file_desc = etree.SubElement(tei_header, 'fileDesc')
title_stmt = etree.SubElement(file_desc, 'titleStmt')
title = etree.SubElement(title_stmt, 'title')
|
|
63
64
|
title.text = u'Polish Valence Dictionary (Walenty)'
|
|
65
66
|
publication_stmt = etree.SubElement(file_desc, 'publicationStmt')
publisher = etree.SubElement(publication_stmt, 'publisher')
|
|
67
|
publisher.text = u'IPI PAN ZIL'
|
|
68
69
70
71
72
|
date = etree.SubElement(publication_stmt, 'date')
date.attrib['when'] = datetime.datetime.now().strftime('%Y-%m-%d')
source_desc = etree.SubElement(file_desc, 'sourceDesc')
p = etree.SubElement(source_desc, 'p')
|
|
73
|
p.text = u'File generated using Slowal. Mentioned tool available at: walenty.ipipan.waw.pl.'
|
|
74
|
|
|
75
|
def write_entries(root, lemmas, frame_opinion_values):
|
|
76
77
78
|
text = etree.SubElement(root, 'text')
body = etree.SubElement(text, 'body')
for lemma in lemmas:
|
|
79
80
|
frame_opinions = lemma.frame_opinions.filter(value__in=frame_opinion_values)
write_entry(body, lemma, frame_opinions, frame_opinion_values)
|
|
81
|
|
|
82
|
def write_entry(body_elem, lemma, frame_opinions, frame_opinion_values):
|
|
83
84
85
86
87
88
89
90
91
92
|
entry_xml_id = 'wal_%s-ent' % str(lemma.entry_obj.id)
entry_elem = etree.SubElement(body_elem, 'entry')
entry_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = entry_xml_id
form_elem = etree.SubElement(entry_elem, 'form')
orth_elem = etree.SubElement(form_elem, 'orth')
orth_elem.text = lemma.entry
pos_elem = etree.SubElement(form_elem, 'pos')
pos_elem.text = lemma.entry_obj.pos.tag
|
|
93
|
write_syntactic_layer(entry_elem, lemma, frame_opinions, frame_opinion_values)
|
|
94
95
96
97
98
|
write_examples_layer(entry_elem, lemma)
write_semantic_layer(entry_elem, lemma)
write_meanings_layer(entry_elem, lemma)
write_connections_layer(entry_elem, lemma)
|
|
99
|
def write_syntactic_layer(entry_elem, lemma, frame_opinions, frame_opinion_values):
|
|
100
|
synt_layer_fs_elem = etree.SubElement(entry_elem, 'fs')
|
|
101
|
synt_layer_fs_elem.attrib['type'] = 'syntactic_layer'
|
|
102
103
104
|
schemata_f_elem = etree.SubElement(synt_layer_fs_elem, 'f')
schemata_f_elem.attrib['name'] = 'schemata'
vColl_elem = etree.SubElement(schemata_f_elem, 'vColl')
|
|
105
|
vColl_elem.attrib['org'] = 'set'
|
|
106
|
|
|
107
108
109
110
|
for reflex_val in lemma.get_existing_frame_char_values(u'ZWROTNOŚĆ'):
for neg_val in lemma.get_existing_frame_char_values(u'NEGATYWNOŚĆ'):
for pred_val in lemma.get_existing_frame_char_values(u'PREDYKATYWNOŚĆ'):
for aspect_val in lemma.get_existing_frame_char_values(u'ASPEKT'):
|
|
111
112
113
114
115
|
matchingframes = lemma.get_frames_by_char_values(reflex_val=reflex_val,
neg_val=neg_val,
pred_val=pred_val,
aspect_val=aspect_val).order_by('text_rep')
for frame in matchingframes:
|
|
116
117
|
if (not frame_opinion_values.exists() or
frame_opinions.filter(frame=frame).exists()):
|
|
118
|
write_schema(vColl_elem, frame, lemma)
|
|
119
|
|
|
120
|
def write_schema(parent_elem, schema, lemma):
|
|
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
schema_xml_id = 'wal_%s.%s-sch' % (str(lemma.entry_obj.id), str(schema.id))
schema_fs_elem = etree.SubElement(parent_elem, 'fs')
schema_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = schema_xml_id
schema_fs_elem.attrib['type'] = 'schema'
# opinia o ramce
try:
schema_opinion = lemma.frame_opinions.filter(frame=schema).all()[0].value.short
except IndexError:
schema_opinion = 'unk'
opinion_f_elem = etree.SubElement(schema_fs_elem, 'f')
opinion_f_elem.attrib['name'] = 'opinion'
opinion_symbol = etree.SubElement(opinion_f_elem, 'symbol')
opinion_symbol.attrib['value'] = schema_opinion
# zwrotnosc
|
|
138
|
reflex = schema.characteristics.get(type=u'ZWROTNOŚĆ')
|
|
139
|
selfmark_f_elem = etree.SubElement(schema_fs_elem, 'f')
|
|
140
|
selfmark_f_elem.attrib['name'] = 'reflexive_mark'
|
|
141
|
selfmark_binary = etree.SubElement(selfmark_f_elem, 'binary')
|
|
142
143
144
145
|
if reflex.value.value:
selfmark_binary.attrib['value'] = 'true'
else:
selfmark_binary.attrib['value'] = 'false'
|
|
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
# aspekt
aspect = schema.characteristics.get(type=u'ASPEKT').value.value
aspect_f_elem = etree.SubElement(schema_fs_elem, 'f')
aspect_f_elem.attrib['name'] = 'aspect'
if aspect:
aspect_symbol = etree.SubElement(aspect_f_elem, 'symbol')
aspect_symbol.attrib['value'] = aspect
# negatywnosc
negativity = schema.characteristics.get(type=u'NEGATYWNOŚĆ').value.value
negativity_f_elem = etree.SubElement(schema_fs_elem, 'f')
negativity_f_elem.attrib['name'] = 'negativity'
if negativity:
negativity_symbol = etree.SubElement(negativity_f_elem, 'symbol')
negativity_symbol.attrib['value'] = negativity
# predykatywnosc
predicativity = schema.characteristics.get(type=u'PREDYKATYWNOŚĆ').value.value
predicativity_f_elem = etree.SubElement(schema_fs_elem, 'f')
predicativity_f_elem.attrib['name'] = 'predicativity'
|
|
167
|
predicativity_binary = etree.SubElement(predicativity_f_elem, 'binary')
|
|
168
|
if predicativity:
|
|
169
170
171
|
predicativity_binary.attrib['value'] = 'true'
else:
predicativity_binary.attrib['value'] = 'false'
|
|
172
173
|
# pozycje składniowe
|
|
174
|
write_positions_feature(schema, schema_xml_id, schema_fs_elem)
|
|
175
|
|
|
176
|
def write_positions_feature(schema, schema_xml_id, parent_elem):
|
|
177
178
179
180
181
|
sorted_pos_dict = sortPositions(schema.positions.all())
if sorted_pos_dict:
positions_f_elem = etree.SubElement(parent_elem, 'f')
positions_f_elem.attrib['name'] = 'positions'
vColl_elem = etree.SubElement(positions_f_elem, 'vColl')
|
|
182
|
vColl_elem.attrib['org'] = 'set'
|
|
183
|
for position in sorted_pos_dict:
|
|
184
|
write_position_elem(vColl_elem, schema_xml_id, position['position'])
|
|
185
|
|
|
186
187
|
def write_position_elem(parent_elem, schema_xml_id, position):
position_xml_id = None
|
|
188
|
position_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
189
190
191
|
if schema_xml_id:
position_xml_id = schema_xml_id.replace(u'-sch', '.%d-psn' % position.id)
position_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = position_xml_id
|
|
192
193
194
195
196
197
198
199
200
201
|
position_fs_elem.attrib['type'] = 'position'
functions = position.categories.filter(control=False)
if functions.exists():
function_f_elem = etree.SubElement(position_fs_elem, 'f')
function_f_elem.attrib['name'] = 'function'
function_symbol_elem = etree.SubElement(function_f_elem, 'symbol')
function_symbol_elem.attrib['value'] = functions[0].category
write_control_features(position_fs_elem, position)
|
|
202
|
write_phrases_feature(position_fs_elem, position, position_xml_id)
|
|
203
204
205
206
|
def write_control_features(parent_elem, position):
controls1 = position.categories.filter(control=True).exclude(category__endswith='2')
controls2 = position.categories.filter(control=True, category__endswith='2')
|
|
207
208
209
210
211
212
213
214
215
216
217
218
219
|
if controls1.exists() or controls2.exists():
control_f_elem = etree.SubElement(parent_elem, 'f')
control_f_elem.attrib['name'] = 'control'
vColl_elem = etree.SubElement(control_f_elem, 'vColl')
vColl_elem.attrib['org'] = 'set'
if controls1.exists():
control = controls1[0].category
control1_symbol_elem = etree.SubElement(vColl_elem, 'symbol')
control1_symbol_elem.attrib['value'] = control
if controls2.exists():
control = controls2[0].category
control2_symbol_elem = etree.SubElement(vColl_elem, 'symbol')
control2_symbol_elem.attrib['value'] = control
|
|
220
|
|
|
221
222
|
def write_phrases_feature(parent_elem, position, position_xml_id):
sorted_phrases = sortArguments(position.arguments.all())
|
|
223
224
225
226
|
if sorted_phrases:
phrases_f_elem = etree.SubElement(parent_elem, 'f')
phrases_f_elem.attrib['name'] = 'phrases'
vColl_elem = etree.SubElement(phrases_f_elem, 'vColl')
|
|
227
|
vColl_elem.attrib['org'] = 'set'
|
|
228
229
230
231
232
|
for phrase in sorted_phrases:
write_phrase(vColl_elem, phrase, position_xml_id)
def write_phrase(parent_elem, phrase, position_xml_id):
phrase_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
233
234
235
|
if position_xml_id:
phrase_xml_id = position_xml_id.replace(u'-psn', '.%d-phr' % phrase.id)
phrase_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = phrase_xml_id
|
|
236
|
phrase_fs_elem.attrib['type'] = phrase.type
|
|
237
238
239
240
241
|
write_attributes(phrase_fs_elem, phrase)
def write_attributes(parent_elem, phrase):
attributes = sortatributes(phrase)
for attribute in attributes:
|
|
242
|
write_attribute(parent_elem, attribute)
|
|
243
|
|
|
244
|
def write_attribute(parent_elem, attribute):
|
|
245
246
247
|
attribute_model = Atribute_Model.objects.get(atr_model_name=attribute.type)
attr_f_elem = etree.SubElement(parent_elem, 'f')
attr_f_elem.attrib['name'] = attribute_model.sym_name
|
|
248
249
250
|
attribute_type = attribute_model.type.sym_name
selection_modes = attribute_model.values_selection_modes
|
|
251
|
if attribute_type == 'text' and not selection_modes.exists():
|
|
252
253
|
write_simple_text_attr(attr_f_elem, attribute)
elif attribute_type == 'text' and selection_modes.exists():
|
|
254
|
write_complex_text_attr(attr_f_elem, attribute_model, attribute)
|
|
255
|
elif attribute_type == 'parameter' and not selection_modes.exists():
|
|
256
|
write_simple_parameter_attr(attr_f_elem, attribute_model, attribute)
|
|
257
|
elif attribute_type == 'parameter' and selection_modes.exists():
|
|
258
|
write_complex_parameter_attr(attr_f_elem, attribute_model, attribute)
|
|
259
260
261
262
263
264
|
elif attribute_type == 'argument' and not selection_modes.exists():
write_simple_phrase_type_attr(attr_f_elem, attribute)
elif attribute_type == 'argument' and selection_modes.exists():
write_complex_phrase_type_attr(attr_f_elem, attribute)
elif attribute_type == 'position':
write_complex_position_attr(attr_f_elem, attribute)
|
|
265
266
267
|
def write_simple_text_attr(parent_elem, attribute):
string_elem = etree.SubElement(parent_elem, 'string')
|
|
268
|
string_elem.text = unicode(attribute).strip("'")
|
|
269
|
|
|
270
|
def write_complex_text_attr(parent_elem, attribute_model, attribute):
|
|
271
|
complex_lemma_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
272
273
|
complex_lemma_fs_elem.attrib['type'] = '%s_def' % parent_elem.attrib['name']
write_selection_mode_and_separator(complex_lemma_fs_elem, attribute_model, attribute)
|
|
274
275
|
write_lemmas(complex_lemma_fs_elem, attribute)
|
|
276
277
278
279
280
|
def write_selection_mode_and_separator(parent_elem, attr_model, attribute):
if attribute.selection_mode:
selection_mode = attribute.selection_mode.name
else:
selection_mode = attr_model.values_selection_modes.order_by('priority')[0].name
|
|
281
|
sel_mode_f_elem = etree.SubElement(parent_elem, 'f')
|
|
282
|
sel_mode_f_elem.attrib['name'] = 'selection_mode'
|
|
283
284
285
|
sel_mode_symbol_elem = etree.SubElement(sel_mode_f_elem, 'symbol')
sel_mode_symbol_elem.attrib['value'] = selection_mode
|
|
286
287
288
289
290
291
292
293
|
if attribute.separator:
separator = attribute.separator.symbol
else:
separator = attr_model.value_separators.order_by('priority')[0].symbol
if separator == ';':
separator = 'coord'
elif separator == ',':
separator = 'concat'
|
|
294
|
separator_f_elem = etree.SubElement(parent_elem, 'f')
|
|
295
|
separator_f_elem.attrib['name'] = 'cooccurrence'
|
|
296
297
298
299
|
separator_symbol_elem = etree.SubElement(separator_f_elem, 'symbol')
separator_symbol_elem.attrib['value'] = separator
def write_lemmas(parent_elem, attribute):
|
|
300
|
lemmas = [unicode(value) for value in attribute.values.order_by('text')]
|
|
301
302
303
|
lemmas_f_elem = etree.SubElement(parent_elem, 'f')
lemmas_f_elem.attrib['name'] = 'lemmas'
vColl_elem = etree.SubElement(lemmas_f_elem, 'vColl')
|
|
304
|
vColl_elem.attrib['org'] = 'set'
|
|
305
306
|
for lemma in lemmas:
|
|
307
308
309
|
string_elem = etree.SubElement(vColl_elem, 'string')
string_elem.text = lemma.strip("'")
|
|
310
|
def write_simple_parameter_attr(parent_elem, attribute_model, attribute):
|
|
311
|
param_value = attribute.values.all()[0]
|
|
312
|
write_parameter(parent_elem, attribute_model, param_value)
|
|
313
|
|
|
314
315
|
def write_parameter(parent_elem, attribute_model, param_value):
if attribute_model.use_subparams():
|
|
316
|
param_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
317
|
param_fs_elem.attrib['type'] = '%s_def' % parent_elem.attrib['name']
|
|
318
|
|
|
319
320
321
|
value_f_elem = etree.SubElement(param_fs_elem, 'f')
value_f_elem.attrib['name'] = 'conjunction'
value = param_value.parameter.type.name
|
|
322
323
|
symbol_elem = etree.SubElement(value_f_elem, 'symbol')
symbol_elem.attrib['value'] = value
|
|
324
325
|
if param_value.parameter.subparameters.exists():
write_parameter_subparameters(param_fs_elem, param_value.parameter)
|
|
326
327
|
else:
value = unicode(param_value)
|
|
328
329
330
331
332
333
334
|
if attribute_model.sym_name == 'reflexive_mark':
selfmark_binary = etree.SubElement(parent_elem, 'binary')
if value:
selfmark_binary.attrib['value'] = 'true'
else:
selfmark_binary.attrib['value'] = 'false'
elif value:
|
|
335
336
|
symbol_elem = etree.SubElement(parent_elem, 'symbol')
symbol_elem.attrib['value'] = value
|
|
337
|
|
|
338
339
|
def write_parameter_subparameters(parent_elem, parameter):
subparams_f_elem = etree.SubElement(parent_elem, 'f')
|
|
340
|
subparams_f_elem.attrib['name'] = 'constraints'
|
|
341
342
343
344
345
346
347
348
|
vColl_elem = etree.SubElement(subparams_f_elem, 'vColl')
vColl_elem.attrib['org'] = 'set'
for subparameter in parameter.subparameters.order_by('name'):
write_subparameter(vColl_elem, subparameter)
def write_subparameter(parent_elem, subparameter):
symbol_elem = etree.SubElement(parent_elem, 'symbol')
symbol_elem.attrib['value'] = subparameter.name
|
|
349
|
|
|
350
|
def write_complex_parameter_attr(parent_elem, attribute_model, attribute):
|
|
351
352
353
|
vColl_elem = etree.SubElement(parent_elem, 'vColl')
vColl_elem.attrib['org'] = 'set'
for value in attribute.values.order_by('parameter__type'):
|
|
354
|
write_parameter(vColl_elem, attribute_model, value)
|
|
355
356
357
358
359
360
361
362
363
364
365
|
def write_simple_phrase_type_attr(parent_elem, attribute):
write_phrase(parent_elem, attribute.values.all()[0].argument, None)
def write_complex_phrase_type_attr(parent_elem, attribute):
selection_mode = attribute.selection_mode
if selection_mode.sym_name == 'list':
phrases = [value.argument for value in attribute.values.all()]
write_phrases_set(parent_elem, phrases)
else:
complex_phrase_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
366
|
complex_phrase_fs_elem.attrib['type'] = '%s_def' % parent_elem.attrib['name']
|
|
367
368
369
370
371
372
373
374
375
376
377
378
|
write_typed_phrase_attr(complex_phrase_fs_elem, attribute)
def write_phrases_set(parent_elem, phrases):
vColl_elem = etree.SubElement(parent_elem, 'vColl')
vColl_elem.attrib['org'] = 'set'
sorted_phrases = sortArguments(phrases)
for phrase in sorted_phrases:
write_phrase(vColl_elem, phrase, None)
def write_typed_phrase_attr(parent_elem, attribute):
selection_mode = attribute.selection_mode
type_f_elem = etree.SubElement(parent_elem, 'f')
|
|
379
|
type_f_elem.attrib['name'] = 'name'
|
|
380
381
382
383
384
|
symbol_elem = etree.SubElement(type_f_elem, 'symbol')
symbol_elem.attrib['value'] = selection_mode.name
if attribute.values.exists():
phrases_f_elem = etree.SubElement(parent_elem, 'f')
|
|
385
|
phrases_f_elem.attrib['name'] = 'constraints'
|
|
386
387
388
389
390
|
phrases = [value.argument for value in attribute.values.all()]
write_phrases_set(phrases_f_elem, phrases)
def write_complex_position_attr(parent_elem, attribute):
complex_positions_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
391
|
complex_positions_fs_elem.attrib['type'] = '%s_def' % parent_elem.attrib['name']
|
|
392
393
394
395
396
397
398
399
400
401
402
403
|
selection_mode = attribute.selection_mode
type_f_elem = etree.SubElement(complex_positions_fs_elem, 'f')
type_f_elem.attrib['name'] = 'type'
symbol_elem = etree.SubElement(type_f_elem, 'symbol')
symbol_elem.attrib['value'] = selection_mode.name
if attribute.values.exists():
positions_f_elem = etree.SubElement(complex_positions_fs_elem, 'f')
positions_f_elem.attrib['name'] = 'positions'
vColl_elem = etree.SubElement(positions_f_elem, 'vColl')
vColl_elem.attrib['org'] = 'set'
|
|
404
|
|
|
405
406
407
408
|
positions = [value.position for value in attribute.values.all()]
sorted_positions = sort_positions(positions)
for position in sorted_positions:
write_position_elem(vColl_elem, None, position)
|
|
409
410
411
|
def write_examples_layer(parent_elem, lemma):
examples_layer_elem = etree.SubElement(parent_elem, 'fs')
|
|
412
|
examples_layer_elem.attrib['type'] = 'examples_layer'
|
|
413
414
415
416
417
|
examples_f_elem = etree.SubElement(examples_layer_elem, 'f')
examples_f_elem.attrib['name'] = 'examples'
vColl_elem = etree.SubElement(examples_f_elem, 'vColl')
|
|
418
|
vColl_elem.attrib['org'] = 'set'
|
|
419
420
|
write_examples_feature(vColl_elem, lemma)
|
|
421
|
|
|
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
|
def write_examples_feature(parent_elem, lemma):
entry = lemma.entry_obj
for example in lemma.nkjp_examples.order_by('opinion__priority').all():
write_example(parent_elem, entry, example)
for example in lemma.lemma_nkjp_examples.order_by('opinion__priority').all():
write_example(parent_elem, entry, example)
def write_example(parent_elem, entry, example):
example_xml_id = u'wal_%s.%s-exm' % (str(entry.id), str(example.id))
example_fs_elem = etree.SubElement(parent_elem, 'fs')
example_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = example_xml_id
example_fs_elem.attrib['type'] = 'example'
get_and_write_meaning_link(example_fs_elem, entry, example)
write_phrases_links(example_fs_elem, entry, example)
sentence_f_elem = etree.SubElement(example_fs_elem, 'f')
sentence_f_elem.attrib['name'] = 'sentence'
sentence_content_elem = etree.SubElement(sentence_f_elem, 'string')
sentence_content_elem.text = escape(example.sentence)
# trzeba do zrodel dodac nazwy symboliczne
source_f_elem = etree.SubElement(example_fs_elem, 'f')
source_f_elem.attrib['name'] = 'source'
source_symbol_elem = etree.SubElement(source_f_elem, 'symbol')
source_symbol_elem.attrib['value'] = example.source.sym_name
opinion_f_elem = etree.SubElement(example_fs_elem, 'f')
opinion_f_elem.attrib['name'] = 'opinion'
opinion_symbol_elem = etree.SubElement(opinion_f_elem, 'symbol')
opinion_symbol_elem.attrib['value'] = example.opinion.opinion
|
|
455
456
457
458
459
|
if example.comment:
note_f_elem = etree.SubElement(example_fs_elem, 'f')
note_f_elem.attrib['name'] = 'note'
note_content_elem = etree.SubElement(note_f_elem, 'string')
note_content_elem.text = escape(example.comment)
|
|
460
461
462
463
464
465
466
467
468
469
470
471
472
|
def get_and_write_meaning_link(parent_elem, entry, example):
try:
lex_unit_example = LexicalUnitExamples.objects.get(example=example,
lexical_unit__base=entry.name)
meaning = lex_unit_example.lexical_unit
meaning_xml_id = u'#wal_%s.%s-mng' % (str(entry.id), str(meaning.id))
meaning_f_elem = etree.SubElement(parent_elem, 'f')
meaning_f_elem.attrib['name'] = 'meaning'
meaning_link_elem = etree.SubElement(meaning_f_elem, 'fs')
meaning_link_elem.attrib['sameAs'] = meaning_xml_id
|
|
473
|
meaning_link_elem.attrib['type'] = 'lexical_unit'
|
|
474
475
476
477
478
479
480
481
|
except LexicalUnitExamples.DoesNotExist:
pass
def write_phrases_links(parent_elem, entry, example):
phrases_f_elem = etree.SubElement(parent_elem, 'f')
phrases_f_elem.attrib['name'] = 'phrases'
vColl_elem = etree.SubElement(phrases_f_elem, 'vColl')
|
|
482
|
vColl_elem.attrib['org'] = 'set'
|
|
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
|
for phrase_selection in example.arguments.all():
create_and_write_phrase_link(vColl_elem, entry, example, phrase_selection)
def create_and_write_phrase_link(parent_elem, entry, example, phrase_selection):
link_base = u'#wal_%d.%d.%d.' % (entry.id, example.frame.id, phrase_selection.position.id)
for phrase in phrase_selection.arguments.all():
link_end = u'%d-phr' % phrase.id
link = link_base + link_end
phrase_link_elem = etree.SubElement(parent_elem, 'fs')
phrase_link_elem.attrib['sameAs'] = link
phrase_link_elem.attrib['type'] = 'phrase'
def write_semantic_layer(parent_elem, lemma):
semantic_layer_elem = etree.SubElement(parent_elem, 'fs')
|
|
498
|
semantic_layer_elem.attrib['type'] = 'semantic_layer'
|
|
499
500
501
502
503
|
frames_f_elem = etree.SubElement(semantic_layer_elem, 'f')
frames_f_elem.attrib['name'] = 'frames'
vColl_elem = etree.SubElement(frames_f_elem, 'vColl')
|
|
504
|
vColl_elem.attrib['org'] = 'set'
|
|
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
write_frames(vColl_elem, lemma)
def write_frames(parent_elem, lemma):
entry = lemma.entry_obj
frames = entry.actual_frames()
for frame in frames:
write_frame_fs(parent_elem, entry, frame)
def write_frame_fs(parent_elem, entry, frame):
frame_xml_id = u'wal_%d.%d-frm' % (entry.id, frame.id)
frame_fs_elem = etree.SubElement(parent_elem, 'fs')
frame_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = frame_xml_id
frame_fs_elem.attrib['type'] = 'frame'
write_frame_meanings(frame_fs_elem, entry, frame)
write_frame_arguments(frame_fs_elem, entry, frame)
def write_frame_meanings(parent_elem, entry, frame):
meanings_f_elem = etree.SubElement(parent_elem, 'f')
meanings_f_elem.attrib['name'] = 'meanings'
vColl_elem = etree.SubElement(meanings_f_elem, 'vColl')
|
|
529
|
vColl_elem.attrib['org'] = 'set'
|
|
530
531
532
533
534
535
536
537
|
for meaning in frame.lexical_units.all():
write_frame_meaning_link(vColl_elem, entry, meaning)
def write_frame_meaning_link(parent_elem, entry, meaning):
link = u'#wal_%d.%d-mng' % (entry.id, meaning.id)
lex_unit_link_elem = etree.SubElement(parent_elem, 'fs')
lex_unit_link_elem.attrib['sameAs'] = link
|
|
538
|
lex_unit_link_elem.attrib['type'] = 'lexical_unit'
|
|
539
540
541
542
543
544
|
def write_frame_arguments(parent_elem, entry, frame):
arguments_f_elem = etree.SubElement(parent_elem, 'f')
arguments_f_elem.attrib['name'] = 'arguments'
vColl_elem = etree.SubElement(arguments_f_elem, 'vColl')
|
|
545
|
vColl_elem.attrib['org'] = 'set'
|
|
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
|
for arg in frame.complements.all():
write_frame_argument(vColl_elem, entry, frame, arg)
def write_frame_argument(parent_elem, entry, frame, arg):
arg_base_id = u'wal_%d.%d' % (entry.id, frame.id)
arg_xml_id = arg_base_id + u'.%d-arg' % arg.id
argument_fs_elem = etree.SubElement(parent_elem, 'fs')
argument_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = arg_xml_id
argument_fs_elem.attrib['type'] = 'argument'
write_roles(argument_fs_elem, arg)
write_selective_preferences(argument_fs_elem, arg, arg_base_id)
def write_roles(parent_elem, arg):
for role in arg.roles.order_by('gradient'):
if role.gradient:
attribute_f_elem = etree.SubElement(parent_elem, 'f')
|
|
565
|
attribute_f_elem.attrib['name'] = 'role_attribute'
|
|
566
567
568
569
570
571
572
573
574
575
576
|
attribute_symbol_elem = etree.SubElement(attribute_f_elem, 'symbol')
attribute_symbol_elem.attrib['value'] = unicode(role)
else:
role_f_elem = etree.SubElement(parent_elem, 'f')
role_f_elem.attrib['name'] = 'role'
role_symbol_elem = etree.SubElement(role_f_elem, 'symbol')
role_symbol_elem.attrib['value'] = unicode(role)
def write_selective_preferences(parent_elem, arg, arg_base_id):
if(arg.selective_preference):
sel_prefs_f_elem = etree.SubElement(parent_elem, 'f')
|
|
577
|
sel_prefs_f_elem.attrib['name'] = 'sel_prefs'
|
|
578
579
|
sel_prefs_groups_fs_elem = etree.SubElement(sel_prefs_f_elem, 'fs')
|
|
580
|
sel_prefs_groups_fs_elem.attrib['type'] = 'sel_prefs_groups'
|
|
581
582
583
584
585
586
587
588
589
590
591
592
593
|
write_synsets_sel_prefs(sel_prefs_groups_fs_elem, arg)
write_predefined_sel_prefs(sel_prefs_groups_fs_elem, arg)
write_relation_sel_prefs(sel_prefs_groups_fs_elem, arg, arg_base_id)
write_synset_relation_sel_prefs(sel_prefs_groups_fs_elem, arg)
def write_synsets_sel_prefs(parent_elem, arg):
synsets = arg.selective_preference.synsets
if synsets.exists():
synsets_f_elem = etree.SubElement(parent_elem, 'f')
synsets_f_elem.attrib['name'] = 'synsets'
vColl_elem = etree.SubElement(synsets_f_elem, 'vColl')
|
|
594
|
vColl_elem.attrib['org'] = 'set'
|
|
595
596
597
598
599
|
for synset in synsets.all():
write_synset(vColl_elem, synset)
def write_synset(parent_elem, synset):
|
|
600
|
id_numeric_elem = etree.SubElement(parent_elem, 'numeric')
|
|
601
602
603
604
605
606
607
608
609
|
id_numeric_elem.attrib['value'] = str(synset.id)
def write_predefined_sel_prefs(parent_elem, arg):
generals = arg.selective_preference.generals
if generals.exists():
predefs_f_elem = etree.SubElement(parent_elem, 'f')
predefs_f_elem.attrib['name'] = 'predefs'
vColl_elem = etree.SubElement(predefs_f_elem, 'vColl')
|
|
610
|
vColl_elem.attrib['org'] = 'set'
|
|
611
612
613
614
615
|
for predef in generals.all():
write_predef(vColl_elem, predef)
def write_predef(parent_elem, predef):
|
|
616
|
name_symbol_elem = etree.SubElement(parent_elem, 'symbol')
|
|
617
618
619
620
621
622
623
624
625
|
name_symbol_elem.attrib['value'] = predef.name
def write_relation_sel_prefs(parent_elem, arg, arg_base_id):
relations = arg.selective_preference.relations
if relations.exists():
relations_f_elem = etree.SubElement(parent_elem, 'f')
relations_f_elem.attrib['name'] = 'relations'
vColl_elem = etree.SubElement(relations_f_elem, 'vColl')
|
|
626
|
vColl_elem.attrib['org'] = 'set'
|
|
627
628
629
630
631
632
633
634
635
636
637
|
for relation in relations.all():
write_relation(vColl_elem, relation, arg_base_id)
def write_relation(parent_elem, relation, arg_base_id):
relation_fs_elem = etree.SubElement(parent_elem, 'fs')
relation_fs_elem.attrib['type'] = 'relation'
relation_f_elem = etree.SubElement(relation_fs_elem, 'f')
relation_f_elem.attrib['name'] = 'type'
|
|
638
639
|
type_symbol_elem = etree.SubElement(relation_f_elem, 'symbol')
type_symbol_elem.attrib['value'] = relation.relation.name
|
|
640
641
642
643
644
645
646
647
648
649
650
651
652
|
to_f_elem = etree.SubElement(relation_fs_elem, 'f')
to_f_elem.attrib['name'] = 'to'
to_xml_link = '#%s.%d-arg' % (arg_base_id, relation.to.id)
arg_link_elem = etree.SubElement(to_f_elem, 'fs')
arg_link_elem.attrib['sameAs'] = to_xml_link
arg_link_elem.attrib['type'] = 'argument'
def write_synset_relation_sel_prefs(parent_elem, arg):
relations = arg.selective_preference.synset_relations
if relations.exists():
relations_f_elem = etree.SubElement(parent_elem, 'f')
|
|
653
|
relations_f_elem.attrib['name'] = 'synset_relations'
|
|
654
655
|
vColl_elem = etree.SubElement(relations_f_elem, 'vColl')
|
|
656
|
vColl_elem.attrib['org'] = 'set'
|
|
657
658
659
660
661
662
|
for relation in relations.all():
write_synset_relation(vColl_elem, relation)
def write_synset_relation(parent_elem, relation):
relation_fs_elem = etree.SubElement(parent_elem, 'fs')
|
|
663
|
relation_fs_elem.attrib['type'] = 'synset_relation'
|
|
664
665
666
667
|
relation_f_elem = etree.SubElement(relation_fs_elem, 'f')
relation_f_elem.attrib['name'] = 'type'
|
|
668
669
|
type_symbol_elem = etree.SubElement(relation_f_elem, 'symbol')
type_symbol_elem.attrib['value'] = relation.relation.name
|
|
670
671
672
673
674
675
676
|
to_f_elem = etree.SubElement(relation_fs_elem, 'f')
to_f_elem.attrib['name'] = 'to'
write_synset(to_f_elem, relation.to)
def write_meanings_layer(parent_elem, lemma):
meanings_layer_elem = etree.SubElement(parent_elem, 'fs')
|
|
677
|
meanings_layer_elem.attrib['type'] = 'meanings_layer'
|
|
678
679
680
681
682
|
meanings_f_elem = etree.SubElement(meanings_layer_elem, 'f')
meanings_f_elem.attrib['name'] = 'meanings'
vColl_elem = etree.SubElement(meanings_f_elem, 'vColl')
|
|
683
|
vColl_elem.attrib['org'] = 'set'
|
|
684
685
686
687
688
689
690
691
692
693
694
695
696
697
|
write_meanings(vColl_elem, lemma)
def write_meanings(parent_elem, lemma):
entry = lemma.entry_obj
lex_units = entry.lexical_units()
for lex_unit in lex_units.all():
write_meaning(parent_elem, entry, lex_unit)
def write_meaning(parent_elem, entry, lex_unit):
meaning_xml_id = u'wal_%d.%d-mng' % (entry.id, lex_unit.id)
meaning_fs_elem = etree.SubElement(parent_elem, 'fs')
meaning_fs_elem.attrib[etree.QName(XML_NAMESPACE, 'id')] = meaning_xml_id
|
|
698
|
meaning_fs_elem.attrib['type'] = 'lexical_unit'
|
|
699
700
701
702
703
704
705
706
|
name_f_elem = etree.SubElement(meaning_fs_elem, 'f')
name_f_elem.attrib['name'] = 'name'
name_content_elem = etree.SubElement(name_f_elem, 'string')
name_content_elem.text = lex_unit.base
variant_f_elem = etree.SubElement(meaning_fs_elem, 'f')
variant_f_elem.attrib['name'] = 'variant'
|
|
707
708
|
variant_string_elem = etree.SubElement(variant_f_elem, 'string')
variant_string_elem.text = lex_unit.sense
|
|
709
710
711
712
713
714
|
plwnluid_f_elem = etree.SubElement(meaning_fs_elem, 'f')
plwnluid_f_elem.attrib['name'] = 'plwnluid'
plwnluid_numeric_elem = etree.SubElement(plwnluid_f_elem, 'numeric')
plwnluid_numeric_elem.attrib['value'] = str(lex_unit.luid)
|
|
715
716
717
718
719
|
if lex_unit.glossa:
gloss_f_elem = etree.SubElement(meaning_fs_elem, 'f')
gloss_f_elem.attrib['name'] = 'gloss'
gloss_content_elem = etree.SubElement(gloss_f_elem, 'string')
gloss_content_elem.text = lex_unit.glossa
|
|
720
721
722
|
def write_connections_layer(parent_elem, lemma):
connections_layer_elem = etree.SubElement(parent_elem, 'fs')
|
|
723
|
connections_layer_elem.attrib['type'] = 'connections_layer'
|
|
724
725
726
727
728
|
alternations_f_elem = etree.SubElement(connections_layer_elem, 'f')
alternations_f_elem.attrib['name'] = 'alternations'
vColl_elem = etree.SubElement(alternations_f_elem, 'vColl')
|
|
729
|
vColl_elem.attrib['org'] = 'set'
|
|
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
|
write_alternations(vColl_elem, lemma)
def write_alternations(parent_elem, lemma):
entry = lemma.entry_obj
frames = entry.actual_frames()
for schema in lemma.frames.all():
for frame in frames:
matching_complements = frame.complements.filter(realizations__frame=schema).distinct()
if matching_complements.filter(realizations__alternation=1).exists():
alternation_fs_elem = etree.SubElement(parent_elem, 'fs')
alternation_fs_elem.attrib['type'] = 'alternation'
connections_f_elem = etree.SubElement(alternation_fs_elem, 'f')
connections_f_elem.attrib['name'] = 'connections'
vColl_elem = etree.SubElement(connections_f_elem, 'vColl')
|
|
748
|
vColl_elem.attrib['org'] = 'set'
|
|
749
750
751
|
for arg in frame.complements.all():
alt_realizations = arg.realizations.filter(frame=schema, alternation=1)
|
|
752
753
|
if alt_realizations.exists():
write_connection(vColl_elem, entry, frame, arg, alt_realizations)
|
|
754
755
756
757
758
759
760
761
762
|
if matching_complements.filter(realizations__alternation=2).exists():
alternation_fs_elem = etree.SubElement(parent_elem, 'fs')
alternation_fs_elem.attrib['type'] = 'alternation'
connections_f_elem = etree.SubElement(alternation_fs_elem, 'f')
connections_f_elem.attrib['name'] = 'connections'
vColl_elem = etree.SubElement(connections_f_elem, 'vColl')
|
|
763
|
vColl_elem.attrib['org'] = 'set'
|
|
764
765
766
|
for arg in frame.complements.all():
alt_realizations = arg.realizations.filter(frame=schema, alternation=2)
|
|
767
768
|
if alt_realizations.exists():
write_connection(vColl_elem, entry, frame, arg, alt_realizations)
|
|
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
|
def write_connection(parent_elem, entry, frame, arg, realizations):
connection_fs_elem = etree.SubElement(parent_elem, 'fs')
connection_fs_elem.attrib['type'] = 'connection'
write_argument(connection_fs_elem, entry, frame, arg)
write_phrases(connection_fs_elem, entry, realizations)
def write_argument(parent_elem, entry, frame, arg):
arg_f_elem = etree.SubElement(parent_elem, 'f')
arg_f_elem.attrib['name'] = 'argument'
arg_link = u'#wal_%d.%d.%d-arg' % (entry.id, frame.id, arg.id)
arg_link_fs_elem = etree.SubElement(arg_f_elem, 'fs')
arg_link_fs_elem.attrib['sameAs'] = arg_link
arg_link_fs_elem.attrib['type'] = 'argument'
def write_phrases(parent_elem, entry, realizations):
phrases_f_elem = etree.SubElement(parent_elem, 'f')
phrases_f_elem.attrib['name'] = 'phrases'
vColl_elem = etree.SubElement(phrases_f_elem, 'vColl')
|
|
790
|
vColl_elem.attrib['org'] = 'set'
|
|
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
|
for realization in realizations:
phrase_xml_link = u'#wal_%d.%d.%d.%d-phr' % (entry.id, realization.frame.id,
realization.position.id, realization.argument.id)
phrase_link_elem = etree.SubElement(vColl_elem, 'fs')
phrase_link_elem.attrib['sameAs'] = phrase_xml_link
phrase_link_elem.attrib['type'] = 'phrase'
def writefsdecl(outfile):
'''
Write feature structures declarations
'''
outfile.write(u' <encodingDesc>\n')
outfile.write(u' <fsdDecl>\n')
# syntacticBahaviour fs declaration
outfile.write(u' <fsDecl type="syntacticBehaviour">\n')
outfile.write(u' <fsDescr>Describes syntactic behaviour of entry</fsDescr>\n')
outfile.write(u' <fDecl name="frames">\n')
outfile.write(u' <fDescr>syntactic frames</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vColl org="list">\n')
outfile.write(u' <fs type="frame"/>\n')
outfile.write(u' </vColl>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
outfile.write(u' </fsDecl>\n')
# frame fs declaration
outfile.write(u' <fsDecl type="frame">\n')
outfile.write(u' <fsDescr>Describes syntactic frame</fsDescr>\n')
# frame opinion
outfile.write(u' <fDecl name="opinion">\n')
outfile.write(u' <fDescr>frame opinion</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
for alt in Frame_Opinion_Value.objects.order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' % alt.short)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# reflex
outfile.write(u' <fDecl name="reflex">\n')
outfile.write(u' <fDescr>frame reflexivity</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
outfile.write(u' <binary value="true"/>\n')
outfile.write(u' <binary value="false"/>\n')
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# aspect
outfile.write(u' <fDecl name="aspect">\n')
outfile.write(u' <fDescr>frame aspect</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
aspect_obj = Frame_Char_Model.objects.get(model_name=u'ASPEKT')
for alt in aspect_obj.frame_char_values.order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' %
alt.value)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# negatywnosc
outfile.write(u' <fDecl name="negativity">\n')
outfile.write(u' <fDescr>frame negativity</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
aspect_obj = Frame_Char_Model.objects.get(model_name=u'NEGATYWNOŚĆ')
for alt in aspect_obj.frame_char_values.order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' %
alt.value)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# predykatywnosc
outfile.write(u' <fDecl name="predicativity">\n')
outfile.write(u' <fDescr>frame predicativity</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
aspect_obj = Frame_Char_Model.objects.get(model_name=u'PREDYKATYWNOŚĆ')
for alt in aspect_obj.frame_char_values.order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' %
alt.value)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# positions
outfile.write(u' <fDecl name="positions">\n')
outfile.write(u' <fDescr>syntactic positions</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vColl org="list">\n')
outfile.write(u' <fs type="position"/>\n')
outfile.write(u' </vColl>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
outfile.write(u' </fsDecl>\n')
# position fs declaration
outfile.write(u' <fsDecl type="position">\n')
outfile.write(u' <fsDescr>Describes syntactic position</fsDescr>\n')
# position category
outfile.write(u' <fDecl name="category">\n')
outfile.write(u' <fDescr>position category</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
for alt in PositionCategory.objects.filter(control=False).order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' % alt.category)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# position control
outfile.write(u' <fDecl name="control">\n')
outfile.write(u' <fDescr>position category</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
for alt in PositionCategory.objects.filter(control=True).order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' % alt.category)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# arguments
outfile.write(u' <fDecl name="arguments">\n')
outfile.write(u' <fDescr>syntactic arguments</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vColl org="list">\n')
outfile.write(u' <fs type="argument"/>\n')
outfile.write(u' </vColl>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
outfile.write(u' </fsDecl>\n')
# argument fs declaration
outfile.write(u' <fsDecl type="argument">\n')
outfile.write(u' <fsDescr>Describes syntactic argument</fsDescr>\n')
# position category
outfile.write(u' <fDecl name="type">\n')
outfile.write(u' <fDescr>type of argument</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vAlt>\n')
for alt in Argument_Model.objects.order_by('priority'):
outfile.write(u' <symbol value="%s"/>\n' % alt.arg_model_name)
outfile.write(u' </vAlt>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
# attributes
outfile.write(u' <fDecl name="attributes">\n')
outfile.write(u' <fDescr>argument attributes</fDescr>\n')
outfile.write(u' <vRange>\n')
outfile.write(u' <vColl org="list">\n')
outfile.write(u' <fs type="attribut"/>\n')
outfile.write(u' </vColl>\n')
outfile.write(u' </vRange>\n')
outfile.write(u' </fDecl>\n')
outfile.write(u' </fsDecl>\n')
outfile.write(u' </fsdDecl>\n')
|
|
950
|
outfile.write(u' </encodingDesc>\n')
|
|
951
|
|