org.guifications.plugins.buildsystem_rewrite: eaf29b82292ba470d8d20a1e4d168f56c6cd913f
grim at guifications.org
grim at guifications.org
Sun Mar 30 03:15:06 CDT 2008
-----------------------------------------------------------------
Revision: eaf29b82292ba470d8d20a1e4d168f56c6cd913f
Ancestor: fbb794400e2f1f506e6bb75d72ce6673196d645b
Author: grim at guifications.org
Date: 2008-03-30T08:13:18
Branch: org.guifications.plugins.buildsystem_rewrite
Modified files:
plugin_pack.py
ChangeLog:
playing with shapes to increse readability
-----------------------------------------------------------------
This revision's diffstat output:
plugin_pack.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
-------------- next part --------------
============================================================
--- plugin_pack.py 07c5cdcb07a9a96de2da7ae725337fb254961353
+++ plugin_pack.py 76fcedc38f0a8d46e18de6211dfbc2fb50238418
@@ -161,26 +161,26 @@ class PluginPack:
print '\tlabel="Dependency Graph";'
print '\tlabelloc="t";'
print '\tsplines=TRUE;'
- print '\toverlap=scale;'
+ print '\toverlap=FALSE;'
print
- print '\tnode[fontname="sans", style="filled", shape="box"];'
+ print '\tnode[fontname="sans", fontsize="8", style="filled"];'
print
# run through the default plugins
print '\t/* default plugins */'
- print '\tnode[fillcolor="palegreen"];'
+ print '\tnode[fillcolor="palegreen",shape="tab"];'
print_plugins(self.default_plugins())
print
# run through the incomplete plugins
print '\t/* incomplete plugins */'
- print '\tnode[fillcolor="lightyellow1"];'
+ print '\tnode[fillcolor="lightyellow1",shape="note"];'
print_plugins(self.incomplete_plugins())
print
# run through the abusive plugins
print '\t/* abusive plugins */'
- print '\tnode[fillcolor="lightpink"];'
+ print '\tnode[fillcolor="lightpink",shape="octagon"];'
print_plugins(self.abusive_plugins())
print
@@ -188,7 +188,7 @@ class PluginPack:
print '\t/* dependencies'
print '\t * exteranl ones that don\'t have nodes get colored to the following'
print '\t */'
- print '\tnode[fillcolor="powderblue"];'
+ print '\tnode[fillcolor="powderblue", shape="egg"];'
for name in self.plugins.keys():
plugin = self.plugins[name]
More information about the Plugins-commits
mailing list