? .cache ? .project ? .projectOptions ? files ? test.patch ? includes/_file.inc_ ? misc/Thumbs.db ? misc/farbtastic/Thumbs.db ? modules/filter/.filter.module.rej.swp ? modules/filter/test.patch ? sites/all/modules ? sites/default/settings.php Index: modules/filter/filter.module =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v retrieving revision 1.178 diff -u -r1.178 filter.module --- modules/filter/filter.module 22 Jun 2007 08:32:27 -0000 1.178 +++ modules/filter/filter.module 26 Jun 2007 16:11:33 -0000 @@ -32,15 +32,15 @@
Below you can configure which input formats are available to which roles, as well as choose a default input format (used for imported content, for example).
Note that (1) the default format is always available to all roles, and (2) all filter formats can always be used by roles with the "administer filters" permission even if they are not explicitly listed in the Roles column of this table.
'); - case 'admin/settings/filters/'. ((int)arg(3)): + case 'admin/settings/filters/%/list': return t('Every filter performs one particular change on the user input, for example stripping out malicious HTML or making URLs clickable. Choose which filters you want to apply to text in this input format.
If you notice some filters are causing conflicts in the output, you can rearrange them.
', array('@rearrange' => url('admin/settings/filters/'. arg(3) .'/order'))); - case 'admin/settings/filters/'. ((int)arg(3)) .'/configure': + case 'admin/settings/filters/%/configure': return ''. t('If you cannot find the settings for a certain filter, make sure you have enabled it on the view tab first.', array('@url' => url('admin/settings/filters/'. arg(3)))) .'
'; - case 'admin/settings/filters/'. ((int)arg(3)) .'/order': + case 'admin/settings/filters/%/order': return t('Because of the flexible filtering system, you might encounter a situation where one filter prevents another from doing its job. For example: a word in an URL gets converted into a glossary term, before the URL can be converted in a clickable link. When this happens, you will need to rearrange the order in which filters get executed.
Filters are executed from top-to-bottom. You can use the weight column to rearrange them: heavier filters "sink" to the bottom.
'); @@ -310,7 +310,7 @@ if (isset($element['roles']) && is_array($element['roles'])) { $rows[] = array( drupal_render($form['default'][$element['id']['#value']]), - check_plain($name), + l($name, 'admin/settings/filters/'. $element['id']['#value']), drupal_render($element['roles']), drupal_render($element['configure']), drupal_render($element['delete'])