[Mono-docs-list] monodoc --help

John Luke jluke@users.sourceforge.net
Tue, 09 Sep 2003 18:19:29 -0400


This is a multi-part message in MIME format.
--------------060207030401010905070101
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Hello,
Currently monodoc --help doesn't display all the options that are in 
browser.exe --help.  The attached patch includes the additional options 
as well as some brief descriptions of them.

John

--------------060207030401010905070101
Content-Type: text/plain;
 name="monodoc.in.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="monodoc.in.diff"

Index: monodoc.in
===================================================================
RCS file: /cvs/public/monodoc/monodoc.in,v
retrieving revision 1.7
diff -u -r1.7 monodoc.in
--- monodoc.in	24 Aug 2003 04:28:28 -0000	1.7
+++ monodoc.in	9 Sep 2003 22:31:13 -0000
@@ -17,7 +17,17 @@
 	exit 0
 	;;
     x--help)
-	echo Usage is: monodoc \[--get-sourcesdir\] \[--help\]
+	echo "Usage is:"
+	echo "monodoc [options]"
+	echo ""
+	echo "where [options] is one of the following:"
+	echo "  --help		print this message"
+	echo "  --html TOPIC		print the html contents of TOPIC"
+	echo "  --get-sourcesdir	print the location of monodoc sources"
+	echo "  --make-index		create the index"
+	echo "  --merge-changes CHANGE_FILE [TARGET_DIR]"
+	echo "  --normalize		format a documentation file consistently"
+	echo "  TOPIC			display the browser at TOPIC (ex. N:System)"
 	exit 0
 	;;
 esac

--------------060207030401010905070101--