make files use pear directories
This commit is contained in:
parent
aba3327b5b
commit
f93aa6c7ac
17
build.xml
17
build.xml
@ -113,6 +113,23 @@
|
|||||||
<ignore>scripts/**</ignore>
|
<ignore>scripts/**</ignore>
|
||||||
<ignore>src/php-gettext/examples/**</ignore>
|
<ignore>src/php-gettext/examples/**</ignore>
|
||||||
<ignore>src/php-gettext/bin/**</ignore>
|
<ignore>src/php-gettext/bin/**</ignore>
|
||||||
|
<ignore>*.tgz</ignore>
|
||||||
|
|
||||||
|
<replacement
|
||||||
|
path="src/SemanticScuttle/header.php"
|
||||||
|
type="pear-config"
|
||||||
|
from="@data_dir@" to="data_dir"
|
||||||
|
/>
|
||||||
|
<replacement
|
||||||
|
path="www/www-header.php"
|
||||||
|
type="pear-config"
|
||||||
|
from="@data_dir@" to="data_dir"
|
||||||
|
/>
|
||||||
|
<replacement
|
||||||
|
path="tests/prepare.php"
|
||||||
|
type="pear-config"
|
||||||
|
from="@data_dir@" to="data_dir"
|
||||||
|
/>
|
||||||
|
|
||||||
<changelog version="0.97" date="2010-06-09" license="GPL">
|
<changelog version="0.97" date="2010-06-09" license="GPL">
|
||||||
- Many SQL optimizations - SemanticScuttle shows bookmarks 4 times faster now
|
- Many SQL optimizations - SemanticScuttle shows bookmarks 4 times faster now
|
||||||
|
@ -14,9 +14,21 @@
|
|||||||
* @license GPL http://www.gnu.org/licenses/gpl.html
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||||
* @link http://sourceforge.net/projects/semanticscuttle
|
* @link http://sourceforge.net/projects/semanticscuttle
|
||||||
*/
|
*/
|
||||||
if (!file_exists(dirname(__FILE__) .'/../../data/config.php')) {
|
|
||||||
|
if ('@data_dir@' == '@' . 'data_dir@') {
|
||||||
|
//non pear-install
|
||||||
|
$datadir = dirname(__FILE__) . '/../../data/';
|
||||||
|
} else {
|
||||||
|
//pear installation; files are in include path
|
||||||
|
$datadir = '@data_dir@';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!file_exists($datadir . '/config.php')) {
|
||||||
header('HTTP/1.0 500 Internal Server Error');
|
header('HTTP/1.0 500 Internal Server Error');
|
||||||
die('Please copy "config.php.dist" to "config.php" in data/ folder.');
|
die(
|
||||||
|
'Please copy "config.php.dist" to "config.php" in data/ folder.'
|
||||||
|
. "\n"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
set_include_path(
|
set_include_path(
|
||||||
get_include_path() . PATH_SEPARATOR
|
get_include_path() . PATH_SEPARATOR
|
||||||
@ -24,7 +36,6 @@ set_include_path(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// 1 // First requirements part (before debug management)
|
// 1 // First requirements part (before debug management)
|
||||||
$datadir = dirname(__FILE__) . '/../../data/';
|
|
||||||
require_once $datadir . '/config.default.php';
|
require_once $datadir . '/config.default.php';
|
||||||
require_once $datadir . '/config.php';
|
require_once $datadir . '/config.php';
|
||||||
|
|
||||||
|
@ -19,7 +19,13 @@
|
|||||||
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
||||||
define('UNIT_TEST_MODE', true);
|
define('UNIT_TEST_MODE', true);
|
||||||
|
|
||||||
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
if ('@data_dir@' == '@' . 'data_dir@') {
|
||||||
|
//non pear-install
|
||||||
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
||||||
|
} else {
|
||||||
|
//pear installation; files are in include path
|
||||||
|
require_once 'SemanticScuttle/header.php';
|
||||||
|
}
|
||||||
require_once dirname(__FILE__) . '/TestBase.php';
|
require_once dirname(__FILE__) . '/TestBase.php';
|
||||||
require_once dirname(__FILE__) . '/TestBaseApi.php';
|
require_once dirname(__FILE__) . '/TestBaseApi.php';
|
||||||
|
|
||||||
|
@ -15,5 +15,11 @@
|
|||||||
* @license GPL http://www.gnu.org/licenses/gpl.html
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||||
* @link http://sourceforge.net/projects/semanticscuttle
|
* @link http://sourceforge.net/projects/semanticscuttle
|
||||||
*/
|
*/
|
||||||
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
if ('@data_dir@' == '@' . 'data_dir@') {
|
||||||
|
//non pear-install
|
||||||
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
||||||
|
} else {
|
||||||
|
//pear installation; files are in include path
|
||||||
|
require_once 'SemanticScuttle/header.php';
|
||||||
|
}
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user