? modules/nodeaccess.1
? modules/nodeaccess.module
Index: database/database.mysql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.mysql,v
retrieving revision 1.174
diff -u -F^f -r1.174 database.mysql
--- database/database.mysql	23 Mar 2005 20:36:41 -0000	1.174
+++ database/database.mysql	7 Apr 2005 21:38:44 -0000
@@ -817,3 +817,6 @@
 INSERT INTO variable (name,value) VALUES ('filter_html_1','i:1;');
 
 INSERT INTO locales_meta (locale, name, enabled, isdefault) VALUES ('en', 'English', '1', '1');
+
+INSERT INTO node VALUES (0,'story','',0,1,unix_timestamp(),0,0,1,0,'','<?php\r\nreturn t(\"<p>Welcome to your new <a href=\\\"%drupal\\\">Drupal</a>-powered website. This message will guide you through your first steps with Drupal, and will disappear once you have posted your first piece of content.</p>\r\n      <p>The first thing you will need to do is <a href=\\\"%register\\\">create the first account</a>. This account will have full administration rights and will allow you to configure your website. Once logged in, you can visit the <a href=\\\"%admin\\\">administration section</a> and <a href=\\\"%config\\\">set up your site\'s configuration</a>.</p>\r\n      <p>Drupal comes with various modules, each of which contains a specific piece of functionality. You should visit the <a href=\\\"%modules\\\">module list</a> and enable those modules which suit your website\'s needs.</p>\r\n      <p><a href=\\\"%themes\\\">Themes</a> handle the presentation of your website. You can use one of the existing themes, modify them or create your own from scratch.</p>\r\n      <p>We suggest you look around the administration section and explore the various options Drupal offers you. For more information, you can refer to the <a href=\\\"%handbook\\\">Drupal handbook online</a>.</p>\", array(\'%drupal\' => \'http://www.drupal.org/\', \'%register\' => url(\'user/register\'), \'%admin\' => url(\'admin\'), \'%config\' => url(\'admin\'), \'%modules\' => url(\'admin/modules\'), \'%themes\' => url(\'admin/themes\'), \'%handbook\' => \'http://www.drupal.org/handbook\'));\r\n?>','',0,2);
+UPDATE node SET teaser=body, changed=created, nid=0 WHERE nid=1;
Index: database/database.pgsql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.pgsql,v
retrieving revision 1.110
diff -u -F^f -r1.110 database.pgsql
--- database/database.pgsql	3 Apr 2005 08:56:48 -0000	1.110
+++ database/database.pgsql	7 Apr 2005 21:38:45 -0000
@@ -815,6 +815,9 @@
 
 INSERT INTO locales_meta(locale, name, enabled, isdefault) VALUES('en', 'English', '1', '1');
 
+INSERT INTO node VALUES (0,'story','',0,1,extract(epoch from now())::integer,0,0,1,0,'','<?php\r\nreturn t(\"<p>Welcome to your new <a href=\\\"%drupal\\\">Drupal</a>-powered website. This message will guide you through your first steps with Drupal, and will disappear once you have posted your first piece of content.</p>\r\n      <p>The first thing you will need to do is <a href=\\\"%register\\\">create the first account</a>. This account will have full administration rights and will allow you to configure your website. Once logged in, you can visit the <a href=\\\"%admin\\\">administration section</a> and <a href=\\\"%config\\\">set up your site\'s configuration</a>.</p>\r\n      <p>Drupal comes with various modules, each of which contains a specific piece of functionality. You should visit the <a href=\\\"%modules\\\">module list</a> and enable those modules which suit your website\'s needs.</p>\r\n      <p><a href=\\\"%themes\\\">Themes</a> handle the presentation of your website. You can use one of the existing themes, modify them or create your own from scratch.</p>\r\n      <p>We suggest you look around the administration section and explore the various options Drupal offers you. For more information, you can refer to the <a href=\\\"%handbook\\\">Drupal handbook online</a>.</p>\", array(\'%drupal\' => \'http://www.drupal.org/\', \'%register\' => url(\'user/register\'), \'%admin\' => url(\'admin\'), \'%config\' => url(\'admin\'), \'%modules\' => url(\'admin/modules\'), \'%themes\' => url(\'admin/themes\'), \'%handbook\' => \'http://www.drupal.org/handbook\'));\r\n?>','',0,2);
+UPDATE node SET teaser=body, changed=created WHERE nid=0;  
+
 ---
 --- Alter some sequences
 ---
Index: modules/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node.module,v
retrieving revision 1.485
diff -u -F^f -r1.485 node.module
--- modules/node.module	5 Apr 2005 07:25:11 -0000	1.485
+++ modules/node.module	7 Apr 2005 21:38:46 -0000
@@ -1634,12 +1634,7 @@ function node_page_default() {
     $output .= theme('pager', NULL, variable_get('default_nodes_main', 10));
   }
   else {
-    $output = t("
-      <p>Welcome to your new <a href=\"%drupal\">Drupal</a>-powered website. This message will guide you through your first steps with Drupal, and will disappear once you have posted your first piece of content.</p>
-      <p>The first thing you will need to do is <a href=\"%register\">create the first account</a>. This account will have full administration rights and will allow you to configure your website. Once logged in, you can visit the <a href=\"%admin\">administration section</a> and <a href=\"%config\">set up your site's configuration</a>.</p>
-      <p>Drupal comes with various modules, each of which contains a specific piece of functionality. You should visit the <a href=\"%modules\">module list</a> and enable those modules which suit your website's needs.</p>
-      <p><a href=\"%themes\">Themes</a> handle the presentation of your website. You can use one of the existing themes, modify them or create your own from scratch.</p>
-      <p>We suggest you look around the administration section and explore the various options Drupal offers you. For more information, you can refer to the <a href=\"%handbook\">Drupal handbook online</a>.</p>", array('%drupal' => 'http://www.drupal.org/', '%register' => url('user/register'), '%admin' => url('admin'), '%config' => url('admin'), '%modules' => url('admin/modules'), '%themes' => url('admin/themes'), '%handbook' => 'http://www.drupal.org/handbook'));
+    $output = t('There are no items found');
   }
 
   return $output;
