aboutsummaryrefslogtreecommitdiffstats
path: root/notice
diff options
context:
space:
mode:
authorWeitian LI <liweitianux@gmail.com>2014-06-24 16:39:42 +0800
committerWeitian LI <liweitianux@gmail.com>2014-06-24 16:39:42 +0800
commited3d74e61300f91818eeff9dad7e9d35c556f75a (patch)
tree62c96fd6e158068567eebb5072406911e99db47d /notice
parenta64eb136b0d8710ff132551f149a39b3a45da1f9 (diff)
downloaddjango-skaschool-ed3d74e61300f91818eeff9dad7e9d35c556f75a.tar.bz2
Added app schedule, tools and archive/templatetags; updated settings.
* Added app 'schedule' to provides a more generic schedule page * Added fake app 'tools' to holds generic utilities * Moved notice/templatetags to tools/templatetags * Small change to archive.models.Archive display format * Added archive/templatetags * Small update to introduction page
Diffstat (limited to 'notice')
-rw-r--r--notice/templatetags/__init__.py0
-rw-r--r--notice/templatetags/my_markdown.py26
2 files changed, 0 insertions, 26 deletions
diff --git a/notice/templatetags/__init__.py b/notice/templatetags/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/notice/templatetags/__init__.py
+++ /dev/null
diff --git a/notice/templatetags/my_markdown.py b/notice/templatetags/my_markdown.py
deleted file mode 100644
index 842f72f..0000000
--- a/notice/templatetags/my_markdown.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-
-"""
-implement my own 'markdown' template tag
-requires 'python-markdown' (pip install markdown)
-"""
-# ref: http://www.dominicrodger.com/django-markdown.html
-
-import markdown
-
-from django import template
-from django.template.defaultfilters import stringfilter
-from django.utils.encoding import force_unicode
-from django.utils.safestring import mark_safe
-
-register = template.Library()
-
-@register.filter(is_safe=True)
-@stringfilter
-def my_markdown(value):
- extensions = ["nl2br", ]
-
- return mark_safe(markdown.markdown(force_unicode(value),
- extensions,
- safe_mode=True,
- enable_attributes=False))