initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
K 25
svn:wc:ra_dav:version-url
V 77
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/data/symfony/skeleton/batch
END
rotate_log.php
K 25
svn:wc:ra_dav:version-url
V 92
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/data/symfony/skeleton/batch/rotate_log.php
END
default.php
K 25
svn:wc:ra_dav:version-url
V 89
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/data/symfony/skeleton/batch/default.php
END

View File

@@ -0,0 +1,96 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/data/symfony/skeleton/batch
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
rotate_log.php
file
2010-07-31T05:42:41.000000Z
434fd3b02c3742b767b5e396463ad470
2009-05-28T02:14:48.119086Z
25
ben
808
default.php
file
2010-07-31T05:42:41.000000Z
01c35dd0c294a5d8f95d11a56c36f666
2009-05-28T02:14:48.119086Z
25
ben
655

View File

@@ -0,0 +1,24 @@
<?php
/**
* ##BATCH_NAME## batch script
*
* Here goes a brief description of the purpose of the batch script
*
* @package ##PROJECT_NAME##
* @subpackage batch
* @version $Id$
*/
define('SF_ROOT_DIR', realpath(dirname(__file__).'/..'));
define('SF_APP', '##APP_NAME##');
define('SF_ENVIRONMENT', '##ENV_NAME##');
define('SF_DEBUG', ##DEBUG##);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
// initialize database manager
//$databaseManager = new sfDatabaseManager();
//$databaseManager->initialize();
// batch process here

View File

@@ -0,0 +1,23 @@
<?php
/**
* Log rotation batch script
*
* This script is used to manage log rotation, and should be called automatically by a cron task daily
*
* @package ##PROJECT_NAME##
* @subpackage batch
* @version $Id: rotate_log.php 3148 2007-01-04 19:34:28Z fabien $
*/
define('SF_ROOT_DIR', realpath(dirname(__file__).'/..'));
define('SF_APP', '##APP_NAME##');
define('SF_ENVIRONMENT', '##ENV_NAME##');
define('SF_DEBUG', ##DEBUG##);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
if (sfConfig::get('sf_logging_enabled') && sfConfig::get('sf_logging_rotate'))
{
sfLogManager::rotate(SF_APP, SF_ENVIRONMENT, sfConfig::get('sf_logging_period'), sfConfig::get('sf_logging_history'));
}

View File

@@ -0,0 +1,24 @@
<?php
/**
* ##BATCH_NAME## batch script
*
* Here goes a brief description of the purpose of the batch script
*
* @package ##PROJECT_NAME##
* @subpackage batch
* @version $Id$
*/
define('SF_ROOT_DIR', realpath(dirname(__file__).'/..'));
define('SF_APP', '##APP_NAME##');
define('SF_ENVIRONMENT', '##ENV_NAME##');
define('SF_DEBUG', ##DEBUG##);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
// initialize database manager
//$databaseManager = new sfDatabaseManager();
//$databaseManager->initialize();
// batch process here

View File

@@ -0,0 +1,23 @@
<?php
/**
* Log rotation batch script
*
* This script is used to manage log rotation, and should be called automatically by a cron task daily
*
* @package ##PROJECT_NAME##
* @subpackage batch
* @version $Id: rotate_log.php 3148 2007-01-04 19:34:28Z fabien $
*/
define('SF_ROOT_DIR', realpath(dirname(__file__).'/..'));
define('SF_APP', '##APP_NAME##');
define('SF_ENVIRONMENT', '##ENV_NAME##');
define('SF_DEBUG', ##DEBUG##);
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
if (sfConfig::get('sf_logging_enabled') && sfConfig::get('sf_logging_rotate'))
{
sfLogManager::rotate(SF_APP, SF_ENVIRONMENT, sfConfig::get('sf_logging_period'), sfConfig::get('sf_logging_history'));
}