add source module to docs; reinspect
authorThomas Vander Stichele <thomas@apestaart.org>
Sun, 11 Sep 2005 17:52:09 +0000 (17:52 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sun, 11 Sep 2005 17:52:09 +0000 (17:52 +0000)
Original commit message from CVS:
add source module to docs; reinspect

gst-xmlinspect.py

index 897b987..1d96b44 100644 (file)
@@ -30,6 +30,7 @@ PLUGIN_TEMPLATE = """<plugin>
   <basename>%(basename)s</basename>
   <version>%(version)s</version>
   <license>%(license)s</license>
+  <source>%(source)s</source>
   <package>%(package)s</package>
   <origin>%(origin)s</origin>
   <elements>
@@ -92,6 +93,7 @@ def output_plugin(plugin, indent=0):
         'basename':    basename,
         'version':     version,
         'license':     xmlencode(plugin.get_license()),
+        'source':      xmlencode(plugin.get_source()),
         'package':     xmlencode(plugin.get_package()),
         'origin':      xmlencode(plugin.get_origin()),
         'elements': "\n".join(elementsoutput),