Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChtmlTextWriter.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bcdf6536a5b52f3add859c9dda0276009977a95 (plain)
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
//
// ChtmlTextWriter.cs: Compact HTML
//
// Author:
//	Cesar Lopez Nataren <cnataren@novell.com>
//

//
// Copyright (C) 2006 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.
//

#if NET_2_0

using System;
using System.IO;
using System.Collections;

namespace System.Web.UI {

	public class ChtmlTextWriter : Html32TextWriter
	{
		static Hashtable global_suppressed_attrs;

		static string [] global_suppressed_attributes = {
			"onclick", "ondblclick", "onmousedown", "onmouseup",
			"onmouseover", "onmousemove", "onmouseout",
			"onkeypress", "onkeydown", "onkeyup"
		};

		static string [] recognized_attributes = {"div", "span"};

		Hashtable recognized_attrs = new Hashtable (recognized_attributes.Length);
		Hashtable suppressed_attrs = new Hashtable (recognized_attributes.Length);

		static ChtmlTextWriter ()
		{
			SetupGlobalSuppressedAttrs (global_suppressed_attributes);
		}

		static void SetupGlobalSuppressedAttrs (string [] attrs)
		{
			global_suppressed_attrs = new Hashtable ();
			PopulateHash (global_suppressed_attrs, global_suppressed_attributes);
		}

		static void PopulateHash (Hashtable hash, string [] keys)
		{
			foreach (string key in keys)
				hash.Add (key, true);
		}

		public ChtmlTextWriter (TextWriter writer)
			: this (writer, DefaultTabString)
		{
		}

		public ChtmlTextWriter (TextWriter writer, string tabString)
			: base (writer, tabString)
		{
			//
			// setup the recognized attrs
			//
			foreach (string key in recognized_attributes)
				recognized_attrs.Add (key, new Hashtable ());

			SetupSuppressedAttrs ();
		}


		void SetupSuppressedAttrs ()
		{
			//
			// we don't make these static because they are not read-only
			//
			string [] div_suppressed_attributes = {
				"accesskey", "cellspacing", "cellpadding",
				"gridlines", "rules"
			};

			string [] span_suppressed_attributes = {
				"cellspacing", "cellpadding",
				"gridlines", "rules"
			};

			Init ("div", div_suppressed_attributes, suppressed_attrs);
			Init ("span", span_suppressed_attributes, suppressed_attrs);
		}

		static void Init (string key, string [] attrs, Hashtable container)
		{
			Hashtable attrs_hash = new Hashtable (attrs.Length);
			PopulateHash (attrs_hash, attrs);
			container.Add (key, attrs_hash);
		}

		protected Hashtable GlobalSuppressedAttributes {
			get { return global_suppressed_attrs; }
		}

		protected Hashtable RecognizedAttributes {
			get { return recognized_attrs; }
		}

		protected Hashtable SuppressedAttributes {
			get { return suppressed_attrs; }
		}

		public virtual void AddRecognizedAttribute (string elementName, string attributeName)
		{
			Hashtable elem_attrs = (Hashtable) recognized_attrs [elementName];

			if (elem_attrs == null) {
				elem_attrs = new Hashtable ();
				elem_attrs.Add (attributeName, true);
				recognized_attrs.Add (elementName, elem_attrs);
			} else
				elem_attrs.Add (attributeName, true);
		}

		public virtual void RemoveRecognizedAttribute (string elementName, string attributeName)
		{
			Hashtable elem_attrs = (Hashtable) recognized_attrs [elementName];

			if (elem_attrs != null)
				elem_attrs.Remove (attributeName);
		}

		//
		// writes <br>
		//
		public override void WriteBreak ()
		{
			string br = GetTagName (HtmlTextWriterTag.Br);
			WriteBeginTag (br);
			Write (TagRightChar);
		}

		public override void WriteEncodedText (string text)
		{
			base.WriteEncodedText (text);
		}

		Hashtable attr_render = new Hashtable ();

		[MonoTODO]
		protected override bool OnAttributeRender (string name, string value, HtmlTextWriterAttribute key)
		{
			// I checked every possible HtmlTextWriterAttribute key
			// and always throws ArgumentNullException.
			return (bool) attr_render [null];
		}

		protected override bool OnStyleAttributeRender (string styleAttrName, string value, HtmlTextWriterStyle key)
		{
			return key == HtmlTextWriterStyle.Display;
		}

		protected override bool OnTagRender (string name, HtmlTextWriterTag tag)
		{
			return tag != HtmlTextWriterTag.Span;
		}
	}
}

#endif