diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-01 12:29:33 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-01 12:29:33 +0000 |
commit | 54bb21c57bb86941d80c15590e0a121405173156 (patch) | |
tree | e2d5566f95fda7f18aa04acc24c5cc09747442fa | |
parent | f9f5f063728688cf455a1512d492b632c43963d7 (diff) |
document core plugins in a separate document just like all the others rename these plugins to something starting with...RELEASE-0_9_7RELEASE-0_10_0
Original commit message from CVS:
document core plugins in a separate document just like all the
others
rename these plugins to something starting with core
-rw-r--r-- | gst-xmlinspect.py | 3 | ||||
-rw-r--r-- | gtk-doc-plugins.mak | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gst-xmlinspect.py b/gst-xmlinspect.py index abfb917..30c0cf8 100644 --- a/gst-xmlinspect.py +++ b/gst-xmlinspect.py @@ -120,6 +120,9 @@ def main(): for plugin in all: gst.debug("inspecting plugin %s from source %s" % ( plugin.get_name(), plugin.get_source())) + # this skips gstcoreelements, with bin and pipeline + if plugin.get_filename() is None: + continue if plugin.get_source() != source: continue diff --git a/gtk-doc-plugins.mak b/gtk-doc-plugins.mak index 66047b9..2163284 100644 --- a/gtk-doc-plugins.mak +++ b/gtk-doc-plugins.mak @@ -112,7 +112,7 @@ $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(SCANOBJ_FILES_O): scan-build.stamp INSPECT_REGISTRY=$(top_builddir)/docs/plugins/inspect-registry.xml INSPECT_ENVIRONMENT=\ GST_PLUGIN_SYSTEM_PATH= \ - GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext \ + GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(top_builddir)/plugins \ GST_REGISTRY=$(INSPECT_REGISTRY) # update the element and plugin XML descriptions; store in inspect/ |