[Mono-docs-list] Fwd: [Mono-winforms-list] Exception when using monodocer on System.Windows.Forms.dll

Jonathan Pryor jonpryor at vt.edu
Sat Dec 16 21:43:21 EST 2006


On Sat, 2006-12-16 at 15:30 +0100, latency wrote:
> thanks for the advice it worked well. But there's still one problem.
> I've managed to integrate the System.Windows.Forms documentation into Mondoc 
> but this included changing the makefile in the monodoc/class folder and 
> adding the System.Windows.Forms Doc into the class folder of mondoc.
> 
> The change of the makefile is not very much and I attached it to the email but 
> for uploading the docs of SWF by monodocer, well that I can't do since I've 
> got no access to the server and I'm not familiar wether this is the right 
> thing to do.
> 
> However I would still like to see SWF in my monodoc browser so can somebody 
> tell me how this can be accomplished without having to hack monodoc after 
> each update.

Use the `msassembler' command and install the documentation separately.

http://www.mono-project.com/Assembler has more information.

You can do this by creating a `swf-docs.source' file with the contents:

	<?xml version="1.0"?>
	<monodoc>
	  <source provider="ecma" basefile="netdocs" path="classlib"/>
	</monodoc>

Then create swf-docs.tree and swf-docs.zip files with:

	mdassembler --ecma System.Windows.Forms/en -o swf-docs

where System.Windows.Forms/en is the directory containing the
monodocer-generated documentation.

Then install this documentation with:

	cp swf-docs.source swf-docs.tree swf-docs.zip \
		`monodoc --get-sourcesdir`

Close and restart monodoc to view this documentation.

 - Jon




More information about the Mono-docs-list mailing list