blob: 9316cbd45882f27c160e0957838d6b65c3b88c90 [file] [log] [blame]
margaretha51e5e3f2018-10-17 15:10:03 +02001define(["hint/foundries"], function (ah) {
2 ah["-"].push(
3 ["Connexor", "cnx/", "Constituency, Lemma, Morphology, Part-of-Speech, Syntax"]
4 );
5
6 ah["cnx/"] = [
7 ["Constituency", "c="],
8 ["Lemma", "l="],
9 ["Morphology", "m="],
10 ["Part-of-Speech", "p="],
11 ["Syntax", "syn="]
12 ];
13
14 ah["cnx/c="] = [
15 ["np", "np ", "Nominal Phrase"]
16 ];
17
18 // http://www.ids-mannheim.de/cosmas2/projekt/referenz/connexor/morph.html
19 ah["cnx/m="] = [
20 ["Abbr","Abbr ", "Nouns: Abbreviation"],
21 ["CMP","CMP ", "Adjective: Comparative"],
22 ["IMP", "IMP ", "Mood: Imperative"],
23 ["IND", "IND ", "Mood: Indicative"],
24 ["INF", "INF ", "Infinitive"],
25 ["ORD","ORD ", "Numeral: Ordinal"],
26 ["PAST", "PAST ", "Tense: past"],
27 ["PCP", "PCP ", "Participle"],
28 ["PERF", "PERF ", "Perfective Participle"],
29 ["PL","PL ", "Nouns: Plural"],
30 ["PRES", "PRES ", "Tense: present"],
31 ["PROG", "PROG ", "Progressive Participle"],
32 ["Prop","Prop ", "Nouns: Proper Noun"],
33 ["SUB", "SUB ", "Mood: Subjunctive"],
34 ["SUP","SUP ", "Adjective: Superlative"]
35 ];
36
37 // http://www.ids-mannheim.de/cosmas2/projekt/referenz/connexor/morph.html
38 ah["cnx/p="] = [
39 ["A", "A ", "Adjective"],
40 ["ADV", "ADV ", "Adverb"],
41 ["CC", "CC ", "Coordination Marker"],
42 ["CS", "CS ", "Clause Marker"],
43 ["DET", "DET ", "Determiner"],
44 ["INTERJ", "INTERJ ", "Interjection"],
45 ["N", "N ", "Noun"],
46 ["NUM", "NUM ", "Numeral"],
47 ["PREP", "PREP ", "Preposition"],
48 ["PRON", "PRON ", "Pro-Nominal"],
49 ["V", "V ", "Verb"]
50 ];
51
52 // http://www.ids-mannheim.de/cosmas2/projekt/referenz/connexor/syntax.html
53 ah["cnx/syn="] = [
54 ["@ADVL", "@ADVL ", "Adverbial Head"],
55 ["@AUX", "@AUX ", "Auxiliary Verb"],
56 ["@CC", "@CC ", "Coordination"]
57 ["@MAIN", "@MAIN ", "Main Verb"],
58 ["@NH", "@NH ", "Nominal Head"],
59 ["@POSTMOD", "@POSTMOD ", "Postmodifier"],
60 ["@PREMARK", "@PREMARK ", "Preposed Marker"],
61 ["@PREMOD", "@PREMOD ", "Premodifier"]
62 ];
63});