- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* XHTML 1.1 Presentation Module, defines simple presentation-related
|
|
* markup. Text Extension Module.
|
|
* @note The official XML Schema and DTD specs further divide this into
|
|
* two modules:
|
|
* - Block Presentation (hr)
|
|
* - Inline Presentation (b, big, i, small, sub, sup, tt)
|
|
* We have chosen not to heed this distinction, as content_sets
|
|
* provides satisfactory disambiguation.
|
|
*/
|
|
class HTMLPurifier_HTMLModule_Presentation extends HTMLPurifier_HTMLModule
|
|
{
|
|
|
|
public $name = 'Presentation';
|
|
|
|
public function setup($config) {
|
|
$this->addElement('hr', 'Block', 'Empty', 'Common');
|
|
$this->addElement('sub', 'Inline', 'Inline', 'Common');
|
|
$this->addElement('sup', 'Inline', 'Inline', 'Common');
|
|
$b = $this->addElement('b', 'Inline', 'Inline', 'Common');
|
|
$b->formatting = true;
|
|
$big = $this->addElement('big', 'Inline', 'Inline', 'Common');
|
|
$big->formatting = true;
|
|
$i = $this->addElement('i', 'Inline', 'Inline', 'Common');
|
|
$i->formatting = true;
|
|
$small = $this->addElement('small', 'Inline', 'Inline', 'Common');
|
|
$small->formatting = true;
|
|
$tt = $this->addElement('tt', 'Inline', 'Inline', 'Common');
|
|
$tt->formatting = true;
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|