--- safehtml.module 2007-09-05 16:23:37.000000000 +0000 +++ safehtml_new.module 2008-03-22 21:06:23.000000000 +0000 @@ -9,17 +9,12 @@ function safehtml_help($section) { case 'admin/help#safehtml': case 'admin/content/safehtml': return - t('

Safe HTML is a module that filter the input before the content is stored in the database. Unlike Drupal basic filtering system, Safe HTML filter the form post and perform code cleaning before the content is stored on the site backend.

') . - - t('

Safe HTML must be enabled on the Input formats section as a filter for the desired input format. Safe HTML cannot be used in conjunction with PHP Parser Filter because Safe HTML will strip any PHP code. Safe HTML can be used together with HTML Filter in order to limit HTML tags to an allowed array.

') . - - t('

Administrators and allowed users can define custom PHP code to perform additional tasks on the form input. The site administrator can define what kind of custom transformation may occur on the form content. He must appy these transformations to a variable named $html.

') . - - t('

The module is based on HTML Safe a project leaded by Roman Ivanov. This module strips down all potentially dangerous content within HTML:

') . - - t('') . - - t('

It also tries to convert code to XHTML valid, but htmltidy is far better solution for this task.

'); + t('

Safe HTML is a module that filters the input and performs code cleaning before the content is stored.

') . + t('

Safe HTML must be enabled on the Input formats section to take effect. Safe HTML cannot be used in conjunction with the PHP Parser Filter because Safe HTML will strip any PHP code. Safe HTML can be used together with HTML Filter in order to limit HTML tags to an allowed array.

') . + t('

Administrators and allowed users can define custom PHP code to perform additional tasks on the form input. The site administrator can define what kind of custom transformation may occur on the form content and apply these transformations to a variable named $html.

') . + t('

The module is based on HTML Safe a project lead by Roman Ivanov and strips content of potentially dangerous HTML:

') . + t('') . + t('

It also tries to convert code to XHTML valid, but htmltidy is a better solution for this task.

'); } }