# HG changeset patch # User Christian Humer # Date 1392901158 -3600 # Node ID fcc40370f78dbfb5eced6b8f5bbd780d4e850c47 # Parent aaba5b41c953cf8e8ca02ed3c15dc67eceef4e15# Parent b167b1838029a15b3aff97db60656f8d5deae40d Merge. diff -r aaba5b41c953 -r fcc40370f78d mxtool/mx.py --- a/mxtool/mx.py Thu Feb 20 13:44:39 2014 +0100 +++ b/mxtool/mx.py Thu Feb 20 13:59:18 2014 +0100 @@ -3057,6 +3057,10 @@ if name == 'item': if ps.current_ws is None: target.element(name, attributes) + elif not attributes.has_key('elementID') and attributes.has_key('factoryID') and attributes.has_key('path') and attributes.has_key('type'): + target.element(name, attributes) + p_name = attributes['path'][1:] # strip off the leading '/' + ps.seen_projects.append(p_name) else: p_name = attributes['elementID'][1:] # strip off the leading '=' _workingset_element(target, p_name)