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
|
# Rule that checks for word repeats
# (c) 2003 Daniel Naber <daniel.naber@t-online.de>
#
#$rcs = ' $Id$ ' ;
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import os
import re
import sys
sys.path.append("..")
import Rules
class deWordRepeatRule(Rules.Rule):
"""Rule that checks if a word is repeated, even if one
word is uppercase and the other one is lowercase."""
punct = re.compile("([,:;]+)") # copied from Tagger.Text()
def __init__(self):
Rules.Rule.__init__(self, "WORD_REPEAT", "A word was repeated", 0, None)
return
def match(self, tagged_words, chunks, position_fix=0, line_fix=0, column_fix=0):
#fixme: use line_fix, column_fix
matches = []
text_length = 0
i = 0
line_breaks = 0 # FIXME
column = 0 #FIXME
while 1:
if i >= len(tagged_words)-2:
break
org_tag = tagged_words[i][2]
if org_tag == "CRD":
# ignore numbers like "5,000,000"
i = i + 1
continue
org_word = tagged_words[i][0]
if org_word and self.punct.match(org_word):
# ignore punctuation
i = i + 1
continue
org_word_next = tagged_words[i+2][0]
#print "%s -- %s<br>" % (org_word, org_word_next)
text_length = text_length + len(org_word)
if tagged_words[i][1] == None:
# ignore whitespace
i = i + 1
continue
whitespace_length = len(tagged_words[i+1][0])
if org_word.lower() == org_word_next.lower():
matches.append(Rules.RuleMatch(self.rule_id,
text_length+position_fix,
text_length+whitespace_length+len(org_word_next)+position_fix,
line_breaks+line_fix, column+column_fix,
"<message>You repeated a word. Maybe you should <em>remove</em> one "+
"of the words?</message>", org_word))
i = i + 1
return matches
|