]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
made nesdoc be quiet for now... (DG will provide a -q switch)
authorbeutel <beutel>
Thu, 23 Aug 2007 20:26:45 +0000 (20:26 +0000)
committerbeutel <beutel>
Thu, 23 Aug 2007 20:26:45 +0000 (20:26 +0000)
tools/tinyos/misc/.cvsignore
tools/tinyos/ncc/nesdoc-py/archive.py
tools/tinyos/ncc/nesdoc-py/genhtml.py

index f59b801de139eec0aa4e8c1d197de939c23cd080..d193d5387953a1db0d93a97fbc88285754cbe827 100644 (file)
@@ -8,3 +8,4 @@ tos-set-symbols
 tos-write-image
 tos-storage-at45db
 tos-storage-stm25p
+tos-write-buildinfo
index ea9cbff0506c6a669e6a9676938099cd3b84ef61..74b63689b7b18a20d4f90d37b2b192b75df9f63f 100644 (file)
@@ -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)
index e775198bce246be81b2303c31eae4a8e73b925fc..ef717888d62ff9ed06b67f72ad4a63c84c19b3f4 100644 (file)
@@ -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)