- Timestamp:
- Jun 18, 2009 6:43:23 PM (15 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
- Children:
- b57df44
- Parents:
- a9ed7d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd_client.py
ra9ed7d7 r8bbc504 474 474 475 475 for n in d.get('node', []): 476 print >>dotfile, '\t %s[shape=box,style=filled,\\' % n['vname']476 print >>dotfile, '\t"%s" [shape=box,style=filled,\\' % n['vname'] 477 477 print >>dotfile, '\t\tcolor=black,fillcolor="#60f8c0",regular=1]' 478 478 … … 500 500 # Encode the lans and the links 501 501 for l in lans.keys(): 502 print >>dotfile, '\t %s[shape=ellipse, style=filled,\\' % l502 print >>dotfile, '\t"%s" [shape=ellipse, style=filled,\\' % l 503 503 print >>dotfile,'\t\tcolor=black,fillcolor="#80c0f8",regular=1]' 504 504 for n in lans[l]: 505 505 if labels: 506 print >>dotfile, '\t %s -- %s[headlabel="%s"]' % \506 print >>dotfile, '\t"%s" -- "%s" [headlabel="%s"]' % \ 507 507 (l, n[0], n[1]) 508 508 else: 509 print >>dotfile, '\t %s -- %s' % (l, n[0])509 print >>dotfile, '\t"%s" -- "%s"' % (l, n[0]) 510 510 511 511 for k, l in links.items(): … … 513 513 if labels: 514 514 print >>dotfile, \ 515 ('\t %s -- %s[label="%s",taillabel="%s",' + \515 ('\t"%s" -- "%s" [label="%s",taillabel="%s",' + \ 516 516 'headlabel="%s"]') % \ 517 517 (l[0][0], l[1][0], k, l[0][1], l[1][1]) 518 518 else: 519 print >>dotfile, '\t %s -- %s' % (l[0][0], l[1][0])519 print >>dotfile, '\t"%s" -- "%s" ' % (l[0][0], l[1][0]) 520 520 521 521 print >>dotfile, "}"
Note: See TracChangeset
for help on using the changeset viewer.