Fixed #12112 -- Made the colors used by syntax highlighting customizable.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2009-12-28 06:48:47 +00:00
parent 9319f89547
commit c38d66a216
6 changed files with 368 additions and 18 deletions

View file

@ -9,8 +9,8 @@ from django.utils.functional import SimpleLazyObject
import timesince
import datastructures
import dateformat
import itercompat
from decorators import DecoratorFromMiddlewareTests
# We need this because "datastructures" uses sorted() and the tests are run in
@ -28,6 +28,7 @@ __test__ = {
}
from dateformat import *
from termcolors import *
class TestUtilsHtml(TestCase):