From 33f04834b3026b06df59346328fc9d12a4fba047 Mon Sep 17 00:00:00 2001 From: beutel Date: Thu, 23 Aug 2007 20:26:45 +0000 Subject: [PATCH] made nesdoc be quiet for now... (DG will provide a -q switch) --- tools/tinyos/misc/.cvsignore | 1 + tools/tinyos/ncc/nesdoc-py/archive.py | 4 ++-- tools/tinyos/ncc/nesdoc-py/genhtml.py | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/tinyos/misc/.cvsignore b/tools/tinyos/misc/.cvsignore index f59b801d..d193d538 100644 --- a/tools/tinyos/misc/.cvsignore +++ b/tools/tinyos/misc/.cvsignore @@ -8,3 +8,4 @@ tos-set-symbols tos-write-image tos-storage-at45db tos-storage-stm25p +tos-write-buildinfo diff --git a/tools/tinyos/ncc/nesdoc-py/archive.py b/tools/tinyos/ncc/nesdoc-py/archive.py index ea9cbff0..74b63689 100644 --- a/tools/tinyos/ncc/nesdoc-py/archive.py +++ b/tools/tinyos/ncc/nesdoc-py/archive.py @@ -215,7 +215,7 @@ for x in interfacedefs.getElementsByTagName("interfacedef"): filename = "interfaces/%s.xml" % nicename if preserve and os.path.exists(filename): continue - print "interface %s (%s)" % (name, nicename) + # print "interface %s (%s)" % (name, nicename) doc = creator.createDocument(None, None, None) copy = x.cloneNode(True) doc.appendChild(copy) @@ -234,7 +234,7 @@ for x in components.getElementsByTagName("component"): if preserve and os.path.exists(filename): continue - print "component %s (%s)" % (name, nicename) + # print "component %s (%s)" % (name, nicename) doc = creator.createDocument(None, None, None) # copy component and create its specification copy = x.cloneNode(True) diff --git a/tools/tinyos/ncc/nesdoc-py/genhtml.py b/tools/tinyos/ncc/nesdoc-py/genhtml.py index e775198b..ef717888 100644 --- a/tools/tinyos/ncc/nesdoc-py/genhtml.py +++ b/tools/tinyos/ncc/nesdoc-py/genhtml.py @@ -75,14 +75,14 @@ except OSError: for intf in intffiles: if search("\\.xml$", intf): - stderr.write("interface " + intf + "\n") + #stderr.write("interface " + intf + "\n") ixml = parse("interfaces/" + intf) generate_interface(ixml.documentElement) ixml.unlink() for comp in compfiles: if search("\\.xml$", comp): - stderr.write("component " + comp + "\n") + #stderr.write("component " + comp + "\n") ixml = parse("components/" + comp) generate_component_graph(ixml.documentElement) generate_component(ixml.documentElement) -- 2.39.2