1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 | import operator
import re
from django import template
register = template.Library()
a_re = re.compile(r'<a.+?>\s*(.*)\s*')
space_re = re.compile(r'\s+')
@register.tag
def anchorsort(parser, token):
""" Sorts a list of links, <a href="..."...>Anchor Text</a>. """
nodelist = parser.parse(('endanchorsort',))
parser.delete_first_token()
return AnchorSortNode(nodelist)
class AnchorSortNode(template.Node):
def __init__(self, nodelist):
self.nodelist = nodelist
def render(self, context):
content = self.nodelist.render(context)
try:
anchorlist = [space_re.sub(" ", a).strip() for a in content.split("</a>") if len(a.strip())]
# Compose the list of tuples, (text, <a href...>text</a>) and sort it based on the first item.
anchorlist = [(a_re.search(x).groups(1)[0].lower(), x) for x in anchorlist]
anchorlist.sort(key=operator.itemgetter(0))
return "</a>".join([item[1] for item in anchorlist]) + "</a>" if anchorlist else ""
except:
return content
|
Comments