Skip to content

Commit

Permalink
Incresing sync between app and skel directories.
Browse files Browse the repository at this point in the history
  • Loading branch information
sitedyno committed Oct 14, 2011
1 parent 4090b3e commit ce4acda
Show file tree
Hide file tree
Showing 17 changed files with 60 additions and 27 deletions.
13 changes: 12 additions & 1 deletion app/Config/Schema/db_acl.php
@@ -1,5 +1,6 @@
<?php
/*DbAcl schema generated on: 2007-11-24 15:11:13 : 1195945453*/

/**
* This is Acl Schema file
*
Expand All @@ -15,10 +16,11 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config.sql
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

/*
*
* Using the Schema command line utility
Expand All @@ -27,6 +29,15 @@
*/
class DbAclSchema extends CakeSchema {

public $name = 'DbAcl';

public function before($event = array()) {
return true;
}

public function after($event = array()) {
}

public $acos = array(
'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'),
'parent_id' => array('type'=>'integer', 'null' => true, 'default' => NULL, 'length' => 10),
Expand Down
13 changes: 12 additions & 1 deletion app/Config/Schema/i18n.php
@@ -1,5 +1,6 @@
<?php
/*i18n schema generated on: 2007-11-25 07:11:25 : 1196004805*/

/**
* This is i18n Schema file
*
Expand All @@ -15,10 +16,11 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config.sql
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

/*
*
* Using the Schema command line utility
Expand All @@ -27,6 +29,15 @@
*/
class i18nSchema extends CakeSchema {

public $name = 'i18n';

public function before($event = array()) {
return true;
}

public function after($event = array()) {
}

public $i18n = array(
'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'),
'locale' => array('type'=>'string', 'null' => false, 'length' => 6, 'key' => 'index'),
Expand Down
13 changes: 12 additions & 1 deletion app/Config/Schema/sessions.php
@@ -1,5 +1,6 @@
<?php
/*Sessions schema generated on: 2007-11-25 07:11:54 : 1196004714*/

/**
* This is Sessions Schema file
*
Expand All @@ -15,10 +16,11 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config.sql
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

/*
*
* Using the Schema command line utility
Expand All @@ -27,6 +29,15 @@
*/
class SessionsSchema extends CakeSchema {

public $name = 'Sessions';

public function before($event = array()) {
return true;
}

public function after($event = array()) {
}

public $cake_sessions = array(
'id' => array('type'=>'string', 'null' => false, 'key' => 'primary'),
'data' => array('type'=>'text', 'null' => true, 'default' => NULL),
Expand Down
4 changes: 2 additions & 2 deletions app/Config/acl.ini.php
Expand Up @@ -5,15 +5,15 @@
; *
; * PHP 5
; *
; * CakePHP(tm) : Rapid Development Framework http://cakephp.org
; * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
; * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
; *
; * Licensed under The MIT License
; * Redistributions of files must retain the above copyright notice.
; *
; * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
; * @link http://cakephp.org CakePHP(tm) Project
; * @package app.config
; * @package app.Config
; * @since CakePHP(tm) v 0.10.0.1076
; * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
; */
Expand Down
2 changes: 1 addition & 1 deletion app/Config/bootstrap.php
Expand Up @@ -18,7 +18,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config
* @package app.Config
* @since CakePHP(tm) v 0.10.8.2117
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Config/core.php
Expand Up @@ -14,7 +14,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config
* @package app.Config
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Config/database.php.default
Expand Up @@ -14,7 +14,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config
* @package app.Config
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Config/email.php.default
Expand Up @@ -14,7 +14,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config
* @package app.Config
* @since CakePHP(tm) v 2.0.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Config/routes.php
Expand Up @@ -16,7 +16,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.config
* @package app.Config
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
10 changes: 5 additions & 5 deletions app/Console/cake
Expand Up @@ -11,15 +11,15 @@
# Redistributions of files must retain the above copyright notice.
#
# @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
# @link http://cakephp.org CakePHP(tm) Project
# @package app.console
# @since CakePHP(tm) v 2.0
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
# @link http://cakephp.org CakePHP(tm) Project
# @package app.Console
# @since CakePHP(tm) v 2.0
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
#
################################################################################
LIB=${0/%cake/}
APP=`pwd`

exec php -q ${LIB}cake.php -working "${APP}" "$@"

exit;
exit;
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/Config/Schema/db_acl.php
Expand Up @@ -16,7 +16,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.Config
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/Config/Schema/i18n.php
Expand Up @@ -16,7 +16,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.Config
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/Config/Schema/sessions.php
Expand Up @@ -16,7 +16,7 @@
*
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.Config
* @package app.Config.Schema
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/Cake/Console/Templates/skel/Config/acl.ini.php
Expand Up @@ -5,15 +5,15 @@
; *
; * PHP 5
; *
; * CakePHP(tm) : Rapid Development Framework http://www.cakephp.org/
; * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
; * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
; *
; * Licensed under The MIT License
; * Redistributions of files must retain the above copyright notice.
; *
; * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
; * @link http://cakephp.org CakePHP(tm) Project
; * @package Cake.Console.Templates.skel.Config
; * @package app.Config
; * @since CakePHP(tm) v 0.10.0.1076
; * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
; */
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/Config/bootstrap.php
Expand Up @@ -62,4 +62,4 @@
* CakePlugin::loadAll(); // Loads all plugins at once
* CakePlugin::load('DebugKit'); //Loads a single plugin named DebugKit
*
*/
*/
4 changes: 2 additions & 2 deletions lib/Cake/Console/Templates/skel/Config/core.php
Expand Up @@ -196,8 +196,8 @@
* Will append a querystring parameter containing the time the file was modified. This is
* useful for invalidating browser caches.
*
* Set to `true` to apply timestamps, when debug > 0, or set to 'force' to always enable
* timestamping.
* Set to `true` to apply timestamps when debug > 0. Set to 'force' to always enable
* timestamping regardless of debug value.
*/
//Configure::write('Asset.timestamp', true);
/**
Expand Down
8 changes: 4 additions & 4 deletions lib/Cake/Console/Templates/skel/Console/cake
Expand Up @@ -11,15 +11,15 @@
# Redistributions of files must retain the above copyright notice.
#
# @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
# @link http://cakephp.org CakePHP(tm) Project
# @link http://cakephp.org CakePHP(tm) Project
# @package app.Console
# @since CakePHP(tm) v 2.0
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
# @since CakePHP(tm) v 2.0
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
#
################################################################################
LIB=${0/%cake/}
APP=`pwd`

exec php -q ${LIB}cake.php -working "${APP}" "$@"

exit;
exit;

0 comments on commit ce4acda

Please sign in to comment.