Index: CHANGELOG.txt =================================================================== RCS file: /cvs/drupal/drupal/CHANGELOG.txt,v retrieving revision 1.345 diff -u -p -r1.345 CHANGELOG.txt --- CHANGELOG.txt 12 Oct 2009 05:22:56 -0000 1.345 +++ CHANGELOG.txt 17 Oct 2009 06:17:54 -0000 @@ -19,6 +19,9 @@ Drupal 7.0, xxxx-xx-xx (development vers improved the flood control API to allow variable time windows and identifiers for limiting user access to resources. - Usability: + * Added contextual links (a.k.a. local tasks) to page elements, such as + blocks, nodes, or comments, which allows to perform the most common tasks + with a single click only. * Improved installer requirements check. * Improved support for integration of WYSIWYG editors. * Implemented drag-and-drop positioning for input format listings. Index: includes/menu.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/menu.inc,v retrieving revision 1.356 diff -u -p -r1.356 menu.inc --- includes/menu.inc 17 Oct 2009 05:50:27 -0000 1.356 +++ includes/menu.inc 17 Oct 2009 06:14:49 -0000 @@ -1782,8 +1782,8 @@ function menu_local_tasks($level = 0) { * Retrieve contextual links for a system object based on registered local tasks. * * This leverages the menu system to retrieve the first layer of registered - * local tasks for a given system path. All local tasks of the tab type 'task' - * or 'context' are taken into account. + * local tasks for a given system path. All local tasks of the tab type + * MENU_CONTEXT_INLINE are taken into account. * * @see hook_menu() * Index: modules/menu/menu.api.php =================================================================== RCS file: /cvs/drupal/drupal/modules/menu/menu.api.php,v retrieving revision 1.18 diff -u -p -r1.18 menu.api.php --- modules/menu/menu.api.php 17 Oct 2009 05:50:28 -0000 1.18 +++ modules/menu/menu.api.php 17 Oct 2009 06:18:38 -0000 @@ -536,6 +536,8 @@ function hook_menu_local_tasks_alter(&$d * 'node/123' became 'node/%'. * * @see menu_contextual_links() + * @see hook_menu() + * @see system_preprocess() */ function hook_menu_contextual_links_alter(&$links, $router_item, $root_path) { // Add a link to all contextual links for nodes.