Changeset 4799
- Timestamp:
- 11/14/08 09:09:24 (2 months ago)
- Files:
-
- googlemapmacro/dev/0.11/tracgooglemap/macro.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
googlemapmacro/dev/0.11/tracgooglemap/macro.py
r4797 r4799 205 205 206 206 def expand_macro(self, formatter, name, content): 207 largs, kwargs = parse_args(content, multi=['marker' ])207 largs, kwargs = parse_args(content, multi=['marker','to']) 208 208 if len(largs) > 0: 209 209 arg = unicode(largs[0]) … … 427 427 428 428 if 'from' in kwargs and 'to' in kwargs: 429 directions = "from: %s to: %s" % (kwargs['from'], kwargs['to'])429 directions = "from: %s to: %s" % (kwargs['from'],' to: '.join(list(kwargs['to']))) 430 430 mapnmore = tag.table( 431 431 tag.tr(
