Changeset 4222 for fullblogplugin

Show
Ignore:
Timestamp:
09/02/08 04:23:01 (3 months ago)
Author:
osimons
Message:

FullBlogPlugin: Fix for segment-split of non-ascii blog links.

Thanks to Wang Diancheng for report and patch.

Closes #3612.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • fullblogplugin/0.11/tracfullblog/core.py

    r4102 r4222  
    130130            # Assume it is a regular post, and pass to 'view' 
    131131            # Split for comment linking (the_post#comment-1, or #comment-1) 
    132             segments = unicode_unquote(content).split('#') 
     132            segments = content.split('#') 
    133133            if len(segments) == 2: 
    134134                url, anchor = segments