X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftools%2Fmonodoc%2FChangeLog;h=2ea79257c13db28843124b03565002f00ee8a9b2;hb=2d23bfcbce7a3f7e54dcd5911adb88b244baca35;hp=6de3045c90f6bb051a0ef4623fca350f73e6f7ed;hpb=1e2332d356cc9a6c11db3e2eb9d114c26a8b5953;p=mono.git diff --git a/mcs/tools/monodoc/ChangeLog b/mcs/tools/monodoc/ChangeLog index 6de3045c90f..2ea79257c13 100644 --- a/mcs/tools/monodoc/ChangeLog +++ b/mcs/tools/monodoc/ChangeLog @@ -1,3 +1,38 @@ +2010-04-25 Jonathan Pryor + + * Monodoc/ecma-provider.cs: Support the full set of possible operator + names within EcmaHelpSource.MakeOperatorSignature() (where "full" is + "whatever is included in ECMA-335 §10.3.1 through §10.3.3"). + Fixes InvalidOperationException reported to mono-docs-list. + +2010-02-28 Jonathan Pryor + + * Monodoc/provider.cs: Add + RootTree.LoadTree(string,string,IEnumerable) for compatibility with + Mono 2.6's monodoc.dll. + +2010-02-26 Jonathan Pryor + + * Makefile: Add a System.Core.dll reference; embed monodoc.xml as a + resource. + * Monodoc/provider.cs: Add a + RootTree.LoadTree(string,XmlDocument,IEnumerable) method. + This is so 'mdoc export-html-webdoc' doesn't need to rely on the + system-wide .source files (allowing execution w/o changing/replacing + the system-wide .source files) and so MonoDevelop can support + multiple .source files spread throughout the system sanely. + * Monodoc/ecma-provider.cs: Always add the extension methods contained + in the current EcmaHelpSource, instead of implicitly requiring that + the current EcmaHelpSource also be contained within + RootTree.HelpSources. This simplifies logic in 'mdoc'. + +2010-01-13 Jonathan Pryor + + * Monodoc/provider.cs, Monodoc/ecma-provider.cs: Improve cache support + by having EcmaHelpSource.GetTextFromUrl() look for cached contents. + This greatly speeds up type member listings (e.g. T:...List`1/*), + e.g. from ~2.0s to 0.06s. + 2010-01-13 Jonathan Pryor * Mono.Documentation/XmlDocUtils.cs: XmlDocUtils.AddExtensionMethods()