? 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,'','Welcome to your new Drupal-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.

\r\n

The first thing you will need to do is create the first account. This account will have full administration rights and will allow you to configure your website. Once logged in, you can visit the administration section and set up your site\'s configuration.

\r\n

Drupal comes with various modules, each of which contains a specific piece of functionality. You should visit the module list and enable those modules which suit your website\'s needs.

\r\n

Themes handle the presentation of your website. You can use one of the existing themes, modify them or create your own from scratch.

\r\n

We suggest you look around the administration section and explore the various options Drupal offers you. For more information, you can refer to the Drupal handbook online.

\", 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,'','Welcome to your new Drupal-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.

\r\n

The first thing you will need to do is create the first account. This account will have full administration rights and will allow you to configure your website. Once logged in, you can visit the administration section and set up your site\'s configuration.

\r\n

Drupal comes with various modules, each of which contains a specific piece of functionality. You should visit the module list and enable those modules which suit your website\'s needs.

\r\n

Themes handle the presentation of your website. You can use one of the existing themes, modify them or create your own from scratch.

\r\n

We suggest you look around the administration section and explore the various options Drupal offers you. For more information, you can refer to the Drupal handbook online.

\", 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(" -

Welcome to your new Drupal-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.

-

The first thing you will need to do is create the first account. This account will have full administration rights and will allow you to configure your website. Once logged in, you can visit the administration section and set up your site's configuration.

-

Drupal comes with various modules, each of which contains a specific piece of functionality. You should visit the module list and enable those modules which suit your website's needs.

-

Themes handle the presentation of your website. You can use one of the existing themes, modify them or create your own from scratch.

-

We suggest you look around the administration section and explore the various options Drupal offers you. For more information, you can refer to the Drupal handbook online.

", 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;