[Tinyos-2-commits] CVS: tinyos-2.x/tools/tinyos/ncc/nesdoc-py
genhtml.py, 1.3, 1.4 archive.py, 1.3, 1.4
Jan Beutel
beutel at users.sourceforge.net
Thu Aug 23 13:26:48 PDT 2007
Update of /cvsroot/tinyos/tinyos-2.x/tools/tinyos/ncc/nesdoc-py
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17298/tools/tinyos/ncc/nesdoc-py
Modified Files:
genhtml.py archive.py
Log Message:
made nesdoc be quiet for now... (DG will provide a -q switch)
Index: genhtml.py
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tools/tinyos/ncc/nesdoc-py/genhtml.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** genhtml.py 1 Jun 2007 23:07:20 -0000 1.3
--- genhtml.py 23 Aug 2007 20:26:45 -0000 1.4
***************
*** 76,80 ****
for intf in intffiles:
if search("\\.xml$", intf):
! stderr.write("interface " + intf + "\n")
ixml = parse("interfaces/" + intf)
generate_interface(ixml.documentElement)
--- 76,80 ----
for intf in intffiles:
if search("\\.xml$", intf):
! #stderr.write("interface " + intf + "\n")
ixml = parse("interfaces/" + intf)
generate_interface(ixml.documentElement)
***************
*** 83,87 ****
for comp in compfiles:
if search("\\.xml$", comp):
! stderr.write("component " + comp + "\n")
ixml = parse("components/" + comp)
generate_component_graph(ixml.documentElement)
--- 83,87 ----
for comp in compfiles:
if search("\\.xml$", comp):
! #stderr.write("component " + comp + "\n")
ixml = parse("components/" + comp)
generate_component_graph(ixml.documentElement)
Index: archive.py
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tools/tinyos/ncc/nesdoc-py/archive.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** archive.py 1 Jun 2007 23:07:20 -0000 1.3
--- archive.py 23 Aug 2007 20:26:46 -0000 1.4
***************
*** 216,220 ****
if preserve and os.path.exists(filename):
continue
! print "interface %s (%s)" % (name, nicename)
doc = creator.createDocument(None, None, None)
copy = x.cloneNode(True)
--- 216,220 ----
if preserve and os.path.exists(filename):
continue
! # print "interface %s (%s)" % (name, nicename)
doc = creator.createDocument(None, None, None)
copy = x.cloneNode(True)
***************
*** 235,239 ****
continue
! print "component %s (%s)" % (name, nicename)
doc = creator.createDocument(None, None, None)
# copy component and create its specification
--- 235,239 ----
continue
! # print "component %s (%s)" % (name, nicename)
doc = creator.createDocument(None, None, None)
# copy component and create its specification
More information about the Tinyos-2-commits
mailing list