? filter-help.patch
? files/.htaccess
? sites/default/settings.php
Index: modules/filter/filter.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v
retrieving revision 1.196
diff -u -p -r1.196 filter.module
--- modules/filter/filter.module	18 Dec 2007 12:59:21 -0000	1.196
+++ modules/filter/filter.module	19 Dec 2007 19:43:33 -0000
@@ -20,8 +20,9 @@ define('FILTER_HTML_ESCAPE', 2);
 function filter_help($path, $arg) {
   switch ($path) {
     case 'admin/help#filter':
-      $output = '<p>'. t("The filter module allows administrators to configure  text input formats for the site. For example, an administrator may want a filter to strip out malicious HTML from user's comments. Administrators may also want to make URLs linkable even if they are only entered in an unlinked format.") .'</p>';
-      $output .= '<p>'. t('Users can choose between the available input formats when creating or editing content. Administrators can configure which input formats are available to which user roles, as well as choose a default input format. Administrators can also create new input formats. Each input format can be configured to use a selection of filters.') .'</p>';
+      $output = '<p>'. t("The filter module allows administrators to configure text input formats for use on your site. An input format defines the allowable codes, HTML tags, and other input allowed in the creation of both content and comments, and is a key feature in guarding against potentially damaging input from malicious users.") .'</p>';
+      $output .= '<p>'. t('Each input format uses filters to manipulate text (most input formats apply several different filters to text, in a specific order). Each filter is designed to accomplish a specific purpose, and generally either removes elements or adds elements to text before it is displayed. A filter does not change the actual content of a post or comment, but only modifies it temporarily before it is displayed. A filter may remove unapproved HTML tags, for instance, or automatically add HTML to make links referenced in text clickable. Two input formats included by default in standard installations are <em>Filtered HTML</em> (which allows only an administrator-approved subset of HTML tags), and <em>Full HTML</em> (which allows the full set of HTML tags). Additional input formats may be created by an administrator.') .'</p>';
+      $output .= '<p>'. t('Users can choose between the available input formats when creating or editing content. Administrators can configure which input formats are available to which user roles, as well as choose a default input format.') .'</p>';
       $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@filter">Filter module</a>.', array('@filter' => 'http://drupal.org/handbook/modules/filter/')) .'</p>';
       return $output;
     case 'admin/settings/filters':
