1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
//
// System.Web.UI.HtmlControls.HtmlHead
//
// Authors:
// Lluis Sanchez Gual (lluis@novell.com)
//
// Copyright (C) 2004-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
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.ComponentModel;
using System.Collections;
using System.Security.Permissions;
using System.Web.UI.WebControls;
namespace System.Web.UI.HtmlControls
{
// CAS - no InheritanceDemand here as the class is sealed
[AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
// attributes
[ControlBuilder (typeof(HtmlHeadBuilder))]
public sealed class HtmlHead: HtmlGenericControl, IParserAccessor
{
string descriptionText;
string keywordsText;
HtmlMeta descriptionMeta;
HtmlMeta keywordsMeta;
string titleText;
HtmlTitle title;
//Hashtable metadata;
StyleSheetBag styleSheet;
public HtmlHead(): base("head") {}
public HtmlHead (string tag) : base (tag)
{
}
protected internal override void OnInit (EventArgs e)
{
base.OnInit (e);
Page page = Page;
if (page == null)
throw new HttpException ("The <head runat=\"server\"> control requires a page.");
//You can only have one <head runat="server"> control on a page.
if(page.Header != null)
throw new HttpException ("You can only have one <head runat=\"server\"> control on a page.");
page.SetHeader (this);
}
protected internal override void RenderChildren (HtmlTextWriter writer)
{
base.RenderChildren (writer);
if (title == null) {
writer.RenderBeginTag (HtmlTextWriterTag.Title);
if (!String.IsNullOrEmpty (titleText))
writer.Write (titleText);
writer.RenderEndTag ();
}
if (descriptionMeta == null && descriptionText != null) {
writer.AddAttribute ("name", "description");
writer.AddAttribute ("content", HttpUtility.HtmlAttributeEncode (descriptionText));
writer.RenderBeginTag (HtmlTextWriterTag.Meta);
writer.RenderEndTag ();
}
if (keywordsMeta == null && keywordsText != null) {
writer.AddAttribute ("name", "keywords");
writer.AddAttribute ("content", HttpUtility.HtmlAttributeEncode (keywordsText));
writer.RenderBeginTag (HtmlTextWriterTag.Meta);
writer.RenderEndTag ();
}
if (styleSheet != null)
styleSheet.Render (writer);
}
protected internal override void AddedControl (Control control, int index)
{
//You can only have one <title> element within the <head> element.
HtmlTitle t = control as HtmlTitle;
if (t != null) {
if (title != null)
throw new HttpException ("You can only have one <title> element within the <head> element.");
title = t;
}
HtmlMeta meta = control as HtmlMeta;
if (meta != null) {
if (String.Compare ("keywords", meta.Name, StringComparison.OrdinalIgnoreCase) == 0)
keywordsMeta = meta;
else if (String.Compare ("description", meta.Name, StringComparison.OrdinalIgnoreCase) == 0)
descriptionMeta = meta;
}
base.AddedControl (control, index);
}
protected internal override void RemovedControl (Control control)
{
if (title == control)
title = null;
if (keywordsMeta == control)
keywordsMeta = null;
else if (descriptionMeta == control)
descriptionMeta = null;
base.RemovedControl (control);
}
public string Description {
get {
if (descriptionMeta != null)
return descriptionMeta.Content;
return descriptionText;
}
set {
if (descriptionMeta != null)
descriptionMeta.Content = value;
else
descriptionText = value;
}
}
public string Keywords {
get {
if (keywordsMeta != null)
return keywordsMeta.Content;
return keywordsText;
}
set {
if (keywordsMeta != null)
keywordsMeta.Content = value;
else
keywordsText = value;
}
}
public IStyleSheet StyleSheet {
get {
if (styleSheet == null) styleSheet = new StyleSheetBag ();
return styleSheet;
}
}
public string Title {
get {
if (title != null)
return title.Text;
else
return titleText;
}
set {
if (title != null)
title.Text = value;
else
titleText = value;
}
}
}
internal class StyleSheetBag: IStyleSheet
{
ArrayList entries = new ArrayList ();
internal class StyleEntry
{
public Style Style;
public string Selection;
public IUrlResolutionService UrlResolver;
}
public StyleSheetBag ()
{
}
public void CreateStyleRule (Style style, IUrlResolutionService urlResolver, string selection)
{
StyleEntry entry = new StyleEntry ();
entry.Style = style;
entry.UrlResolver = urlResolver;
entry.Selection = selection;
entries.Add (entry);
}
public void RegisterStyle (Style style, IUrlResolutionService urlResolver)
{
for (int n=0; n<entries.Count; n++) {
if (((StyleEntry)entries[n]).Style == style)
return;
}
string name = "aspnet_" + entries.Count;
style.SetRegisteredCssClass (name);
CreateStyleRule (style, urlResolver, "." + name);
}
public void Render (HtmlTextWriter writer)
{
writer.AddAttribute ("type", "text/css", false);
writer.RenderBeginTag (HtmlTextWriterTag.Style);
foreach (StyleEntry entry in entries) {
CssStyleCollection sts = entry.Style.GetStyleAttributes (entry.UrlResolver);
writer.Write ("\n" + entry.Selection + " {" + sts.Value + "}");
}
writer.RenderEndTag ();
}
}
}
|