Add autoconf checks for platforms without IPv6
[mono.git] / mcs / class / monodoc / Monodoc / HelpSource_Legacy.cs
1 using System;
2 using System.IO;
3 using System.Linq;
4 using System.Xml;
5 using System.Diagnostics;
6 using System.Collections.Generic;
7
8 using Mono.Utilities;
9 using Lucene.Net.Index;
10
11 #if LEGACY_MODE
12
13 namespace Monodoc
14 {
15         using Generators;
16
17         public partial class HelpSource
18         {
19                 static HtmlGenerator htmlGenerator = new HtmlGenerator (null);
20
21                 [Obsolete]
22                 public static bool use_css;
23                 [Obsolete]
24                 public static bool FullHtml = true;
25                 [Obsolete]
26                 public static bool UseWebdocCache;
27
28                 [Obsolete ("Use Monodoc.Providers.HtmlGenerator.InlineCss")]
29                 public string InlineCss {
30                         get { return Monodoc.Generators.HtmlGenerator.InlineCss; }
31                 }
32
33                 [Obsolete]
34                 public string InlineJavaScript {
35                         get { return null; }
36                 }
37
38                 [Obsolete ("Use RenderUrl")]
39                 public string GetText (string url, out Node node)
40                 {
41                         return rootTree.RenderUrl (url, htmlGenerator, out node, this);
42                 }
43
44                 [Obsolete ("Use RenderUrl")]
45                 public string RenderNamespaceLookup (string url, out Node node)
46                 {
47                         return rootTree.RenderUrl (url, htmlGenerator, out node, this);
48                 }
49         }
50 }
51
52 #endif