Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.375 diff -u -r1.375 block.module --- modules/block/block.module 11 Sep 2009 02:12:42 -0000 1.375 +++ modules/block/block.module 12 Sep 2009 02:20:23 -0000 @@ -197,6 +197,7 @@ // Load all region content assigned via blocks. foreach (array_keys($all_regions) as $region) { + $page[$region] = array(); // Assign blocks to region. if ($blocks = block_get_blocks_by_region($region)) { $page[$region] = $blocks; Index: themes/seven/page.tpl.php =================================================================== RCS file: /cvs/drupal/drupal/themes/seven/page.tpl.php,v retrieving revision 1.3 diff -u -r1.3 page.tpl.php --- themes/seven/page.tpl.php 22 Aug 2009 19:58:28 -0000 1.3 +++ themes/seven/page.tpl.php 12 Sep 2009 02:20:24 -0000 @@ -1,20 +1,6 @@ -> - - <?php print $head_title; ?> - - - - - - - - - +?>

@@ -28,13 +14,13 @@
- +
- +
- +
- - - - - Index: themes/seven/template.php =================================================================== RCS file: /cvs/drupal/drupal/themes/seven/template.php,v retrieving revision 1.5 diff -u -r1.5 template.php --- themes/seven/template.php 22 Aug 2009 14:34:23 -0000 1.5 +++ themes/seven/template.php 12 Sep 2009 02:20:24 -0000 @@ -4,10 +4,12 @@ /** * Override or insert variables into the page template. */ +function seven_process_html(&$vars) { + $vars['ie_styles'] = ''; +} function seven_preprocess_page(&$vars) { $vars['primary_local_tasks'] = menu_primary_local_tasks(); $vars['secondary_local_tasks'] = menu_secondary_local_tasks(); - $vars['ie_styles'] = ''; } /** Index: modules/system/page.tpl.php =================================================================== RCS file: /cvs/drupal/drupal/modules/system/page.tpl.php,v retrieving revision 1.32 diff -u -r1.32 page.tpl.php --- modules/system/page.tpl.php 31 Aug 2009 19:50:18 -0000 1.32 +++ modules/system/page.tpl.php 12 Sep 2009 02:20:23 -0000 @@ -10,48 +10,12 @@ * General utility variables: * - $base_path: The base URL path of the Drupal installation. At the very * least, this will always default to /. - * - $css: An array of CSS files for the current page. * - $directory: The directory the template is located in, e.g. modules/system * or themes/garland. - * - $classes_array: Array of html class attribute values. It is flattened - * into a string within the variable $classes. * - $is_front: TRUE if the current page is the front page. Used to toggle the mission statement. * - $logged_in: TRUE if the user is registered and signed in. * - $is_admin: TRUE if the user has permission to access administration pages. * - * Page metadata: - * - $language: (object) The language the site is being displayed in. - * $language->language contains its textual representation. - * $language->dir contains the language direction. It will either be 'ltr' or 'rtl'. - * - $rdf_namespaces: All the RDF namespace prefixes used in the HTML document. - * - $grddl_profile: A GRDDL profile allowing agents to extract the RDF data. - * - $head_title: A modified version of the page title, for use in the TITLE tag. - * - $head: Markup for the HEAD section (including meta tags, keyword tags, and - * so on). - * - $styles: Style tags necessary to import all CSS files for the page. - * - $scripts: Script tags necessary to load the JavaScript files and settings - * for the page. - * - $classes: String of classes that can be used to style contextually through - * CSS. It should be placed within the tag. When selecting through CSS - * it's recommended that you use the body tag, e.g., "body.front". It can be - * manipulated through the variable $classes_array from preprocess functions. - * The default values can be one or more of the following: - * - page: The current template type, i.e., "theming hook". - * - front: Page is the home page. - * - not-front: Page is not the home page. - * - logged-in: The current viewer is logged in. - * - not-logged-in: The current viewer is not logged in. - * - page-[level 1 path]: The internal first level path. For example, viewing - * example.com/user/2 would result in "page-user". Path aliases do not apply. - * - node-type-[node type]: When viewing a single node, the type of that node. - * For example, if the node is a "Blog entry" it would result in "node-type-blog". - * Note that the machine name will often be in a short form of the human readable label. - * The following only apply with the default 'sidebar_first' and 'sidebar_second' block regions: - * - two-sidebars: When both sidebars have content. - * - no-sidebars: When no sidebar content exists. - * - one-sidebar and sidebar-first or sidebar-second: A combination of the two classes - * when only one of the two sidebars have content. - * * Site identity: * - $front_page: The URL of the front page. Use this instead of $base_path, * when linking to the front page. This includes the language domain or prefix. @@ -76,41 +40,22 @@ * - $messages: HTML for status and error messages. Should be displayed prominently. * - $tabs: Tabs linking to any sub-pages beneath the current page (e.g., the view * and edit tabs when displaying a node). - * - $help: Dynamic help text, mostly for admin pages. - * - $content: The main content of the current page. * - $feed_icons: A string of all feed icons for the current page. - * - $sidebar_first: Items for the first sidebar. - * - $sidebar_second: Items for the second sidebar. - * - $highlight: Items for the highlighted content region. - * - * Opening and closing data: - * - $page_top: Initial markup from any modules that have altered the - * page. This variable should always be output first, before all other dynamic - * content. - * - $footer : The footer region. - * - $page_bottom: Final closing markup from any modules that have altered the - * page. This variable should always be output last, after all other dynamic - * content. * + * Regions: + * - $page['help']: Dynamic help text, mostly for admin pages. + * - $page['highlight']: Items for the highlighted content region. + * - $page['content']: The main content of the current page. + * - $page['sidebar_first']: Items for the first sidebar. + * - $page['sidebar_second']: Items for the second sidebar. + * - $page['header']: Items for the header region. + * - $page['footer']: Items for the footer region. + * * @see template_preprocess() * @see template_preprocess_page() * @see template_process() */ ?> - -> - - - <?php print $head_title; ?> - - - - - - -
@@ -146,9 +91,9 @@ - +
- +
@@ -169,26 +114,26 @@
-
+

