Mercurial > moin > 1.9
changeset 3027:6dcc9617bab6
Fix for WrongAlignedAttachment (Thanks to Benjamin Weber) (ported from 1.6)
author | Reimar Bauer <rb.proj AT googlemail DOT com> |
---|---|
date | Sun, 03 Feb 2008 17:57:42 +0100 |
parents | 6275f8695bc8 |
children | f2d239fbf544 |
files | MoinMoin/parser/text_moin_wiki.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/parser/text_moin_wiki.py Sun Feb 03 17:51:52 2008 +0100 +++ b/MoinMoin/parser/text_moin_wiki.py Sun Feb 03 17:57:42 2008 +0100 @@ -654,7 +654,7 @@ target = wikiutil.url_unquote(target, want_unicode=True) desc = groups.get('transclude_desc', '') or '' params = groups.get('transclude_params', u'') or u'' - acceptable_keys_img = ['class', 'title', 'longdesc', 'width', 'height', ] # no style because of JS + acceptable_keys_img = ['class', 'title', 'longdesc', 'width', 'height', 'align', ] # no style because of JS acceptable_keys_object = ['class', 'title', 'width', 'height', # no style because of JS 'type', 'standby', ] # we maybe need a hack for <PARAM> here m = self.link_target_re.match(target)