? 244904.patch ? sites/default/files ? sites/default/settings.php Index: CHANGELOG.txt =================================================================== RCS file: /cvs/drupal/drupal/CHANGELOG.txt,v retrieving revision 1.292 diff -u -p -r1.292 CHANGELOG.txt --- CHANGELOG.txt 22 Dec 2008 19:38:30 -0000 1.292 +++ CHANGELOG.txt 24 Dec 2008 17:41:58 -0000 @@ -32,6 +32,7 @@ Drupal 7.0, xxxx-xx-xx (development vers * Redesigned password strength validator. * Redesigned the add content type screen. * Highlight duplicate URL aliases. + * Renamed "input formats" to "text formats". - Performance: * Improved performance on uncached page views by loading multiple core objects in a single database query. Index: includes/form.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/form.inc,v retrieving revision 1.308 diff -u -p -r1.308 form.inc --- includes/form.inc 3 Dec 2008 16:32:21 -0000 1.308 +++ includes/form.inc 24 Dec 2008 17:41:59 -0000 @@ -1783,14 +1783,14 @@ function form_process_radios($element) { } /** - * Add input format selector to text elements with the #input_format property. + * Add text format selector to text elements with the #input_format property. * - * The #input_format property should be the ID of an input format, found in + * The #input_format property should be the ID of an text format, found in * {filter_format}.format, which gets passed to filter_form(). * * If the property #input_format is set, the form element will be expanded into * two separate form elements, one holding the content of the element, and the - * other holding the input format selector. The original element is shifted into + * other holding the text format selector. The original element is shifted into * a child element, but is otherwise unaltered, so that the format selector is * at the same level as the text field which it affects. * @@ -1815,7 +1815,7 @@ function form_process_radios($element) { * '#title' => t('Body'), * '#parents' => array('body'), * ), - * // 'format' holds the input format selector. + * // 'format' holds the text format selector. * 'format' => array( * '#parents' => array('body_format'), * ... @@ -1827,7 +1827,7 @@ function form_process_radios($element) { * @code * // Original, unaltered form element value. * $form_state['values']['body'] = 'Example content'; - * // Chosen input format. + * // Chosen text format. * $form_state['values']['body_format'] = 1; * @endcode * Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.316 diff -u -p -r1.316 block.module --- modules/block/block.module 16 Dec 2008 23:57:31 -0000 1.316 +++ modules/block/block.module 24 Dec 2008 17:41:59 -0000 @@ -67,7 +67,7 @@ function block_help($path, $arg) { switch ($path) { case 'admin/help#block': $output = '

' . t('Blocks are boxes of content rendered into an area, or region, of a web page. The default theme Garland, for example, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and a block may appear in any one of these areas. The blocks administration page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions.', array('@blocks' => url('admin/build/block'))) . '

'; - $output .= '

' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available input format.', array('@input-format' => url('admin/settings/filters'))) . '

'; + $output .= '

' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available text format.', array('@text-format' => url('admin/settings/filter'))) . '

'; $output .= '

' . t('When working with blocks, remember that:') . '

'; $output .= '