ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4 Class Reference
+ Inheritance diagram for HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4:
+ Collaboration diagram for HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4:

Public Member Functions

 makeFixes ()
 
- Public Member Functions inherited from HTMLPurifier_HTMLModule_Tidy
 setup ($config)
 Lazy load constructs the module by determining the necessary fixes to create and then delegating to the populate() function. More...
 
 getFixesForLevel ($level)
 Retrieves all fixes per a level, returning fixes for that specific level as well as all levels below it. More...
 
 makeFixesForLevel ($fixes)
 Dynamically populates the $fixesForLevel member variable using the fixes array. More...
 
 populate ($fixes)
 Populates the module with transforms and other special-case code based on a list of fixes passed to it. More...
 
 getFixType ($name)
 Parses a fix name and determines what kind of fix it is, as well as other information defined by the fix. More...
 
 makeFixes ()
 Defines all fixes the module will perform in a compact associative array of fix name to fix implementation. More...
 
- Public Member Functions inherited from HTMLPurifier_HTMLModule
 getChildDef ($def)
 Retrieves a proper HTMLPurifier_ChildDef subclass based on content_model and content_model_type member variables of the HTMLPurifier_ElementDef class. More...
 
 addElement ($element, $type, $contents, $attr_includes=array(), $attr=array())
 Convenience function that sets up a new element. More...
 
 addBlankElement ($element)
 Convenience function that creates a totally blank, non-standalone element. More...
 
 addElementToContentSet ($element, $type)
 Convenience function that registers an element to a content set. More...
 
 parseContents ($contents)
 Convenience function that transforms single-string contents into separate content model and content model type. More...
 
 mergeInAttrIncludes (&$attr, $attr_includes)
 Convenience function that merges a list of attribute includes into an attribute array. More...
 
 makeLookup ($list)
 Convenience function that generates a lookup table with boolean true as value. More...
 
 setup ($config)
 Lazy load construction of the module after determining whether or not it's needed, and also when a finalized configuration object is available. More...
 

Additional Inherited Members

- Data Fields inherited from HTMLPurifier_HTMLModule_Tidy
 $levels = array(0 => 'none', 'light', 'medium', 'heavy')
 List of supported levels. More...
 
 $defaultLevel = null
 Default level to place all fixes in. More...
 
 $fixesForLevel
 Lists of fixes used by getFixesForLevel(). More...
 
- Data Fields inherited from HTMLPurifier_HTMLModule
 $name
 Short unique string identifier of the module. More...
 
 $elements = array()
 Informally, a list of elements this module changes. More...
 
 $info = array()
 Associative array of element names to element definitions. More...
 
 $content_sets = array()
 Associative array of content set names to content set additions. More...
 
 $attr_collections = array()
 Associative array of attribute collection names to attribute collection additions. More...
 
 $info_tag_transform = array()
 Associative array of deprecated tag name to HTMLPurifier_TagTransform. More...
 
 $info_attr_transform_pre = array()
 List of HTMLPurifier_AttrTransform to be performed before validation. More...
 
 $info_attr_transform_post = array()
 List of HTMLPurifier_AttrTransform to be performed after validation. More...
 
 $info_injector = array()
 List of HTMLPurifier_Injector to be performed during well-formedness fixing. More...
 
 $defines_child_def = false
 Boolean flag that indicates whether or not getChildDef is implemented. More...
 
 $safe = true
 Boolean flag whether or not this module is safe. More...
 

Detailed Description

Definition at line 3 of file XHTMLAndHTML4.php.

Member Function Documentation

◆ makeFixes()

HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4::makeFixes ( )

Definition at line 6 of file XHTMLAndHTML4.php.

References $r.

