* System.Web20.csproj: added ObjectInputStream.cs and ObjectOutputStream.cs
[mono.git] / mcs / class / System.Web / System.Web.UI / RootBuilder.cs
index 8bf44dc77a138d38f6521834b0ace658099abb4f..220df77f5f1f2d2e87be40bc6c818d267a6dc01a 100644 (file)
@@ -5,7 +5,7 @@
 //     Gonzalo Paniagua Javier (gonzalo@ximian.com)
 //
 // (C) 2003 Ximian, Inc. (http://www.ximian.com)
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.Collections;
+using System.Security.Permissions;
 using System.Web.Compilation;
 using System.Web.UI.HtmlControls;
 
-namespace System.Web.UI
-{
-       public sealed class RootBuilder : TemplateBuilder
-       {
+namespace System.Web.UI {
+
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+#if NET_2_0
+       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       public class RootBuilder : TemplateBuilder {
+
+               private Hashtable built_objects;
+
+               public RootBuilder ()
+               {
+               }
+#else
+       public sealed class RootBuilder : TemplateBuilder {
+#endif
                static Hashtable htmlControls;
                static Hashtable htmlInputControls;
                AspComponentFoundry foundry;
 
                static RootBuilder ()
                {
+#if NET_2_0
+                       htmlControls = new Hashtable (StringComparer.InvariantCultureIgnoreCase);
+#else
                        htmlControls = new Hashtable (CaseInsensitiveHashCodeProvider.DefaultInvariant,
                                                      CaseInsensitiveComparer.DefaultInvariant); 
+#endif
 
                        htmlControls.Add ("A", typeof (HtmlAnchor));
                        htmlControls.Add ("BUTTON", typeof (HtmlButton));
                        htmlControls.Add ("FORM", typeof (HtmlForm));
+#if NET_2_0
+                       htmlControls.Add ("HEAD", typeof (HtmlHead));
+#endif
                        htmlControls.Add ("IMG", typeof (HtmlImage));
                        htmlControls.Add ("INPUT", "INPUT");
+#if NET_2_0
+                       htmlControls.Add ("LINK", typeof (HtmlLink));
+                       htmlControls.Add ("META", typeof (HtmlLink));
+#endif
                        htmlControls.Add ("SELECT", typeof (HtmlSelect));
                        htmlControls.Add ("TABLE", typeof (HtmlTable));
                        htmlControls.Add ("TD", typeof (HtmlTableCell));
                        htmlControls.Add ("TH", typeof (HtmlTableCell));
                        htmlControls.Add ("TR", typeof (HtmlTableRow));
                        htmlControls.Add ("TEXTAREA", typeof (HtmlTextArea));
-#if NET_2_0
-                       htmlControls.Add ("HEAD", typeof (HtmlHead));
-#endif
 
+#if NET_2_0
+                       htmlInputControls = new Hashtable (StringComparer.InvariantCultureIgnoreCase);
+#else
                        htmlInputControls = new Hashtable (CaseInsensitiveHashCodeProvider.DefaultInvariant,
-                                                     CaseInsensitiveComparer.DefaultInvariant); 
+                                                          CaseInsensitiveComparer.DefaultInvariant);
+#endif
 
                        htmlInputControls.Add ("BUTTON", typeof (HtmlInputButton));
+#if NET_2_0
+                       htmlInputControls.Add ("SUBMIT", typeof (HtmlInputSubmit));
+                       htmlInputControls.Add ("RESET", typeof (HtmlInputReset));
+#else
                        htmlInputControls.Add ("SUBMIT", typeof (HtmlInputButton));
                        htmlInputControls.Add ("RESET", typeof (HtmlInputButton));
+#endif
                        htmlInputControls.Add ("CHECKBOX", typeof (HtmlInputCheckBox));
                        htmlInputControls.Add ("FILE", typeof (HtmlInputFile));
                        htmlInputControls.Add ("HIDDEN", typeof (HtmlInputHidden));
                        htmlInputControls.Add ("IMAGE", typeof (HtmlInputImage));
                        htmlInputControls.Add ("RADIO", typeof (HtmlInputRadioButton));
                        htmlInputControls.Add ("TEXT", typeof (HtmlInputText));
+#if NET_2_0
+                       htmlInputControls.Add ("PASSWORD", typeof (HtmlInputPassword));
+#else
                        htmlInputControls.Add ("PASSWORD", typeof (HtmlInputText));
+#endif
                }
 
                public RootBuilder (TemplateParser parser)
                {
                        foundry = new AspComponentFoundry ();
                        line = 1;
-                       fileName = parser.InputFile;
+                       if (parser != null)
+                               fileName = parser.InputFile;
                        Init (parser, null, null, null, null, null);
                }
 
                public override Type GetChildControlType (string tagName, IDictionary attribs) 
                {
+                       if (tagName == null)
+                               throw new ArgumentNullException ("tagName");
+
                        string prefix;
                        string cname;
                        int colon = tagName.IndexOf (':');
@@ -106,7 +142,7 @@ namespace System.Web.UI
                        if (t != null)
                                return t;
                        else if (prefix != "")
-                               throw new Exception ("TagPrefix " + prefix + " not registered");
+                               throw new Exception ("Unknown server tag '" + tagName + "'");
                        
                        return LookupHtmlControls (tagName, attribs);
                }
@@ -137,7 +173,21 @@ namespace System.Web.UI
 
                internal AspComponentFoundry Foundry {
                        get { return foundry; }
+                       set {
+                               if (value is AspComponentFoundry)
+                                       foundry = value;
+                       }
+               }
+#if NET_2_0
+               // FIXME: it's empty (but not null) when using the new default ctor
+               // but I'm not sure when something should gets in...
+               public IDictionary BuiltObjects {
+                       get {
+                               if (built_objects == null)
+                                       built_objects = new Hashtable ();
+                               return built_objects;
+                       }
                }
+#endif
        }
 }
-