From: <ror...@us...> - 2007-07-08 19:13:58
|
Revision: 98 http://roreditor.svn.sourceforge.net/roreditor/?rev=98&view=rev Author: rorthomas Date: 2007-07-08 12:13:57 -0700 (Sun, 08 Jul 2007) Log Message: ----------- * added missing file :-\ Added Paths: ----------- trunk/lib/ror/depcheckerplugins/deptools.py Added: trunk/lib/ror/depcheckerplugins/deptools.py =================================================================== --- trunk/lib/ror/depcheckerplugins/deptools.py (rev 0) +++ trunk/lib/ror/depcheckerplugins/deptools.py 2007-07-08 19:13:57 UTC (rev 98) @@ -0,0 +1,12 @@ +#Thomas Fischer 06/07/2007, th...@th... +import sys, os, os.path + +REQUIRES = 'requires' +OPTIONAL = 'optional' +PROVIDES = 'provides' +REQUIREDBY = 'requiredby' +RELATIONS = [REQUIRES, PROVIDES, OPTIONAL, REQUIREDBY] + +MATERIAL = 'material' +FILE = 'file' +TYPES = [MATERIAL, FILE] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |