X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ftools%2Fmdoc%2FChangeLog;h=15a2b4a03a6405ef705b10c6a6ef328d7071a1b5;hb=bf5947a0fd2b523c30833605ee69b2b041aa43f4;hp=f522cf3818601cd195260155908fca00cb123813;hpb=5ae7b857dce7d578a2f34ab28d349478ddc9039c;p=mono.git diff --git a/mcs/tools/mdoc/ChangeLog b/mcs/tools/mdoc/ChangeLog index f522cf38186..15a2b4a03a6 100644 --- a/mcs/tools/mdoc/ChangeLog +++ b/mcs/tools/mdoc/ChangeLog @@ -1,3 +1,87 @@ +2010-06-10 Jonathan Pryor + + * Mono.Documentation/monodocs2html.cs: Regenerate all index.{opts.ext} + files if any of the source .xml files have changed. This allows + new values to be inserted into the index.{opts.ext} + files, instead of the index files being "stale". Fixes #573121. + +2010-04-16 Jonathan Pryor + + * Makefile: Add System.Xml.Linq.dll to the referenced assemblies. + * Mono.Documentation/webdoc.cs: Allow .source files to be provided to + 'mdoc export-html-webdoc', which will cause the .source files to be + read and all referenced .tree/.zip files to be processed. + +2010-04-16 Jonathan Pryor + + * Mono.Documentation/monodocer.cs: Use Int64 instead of UInt64 for + enum values, so that we can properly capture negative values. + +2010-02-28 Jonathan Pryor + + * Mono.Documentation/webdoc.cs: Add --use-system-sources option so + that 'mdoc export-html-webdoc' will use the system-installed sources + in addition to any -r'd sources (which was the behavior 2 commits + ago). + +2010-02-26 Jonathan Pryor + + * Mono.Documentation/assembler.cs: Allow other apps to get the same + '--format' logic, specifically 'mdoc export-html-webdoc'. + * Mono.Documentation/webdoc.cs: Allow it to be more "stand-alone". + Previously, it would depend upon the system-wide .source files. + This is bad, because you might want to generate the 'cache' + directory for a different installation, with a different set of + .tree/.zip/.source files, and you might not want to replace your own + and/or you often forget, as is the case with me. Instead, allow a + format to be specified for .tree files, and allow additional .source + files to be referenced so that extension methods will be found within + the specified sources. This allows for a "stand-alone" method of + operation w/o depending upon the system-wide .source files. + +2010-01-11 Jonathan Pryor + + * Mono.Documentation/monodocs2slashdoc.cs: Fix NamespaceSummaries.xml + generation to look at the ns-NAMESPACE.xml files, not just + NAMESPACE.xml files. + +2009-12-03 Jonathan Pryor + + * Resources/stylesheet.xsl: Add support for generating namespace links + for . + * Test/DocTest-v1.cs: Add namespace links for testing. + * Test/en.expected.importslashdoc/Mono.DocTest/Color.xml, + Test/en.expected.importslashdoc/NoNamespace.xml, + Test/html.expected/index.html, + Test/html.expected/Mono.DocTest/Color.html, + Test/html.expected/NoNamespace.html, + Test/msxdoc-expected.importslashdoc.xml: Flush. + +2009-12-03 Jonathan Pryor + + * Test/html.expected/Mono.DocTest.Generic/MyList`1.html, + Test/html.expected/Mono.DocTest.Generic/MyList`2.html: Flush to sync + with updated mdoc. Inherited members are now shown (as they were + supposed to be, but a bug had prevented from being found). + +2009-12-02 Jonathan Pryor + + * Mono.Documentation/monodocs2html.cs: Enable debug output in + XslCompiledTransform when --debug is specified. + * Resources/overview.xsl: Add xmlns, exclude-result-prefixes so that + .NET won't complain about the stylesheet. (Why's it complain?) + * Resources/stylesheet.xsl: .NET compatibility fixes: + - Use msxsl:node-set() when necessary. + - Change XPath expressions so that they work properly everywhere. + * Makefile: Don't build an 'mdoc-net.exe' anymore, as the normal + mdoc.exe can now run normally under .NET. + +2009-11-25 Jonathan Pryor + + * Makefile: When copying mdoc-net.exe into ./mdoc-net, rename it to + mdoc.exe so that .NET users continue to use the name 'mdoc'. This + will make documentation easier, etc. + 2009-11-25 Jonathan Pryor + Giving up on getting mdoc to fully work under .NET; specifically,