2009-09-25 Jonathan Pryor * Global.asax: Move the monodoc.ashx RootTree configuration here. * monodoc.ashx: Remove MonodocHandler.help_tree and use Global.help_tree instead. This is necessary because of an ordering issue: after starting the server, whether you get CSS or not depends on the *first* URL you get. If you visit monodoc.ashx first, you'll get CSS support (which is the case if you just hit http://localhost:8080 w/ xsp and navigate normally). If you instead visit a URL directly, e.g. http://localhost:8080/index.aspx?link=T:Mono.Options.OptionSet/* then you'll invoke index.aspx first, and since index.aspx was using Global.help_tree (which didn't enable CSS output), you'd get !CSS pages generated. The perils of avoiding SPOT. 2009-09-25 Jonathan Pryor * monodoc.ashx: Remove tlink support (because tlinks keep potentially changing every time we restart mod-mono-server), and instead rely on just the existing link support, and use node.PublicUrl instead of node.URL. (Relying on n.tree.HelpSource.SourceID is a broken design.) 2009-06-12 Gonzalo Paniagua Javier * web.config: disable batch compilation to allow the application to work even if edits are not possible. 2009-06-08 Jonathan Pryor * Makefile.am (dist-hook): Copy everything in $(web_DATA) to $(distdir) (otherwise we'll miss some files). 2008-10-29 Jonathan Pryor * monodoc.ashx: Set HelpSource.UseWebdocCache=true so that we use the 'mdoc export-html-webdoc' pre-rendered HTML cache (if present). Greatly speeds some pages up. 2008-10-29 Jonathan Pryor * Makefile.am: Get `make dist`, `make install` working... We install to $prefix/lib/monodoc/web, which is where Debian's monodoc-http package places things... 2008-10-28 Jonathan Pryor * . (svn:ignore): Ignore generated files. * common.css: Fix the .code class, lest it make the C# Language Spec examples unreadable. (Really, *really*, unreadable.) * Makefile.am: Deal with change to mono-tools/webdoc directory... * monodoc.ashx: Grab CSS & JavaScript code from the node's HelpSource, thus allowing the HelpSource to customize output. 2006-11-19 Miguel de Icaza * monodoc.ashx: Do not rewrite target urls that start with '#' as those are links inside the current page. 2005-02-18 Gonzalo Paniagua Javier * monodoc.ashx: fixed nullrefs for the 'Various' node. 2003-11-16 Gonzalo Paniagua Javier * ptree/tree.js: make mouse selection lose the focus when ENTER is pressed. 2003-10-14 John Luke * ptree/tree.css: change a.hover to look like ndoc 2003-08-22 Piers Haken * monodoc.ash: PTree cleanup, keyboard support 2003-08-21 Piers Haken * monodoc.ash: add PTree support 2003-08-14 John Luke * monodoc.ashx: do not close the XmlTextWriter in 'void HandleTree (HttpContext context, string tree)' (allows the tree to work on IE and moz>=1.4)