Fixing style issues and an incorrect modification of .gitignore.
authorJoseph Spiros <joseph.spiros@ithinksw.com>
Thu, 10 Jun 2010 08:14:00 +0000 (04:14 -0400)
committerJoseph Spiros <joseph.spiros@ithinksw.com>
Thu, 10 Jun 2010 08:14:00 +0000 (04:14 -0400)
.gitignore
models.py
templatetags/containers.py

index 5cde84d..0d20b64 100644 (file)
@@ -1,4 +1 @@
 *.pyc
-*~
-*#
-TODO
index dcb5d74..eb6ebc0 100644 (file)
--- a/models.py
+++ b/models.py
@@ -286,8 +286,7 @@ class File(Node):
 class Template(TreeModel):
        name = models.CharField(max_length=255)
        documentation = models.TextField(null=True, blank=True)
-       mimetype = models.CharField(max_length=255, null=True, blank=True,
-           help_text='Default: %s' % settings.DEFAULT_CONTENT_TYPE)
+       mimetype = models.CharField(max_length=255, null=True, blank=True, help_text='Default: %s' % settings.DEFAULT_CONTENT_TYPE)
        code = models.TextField(verbose_name='django template code')
        
        @property
index 25156f2..ca5e1e9 100644 (file)
@@ -25,7 +25,7 @@ class ContainerNode(template.Node):
                        self.nodelist_empty = template.NodeList()
                else:
                        self.nodelist_empty = nodelist_empty
-               
+       
        def render(self, context):
                content = settings.TEMPLATE_STRING_IF_INVALID
                if 'page' in context:
@@ -78,6 +78,7 @@ class ContainerNode(template.Node):
                                content = ''
                return content
 
+
 def do_container(parser, token):
        """
        {% container <name> [[references <type>] as <variable>] %} 
@@ -125,5 +126,7 @@ def do_container(parser, token):
                
        else: # error
                raise template.TemplateSyntaxError('"%s" template tag provided without arguments (at least one required)' % tag)
+
+
 register.tag('container', do_container)
 register.tag('blockcontainer', do_container)