Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / ChtmlTextWriter.cs / 1 / ChtmlTextWriter.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
// ChtmlTextWriter.cs
//
namespace System.Web.UI {
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Text;
using System.Web.UI.WebControls;
using System.Web.Util;
using System.Globalization;
using System.Security.Permissions;
///
/// [To be supplied.]
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class ChtmlTextWriter : Html32TextWriter {
private Hashtable _recognizedAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
private Hashtable _suppressedAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
private Hashtable _globalSuppressedAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
public ChtmlTextWriter(TextWriter writer) : this(writer, DefaultTabString) {
}
public ChtmlTextWriter(TextWriter writer, string tabString) : base(writer, tabString) {
_globalSuppressedAttributes["onclick"] = true;
_globalSuppressedAttributes["ondblclick"] = true;
_globalSuppressedAttributes["onmousedown"] = true;
_globalSuppressedAttributes["onmouseup"] = true;
_globalSuppressedAttributes["onmouseover"] = true;
_globalSuppressedAttributes["onmousemove"] = true;
_globalSuppressedAttributes["onmouseout"] = true;
_globalSuppressedAttributes["onkeypress"] = true;
_globalSuppressedAttributes["onkeydown"] = true;
_globalSuppressedAttributes["onkeyup"] = true;
// Supress certain element attribute pairs that can happen when Html32TextWriter performs the div table
// substitution.
RemoveRecognizedAttributeInternal("div", "accesskey"); // VSWhidbey 270254
RemoveRecognizedAttributeInternal("div", "cellspacing");
RemoveRecognizedAttributeInternal("div", "cellpadding");
RemoveRecognizedAttributeInternal("div", "gridlines");
RemoveRecognizedAttributeInternal("div", "rules");
RemoveRecognizedAttributeInternal("span", "cellspacing");
RemoveRecognizedAttributeInternal("span", "cellpadding");
RemoveRecognizedAttributeInternal("span", "gridlines");
RemoveRecognizedAttributeInternal("span", "rules");
}
///
/// [To be supplied.]
///
public virtual void AddRecognizedAttribute(string elementName, string attributeName) {
Hashtable eltAttributes = (Hashtable) _recognizedAttributes[elementName];
if (eltAttributes == null) {
eltAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
_recognizedAttributes[elementName] = eltAttributes;
}
eltAttributes.Add(attributeName, true);
}
///
/// Override to filter out unnecessary attributes
///
protected override bool OnAttributeRender(string name, string value, HtmlTextWriterAttribute key) {
Hashtable elementRecognizedAttributes = (Hashtable)_recognizedAttributes[TagName];
if (elementRecognizedAttributes != null && elementRecognizedAttributes[name] != null) {
return true;
}
if (_globalSuppressedAttributes[name] != null) {
return false;
}
Hashtable elementSuppressedAttributes = (Hashtable)_suppressedAttributes[TagName];
if (elementSuppressedAttributes != null && elementSuppressedAttributes[name] != null) {
return false;
}
return true;
}
protected override bool OnStyleAttributeRender(string name,string value, HtmlTextWriterStyle key) {
if (key == HtmlTextWriterStyle.TextDecoration) {
if (StringUtil.EqualsIgnoreCase("line-through", value)) {
return false;
}
}
return base.OnStyleAttributeRender(name, value, key);
}
protected override bool OnTagRender(string name, HtmlTextWriterTag key) {
return base.OnTagRender(name, key) && key != HtmlTextWriterTag.Span;
}
///
/// [To be supplied.]
///
public virtual void RemoveRecognizedAttribute(string elementName, string attributeName) {
RemoveRecognizedAttributeInternal(elementName, attributeName);
}
private void RemoveRecognizedAttributeInternal(string elementName, string attributeName) {
// Since recognized attributes have precedence, we need to do two operations: add this attribute
// to the suppressed list, and remove it from the recognized list.
Hashtable eltAttributes = (Hashtable) _suppressedAttributes[elementName];
if (eltAttributes == null) {
eltAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
_suppressedAttributes[elementName] = eltAttributes;
}
eltAttributes.Add(attributeName, true);
eltAttributes = (Hashtable)_recognizedAttributes[elementName];
if (eltAttributes == null) {
eltAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
_recognizedAttributes[elementName] = eltAttributes;
}
// Note: Hashtable::Remove silently continues if the key does not exist.
eltAttributes.Remove(attributeName);
}
public override void WriteBreak() {
Write("
");
}
public override void WriteEncodedText(String text) {
if (null == text || text.Length == 0) {
return;
}
int length = text.Length;
int start = -1;
for(int pos = 0; pos < length; pos++) {
int ch = text[pos];
if(ch > 160 && ch < 256) {
if(start != -1) {
base.WriteEncodedText(text.Substring(start, pos - start));
start = -1;
}
base.Write(text[pos]);
}
else {
if(start == -1) {
start = pos;
}
}
}
if(start != -1) {
if(start == 0) {
base.WriteEncodedText(text);
}
else {
base.WriteEncodedText(text.Substring(start, length - start));
}
}
}
protected Hashtable RecognizedAttributes {
get {
return _recognizedAttributes;
}
}
protected Hashtable SuppressedAttributes {
get {
return _suppressedAttributes;
}
}
protected Hashtable GlobalSuppressedAttributes {
get {
return _globalSuppressedAttributes;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
// ChtmlTextWriter.cs
//
namespace System.Web.UI {
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Text;
using System.Web.UI.WebControls;
using System.Web.Util;
using System.Globalization;
using System.Security.Permissions;
///
/// [To be supplied.]
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class ChtmlTextWriter : Html32TextWriter {
private Hashtable _recognizedAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
private Hashtable _suppressedAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
private Hashtable _globalSuppressedAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
public ChtmlTextWriter(TextWriter writer) : this(writer, DefaultTabString) {
}
public ChtmlTextWriter(TextWriter writer, string tabString) : base(writer, tabString) {
_globalSuppressedAttributes["onclick"] = true;
_globalSuppressedAttributes["ondblclick"] = true;
_globalSuppressedAttributes["onmousedown"] = true;
_globalSuppressedAttributes["onmouseup"] = true;
_globalSuppressedAttributes["onmouseover"] = true;
_globalSuppressedAttributes["onmousemove"] = true;
_globalSuppressedAttributes["onmouseout"] = true;
_globalSuppressedAttributes["onkeypress"] = true;
_globalSuppressedAttributes["onkeydown"] = true;
_globalSuppressedAttributes["onkeyup"] = true;
// Supress certain element attribute pairs that can happen when Html32TextWriter performs the div table
// substitution.
RemoveRecognizedAttributeInternal("div", "accesskey"); // VSWhidbey 270254
RemoveRecognizedAttributeInternal("div", "cellspacing");
RemoveRecognizedAttributeInternal("div", "cellpadding");
RemoveRecognizedAttributeInternal("div", "gridlines");
RemoveRecognizedAttributeInternal("div", "rules");
RemoveRecognizedAttributeInternal("span", "cellspacing");
RemoveRecognizedAttributeInternal("span", "cellpadding");
RemoveRecognizedAttributeInternal("span", "gridlines");
RemoveRecognizedAttributeInternal("span", "rules");
}
///
/// [To be supplied.]
///
public virtual void AddRecognizedAttribute(string elementName, string attributeName) {
Hashtable eltAttributes = (Hashtable) _recognizedAttributes[elementName];
if (eltAttributes == null) {
eltAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
_recognizedAttributes[elementName] = eltAttributes;
}
eltAttributes.Add(attributeName, true);
}
///
/// Override to filter out unnecessary attributes
///
protected override bool OnAttributeRender(string name, string value, HtmlTextWriterAttribute key) {
Hashtable elementRecognizedAttributes = (Hashtable)_recognizedAttributes[TagName];
if (elementRecognizedAttributes != null && elementRecognizedAttributes[name] != null) {
return true;
}
if (_globalSuppressedAttributes[name] != null) {
return false;
}
Hashtable elementSuppressedAttributes = (Hashtable)_suppressedAttributes[TagName];
if (elementSuppressedAttributes != null && elementSuppressedAttributes[name] != null) {
return false;
}
return true;
}
protected override bool OnStyleAttributeRender(string name,string value, HtmlTextWriterStyle key) {
if (key == HtmlTextWriterStyle.TextDecoration) {
if (StringUtil.EqualsIgnoreCase("line-through", value)) {
return false;
}
}
return base.OnStyleAttributeRender(name, value, key);
}
protected override bool OnTagRender(string name, HtmlTextWriterTag key) {
return base.OnTagRender(name, key) && key != HtmlTextWriterTag.Span;
}
///
/// [To be supplied.]
///
public virtual void RemoveRecognizedAttribute(string elementName, string attributeName) {
RemoveRecognizedAttributeInternal(elementName, attributeName);
}
private void RemoveRecognizedAttributeInternal(string elementName, string attributeName) {
// Since recognized attributes have precedence, we need to do two operations: add this attribute
// to the suppressed list, and remove it from the recognized list.
Hashtable eltAttributes = (Hashtable) _suppressedAttributes[elementName];
if (eltAttributes == null) {
eltAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
_suppressedAttributes[elementName] = eltAttributes;
}
eltAttributes.Add(attributeName, true);
eltAttributes = (Hashtable)_recognizedAttributes[elementName];
if (eltAttributes == null) {
eltAttributes = new Hashtable(StringComparer.CurrentCultureIgnoreCase);
_recognizedAttributes[elementName] = eltAttributes;
}
// Note: Hashtable::Remove silently continues if the key does not exist.
eltAttributes.Remove(attributeName);
}
public override void WriteBreak() {
Write("
");
}
public override void WriteEncodedText(String text) {
if (null == text || text.Length == 0) {
return;
}
int length = text.Length;
int start = -1;
for(int pos = 0; pos < length; pos++) {
int ch = text[pos];
if(ch > 160 && ch < 256) {
if(start != -1) {
base.WriteEncodedText(text.Substring(start, pos - start));
start = -1;
}
base.Write(text[pos]);
}
else {
if(start == -1) {
start = pos;
}
}
}
if(start != -1) {
if(start == 0) {
base.WriteEncodedText(text);
}
else {
base.WriteEncodedText(text.Substring(start, length - start));
}
}
}
protected Hashtable RecognizedAttributes {
get {
return _recognizedAttributes;
}
}
protected Hashtable SuppressedAttributes {
get {
return _suppressedAttributes;
}
}
protected Hashtable GlobalSuppressedAttributes {
get {
return _globalSuppressedAttributes;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XomlCompiler.cs
- SelectedGridItemChangedEvent.cs
- DiscoveryClientBindingElement.cs
- HiddenField.cs
- StrokeNodeEnumerator.cs
- QueryCacheManager.cs
- Single.cs
- RuntimeConfig.cs
- DateTimeEditor.cs
- TransactionScope.cs
- MetadataCache.cs
- PolyLineSegmentFigureLogic.cs
- OletxTransactionManager.cs
- PrintingPermissionAttribute.cs
- RedirectionProxy.cs
- NamedElement.cs
- XamlHostingConfiguration.cs
- DotAtomReader.cs
- GeometryHitTestParameters.cs
- ItemChangedEventArgs.cs
- BrowsableAttribute.cs
- ExpressionBindings.cs
- GroupQuery.cs
- CompositeDuplexElement.cs
- DocumentPaginator.cs
- XmlNode.cs
- GridLength.cs
- oledbmetadatacolumnnames.cs
- DispatcherFrame.cs
- HttpCookie.cs
- CollectionBase.cs
- OpCellTreeNode.cs
- NotifyIcon.cs
- SignatureGenerator.cs
- COM2ExtendedUITypeEditor.cs
- WebProxyScriptElement.cs
- PerfCounterSection.cs
- QilPatternVisitor.cs
- Interfaces.cs
- ConfigXmlText.cs
- KeyTime.cs
- DefaultTraceListener.cs
- EdmComplexPropertyAttribute.cs
- SafeRegistryHandle.cs
- ProfileSettingsCollection.cs
- ReachUIElementCollectionSerializer.cs
- BitmapDecoder.cs
- CheckBox.cs
- KeyboardDevice.cs
- HuffmanTree.cs
- StorageAssociationTypeMapping.cs
- PositiveTimeSpanValidatorAttribute.cs
- FunctionImportElement.cs
- PropertyTab.cs
- EllipticalNodeOperations.cs
- DataSetMappper.cs
- IncrementalCompileAnalyzer.cs
- Baml2006SchemaContext.cs
- Events.cs
- PathFigureCollection.cs
- MeshGeometry3D.cs
- CleanUpVirtualizedItemEventArgs.cs
- Clause.cs
- HtmlInputControl.cs
- KeyValuePair.cs
- ScriptControlDescriptor.cs
- SupportsEventValidationAttribute.cs
- AsymmetricKeyExchangeDeformatter.cs
- ScopedKnownTypes.cs
- IdentityNotMappedException.cs
- CalendarAutoFormat.cs
- TypeUtils.cs
- Latin1Encoding.cs
- DataServiceContext.cs
- DataObjectCopyingEventArgs.cs
- GacUtil.cs
- AuthenticateEventArgs.cs
- Pair.cs
- Grid.cs
- GridViewEditEventArgs.cs
- HttpPostedFile.cs
- DocumentGridContextMenu.cs
- XPathNodeIterator.cs
- SecurityTokenRequirement.cs
- PkcsUtils.cs
- ContainsSearchOperator.cs
- ListDictionaryInternal.cs
- UriTemplateMatch.cs
- PointAnimationClockResource.cs
- XMLSyntaxException.cs
- ImageAttributes.cs
- StorageSetMapping.cs
- ColumnHeaderConverter.cs
- AppDomainUnloadedException.cs
- TextTabProperties.cs
- HandlerMappingMemo.cs
- FontDifferentiator.cs
- ConfigUtil.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- linebase.cs