/usr/share/pyshared/MoinMoin/action/SpellCheck.py is in python-moinmoin 1.9.3-1ubuntu2.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: iso-8859-1 -*-
"""
MoinMoin - Spelling Action
Word adding based on code by Christian Bird <chris.bird@lineo.com>
This action checks for spelling errors in a page using one or several
word lists.
MoinMoin looks for dictionary files in the directory "dict" within the
MoinMoin package directory. To load the default UNIX word files, you
have to manually create symbolic links to those files (usually
'/usr/dict/words' or '/usr/share/dict/words').
Additionally, all words on the page "LocalSpellingWords" are added to
the list of valid words, if that page exists.
@copyright: 2001 Richard Jones <richard@bizarsoftware.com.au>,
2001-2004 Juergen Hermann <jh@web.de>
@license: GNU GPL, see COPYING for details.
"""
import os, re, codecs
from MoinMoin import config, wikiutil
from MoinMoin.Page import Page
def _getWordsFiles(request):
"""Check a list of possible word files"""
candidates = []
# load a list of possible word files
for basedir in (request.cfg.moinmoin_dir, request.cfg.data_dir):
localdict = os.path.join(basedir, 'dict')
if os.path.isdir(localdict):
candidates.extend(
[os.path.join(localdict, fn) for fn in os.listdir(localdict)])
# validate candidate list (leave out directories!)
wordsfiles = []
for f in candidates:
if os.path.isfile(f) and os.access(f, os.F_OK | os.R_OK):
wordsfiles.append(f)
# return validated file list
return wordsfiles
def _loadWords(lines, dict):
for line in lines:
words = line.split()
for word in words:
dict[word.encode(config.charset)] = ''
def _loadWordsFile(request, dict, filename):
request.clock.start('spellread')
try:
try:
f = codecs.open(filename, 'rt', config.charset)
lines = f.readlines()
except UnicodeError:
f = codecs.open(filename, 'rt', 'iso-8859-1')
lines = f.readlines()
finally:
f.close()
_loadWords(lines, dict)
request.clock.stop('spellread')
def _loadWordsPage(request, dict, page):
lines = page.getlines()
_loadWords(lines, dict)
def _loadDict(request):
""" Load words from words files or cached dict """
# check for "dbhash" module
try:
import dbhash
except ImportError:
dbhash = None
# load the words
cachename = os.path.join(request.cfg.data_dir, 'cache', 'spellchecker.dict')
if dbhash and os.path.exists(cachename):
wordsdict = dbhash.open(cachename, "r")
else:
wordsfiles = _getWordsFiles(request)
if dbhash:
wordsdict = dbhash.open(cachename, 'n')
else:
wordsdict = {}
for wordsfile in wordsfiles:
_loadWordsFile(request, wordsdict, wordsfile)
if dbhash:
wordsdict.sync()
return wordsdict
def _addLocalWords(request):
from MoinMoin.PageEditor import PageEditor
# get the new words as a string (if any are marked at all)
try:
newwords = request.form.getlist('newwords')
except KeyError:
# no new words checked
return
newwords = u' '.join(newwords)
# get the page contents
lsw_page = PageEditor(request, request.cfg.page_local_spelling_words)
words = lsw_page.get_raw_body()
# add the words to the page and save it
if words and words[-1] != '\n':
words = words + '\n'
lsw_page.saveText(words + '\n' + newwords, 0)
def checkSpelling(page, request, own_form=1):
""" Do spell checking, return a tuple with the result.
"""
_ = request.getText
# first check to see if we we're called with a "newwords" parameter
if 'button_newwords' in request.form:
_addLocalWords(request)
# load words
wordsdict = _loadDict(request)
localwords = {}
lsw_page = Page(request, request.cfg.page_local_spelling_words)
if lsw_page.exists():
_loadWordsPage(request, localwords, lsw_page)
# init status vars & load page
request.clock.start('spellcheck')
badwords = {}
text = page.get_raw_body()
# checker regex and matching substitute function
word_re = re.compile(r'([%s]?[%s]+)' % (
config.chars_upper, config.chars_lower), re.UNICODE)
def checkword(match, wordsdict=wordsdict, badwords=badwords,
localwords=localwords, num_re=re.compile(r'^\d+$', re.UNICODE)):
word = match.group(1)
if len(word) == 1:
return ""
w_enc = word.encode(config.charset)
wl_enc = word.lower().encode(config.charset)
if not (w_enc in wordsdict or wl_enc in wordsdict or
w_enc in localwords or wl_enc in localwords):
if not num_re.match(word):
badwords[word] = 1
return ""
# do the checking
for line in text.split('\n'):
if line == '' or line[0] == '#':
continue
word_re.sub(checkword, line)
if badwords:
badwords = badwords.keys()
badwords.sort(lambda x, y: cmp(x.lower(), y.lower()))
# build regex recognizing the bad words
badwords_re = r'(^|(?<!\w))(%s)(?!\w)'
badwords_re = badwords_re % ("|".join([re.escape(bw) for bw in badwords]), )
badwords_re = re.compile(badwords_re, re.UNICODE)
lsw_msg = ''
if localwords:
lsw_msg = ' ' + _('(including %(localwords)d %(pagelink)s)') % {
'localwords': len(localwords), 'pagelink': lsw_page.link_to(request)}
msg = _('The following %(badwords)d words could not be found in the dictionary of '
'%(totalwords)d words%(localwords)s and are highlighted below:') % {
'badwords': len(badwords),
'totalwords': len(wordsdict)+len(localwords),
'localwords': lsw_msg} + "<br>"
# figure out what this action is called
action_name = os.path.splitext(os.path.basename(__file__))[0]
# add a form containing the bad words
if own_form:
msg = msg + ('<form method="post" action="%s">\n'
'<input type="hidden" name="action" value="%s">\n') % (request.href(page.page_name), action_name)
checkbox = '<input type="checkbox" name="newwords" value="%(word)s">%(word)s '
msg = msg + (
" ".join([checkbox % {'word': wikiutil.escape(w, True), } for w in badwords]) +
'<p><input type="submit" name="button_newwords" value="%s"></p>' %
_('Add checked words to dictionary')
)
if own_form:
msg = msg + '</form>'
else:
badwords_re = None
msg = _("No spelling errors found!")
request.clock.stop('spellcheck')
return badwords, badwords_re, msg
def execute(pagename, request):
_ = request.getText
page = Page(request, pagename)
if not request.user.may.write(request.cfg.page_local_spelling_words):
request.theme.add_msg(_("You can't save spelling words."), "error")
page.send_page()
return
if request.user.may.read(pagename):
badwords, badwords_re, msg = checkSpelling(page, request)
else:
badwords = []
request.theme.add_msg(_("You can't check spelling on a page you can't read."), "error")
request.theme.add_msg(msg, "dialog")
if badwords:
page.send_page(hilite_re=badwords_re)
else:
page.send_page()
|