### Eclipse Workspace Patch 1.0 #P Drupal7 Index: modules/system/system.css =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.css,v retrieving revision 1.54 diff -u -r1.54 system.css --- modules/system/system.css 11 Apr 2009 22:19:45 -0000 1.54 +++ modules/system/system.css 28 May 2009 13:13:05 -0000 @@ -505,6 +505,17 @@ } /* +** For anything you want to remove from the view port, yet +** remain accessibile to screen readers. Not to be used for links. +*/ +.invisible { + height: 1px; + overflow: hidden; + position: absolute; + top: -9999em; +} + +/* ** Styles for the system modules page (admin/build/modules) */ #system-modules div.incompatible { Index: themes/garland/node.tpl.php =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/node.tpl.php,v retrieving revision 1.9 diff -u -r1.9 node.tpl.php --- themes/garland/node.tpl.php 18 Feb 2009 14:28:25 -0000 1.9 +++ themes/garland/node.tpl.php 28 May 2009 13:13:05 -0000 @@ -20,12 +20,18 @@
-
+
+ + +
- + Index: themes/garland/template.php =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/template.php,v retrieving revision 1.21 diff -u -r1.21 template.php --- themes/garland/template.php 24 May 2009 17:39:35 -0000 1.21 +++ themes/garland/template.php 28 May 2009 13:13:05 -0000 @@ -56,6 +56,14 @@ } /** + * Override or insert variables into the node template. + */ +function garland_preprocess_node(&$vars) { + $vars['terms_title'] = t('Tags'); + $vars['links_title'] = t('Links'); +} + +/** * Returns the rendered local tasks. The default implementation renders * them as tabs. Overridden to split the secondary tasks. */