2011-08-28 18:01:32 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
2011-10-27 15:22:26 +00:00
|
|
|
|
|
2013-11-09 23:42:02 +00:00
|
|
|
|
# Copyright (C) 2013 Alex Yatskov
|
2011-08-28 18:01:32 +00:00
|
|
|
|
#
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from PyQt4 import QtGui
|
2013-11-09 23:42:02 +00:00
|
|
|
|
import re
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def decodeContent(content):
|
2013-11-10 03:09:40 +00:00
|
|
|
|
encodings = ['utf-8', 'shift_jis', 'euc-jp', 'utf-16']
|
2011-08-28 18:01:32 +00:00
|
|
|
|
errors = dict()
|
|
|
|
|
|
|
|
|
|
for encoding in encodings:
|
|
|
|
|
try:
|
|
|
|
|
return content.decode(encoding), encoding
|
|
|
|
|
except UnicodeDecodeError, e:
|
|
|
|
|
errors[encoding] = e[2]
|
|
|
|
|
|
|
|
|
|
encoding = sorted(errors, key=errors.get, reverse=True)[0]
|
|
|
|
|
return content.decode(encoding, 'replace'), encoding
|
|
|
|
|
|
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
|
def stripReadings(content):
|
2011-08-28 18:01:32 +00:00
|
|
|
|
return re.sub(u'《[^》]+》', unicode(), content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def findSentence(content, position):
|
|
|
|
|
quotesFwd = {u'「': u'」', u'『': u'』', u"'": u"'", u'"': u'"'}
|
|
|
|
|
quotesBwd = {u'」': u'「', u'』': u'『', u"'": u"'", u'"': u'"'}
|
|
|
|
|
terminators = u'。..??!!'
|
|
|
|
|
|
|
|
|
|
quoteStack = list()
|
|
|
|
|
|
|
|
|
|
start = 0
|
|
|
|
|
for i in xrange(position, start, -1):
|
|
|
|
|
c = content[i]
|
|
|
|
|
|
|
|
|
|
if not quoteStack and (c in terminators or c in quotesFwd or c == '\n'):
|
|
|
|
|
start = i + 1
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
if quoteStack and c == quoteStack[0]:
|
|
|
|
|
quoteStack.pop()
|
|
|
|
|
elif c in quotesBwd:
|
|
|
|
|
quoteStack.insert(0, quotesBwd[c])
|
|
|
|
|
|
|
|
|
|
quoteStack = list()
|
|
|
|
|
|
|
|
|
|
end = len(content)
|
|
|
|
|
for i in xrange(position, end):
|
|
|
|
|
c = content[i]
|
|
|
|
|
|
|
|
|
|
if not quoteStack:
|
|
|
|
|
if c in terminators:
|
|
|
|
|
end = i + 1
|
|
|
|
|
break
|
|
|
|
|
elif c in quotesBwd:
|
|
|
|
|
end = i
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
if quoteStack and c == quoteStack[0]:
|
|
|
|
|
quoteStack.pop()
|
|
|
|
|
elif c in quotesFwd:
|
|
|
|
|
quoteStack.insert(0, quotesFwd[c])
|
|
|
|
|
|
|
|
|
|
return content[start:end].strip()
|
|
|
|
|
|
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
|
def formatFields(fields, markup):
|
2011-08-28 18:01:32 +00:00
|
|
|
|
result = dict()
|
|
|
|
|
for field, value in fields.items():
|
2013-11-10 02:33:31 +00:00
|
|
|
|
result[field] = value.format(**markup)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
|
def splitTags(tags):
|
|
|
|
|
return filter(lambda tag: tag.strip(), re.split('[;,\s]', tags))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def markupVocabExp(definition):
|
2011-08-28 18:01:32 +00:00
|
|
|
|
return {
|
2013-11-11 01:39:44 +00:00
|
|
|
|
'expression': definition['expression'],
|
|
|
|
|
'reading': definition['reading'],
|
|
|
|
|
'glossary': definition['glossary'],
|
2013-11-12 03:59:47 +00:00
|
|
|
|
'sentence': definition.get('sentence'),
|
|
|
|
|
'summary': u'{expression} [{reading}]'.format(**definition)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
|
def markupVocabReading(definition):
|
2011-08-28 18:01:32 +00:00
|
|
|
|
return {
|
2013-11-11 01:39:44 +00:00
|
|
|
|
'expression': definition['reading'],
|
2013-11-10 02:33:31 +00:00
|
|
|
|
'reading': unicode(),
|
2013-11-11 01:39:44 +00:00
|
|
|
|
'glossary': definition['glossary'],
|
2013-11-12 03:59:47 +00:00
|
|
|
|
'sentence': definition.get('sentence'),
|
|
|
|
|
'summary': definition['reading']
|
2011-08-28 18:01:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-11-12 03:59:47 +00:00
|
|
|
|
def copyVocabDef(definition):
|
|
|
|
|
if definition['reading']:
|
|
|
|
|
result = u'{expression}\t{reading}\t{glossary}\n'.format(**definition)
|
|
|
|
|
else:
|
|
|
|
|
result = u'{expression}\t{meanings}\n'.format(**definition)
|
|
|
|
|
|
|
|
|
|
QtGui.QApplication.clipboard().setText(result)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
2013-11-12 03:59:47 +00:00
|
|
|
|
def markupKanji(definition):
|
|
|
|
|
return {
|
|
|
|
|
'character': definition['character'],
|
|
|
|
|
'onyomi': definition['onyomi'],
|
|
|
|
|
'kunyomi': definition['kunyomi'],
|
|
|
|
|
'glossary': definition['glossary'],
|
|
|
|
|
'summary': definition['character']
|
|
|
|
|
}
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
2013-11-14 16:36:26 +00:00
|
|
|
|
def copyKanjiDef(definition):
|
|
|
|
|
return QtGui.QApplication.clipboard().setText(u'{character}\t{kunyomi}\t{onyomi}\t{glossary}'.format(**definition))
|
|
|
|
|
|
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
|
def buildDefHeader():
|
|
|
|
|
palette = QtGui.QApplication.palette()
|
|
|
|
|
toolTipBg = palette.color(QtGui.QPalette.Window).name()
|
|
|
|
|
toolTipFg = palette.color(QtGui.QPalette.WindowText).name()
|
|
|
|
|
|
|
|
|
|
return u"""
|
|
|
|
|
<html><head><style>
|
|
|
|
|
body {{ background-color: {0}; color: {1}; font-size: 11pt; }}
|
|
|
|
|
span.expression {{ font-size: 15pt; }}
|
|
|
|
|
</style></head><body>""".format(toolTipBg, toolTipFg)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def buildDefFooter():
|
|
|
|
|
return '</body></html>'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def buildVocabDef(definition, index, query):
|
2011-08-28 18:01:32 +00:00
|
|
|
|
reading = unicode()
|
2013-11-09 23:42:02 +00:00
|
|
|
|
if definition['reading']:
|
|
|
|
|
reading = u'[{0}]'.format(definition['reading'])
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
|
rules = unicode()
|
2013-11-09 23:42:02 +00:00
|
|
|
|
if len(definition['rules']) > 0:
|
2013-11-11 01:39:44 +00:00
|
|
|
|
rules = ' • '.join(definition['rules'])
|
|
|
|
|
rules = '<span class = "rules"><{0}><br/></span>'.format(rules)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
|
links = '<a href = "copyVocabDef:{0}"><img src = "://img/img/icon_copy_definition.png" align = "right"/></a>'.format(index)
|
2013-11-14 17:22:20 +00:00
|
|
|
|
if query is not None:
|
2013-11-11 04:27:25 +00:00
|
|
|
|
if query('vocab', markupVocabExp(definition)):
|
|
|
|
|
links += '<a href = "addVocabExp:{0}"><img src = "://img/img/icon_add_expression.png" align = "right"/></a>'.format(index)
|
|
|
|
|
if query('vocab', markupVocabReading(definition)):
|
|
|
|
|
links += '<a href = "addVocabReading:{0}"><img src = "://img/img/icon_add_reading.png" align = "right"/></a>'.format(index)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
html = u"""
|
|
|
|
|
<span class = "links">{0}</span>
|
2013-11-14 17:22:20 +00:00
|
|
|
|
<span class = "expression">{1}<br/></span>
|
|
|
|
|
<span class = "reading">{2}<br/></span>
|
2011-08-28 18:01:32 +00:00
|
|
|
|
<span class = "glossary">{3}<br/></span>
|
2013-11-11 01:39:44 +00:00
|
|
|
|
<span class = "rules">{4}</span>
|
|
|
|
|
<br clear = "all"/>""".format(links, definition['expression'], reading, definition['glossary'], rules)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
return html
|
|
|
|
|
|
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
|
def buildVocabDefs(definitions, query):
|
|
|
|
|
html = buildDefHeader()
|
2013-11-09 23:42:02 +00:00
|
|
|
|
if len(definitions) > 0:
|
2011-08-28 18:01:32 +00:00
|
|
|
|
for i, definition in enumerate(definitions):
|
2013-11-11 04:27:25 +00:00
|
|
|
|
html += buildVocabDef(definition, i, query)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
else:
|
|
|
|
|
html += """
|
|
|
|
|
<p>No definitions to display.</p>
|
|
|
|
|
<p>Mouse over text with the <em>middle mouse button</em> or <em>shift key</em> pressed to search.</p>
|
2013-11-16 19:21:35 +00:00
|
|
|
|
<p>You can also also input terms in the search box below, using the "*" and "?" wildcards where needed.</p>"""
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
|
return html + buildDefFooter()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def buildKanjiDef(definition, index, query):
|
|
|
|
|
links = '<a href = "copyKanjiDef:{0}"><img src = "://img/img/icon_copy_definition.png" align = "right"/></a>'.format(index)
|
2013-11-14 17:22:20 +00:00
|
|
|
|
if query is not None and query('kanji', markupKanji(definition)):
|
2013-11-11 04:27:25 +00:00
|
|
|
|
links += '<a href = "addKanji:{0}"><img src = "://img/img/icon_add_expression.png" align = "right"/></a>'.format(index)
|
|
|
|
|
|
2013-11-14 17:22:20 +00:00
|
|
|
|
readings = ', '.join([definition['kunyomi'], definition['onyomi']])
|
2013-11-11 04:27:25 +00:00
|
|
|
|
html = u"""
|
|
|
|
|
<span class = "links">{0}</span>
|
2013-11-14 17:22:20 +00:00
|
|
|
|
<span class = "expression">{1}<br/></span>
|
|
|
|
|
<span class = "reading">[{2}]<br/></span>
|
|
|
|
|
<span class = "glossary">{3}</span>
|
|
|
|
|
<br clear = "all"/>""".format(links, definition['character'], readings, definition['glossary'])
|
2013-11-11 04:27:25 +00:00
|
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
|
return html
|
2013-11-11 04:27:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def buildKanjiDefs(definitions, query):
|
|
|
|
|
html = buildDefHeader()
|
|
|
|
|
|
|
|
|
|
if len(definitions) > 0:
|
|
|
|
|
for i, definition in enumerate(definitions):
|
|
|
|
|
html += buildKanjiDef(definition, i, query)
|
|
|
|
|
else:
|
2013-11-16 19:21:35 +00:00
|
|
|
|
html += """
|
|
|
|
|
<p>No definitions to display.</p>
|
|
|
|
|
<p>Mouse over text with the <em>middle mouse button</em> or <em>shift key</em> pressed to search.</p>
|
|
|
|
|
<p>You can also also input terms in the search box below."""
|
2013-11-11 04:27:25 +00:00
|
|
|
|
|
|
|
|
|
return html + buildDefFooter()
|