6  {
7 
8  $r = array();
9 
10  // == deprecated tag transforms ===================================
11 
12  $r['font'] = new HTMLPurifier_TagTransform_Font();
13  $r['menu'] = new HTMLPurifier_TagTransform_Simple('ul');
14  $r['dir'] = new HTMLPurifier_TagTransform_Simple('ul');
15  $r['center'] = new HTMLPurifier_TagTransform_Simple('div', 'text-align:center;');
16  $r['u'] = new HTMLPurifier_TagTransform_Simple('span', 'text-decoration:underline;');
17  $r['s'] = new HTMLPurifier_TagTransform_Simple('span', 'text-decoration:line-through;');
18  $r['strike'] = new HTMLPurifier_TagTransform_Simple('span', 'text-decoration:line-through;');
19 
20  // == deprecated attribute transforms =============================
21 
22  $r['caption@align'] =
23  new HTMLPurifier_AttrTransform_EnumToCSS('align', array(
24  // we're following IE's behavior, not Firefox's, due
25  // to the fact that no one supports caption-side:right,
26  // W3C included (with CSS 2.1). This is a slightly
27  // unreasonable attribute!
28  'left' => 'text-align:left;',
29  'right' => 'text-align:right;',
30  'top' => 'caption-side:top;',
31  'bottom' => 'caption-side:bottom;' // not supported by IE
32  ));
33 
34  // @align for img -------------------------------------------------
35  $r['img@align'] =
36  new HTMLPurifier_AttrTransform_EnumToCSS('align', array(
37  'left' => 'float:left;',
38  'right' => 'float:right;',
39  'top' => 'vertical-align:top;',
40  'middle' => 'vertical-align:middle;',
41  'bottom' => 'vertical-align:baseline;',
42  ));
43 
44  // @align for table -----------------------------------------------
45  $r['table@align'] =
46  new HTMLPurifier_AttrTransform_EnumToCSS('align', array(
47  'left' => 'float:left;',
48  'center' => 'margin-left:auto;margin-right:auto;',
49  'right' => 'float:right;'
50  ));
51 
52  // @align for hr -----------------------------------------------
53  $r['hr@align'] =
54  new HTMLPurifier_AttrTransform_EnumToCSS('align', array(
55  // we use both text-align and margin because these work
56  // for different browsers (IE and Firefox, respectively)
57  // and the melange makes for a pretty cross-compatible
58  // solution
59  'left' => 'margin-left:0;margin-right:auto;text-align:left;',
60  'center' => 'margin-left:auto;margin-right:auto;text-align:center;',
61  'right' => 'margin-left:auto;margin-right:0;text-align:right;'
62  ));
63 
64  // @align for h1, h2, h3, h4, h5, h6, p, div ----------------------
65  // {{{
66  $align_lookup = array();
67  $align_values = array('left', 'right', 'center', 'justify');
68  foreach ($align_values as $v) $align_lookup[$v] = "text-align:$v;";
69  // }}}
70  $r['h1@align'] =
71  $r['h2@align'] =
72  $r['h3@align'] =
73  $r['h4@align'] =
74  $r['h5@align'] =
75  $r['h6@align'] =
76  $r['p@align'] =
77  $r['div@align'] =
78  new HTMLPurifier_AttrTransform_EnumToCSS('align', $align_lookup);
79 
80  // @bgcolor for table, tr, td, th ---------------------------------
81  $r['table@bgcolor'] =
82  $r['td@bgcolor'] =
83  $r['th@bgcolor'] =
85 
86  // @border for img ------------------------------------------------
87  $r['img@border'] = new HTMLPurifier_AttrTransform_Border();
88 
89  // @clear for br --------------------------------------------------
90  $r['br@clear'] =
91  new HTMLPurifier_AttrTransform_EnumToCSS('clear', array(
92  'left' => 'clear:left;',
93  'right' => 'clear:right;',
94  'all' => 'clear:both;',
95  'none' => 'clear:none;',
96  ));
97 
98  // @height for td, th ---------------------------------------------
99  $r['td@height'] =
100  $r['th@height'] =
101  new HTMLPurifier_AttrTransform_Length('height');
102 
103  // @hspace for img ------------------------------------------------
104  $r['img@hspace'] = new HTMLPurifier_AttrTransform_ImgSpace('hspace');
105 
106  // @noshade for hr ------------------------------------------------
107  // this transformation is not precise but often good enough.
108  // different browsers use different styles to designate noshade
109  $r['hr@noshade'] =
111  'noshade',
112  'color:#808080;background-color:#808080;border:0;'
113  );
114 
115  // @nowrap for td, th ---------------------------------------------
116  $r['td@nowrap'] =
117  $r['th@nowrap'] =
119  'nowrap',
120  'white-space:nowrap;'
121  );
122 
123  // @size for hr --------------------------------------------------
124  $r['hr@size'] = new HTMLPurifier_AttrTransform_Length('size', 'height');
125 
126  // @type for li, ol, ul -------------------------------------------
127  // {{{
128  $ul_types = array(
129  'disc' => 'list-style-type:disc;',
130  'square' => 'list-style-type:square;',
131  'circle' => 'list-style-type:circle;'
132  );
133  $ol_types = array(
134  '1' => 'list-style-type:decimal;',
135  'i' => 'list-style-type:lower-roman;',
136  'I' => 'list-style-type:upper-roman;',
137  'a' => 'list-style-type:lower-alpha;',
138  'A' => 'list-style-type:upper-alpha;'
139  );
140  $li_types = $ul_types + $ol_types;
141  // }}}
142 
143  $r['ul@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $ul_types);
144  $r['ol@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $ol_types, true);
145  $r['li@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $li_types, true);
146 
147  // @vspace for img ------------------------------------------------
148  $r['img@vspace'] = new HTMLPurifier_AttrTransform_ImgSpace('vspace');
149 
150  // @width for hr, td, th ------------------------------------------
151  $r['td@width'] =
152  $r['th@width'] =
153  $r['hr@width'] = new HTMLPurifier_AttrTransform_Length('width');
154 
155  return $r;
156 
157  }
Pre-transform that changes deprecated border attribute to CSS.
Definition: Border.php:6
Transforms FONT tags to the proper form (SPAN with CSS styling)
Definition: Font.php:18
Pre-transform that changes deprecated hspace and vspace attributes to CSS.
Definition: ImgSpace.php:6
Pre-transform that changes deprecated bgcolor attribute to CSS.
Definition: BgColor.php:6
Generic pre-transform that converts an attribute with a fixed number of values (enumerated) to CSS...
Definition: EnumToCSS.php:7
Pre-transform that changes converts a boolean attribute to fixed CSS.
Definition: BoolToCSS.php:6
Class for handling width/height length attribute transformations to CSS.
Definition: Length.php:6
$r
Simple transformation, just change tag name to something else, and possibly add some styling...
Definition: Simple.php:8

The documentation for this class was generated from the following file: