[runtime] Disable some tests in full-aot mode which cannot be AOTed because of type...
[mono-project.git] / mcs / class / monodoc / Monodoc / HelpSource_Legacy.cs
blob15f73ef80b9e32d6aeabbdf1ee146455b2c22da1
1 using System;
2 using System.IO;
3 using System.Linq;
4 using System.Xml;
5 using System.Diagnostics;
6 using System.Collections.Generic;
8 using Mono.Utilities;
9 using Lucene.Net.Index;
11 #if LEGACY_MODE
13 namespace Monodoc
15 using Generators;
17 public partial class HelpSource
19 static HtmlGenerator htmlGenerator = new HtmlGenerator (null);
21 [Obsolete]
22 public static bool use_css;
23 [Obsolete]
24 public static bool FullHtml = true;
25 [Obsolete]
26 public static bool UseWebdocCache;
28 [Obsolete ("Use Monodoc.Providers.HtmlGenerator.InlineCss")]
29 public string InlineCss {
30 get { return Monodoc.Generators.HtmlGenerator.InlineCss; }
33 [Obsolete]
34 public string InlineJavaScript {
35 get { return null; }
38 [Obsolete ("Use RenderUrl")]
39 public string GetText (string url, out Node node)
41 return rootTree.RenderUrl (url, htmlGenerator, out node, this);
44 [Obsolete ("Use RenderUrl")]
45 public string RenderNamespaceLookup (string url, out Node node)
47 return rootTree.RenderUrl (url, htmlGenerator, out node, this);
52 #endif