Django

Code

Show
Ignore:
Timestamp:
06/15/08 19:34:17 (7 months ago)
Author:
jbronn
Message:

gis: Merged revisions 7574-7583,7585-7586,7590-7602,7614-7615,7619-7625,7629,7632-7636 via svnmerge from trunk.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/gis

    • Property svnmerge-integrated changed from /django/trunk:1-7572 to /django/trunk:1-7641
  • django/branches/gis/django/template/__init__.py

    r7279 r7642  
    468468        2 
    469469        >>> fe.var 
    470         'variable' 
     470        <Variable: 'variable'> 
    471471 
    472472    This class should never be instantiated outside of the 
     
    599599    marks):: 
    600600 
    601         >>> c = {'article': {'section':'News'}} 
     601        >>> c = {'article': {'section':u'News'}} 
    602602        >>> Variable('article.section').resolve(c) 
    603603        u'News' 
    604604        >>> Variable('article').resolve(c) 
    605         {'section': 'News'} 
     605        {'section': u'News'} 
    606606        >>> class AClass: pass 
    607607        >>> c = AClass() 
    608608        >>> c.article = AClass() 
    609         >>> c.article.section = 'News' 
     609        >>> c.article.section = u'News' 
    610610        >>> Variable('article.section').resolve(c) 
    611611        u'News'