Index: database/database.mysql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.mysql,v
retrieving revision 1.175
diff -u -F^f -r1.175 database.mysql
--- database/database.mysql	8 Apr 2005 14:59:14 -0000	1.175
+++ database/database.mysql	11 Apr 2005 22:13:14 -0000
@@ -818,3 +818,7 @@
 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 (1,'story','Welcome!',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 WHERE nid=1;
+INSERT INTO sequences (name, id) VALUES ('node_nid', 1);
Index: database/database.pgsql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.pgsql,v
retrieving revision 1.111
diff -u -F^f -r1.111 database.pgsql
--- database/database.pgsql	8 Apr 2005 14:59:14 -0000	1.111
+++ database/database.pgsql	11 Apr 2005 22:13:16 -0000
@@ -816,11 +816,14 @@
 
 INSERT INTO locales_meta(locale, name, enabled, isdefault) VALUES('en', 'English', '1', '1');
 
+INSERT INTO node VALUES (1,'story','Welcome!',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 = 1;
+
 ---
 --- Alter some sequences
 ---
 ALTER SEQUENCE menu_mid_seq RESTART 2;
-
+ALTER SEQUENCE node_nid_seq RESTART 2;
 
 ---
 --- Functions
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	11 Apr 2005 22:13:21 -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;