- +
- +
- + - + @@ -196,12 +141,11 @@
- - - - - Index: modules/system/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.module,v retrieving revision 1.789 diff -u -r1.789 system.module --- modules/system/system.module 11 Sep 2009 02:14:20 -0000 1.789 +++ modules/system/system.module 12 Sep 2009 02:20:24 -0000 @@ -291,6 +291,7 @@ $types['page'] = array( '#show_messages' => TRUE, '#theme' => 'page', + '#theme_wrappers' => array('html'), ); $types['list'] = array( '#title' => '', Index: modules/color/color.module =================================================================== RCS file: /cvs/drupal/drupal/modules/color/color.module,v retrieving revision 1.70 diff -u -r1.70 color.module --- modules/color/color.module 5 Sep 2009 15:05:02 -0000 1.70 +++ modules/color/color.module 12 Sep 2009 02:20:23 -0000 @@ -69,7 +69,7 @@ /** * Callback for the theme to alter the resources used. */ -function _color_page_alter(&$vars) { +function _color_html_alter(&$vars) { global $language, $theme_key; $themes = list_themes(); @@ -93,6 +93,13 @@ $vars['styles'] = drupal_get_css($vars['css']); } +} + +/** + * Callback for the theme to alter the resources used. + */ +function _color_page_alter(&$vars) { + global $language, $theme_key; // Override logo. $logo = variable_get('color_' . $theme_key . '_logo'); Index: themes/garland/page.tpl.php =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/page.tpl.php,v retrieving revision 1.32 diff -u -r1.32 page.tpl.php --- themes/garland/page.tpl.php 22 Aug 2009 19:58:28 -0000 1.32 +++ themes/garland/page.tpl.php 12 Sep 2009 02:20:24 -0000 @@ -1,23 +1,7 @@ -> - - <?php print $head_title ?> - - - - - - - - - -
+?> +
@@ -38,40 +22,36 @@
- +
-
+
>
- +
- +
- +
- +
- - - - Index: themes/garland/template.php =================================================================== RCS file: /cvs/drupal/drupal/themes/garland/template.php,v retrieving revision 1.30 diff -u -r1.30 template.php --- themes/garland/template.php 11 Sep 2009 14:14:16 -0000 1.30 +++ themes/garland/template.php 12 Sep 2009 02:20:24 -0000 @@ -20,6 +20,17 @@ } /** + * Override or insert variables into the html template. + */ +function garland_process_html(&$vars) { + // Hook into color.module + if (module_exists('color')) { + _color_html_alter($vars); + } + $vars['styles'] .= "\n\n"; +} + +/** * Override or insert variables into the page template. */ function garland_preprocess_page(&$vars) { @@ -54,7 +65,6 @@ else { $vars['secondary_nav'] = FALSE; } - $vars['ie_styles'] = garland_get_ie_styles(); // Prepare header $site_fields = array(); @@ -73,7 +83,7 @@ } /** - * Override process function used to alter variables as late as possible. + * Override or insert variables into the page template. */ function garland_process_page(&$vars) { // Hook into color.module Index: modules/toolbar/toolbar.module =================================================================== RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.module,v retrieving revision 1.10 diff -u -r1.10 toolbar.module --- modules/toolbar/toolbar.module 5 Sep 2009 15:05:05 -0000 1.10 +++ modules/toolbar/toolbar.module 12 Sep 2009 02:20:24 -0000 @@ -46,7 +46,7 @@ * * Add some page classes, so global page theming can adjust to the toolbar. */ -function toolbar_preprocess_page(&$vars) { +function toolbar_preprocess_html(&$vars) { if (user_access('access toolbar')) { $vars['classes_array'][] = 'toolbar toolbar-shortcuts'; } Index: modules/simpletest/tests/theme.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/theme.test,v retrieving revision 1.5 diff -u -r1.5 theme.test --- modules/simpletest/tests/theme.test 13 Aug 2009 03:05:54 -0000 1.5 +++ modules/simpletest/tests/theme.test 12 Sep 2009 02:20:23 -0000 @@ -26,17 +26,17 @@ // test runner fails. variable_set('site_frontpage', 'nobody-home'); $args = array('node', '1', 'edit'); - $suggestions = template_page_suggestions($args); + $suggestions = template_page_suggestions($args, 'page'); $this->assertEqual($suggestions, array('page-node', 'page-node-%', 'page-node-1', 'page-node-edit'), t('Found expected node edit page template suggestions')); // Check attack vectors. $args = array('node', '\\1'); - $suggestions = template_page_suggestions($args); + $suggestions = template_page_suggestions($args, 'page'); $this->assertEqual($suggestions, array('page-node', 'page-node-%', 'page-node-1'), t('Removed invalid \\ from template suggestions')); $args = array('node', '1/'); - $suggestions = template_page_suggestions($args); + $suggestions = template_page_suggestions($args, 'page'); $this->assertEqual($suggestions, array('page-node', 'page-node-%', 'page-node-1'), t('Removed invalid / from template suggestions')); $args = array('node', "1\0"); - $suggestions = template_page_suggestions($args); + $suggestions = template_page_suggestions($args, 'page'); $this->assertEqual($suggestions, array('page-node', 'page-node-%', 'page-node-1'), t('Removed invalid \\0 from template suggestions')); // Tests for drupal_discover_template() $suggestions = array('page'); Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.523 diff -u -r1.523 theme.inc --- includes/theme.inc 11 Sep 2009 15:17:00 -0000 1.523 +++ includes/theme.inc 12 Sep 2009 02:20:22 -0000 @@ -2083,6 +2083,86 @@ } /** + * Preprocess variables for html.tpl.php + * + * @see system_elements() + * @see html.tpl.php + */ +function template_preprocess_html(&$variables) { + // Compile a list of classes that are going to be applied to the body element. + // This allows advanced theming based on context (home page, node of certain type, etc.). + // Add a class that tells us whether we're on the front page or not. + $variables['classes_array'][] = $variables['is_front'] ? 'front' : 'not-front'; + // Add a class that tells us whether the page is viewed by an authenticated user or not. + $variables['classes_array'][] = $variables['logged_in'] ? 'logged-in' : 'not-logged-in'; + + // Add information about the number of sidebars. + if (!empty($variables['page']['sidebar_first']) && !empty($variables['page']['sidebar_second'])) { + $variables['classes_array'][] = 'two-sidebars'; + } + elseif (!empty($variables['page']['sidebar_first'])) { + $variables['classes_array'][] = 'one-sidebar sidebar-first'; + } + elseif (!empty($variables['page']['sidebar_second'])) { + $variables['classes_array'][] = 'one-sidebar sidebar-second'; + } + else { + $variables['classes_array'][] = 'no-sidebars'; + } + + // Populate the body classes. + if ($suggestions = template_page_suggestions(arg(), 'page')) { + foreach ($suggestions as $suggestion) { + if ($suggestion != 'page-front') { + // Add current suggestion to page classes to make it possible to theme the page + // depending on the current page type (e.g. node, admin, user, etc.) as well as + // more specific data like node-12 or node-edit. To avoid illegal characters in + // the class, we're removing everything disallowed. We are not using 'a-z' as + // that might leave in certain international characters (e.g. German umlauts). + $variables['classes_array'][] = preg_replace('![^abcdefghijklmnopqrstuvwxyz0-9-_]+!s', '', form_clean_id(drupal_strtolower($suggestion))); + } + } + } + + if ($node = menu_get_object()) { + $variables['classes_array'][] = 'node-type-' . form_clean_id($node->type); + } + + // RDFa allows annotation of XHTML pages with RDF data, while GRDDL provides + // mechanisms for extraction of this RDF content via XSLT transformation + // using an associated GRDDL profile. + $variables['rdf_namespaces'] = drupal_get_rdf_namespaces(); + $variables['grddl_profile'] = 'http://ns.inria.fr/grddl/rdfa/'; + $variables['language'] = $GLOBALS['language']; + $variables['language']->dir = $GLOBALS['language']->direction ? 'rtl' : 'ltr'; + + + // Add favicon. + if (theme_get_setting('toggle_favicon')) { + $favicon = theme_get_setting('favicon'); + $type = theme_get_setting('favicon_mimetype'); + drupal_add_html_head(''); + } + + // Construct page title. + if (drupal_get_title()) { + $head_title = array(strip_tags(drupal_get_title()), variable_get('site_name', 'Drupal')); + } + else { + $head_title = array(variable_get('site_name', 'Drupal')); + if (variable_get('site_slogan', '')) { + $head_title[] = variable_get('site_slogan', ''); + } + } + $variables['head_title'] = implode(' | ', $head_title); + + // Populate the page template suggestions. + if ($suggestions = template_page_suggestions(arg(), 'html')) { + $variables['template_files'] = $suggestions; + } +} + +/** * Preprocess variables for page.tpl.php * * Most themes utilize their own copy of page.tpl.php. The default is located @@ -2103,33 +2183,21 @@ // Move some variables to the top level for themer convenience and template cleanliness. $variables['show_messages'] = $variables['page']['#show_messages']; - // Add favicon. - if (theme_get_setting('toggle_favicon')) { - $favicon = theme_get_setting('favicon'); - $type = theme_get_setting('favicon_mimetype'); - drupal_add_html_head(''); - } - // Set up layout variable. $variables['layout'] = 'none'; if (!empty($variables['page']['sidebar_first'])) { $variables['layout'] = 'first'; } + else { + $variables['page']['sidebar_first'] = array(); + } if (!empty($variables['page']['sidebar_second'])) { $variables['layout'] = ($variables['layout'] == 'first') ? 'both' : 'second'; } - - // Construct page title - if (drupal_get_title()) { - $head_title = array(strip_tags(drupal_get_title()), variable_get('site_name', 'Drupal')); - } else { - $head_title = array(variable_get('site_name', 'Drupal')); - if (variable_get('site_slogan', '')) { - $head_title[] = variable_get('site_slogan', ''); - } + $variables['page']['sidebar_second'] = array(); } - $variables['head_title'] = implode(' | ', $head_title); + $variables['base_path'] = base_path(); $variables['front_page'] = url(); $variables['breadcrumb'] = theme('breadcrumb', drupal_get_breadcrumb()); @@ -2146,69 +2214,32 @@ $variables['site_slogan'] = (theme_get_setting('toggle_slogan') ? filter_xss_admin(variable_get('site_slogan', '')) : ''); $variables['tabs'] = theme('menu_local_tasks'); $variables['title'] = drupal_get_title(); - // RDFa allows annotation of XHTML pages with RDF data, while GRDDL provides - // mechanisms for extraction of this RDF content via XSLT transformation - // using an associated GRDDL profile. - $variables['rdf_namespaces'] = drupal_get_rdf_namespaces(); - $variables['grddl_profile'] = 'http://ns.inria.fr/grddl/rdfa/'; if ($node = menu_get_object()) { $variables['node'] = $node; } - // Compile a list of classes that are going to be applied to the body element. - // This allows advanced theming based on context (home page, node of certain type, etc.). - // Add a class that tells us whether we're on the front page or not. - $variables['classes_array'][] = $variables['is_front'] ? 'front' : 'not-front'; - // Add a class that tells us whether the page is viewed by an authenticated user or not. - $variables['classes_array'][] = $variables['logged_in'] ? 'logged-in' : 'not-logged-in'; - // Populate the page template suggestions. - if ($suggestions = template_page_suggestions(arg())) { + if ($suggestions = template_page_suggestions(arg(), 'page')) { $variables['template_files'] = $suggestions; - foreach ($suggestions as $suggestion) { - if ($suggestion != 'page-front') { - // Add current suggestion to page classes to make it possible to theme the page - // depending on the current page type (e.g. node, admin, user, etc.) as well as - // more specific data like node-12 or node-edit. To avoid illegal characters in - // the class, we're removing everything disallowed. We are not using 'a-z' as - // that might leave in certain international characters (e.g. German umlauts). - $variables['classes_array'][] = preg_replace('![^abcdefghijklmnopqrstuvwxyz0-9-_]+!s', '', form_clean_id(drupal_strtolower($suggestion))); - } - } - } - - // If on an individual node page, add the node type to body classes. - if (isset($variables['node']) && $variables['node']->type) { - $variables['classes_array'][] = 'node-type-' . form_clean_id($variables['node']->type); - } - // Add information about the number of sidebars. - if ($variables['layout'] == 'both') { - $variables['classes_array'][] = 'two-sidebars'; - } - elseif ($variables['layout'] == 'none') { - $variables['classes_array'][] = 'no-sidebars'; - } - else { - $variables['classes_array'][] = 'one-sidebar sidebar-' . $variables['layout']; } } /** - * Process variables for page.tpl.php + * Process variables for html.tpl.php * * Perform final addition and modification of variables before passing into * the template. To customize these variables, call drupal_render() on elements * in $variables['page'] during THEME_preprocess_page(). * - * @see template_preprocess_page() - * @see page.tpl.php + * @see template_preprocess_html() + * @see html.tpl.php */ -function template_process_page(&$variables) { - // Render each region into top level variables. - foreach (system_region_list($GLOBALS['theme']) as $region_key => $region_name) { - $variables[$region_key] = drupal_render($variables['page'][$region_key]); - } - // Append javascript to $page_bottom +function template_process_html(&$variables) { + // Render page_top and page_bottom into top level variables. + $variables['page_top'] = drupal_render($variables['page']['page_top']); + $variables['page_bottom'] = drupal_render($variables['page']['page_bottom']); + // Place the rendered HTML for the page body into a top level variable. + $variables['page'] = $variables['page']['#children']; $variables['page_bottom'] .= drupal_get_js('footer'); $variables['head'] = drupal_get_html_head(); @@ -2226,7 +2257,7 @@ * @return * An array of suggested template files. */ -function template_page_suggestions($args) { +function template_page_suggestions($args, $suggestion) { // Build a list of suggested template files and body classes in order of // specificity. One suggestion is made for every element of the current path, @@ -2239,7 +2270,6 @@ // page-node.tpl.php page-node // page.tpl.php - $suggestion = 'page'; $suggestions = array(); foreach ($args as $arg) { // Remove slashes or null per SA-CORE-2009-003. @@ -2255,7 +2285,7 @@ } } if (drupal_is_front_page()) { - $suggestions[] = 'page-front'; + $suggestions[] = $suggestion . '-front'; } return $suggestions; Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.988 diff -u -r1.988 common.inc --- includes/common.inc 11 Sep 2009 15:12:29 -0000 1.988 +++ includes/common.inc 12 Sep 2009 02:20:20 -0000 @@ -4532,6 +4532,10 @@ 'placeholder' => array( 'arguments' => array('text' => NULL) ), + 'html' => array( + 'arguments' => array('page' => NULL), + 'template' => 'html', + ), 'page' => array( 'arguments' => array('page' => NULL), 'template' => 'page', Index: modules/system/html.tpl.php =================================================================== RCS file: modules/system/html.tpl.php diff -N modules/system/html.tpl.php --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ modules/system/html.tpl.php 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,52 @@ +language contains its textual representation. + * $language->dir contains the language direction. It will either be 'ltr' or 'rtl'. + * - $rdf_namespaces: All the RDF namespace prefixes used in the HTML document. + * - $grddl_profile: A GRDDL profile allowing agents to extract the RDF data. + * - $head_title: A modified version of the page title, for use in the TITLE tag. + * - $head: Markup for the HEAD section (including meta tags, keyword tags, and + * so on). + * - $styles: Style tags necessary to import all CSS files for the page. + * - $scripts: Script tags necessary to load the JavaScript files and settings + * for the page. + * - $page_top: Initial markup from any modules that have altered the + * page. This variable should always be output first, before all other dynamic + * content. + * - $page: The rendered page content. + * - $page_bottom: Final closing markup from any modules that have altered the + * page. This variable should always be output last, after all other dynamic + * content. + * - $classes String of classes that can be used to style contextually through + * CSS. + * + * @see template_preprocess() + * @see template_preprocess_html() + * @see template_process() + */ +?> +> + + + <?php print $head_title; ?> + + + + + + + + + +