eglib: checking for locale_charset function
[mono.git] / mcs / class / System.Web / System.Web.UI / DataBoundLiteralControl.cs
old mode 100755 (executable)
new mode 100644 (file)
index fbe26ca..f37cd4a
@@ -1,13 +1,12 @@
 //
-// System.Web.UI.DataBoundLiteralCOntrol.cs
+// System.Web.UI.DataBoundLiteralControl.cs
 //
 // Authors:
 //     Duncan Mak  (duncan@ximian.com)
 //     Gonzalo Paniagua Javier (gonzalo@ximian.com)
 //
 // (C) 2002 Ximian, Inc. (http://www.ximian.com)
-//
-
+// Copyright (C) 2005-2010 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.ComponentModel;
+using System.Security.Permissions;
 using System.Text;
 
 namespace System.Web.UI {
 
+       // CAS - no InheritanceDemand here as the class is sealed
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       // attributes
        [ToolboxItem(false)]
-       public sealed class DataBoundLiteralControl : Control
+       public sealed class DataBoundLiteralControl : Control, ITextControl
        {
-               private string [] staticLiterals;
-               private string [] dataBoundLiterals;
+               int staticLiteralsCount;
+               string [] staticLiterals;
+               string [] dataBoundLiterals;
                
                public DataBoundLiteralControl (int staticLiteralsCount,
                                                int dataBoundLiteralCount)
                {
-                       staticLiterals = new string [staticLiteralsCount];
+                       this.staticLiteralsCount = staticLiteralsCount;
                        dataBoundLiterals = new string [dataBoundLiteralCount];
-                       PreventAutoID ();
+                       AutoID = false;
                }
 
                public string Text {
                        get {
                                StringBuilder text = new StringBuilder ();
-                               int stLength = staticLiterals.Length;
+                               int stLength = staticLiterals == null ? 0 : staticLiterals.Length;
                                int dbLength = dataBoundLiterals.Length;
                                int max = (stLength > dbLength) ? stLength : dbLength;
                                for (int i = 0; i < max; i++){
@@ -80,9 +83,18 @@ namespace System.Web.UI {
                        }
                }
 
-               protected override void Render (HtmlTextWriter output)
+               protected internal override void Render (HtmlTextWriter output)
                {
-                       output.Write (Text);
+                       int stLength = staticLiterals == null ? 0 : staticLiterals.Length;
+                       int dbLength = dataBoundLiterals.Length;
+                       int max = (stLength > dbLength) ? stLength : dbLength;
+
+                       for (int i = 0; i < max; i++){
+                               if (i < stLength)
+                                       output.Write (staticLiterals [i]);
+                               if (i < dbLength)
+                                       output.Write (dataBoundLiterals [i]);
+                       }
                }
 
                protected override object SaveViewState ()
@@ -99,8 +111,19 @@ namespace System.Web.UI {
 
                public void SetStaticString (int index, string s)
                {
+                       if (staticLiterals == null)
+                               staticLiterals = new string [staticLiteralsCount];
                        staticLiterals [index] = s;
                }
+
+               string ITextControl.Text {
+                       get {
+                               return Text;
+                       }
+                       set {
+                               throw new NotSupportedException ();
+                       }
+               }
        }
 }