special header file for standalone scripts
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@618 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
777f7f072c
commit
a2b518b1b3
@ -17,6 +17,7 @@ ChangeLog for SemantiScuttle
|
||||
description. Patch by fnorder@users.sourceforge.net
|
||||
- Fix bug #2934891: RSS XML was sometimes invalid because
|
||||
special characters did not get escaped.
|
||||
- Special header file for shell scripts (header-standalone.php)
|
||||
|
||||
|
||||
0.95.2 - 2010-01-16
|
||||
|
@ -2,10 +2,7 @@
|
||||
/**
|
||||
* Simply create some test bookmarks
|
||||
*/
|
||||
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
||||
define('UNIT_TEST_MODE', true);
|
||||
|
||||
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
||||
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php';
|
||||
|
||||
$us = SemanticScuttle_Service_Factory::get('User');
|
||||
$uid = $us->addUser('dummy', 'dummy', 'dummy@example.org');
|
||||
|
@ -2,10 +2,7 @@
|
||||
/**
|
||||
* Simply create a test user in the database with "test" as password
|
||||
*/
|
||||
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
||||
define('UNIT_TEST_MODE', true);
|
||||
|
||||
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
||||
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php';
|
||||
|
||||
$us = SemanticScuttle_Service_Factory::get('User');
|
||||
$us->addUser('test', 'test', 'test@example.org');
|
||||
|
20
src/SemanticScuttle/header-standalone.php
Normal file
20
src/SemanticScuttle/header-standalone.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* Load this file instead of header.php if you
|
||||
* are using it in a standalone non-webserver script.
|
||||
*
|
||||
* SemanticScuttle - your social bookmark manager.
|
||||
*
|
||||
* PHP version 5.
|
||||
*
|
||||
* @category Bookmarking
|
||||
* @package SemanticScuttle
|
||||
* @author Christian Weiske <cweiske@cweiske.de>
|
||||
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||
* @link http://sourceforge.net/projects/semanticscuttle
|
||||
*/
|
||||
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
||||
define('UNIT_TEST_MODE', true);
|
||||
|
||||
require_once dirname(__FILE__) . '/header.php';
|
||||
?>
|
Loading…
Reference in New Issue
Block a user