Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.721
diff -u -r1.721 system.module
--- modules/system/system.module 4 Jul 2009 18:26:42 -0000 1.721
+++ modules/system/system.module 4 Jul 2009 19:06:03 -0000
@@ -262,6 +262,7 @@
'#show_messages' => TRUE,
'#show_blocks' => TRUE,
'#theme' => 'page',
+ '#theme_wrapper' => 'html',
);
$type['list'] = array(
Index: modules/system/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/page.tpl.php,v
retrieving revision 1.24
diff -u -r1.24 page.tpl.php
--- modules/system/page.tpl.php 4 Jul 2009 05:21:15 -0000 1.24
+++ modules/system/page.tpl.php 4 Jul 2009 19:06:02 -0000
@@ -20,21 +20,9 @@
* - $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.
+ * CSS. 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.
@@ -74,41 +62,31 @@
* - $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.
- * - $left: Items for the left sidebar.
- * - $right: Items for the right sidebar.
- * - $highlight: Items for the highlighted content region.
- *
- * Footer/closing data:
- * - $footer : The footer region.
- * - $closure: 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['left']: Items for the left sidebar.
+ * - $page['right']: Items for the right sidebar.
+ * - $page['header']: Items for the header region.
+ * - $page['footer']: Items for the footer region.
+ * - $page['page_top']: Items for the top region.
+ *
* @see template_preprocess()
* @see template_preprocess_page()
* @see template_process()
*/
?>
-
->
-
-
-
-
-
-
-
-
-
-
-