$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: grafikrobot_at_[hidden]
Date: 2008-03-01 17:25:24
Author: grafik
Date: 2008-03-01 17:25:23 EST (Sat, 01 Mar 2008)
New Revision: 43444
URL: http://svn.boost.org/trac/boost/changeset/43444
Log:
Use a local file as a default config to allow easy localized setup for development.
Text files modified: 
   website/public_html/beta/common/code/boost_config.php |    13 ++++++-------                           
   1 files changed, 6 insertions(+), 7 deletions(-)
Modified: website/public_html/beta/common/code/boost_config.php
==============================================================================
--- website/public_html/beta/common/code/boost_config.php	(original)
+++ website/public_html/beta/common/code/boost_config.php	2008-03-01 17:25:23 EST (Sat, 01 Mar 2008)
@@ -26,23 +26,22 @@
 {
   case 'boost.org':
   case 'www.boost.org':
+  case 'live.boost.org':
   case 'beta.boost.org':
   {
     define('BOOST_CONFIG_FILE','/home/grafik/www.boost.org/config.php');
   }
   break;
-  
-  case 'localhost':
-  case 'boost.borg.redshift-software.com':
-  {
-    define('BOOST_CONFIG_FILE','/DevRoots/Boost/website/workplace/config.php');
-  }
-  break;
 
   case 'beta.boost.local':
   {
     define('BOOST_CONFIG_FILE','/home/daniel/config.php');
   }
+  
+  default:
+  {
+    define('BOOST_CONFIG_FILE',dirname(__FILE__) . '/boost_config_local.php');
+  }
 }
 
 define('ARCHIVE_FILE_PREFIX', '');