~ubuntu-branches/ubuntu/hardy/moin/hardy

« back to all changes in this revision

Viewing changes to debian/patches/00816_allow_digits_in_symbolic_entities.patch

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-05-14 15:55:15 UTC
  • mfrom: (0.4.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070514155515-apl4srcch40h9fcx
Tags: 1.5.7-3ubuntu1
* Merge from debian unstable, remaining changes:
  - 11000_show_traceback_toggle.patch: allow for 'show_traceback=0' in
    Moin configurations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# HG changeset patch
 
2
# User Thomas Waldmann <tw AT waldmann-edv DOT de>
 
3
# Date Thu Feb 15 20:47:28 2007 +0100
 
4
# Node ID 0e122fffc486a5af12b06fe927108a19dfa694ea
 
5
# parent: 0a0730d1bd6b4913a635535d019ec3006f779235
 
6
fixed alphaNUMERIC symbolic entities
 
7
 
 
8
--- a/MoinMoin/parser/wiki.py   Mon Feb 12 00:18:34 2007 +0100
 
9
+++ b/MoinMoin/parser/wiki.py   Thu Feb 15 20:47:28 2007 +0100
 
10
@@ -83,7 +83,7 @@ class Parser:
 
11
 (?P<email>[-\w._+]+\@[\w-]+(\.[\w-]+)+)
 
12
 (?P<smiley>(?<=\s)(%(smiley)s)(?=\s))
 
13
 (?P<smileyA>^(%(smiley)s)(?=\s))
 
14
-(?P<ent_symbolic>&[a-zA-Z]+;)
 
15
+(?P<ent_symbolic>&\w+;)
 
16
 (?P<ent>[<>&])
 
17
 (?P<wikiname_bracket>\[".*?"\])
 
18
 (?P<tt_bt>`.*?`)"""  % {
 
19
--- a/docs/CHANGES      Mon Feb 12 00:18:34 2007 +0100
 
20
+++ b/docs/CHANGES      Thu Feb 15 20:47:28 2007 +0100
 
21
@@ -35,6 +35,9 @@ Version 1.5.current:
 
22
       It is possible to use these protocols now on wiki pages and in the
 
23
       navi_bar. We just generate the URLs, it is up to your browser what it
 
24
       does when clicking on those links.
 
25
+
 
26
+  Bugfixes:
 
27
+    * Symbolic entities with numbers (like &sup2;) did not work, fixed.
 
28
 
 
29
 
 
30
 Version 1.5.7:
 
31