ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
generate-ph5p-patch.php
Go to the documentation of this file.
1<?php
2
10$orig = realpath(dirname(__FILE__) . '/PH5P.php');
11$new = realpath(dirname(__FILE__) . '/../library/HTMLPurifier/Lexer/PH5P.php');
12$newt = dirname(__FILE__) . '/PH5P.new.php'; // temporary file
13
14// minor text-processing of new file to get into same format as original
15$new_src = file_get_contents($new);
16$new_src = '<?php' . PHP_EOL . substr($new_src, strpos($new_src, 'class HTML5 {'));
17
18file_put_contents($newt, $new_src);
19shell_exec("diff -u \"$orig\" \"$newt\" > PH5P.patch");
20unlink($newt);
21
22// vim: et sw=4 sts=4
An exception for terminatinating execution or to throw for unit testing.