- Timestamp:
- 01/06/08 16:31:36 (5 years ago)
- Location:
- trac/plugins/tracnav-0.11/tracnav
- Files:
-
- 2 edited
-
__init__.py (modified) (1 diff)
-
tracnav.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trac/plugins/tracnav-0.11/tracnav/__init__.py
r3243 r3244 1 __version__ = '4.0pre 4'1 __version__ = '4.0pre5' -
trac/plugins/tracnav-0.11/tracnav/tracnav.py
r3243 r3244 35 35 36 36 * Copyright 2005-2006, Bernhard Haumacher (haui at haumacher.de) 37 * Copyright 2005-200 7, Thomas Moschny (moschny at ipd.uni-karlsruhe.de)37 * Copyright 2005-2008, Thomas Moschny (moschny at ipd.uni-karlsruhe.de) 38 38 39 39 {{{ … … 127 127 self.collapse = True 128 128 if args: 129 for arg in args.split('|'):129 for arg in map(lambda a: a.strip(), args.split('|')): 130 130 if arg == 'nocollapse': 131 131 self.collapse = False 132 elif arg == 'noedit': 133 self.modify = False 132 134 else: 133 135 self.names.append(arg) … … 311 313 312 314 def get_templates_dirs(self): 313 # we don't provide templates 314 return [] 315 return [] # we don't provide templates
Note: See TracChangeset
for help on using the changeset viewer.
