? _import.php ? _p_25termvocab.patch ? _p_flexinodedivs.patch ? _p_rssxmldb.patch ? files ? modules/devel.module ? modules/flexinode ? modules/taxonomy_similar ? sites/morbus.totalnetnh.net Index: database/database.mysql =================================================================== RCS file: /cvs/drupal/drupal/database/database.mysql,v retrieving revision 1.185 diff -u -r1.185 database.mysql --- database/database.mysql 8 May 2005 19:11:31 -0000 1.185 +++ database/database.mysql 10 May 2005 20:36:19 -0000 @@ -786,8 +786,8 @@ INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0,0); INSERT INTO system VALUES ('modules/user.module','user','module','',1,0,0); INSERT INTO system VALUES ('modules/watchdog.module','watchdog','module','',1,0,0); -INSERT INTO `system` VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0); -INSERT INTO `system` VALUES ('themes/bluemarine/page.tpl.php', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0); +INSERT INTO system VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0); +INSERT INTO system VALUES ('themes/bluemarine/page.tpl.php', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0); INSERT INTO users (uid, name, mail) VALUES ('0', '', ''); INSERT INTO users_roles (uid, rid) VALUES (0, 1); @@ -818,3 +818,5 @@ 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 url_alias (src, dst) VALUES ('node/feed', 'rss.xml'); Index: database/database.pgsql =================================================================== RCS file: /cvs/drupal/drupal/database/database.pgsql,v retrieving revision 1.122 diff -u -r1.122 database.pgsql --- database/database.pgsql 8 May 2005 19:11:31 -0000 1.122 +++ database/database.pgsql 10 May 2005 20:36:20 -0000 @@ -783,8 +783,8 @@ INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0,0); INSERT INTO system VALUES ('modules/user.module','user','module','',1,0,0); INSERT INTO system VALUES ('modules/watchdog.module','watchdog','module','',1,0,0); -INSERT INTO `system` VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0); -INSERT INTO `system` VALUES ('themes/bluemarine/page.tpl.php', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0); +INSERT INTO system VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0); +INSERT INTO system VALUES ('themes/bluemarine/page.tpl.php', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0); INSERT INTO variable(name,value) VALUES('update_start', 's:10:"2005-03-21";'); INSERT INTO variable(name,value) VALUES('theme_default','s:10:"bluemarine";'); @@ -811,14 +811,15 @@ INSERT INTO filters VALUES (3,'filter',2,0); 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 locales_meta (locale, name, enabled, isdefault) VALUES ('en', 'English', '1', '1'); + +INSERT INTO url_alias (src, dst) VALUES ('node/feed', 'rss.xml'); --- --- Alter some sequences --- ALTER SEQUENCE menu_mid_seq RESTART 2; - --- --- Functions --- @@ -839,7 +840,6 @@ SELECT greatest($1, greatest($2, $3)); ' LANGUAGE 'sql'; - CREATE FUNCTION "rand"() RETURNS float AS ' BEGIN RETURN random(); Index: database/updates.inc =================================================================== RCS file: /cvs/drupal/drupal/database/updates.inc,v retrieving revision 1.116 diff -u -r1.116 updates.inc --- database/updates.inc 10 May 2005 19:58:21 -0000 1.116 +++ database/updates.inc 10 May 2005 20:36:21 -0000 @@ -113,7 +113,8 @@ "2005-04-30" => "update_134", "2005-05-06" => "update_135", "2005-05-08" => "update_136", - "2005-05-09" => "update_137" + "2005-05-09" => "update_137", + "2005-05-10" => "update_138" ); function update_32() { @@ -2457,7 +2458,7 @@ return $ret; } - function update_137() { +function update_137() { $ret = array(); if ($GLOBALS['db_type'] == 'mysql') { @@ -2470,8 +2471,15 @@ $ret[] = update_sql("ALTER TABLE {locales_source} ALTER location SET DEFAULT ''"); $ret[] = update_sql("UPDATE {locales_source} SET location = location_old"); $ret[] = update_sql("ALTER TABLE {locales_source} DROP location_old"); - } - return $ret; + } + return $ret; +} + +function update_138() { + $ret = array(); + // duplicate of update_97 which never got into the default database.* files. + $ret[] = update_sql("INSERT INTO {url_alias} (src, dst) VALUES ('node/feed', 'rss.xml')"); + return $ret; } function update_sql($sql) {