mirror of
https://github.com/moodle/moodle.git
synced 2025-07-09 16:36:28 +02:00
Prior to this change, all the line endings in the imported HTMLPurifier library were using CRLF (\r\n aka Windows style), but the HTMLPurifier source and also the downloadable artefacts use LF (\n aka Linux style) as line endings. This has been the case since510d190382
when with the commit "MDL-38672 import HTML Purifier 4.5.0" all line endings were changed from LF to CRLF. There was no comment in the commit on why this change was done. As the original source uses LF, this commit partly reverts510d190382
and goes back to LF as line endings. Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
52 lines
1.9 KiB
PHP
52 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* XHTML 1.1 List Module, defines list-oriented elements. Core Module.
|
|
*/
|
|
class HTMLPurifier_HTMLModule_List extends HTMLPurifier_HTMLModule
|
|
{
|
|
/**
|
|
* @type string
|
|
*/
|
|
public $name = 'List';
|
|
|
|
// According to the abstract schema, the List content set is a fully formed
|
|
// one or more expr, but it invariably occurs in an optional declaration
|
|
// so we're not going to do that subtlety. It might cause trouble
|
|
// if a user defines "List" and expects that multiple lists are
|
|
// allowed to be specified, but then again, that's not very intuitive.
|
|
// Furthermore, the actual XML Schema may disagree. Regardless,
|
|
// we don't have support for such nested expressions without using
|
|
// the incredibly inefficient and draconic Custom ChildDef.
|
|
|
|
/**
|
|
* @type array
|
|
*/
|
|
public $content_sets = array('Flow' => 'List');
|
|
|
|
/**
|
|
* @param HTMLPurifier_Config $config
|
|
*/
|
|
public function setup($config)
|
|
{
|
|
$ol = $this->addElement('ol', 'List', new HTMLPurifier_ChildDef_List(), 'Common');
|
|
$ul = $this->addElement('ul', 'List', new HTMLPurifier_ChildDef_List(), 'Common');
|
|
// XXX The wrap attribute is handled by MakeWellFormed. This is all
|
|
// quite unsatisfactory, because we generated this
|
|
// *specifically* for lists, and now a big chunk of the handling
|
|
// is done properly by the List ChildDef. So actually, we just
|
|
// want enough information to make autoclosing work properly,
|
|
// and then hand off the tricky stuff to the ChildDef.
|
|
$ol->wrap = 'li';
|
|
$ul->wrap = 'li';
|
|
$this->addElement('dl', 'List', 'Required: dt | dd', 'Common');
|
|
|
|
$this->addElement('li', false, 'Flow', 'Common');
|
|
|
|
$this->addElement('dd', false, 'Flow', 'Common');
|
|
$this->addElement('dt', false, 'Inline', 'Common');
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|