Index: .htaccess =================================================================== RCS file: /cvs/drupal/drupal/.htaccess,v retrieving revision 1.64 diff -u -r1.64 .htaccess --- .htaccess 12 Mar 2005 10:42:48 -0000 1.64 +++ .htaccess 14 Mar 2005 20:05:21 -0000 @@ -18,26 +18,20 @@ # Set the default handler. DirectoryIndex index.php -# Override PHP settings. More overrides exist in -# sites/default/settings.php, but the following cannot be changed at -# runtime. The first IfModule is for Apache 1.3, the second for -# Apache 2. +# Override PHP settings. More exist in sites/default/settings.php, but +# the following cannot be changed at runtime. The first IfModule is +# for Apache 1.3, the second for Apache 2. - php_value allow_call_time_pass_reference 1 php_value magic_quotes_gpc 0 php_value register_globals 0 - php_value short_open_tag 1 - php_value allow_call_time_pass_reference 1 php_value magic_quotes_gpc 0 php_value register_globals 0 - php_value short_open_tag 1 -# Override mod_expires by reducing the time dynamically generated pages -# are cache-able. +# Reduce the time dynamically generated pages are cache-able. ExpiresByType text/html A1 @@ -56,13 +50,13 @@ #RewriteCond %{QUERY_STRING} ^id=([^&]+)$ #RewriteRule node.php index.php?q=node/view/%1 [L] - # Rewrite old-style URLs of the form 'module.php?mod=x': + # Rewrite old-style URLs of the form 'module.php?mod=x'. #RewriteCond %{REQUEST_FILENAME} !-f #RewriteCond %{REQUEST_FILENAME} !-d #RewriteCond %{QUERY_STRING} ^mod=([^&]+)$ #RewriteRule module.php index.php?q=%1 [L] - # Rewrite current-style URLs of the form 'index.php?q=x': + # Rewrite current-style URLs of the form 'index.php?q=x'. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] Index: INSTALL.txt =================================================================== RCS file: /cvs/drupal/drupal/INSTALL.txt,v retrieving revision 1.15 diff -u -r1.15 INSTALL.txt --- INSTALL.txt 12 Mar 2005 10:51:32 -0000 1.15 +++ INSTALL.txt 14 Mar 2005 20:05:21 -0000 @@ -14,7 +14,7 @@ REQUIREMENTS ------------ -Drupal requires a web server, PHP4 (4.33 or greater) or PHP5 +Drupal requires a web server, PHP4 (4.3.3 or greater) or PHP5 (http://www.php.net/) and either MySQL (http://www.mysql.com/) or PostgreSQL (http://www.postgresql.org/). Index: sites/default/settings.php =================================================================== RCS file: /cvs/drupal/drupal/sites/default/settings.php,v retrieving revision 1.10 diff -u -r1.10 settings.php --- sites/default/settings.php 12 Mar 2005 10:51:32 -0000 1.10 +++ sites/default/settings.php 14 Mar 2005 20:05:21 -0000 @@ -75,7 +75,7 @@ * be set at runtime (ie., when ini_set() occurs), read the PHP * documentation at http://www.php.net/manual/en/ini.php#ini.list * and take a look at the .htaccess file to see which non-runtime - * settings are used there.Settings defined here should not be + * settings are used there. Settings defined here should not be * duplicated there so as to avoid conflict issues. */ ini_set('arg_separator.output', '&');