WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Pass the root directory to Doxyfilter and thence pythfil

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Pass the root directory to Doxyfilter and thence pythfilter.py so that the latter can get the namespace/packages correct.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 13 Sep 2005 15:16:12 +0000
Delivery-date: Tue, 13 Sep 2005 15:14:58 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User ewan@xxxxxxxxxxxxx
# Node ID bcbd2d2c10680b16fd9597f2759773dc2cb29cdb
# Parent  64d6de1ea743f5a8ca2d5a01c567408f3d831820
Pass the root directory to Doxyfilter and thence pythfilter.py so that the 
latter can get the namespace/packages correct.

diff -r 64d6de1ea743 -r bcbd2d2c1068 docs/Doxyfilter
--- a/docs/Doxyfilter   Sun Sep 11 20:40:15 2005
+++ b/docs/Doxyfilter   Tue Sep 13 13:41:05 2005
@@ -1,12 +1,16 @@
 #!/bin/sh
+
+#
+# Doxyfilter <source-root> <filename>
+#
 
 dir=$(dirname "$0")
 
 PYFILTER="$dir/pythfilter.py"
 
-if [ "${1/.py/}" != "$1" ]
+if [ "${2/.py/}" != "$2" ]
 then
-    python "$PYFILTER" -f "$1"
+    python "$PYFILTER" -r "$1" -f "$2"
 else
-    cat "$1"
+    cat "$2"
 fi

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>