Moved src/web to src/webapp
svn: r18330
This commit is contained in:
parent
d2eac17b4f
commit
e0bf2acbc6
@ -3,8 +3,8 @@ import re
|
|||||||
from django import template
|
from django import template
|
||||||
from django.template import escape, Library
|
from django.template import escape, Library
|
||||||
from django.utils.safestring import mark_safe
|
from django.utils.safestring import mark_safe
|
||||||
from web.utils import *
|
from webapp.utils import *
|
||||||
import web.utils
|
import webapp.utils
|
||||||
|
|
||||||
register = Library()
|
register = Library()
|
||||||
|
|
||||||
@ -53,12 +53,12 @@ def make_tag(func):
|
|||||||
return do_func
|
return do_func
|
||||||
|
|
||||||
for filter_name in util_filters:
|
for filter_name in util_filters:
|
||||||
func = getattr(web.utils, filter_name)
|
func = getattr(webapp.utils, filter_name)
|
||||||
func.is_safe = True
|
func.is_safe = True
|
||||||
register.filter(filter_name, func)
|
register.filter(filter_name, func)
|
||||||
|
|
||||||
for tag_name in util_tags:
|
for tag_name in util_tags:
|
||||||
func = getattr(web.utils, tag_name)
|
func = getattr(webapp.utils, tag_name)
|
||||||
register.tag(tag_name, make_tag(func))
|
register.tag(tag_name, make_tag(func))
|
||||||
|
|
||||||
probably_alive.is_safe = True
|
probably_alive.is_safe = True
|
||||||
|
Loading…
Reference in New Issue
Block a user