-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterm.py
240 lines (183 loc) · 7.32 KB
/
term.py
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#!/usr/bin/python
# -*- coding: utf-8 -*-
import structs
class Term(object):
""" This is a superclass for terms. """
def __init__(self, lang, term, relatedwords=None, gender='', number=1,
diminutive=False, wikiline=u''):
""" Constructor
Generally called with two parameters:
- The language of the term
- The term (string)
- relatedwords (list of Term objects) is optional
"""
self.lang = lang
self.term = term
if relatedwords is None:
self.relatedwords = []
else:
self.relatedwords = relatedwords
self.gender = gender # m: masculine, f: feminine, n: neutral, c: common
self.number = number # 1: singular, 2: plural
self.diminutive = diminutive
if wikiline:
pos = wikiline.find("''")
if pos == -1:
pos = wikiline.find("{{")
if pos == -1:
pos = len(wikiline)
maybegender = wikiline[pos:].replace("'", '').replace(
'{', '').replace('}', '').strip()
self.term = wikiline[:pos].replace("[", '').replace(']', '').strip()
if 'm' in maybegender:
self.gender = 'm'
if 'f' in maybegender:
self.gender = 'f'
if 'n' in maybegender:
self.gender = 'n'
if 'c' in maybegender:
self.gender = 'c'
if 'p' in maybegender:
self.number = 2
if 'dim' in maybegender:
self.diminutive = True
def __getitem__(self):
""" Documenting as an afterthought is a bad idea
I don't know anymore why I added this, but I'm pretty sure it was in
response to an error message
"""
return self
def setTerm(self, term):
self.term = term
def getTerm(self):
return self.term
def setLang(self, lang):
self.lang = lang
def getLang(self):
return self.lang
def setGender(self, gender):
self.gender = gender
def getGender(self):
return self.gender
def setNumber(self, number):
self.number = number
def getNumber(self):
return self.number
# def setLabel(self,label):
# self.label = label.replace('<!--', '').replace('-->', '')
# def getLabel(self):
# if self.label:
# return '<!--%s-->' % self.label
def wikiWrapGender(self, wikilang):
""" Returns a string with the gender in a format ready for Wiktionary,
if it is applicable
"""
if self.gender:
return ' %s' % (
structs.wiktionaryformats[wikilang]['gender'].replace(
'%%gender%%', self.gender))
else:
return ''
def wikiWrapAsExample(self, wikilang):
""" Returns a string with the gender in a format ready for Wiktionary,
if it exists
"""
return structs.wiktionaryformats[wikilang][
'beforeexampleterm'] + self.term + structs.wiktionaryformats[
wikilang]['afterexampleterm']
def wikiWrapForList(self, wikilang):
""" Returns a string with this term as a link followed by the gender
in a format ready for Wiktionary
"""
return '[[%s]]' % self.term
def wikiWrapAsTranslation(self, wikilang):
""" Returns a string with this term as a link followed by the gender
in a format ready for Wiktionary
"""
return '[[%s]]' % self.term
def showContents(self, indentation):
""" Prints the contents of this Term.
Every subobject is indented a little further on the screen.
The primary purpose is to help keep one's sanity while debugging.
"""
print ' ' * indentation + 'lang = %s' % self.lang
print ' ' * indentation + 'pos = %s' % self.pos
print ' ' * indentation + 'term = %s' % self.term
print ' ' * indentation + 'relatedwords = %s' % self.relatedwords
class Noun(Term):
""" This class inherits from Term.
It adds properties and methods specific to nouns
"""
def __init__(self, lang, term, gender='', number=1, diminutive=False):
""" Constructor
Generally called with two parameters:
- The language of the term
- The term (string)
- gender is optional
"""
self.pos = 'noun' # part of speech
super(Noun, self).__init__(self, lang, term, gender=gender,
number=number, diminutive=diminutive)
def showContents(self, indentation):
Term.showContents(self, indentation)
print ' ' * indentation + 'gender = %s' % self.gender
def wikiWrapAsExample(self, wikilang):
""" Returns a string with the gender in a format ready for Wiktionary,
if it exists
"""
return Term.wikiWrapAsExample(
self, wikilang) + Term.wikiWrapGender(self, wikilang)
def wikiWrapForList(self, wikilang):
""" Returns a string with this term as a link followed by the gender in
a format ready for Wiktionary
"""
return Term.wikiWrapForList(
self, wikilang) + Term.wikiWrapGender(self, wikilang)
def wikiWrapAsTranslation(self, wikilang):
""" Returns a string with this term as a link followed by the gender
in a format ready for Wiktionary
"""
return Term.wikiWrapAsTranslation(
self, wikilang) + Term.wikiWrapGender(self, wikilang)
class Adjective(Term):
def __init__(self, lang, term, gender='', number=1):
self.pos = 'adjective' # part of speech
super(Adjective, self).__init__(self, lang, term, gender=gender,
number=number)
def wikiWrapAsExample(self, wikilang):
""" Returns a string with the gender in a format ready for Wiktionary,
if it exists
"""
return Term.wikiWrapAsExample(
self, wikilang) + Term.wikiWrapGender(self, wikilang)
def wikiWrapForList(self, wikilang):
""" Returns a string with this term as a link followed by the gender in
a format ready for Wiktionary
"""
return Term.wikiWrapForList(
self, wikilang) + Term.wikiWrapGender(self, wikilang)
def wikiWrapAsTranslation(self, wikilang):
""" Returns a string with this term as a link followed by the gender
in a format ready for Wiktionary
"""
return Term.wikiWrapAsTranslation(
self, wikilang) + Term.wikiWrapGender(self, wikilang)
class Verb(Term):
def __init__(self, lang, term):
self.pos = 'verb' # part of speech
super(Verb, self).__init__(self, lang, term)
def showContents(self, indentation):
Term.showContents(self, indentation)
def wikiWrapForList(self, wikilang):
""" Returns a string with this term as a link in a format ready for
Wiktionary
"""
if wikilang == 'en':
if self.term.lower().startswith('to '):
return 'to [[%s]]' % self.term[3:]
return Term.wikiWrapForList(self, wikilang)
def wikiWrapAsTranslation(self, wikilang):
""" Returns a string with this term as a link in a format ready for
Wiktionary
"""
return Verb.wikiWrapForList(self, wikilang)