2 u
"""Implements the markup used for description and effect text in the database.
4 The language used is a variation of Markdown and Markdown Extra. There are
5 docs for each at http://daringfireball.net/projects/markdown/ and
6 http://michelf.com/projects/php-markdown/extra/ respectively.
8 Pokédex links are represented with the extended syntax `[name]{type}`, e.g.,
9 `[Eevee]{pokemon}`. The actual code that parses these is in spline-pokedex.
11 from __future__
import absolute_import
14 import sqlalchemy
.types
16 class MarkdownString(object):
17 """Wraps a Markdown string. Stringifies to the original text, but .as_html
18 will return an HTML rendering.
20 To add extensions to the rendering (which is necessary for rendering links
21 correctly, and which spline-pokedex does), you must append to this class's
22 `markdown_extensions` list. Yep, that's gross.
25 markdown_extensions
= ['extra']
27 def __init__(self
, source_text
):
28 self
.source_text
= source_text
31 def __unicode__(self
):
32 return self
.source_text
36 """Returns the string as HTML4."""
41 md
= markdown
.Markdown(
42 extensions
=self
.markdown_extensions
,
44 output_format
='xhtml1',
47 self
._as_html
= md
.convert(self
.source_text
)
53 """Returns the string in a plaintext-friendly form.
55 At the moment, this is just the original source text.
57 return self
.source_text
60 class MoveEffectProperty(object):
61 """Property that wraps a move effect. Used like this:
63 MoveClass.effect = MoveEffectProperty('effect')
65 some_move.effect # returns a MarkdownString
66 some_move.effect.as_html # returns a chunk of HTML
68 This class also performs simple substitution on the effect, replacing
69 `$effect_chance` with the move's actual effect chance.
72 def __init__(self
, effect_column
):
73 self
.effect_column
= effect_column
75 def __get__(self
, move
, move_class
):
76 effect_text
= getattr(move
.move_effect
, self
.effect_column
)
77 effect_text
= effect_text
.replace(
79 unicode(move
.effect_chance
),
82 return MarkdownString(effect_text
)
84 class MarkdownColumn(sqlalchemy
.types
.TypeDecorator
):
85 """Generic SQLAlchemy column type for Markdown text.
87 Do NOT use this for move effects! They need to know what move they belong
88 to so they can fill in, e.g., effect chances. Use the MoveEffectProperty
91 impl
= sqlalchemy
.types
.Unicode
93 def process_bind_param(self
, value
, dialect
):
94 if not isinstance(value
, basestring
):
95 # Can't assign, e.g., MarkdownString objects yet
96 raise NotImplementedError
100 def process_result_value(self
, value
, dialect
):
101 return MarkdownString(value
)