Changeset 258

Show
Ignore:
Timestamp:
08/02/02 15:49:13 (6 years ago)
Author:
sholloway
Message:

Fixed dot skin to support node names with spaces in them

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RBFoundation/RBFoundation/__init__.py

    r253 r258  
    4646""" 
    4747 
    48 __version__         = '0.3.0
     48__version__         = '0.3.1
    4949__author__          = 'Shane Holloway' 
    50 __author_email__    = 'shane.holloway@ieee.org
     50__author_email__    = 'shane.holloway@runeblade.com
    5151__url__             = 'http://www.runeblade.com/' 
    5252 
  • trunk/RBSkinning/RBSkinning/dotSkin/node.py

    r253 r258  
    3939        name = self.settings.get('name', '') 
    4040        if not name: name = joinclean(self.Content(), '\n') 
    41         result = name 
     41        result = ':'.join(['"%s"' % x.replace('"', "'") for x in name.split(':')]) 
    4242        DOTSettings = self._OutputDOTSettings() 
    4343        if DOTSettings: