From 614e03b7ceaae02f61bca81b6b0fe84fe7345b70 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Thu, 1 Mar 2007 19:53:26 +0000 Subject: [PATCH] - Stripping whitespace. --- CHANGELOG.txt | 2 +- scripts/drupal.sh | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4908cb90ec65..abcbb44ea450 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,7 +5,7 @@ Drupal 6.0, xxxx-xx-xx (development version) - added versioning support to node terms - made it easier to theme the forum overview page - Drupal works with error reporting set to E_ALL -- Added scripts/drupal.sh to execute Drupal code from the command line. Useful to use Drupal as a framework to build command-line tools. +- Added scripts/drupal.sh to execute Drupal code from the command line. Useful to use Drupal as a framework to build command-line tools. Drupal 5.0, 2007-01-15 ---------------------- diff --git a/scripts/drupal.sh b/scripts/drupal.sh index a89a34660b68..0ed781f83122 100755 --- a/scripts/drupal.sh +++ b/scripts/drupal.sh @@ -2,13 +2,13 @@ <?php // $Id$ -/** +/** * Drupal shell execution script - * + * * Check for your PHP interpreter - on Windows you'll probably have to * replace line 1 with * #!c:/program files/php/php.exe - * + * * @param path Drupal's absolute root directory in local file system (optional). * @param URI A URI to execute, including HTTP protocol prefix. */ @@ -29,7 +29,7 @@ --root Set the working directory for the script to the specified path. To execute Drupal this has to be the root directory of your Drupal installation, f.e. /home/www/foo/drupal (assuming Drupal - running on Unix). Current directory is not required. Use + running on Unix). Current directory is not required. Use surrounding quotation marks on Windows. @@ -37,15 +37,15 @@ produce errors from setting the session. URI The URI to execute, i.e. http://default/foo/bar for executing - the path '/foo/bar' in your site 'default'. URI has to be - enclosured by quotation marks if there are ampersands in it + the path '/foo/bar' in your site 'default'. URI has to be + enclosured by quotation marks if there are ampersands in it (f.e. index.php?q=node&foo=bar). Prefix 'http://' is required, and the domain must exist in Drupal's sites-directory. - + If the given path and file exists it will be executed directly, - i.e. if URI is set to http://default/bar/foo.php - and bar/foo.php exists, this script will be executed without - bootstrapping Drupal. To execute Drupal's cron.php, specify + i.e. if URI is set to http://default/bar/foo.php + and bar/foo.php exists, this script will be executed without + bootstrapping Drupal. To execute Drupal's cron.php, specify http://default/cron.php as the URI. \n EOF; @@ -86,7 +86,7 @@ echo "\nERROR: {$path} not found.\n\n"; } break; - + default: if (substr($param, 0, 2) == '--') { // ignore unknown options @@ -95,19 +95,19 @@ else { // parse the URI $path = parse_url($param); - + // set site name if (isset($path['host'])) { $_SERVER['HTTP_HOST'] = $path['host']; } - + // set query string if (isset($path['query'])) { $_SERVER['QUERY_STRING'] = $path['query']; parse_str($path['query'], $_GET); $_REQUEST = $_GET; } - + // set file to execute or Drupal path (clean urls enabled) if (isset($path['path']) && file_exists(substr($path['path'], 1))) { $_SERVER['PHP_SELF'] = $_SERVER['REQUEST_URI'] = $path['path']; @@ -118,7 +118,7 @@ $_REQUEST['q'] = $_GET['q'] = $path['path']; } } - + // display setup in verbose mode if ($_verbose_mode) { echo "Hostname set to: {$_SERVER['HTTP_HOST']}\n"; -- GitLab