-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Karens
committed
Mar 5, 2014
0 parents
commit b74d8c4
Showing
1,017 changed files
with
259,325 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
; This file is for unifying the coding style for different editors and IDEs. | ||
; More information at http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.bat] | ||
end_of_line = crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# User specific & automatically generated files # | ||
################################################# | ||
/app/Config/database.php | ||
/app/tmp | ||
/lib/Cake/Console/Templates/skel/tmp/ | ||
/plugins | ||
/vendors | ||
/build | ||
/dist | ||
/tags | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
Icon? | ||
ehthumbs.db | ||
Thumbs.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<IfModule mod_rewrite.c> | ||
RewriteEngine on | ||
RewriteRule ^$ app/webroot/ [L] | ||
RewriteRule (.*) app/webroot/$1 [L] | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
language: php | ||
|
||
php: | ||
- 5.2 | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
|
||
env: | ||
- DB=mysql | ||
- DB=pgsql | ||
- DB=sqlite | ||
|
||
matrix: | ||
include: | ||
- php: 5.4 | ||
env: | ||
- PHPCS=1 | ||
|
||
before_script: | ||
- sudo locale-gen de_DE | ||
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi" | ||
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test2;'; fi" | ||
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test3;'; fi" | ||
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE DATABASE cakephp_test;' -U postgres; fi" | ||
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE SCHEMA test2;' -U postgres -d cakephp_test; fi" | ||
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE SCHEMA test3;' -U postgres -d cakephp_test; fi" | ||
- chmod -R 777 ./app/tmp | ||
- sudo apt-get install lighttpd | ||
- sh -c "if [ '$PHPCS' = '1' ]; then pear channel-discover pear.cakephp.org; fi" | ||
- sh -c "if [ '$PHPCS' = '1' ]; then pear install --alldeps cakephp/CakePHP_CodeSniffer; fi" | ||
- phpenv rehash | ||
- set +H | ||
- echo "<?php | ||
class DATABASE_CONFIG { | ||
private \$identities = array( | ||
'mysql' => array( | ||
'datasource' => 'Database/Mysql', | ||
'host' => '0.0.0.0', | ||
'login' => 'travis' | ||
), | ||
'pgsql' => array( | ||
'datasource' => 'Database/Postgres', | ||
'host' => '127.0.0.1', | ||
'login' => 'postgres', | ||
'database' => 'cakephp_test', | ||
'schema' => array( | ||
'default' => 'public', | ||
'test' => 'public', | ||
'test2' => 'test2', | ||
'test_database_three' => 'test3' | ||
) | ||
), | ||
'sqlite' => array( | ||
'datasource' => 'Database/Sqlite', | ||
'database' => array( | ||
'default' => ':memory:', | ||
'test' => ':memory:', | ||
'test2' => '/tmp/cakephp_test2.db', | ||
'test_database_three' => '/tmp/cakephp_test3.db' | ||
), | ||
) | ||
); | ||
public \$default = array( | ||
'persistent' => false, | ||
'host' => '', | ||
'login' => '', | ||
'password' => '', | ||
'database' => 'cakephp_test', | ||
'prefix' => '' | ||
); | ||
public \$test = array( | ||
'persistent' => false, | ||
'host' => '', | ||
'login' => '', | ||
'password' => '', | ||
'database' => 'cakephp_test', | ||
'prefix' => '' | ||
); | ||
public \$test2 = array( | ||
'persistent' => false, | ||
'host' => '', | ||
'login' => '', | ||
'password' => '', | ||
'database' => 'cakephp_test2', | ||
'prefix' => '' | ||
); | ||
public \$test_database_three = array( | ||
'persistent' => false, | ||
'host' => '', | ||
'login' => '', | ||
'password' => '', | ||
'database' => 'cakephp_test3', | ||
'prefix' => '' | ||
); | ||
public function __construct() { | ||
\$db = 'mysql'; | ||
if (!empty(\$_SERVER['DB'])) { | ||
\$db = \$_SERVER['DB']; | ||
} | ||
foreach (array('default', 'test', 'test2', 'test_database_three') as \$source) { | ||
\$config = array_merge(\$this->{\$source}, \$this->identities[\$db]); | ||
if (is_array(\$config['database'])) { | ||
\$config['database'] = \$config['database'][\$source]; | ||
} | ||
if (!empty(\$config['schema']) && is_array(\$config['schema'])) { | ||
\$config['schema'] = \$config['schema'][\$source]; | ||
} | ||
\$this->{\$source} = \$config; | ||
} | ||
} | ||
}" > app/Config/database.php | ||
|
||
script: | ||
- sh -c "if [ '$PHPCS' = '1' ]; then phpcs -p --extensions=php --standard=CakePHP ./lib/Cake; elif [ '$DB' = 'mysql' ]; then ./lib/Cake/Console/cake test core AllTests --stderr; else ./lib/Cake/Console/cake test core AllDbRelated --stderr; fi" | ||
|
||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# How to contribute | ||
|
||
CakePHP loves to welcome your contributions. There are several ways to help out: | ||
* Create an [issue](https://github.com/cakephp/cakephp/issues) on GitHub, if you have found a bug | ||
* Write testcases for open bug issues | ||
* Write patches for open bug/feature issues, preferably with testcases included | ||
* Contribute to the [documentation](https://github.com/cakephp/docs) | ||
|
||
There are a few guidelines that we need contributors to follow so that we have a | ||
chance of keeping on top of things. | ||
|
||
## Getting Started | ||
|
||
* Make sure you have a [GitHub account](https://github.com/signup/free). | ||
* Submit an [issue](https://github.com/cakephp/cakephp/issues), assuming one does not already exist. | ||
* Clearly describe the issue including steps to reproduce when it is a bug. | ||
* Make sure you fill in the earliest version that you know has the issue. | ||
* Fork the repository on GitHub. | ||
|
||
## Making Changes | ||
|
||
* Create a topic branch from where you want to base your work. | ||
* This is usually the master branch. | ||
* Only target release branches if you are certain your fix must be on that | ||
branch. | ||
* To quickly create a topic branch based on master; `git branch | ||
master/my_contribution master` then checkout the new branch with `git | ||
checkout master/my_contribution`. Better avoid working directly on the | ||
`master` branch, to avoid conflicts if you pull in updates from origin. | ||
* Make commits of logical units. | ||
* Check for unnecessary whitespace with `git diff --check` before committing. | ||
* Use descriptive commit messages and reference the #issue number. | ||
* Core testcases should continue to pass. You can run tests locally or enable | ||
[travis-ci](https://travis-ci.org/) for your fork, so all tests and codesniffs | ||
will be executed. | ||
* Your work should apply the CakePHP coding standards. | ||
|
||
## Which branch to base the work | ||
|
||
* Bugfix branches will be based on master. | ||
* New features that are backwards compatible will be based on next minor release | ||
branch. | ||
* New features or other non-BC changes will go in the next major release branch. | ||
|
||
## Submitting Changes | ||
|
||
* Push your changes to a topic branch in your fork of the repository. | ||
* Submit a pull request to the repository in the cakephp organization, with the | ||
correct target branch. | ||
|
||
## Testcases and codesniffer | ||
|
||
CakePHP tests requires [PHPUnit](http://www.phpunit.de/manual/current/en/installation.html) | ||
3.5 or higher. To run the testcases locally use the following command: | ||
|
||
./lib/Cake/Console/cake test core AllTests --stderr | ||
|
||
To run the sniffs for CakePHP coding standards: | ||
|
||
phpcs -p --extensions=php --standard=CakePHP ./lib/Cake | ||
|
||
Check the [cakephp-codesniffer](https://github.com/cakephp/cakephp-codesniffer) | ||
repository to setup the CakePHP standard. The README contains installation info | ||
for the sniff and phpcs. | ||
|
||
# Additional Resources | ||
|
||
* [CakePHP coding standards](http://book.cakephp.org/2.0/en/contributing/cakephp-coding-conventions.html) | ||
* [Existing issues](https://github.com/cakephp/cakephp/issues) | ||
* [Development Roadmaps](https://github.com/cakephp/cakephp/wiki#roadmaps) | ||
* [General GitHub documentation](https://help.github.com/) | ||
* [GitHub pull request documentation](https://help.github.com/send-pull-requests/) | ||
* #cakephp IRC channel on freenode.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Installeer WAMP | ||
|
||
Schakel mod-rewrite in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<IfModule mod_rewrite.c> | ||
RewriteEngine on | ||
RewriteRule ^$ webroot/ [L] | ||
RewriteRule (.*) webroot/$1 [L] | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?php | ||
/** | ||
* This is Acl Schema file | ||
* | ||
* Use it to configure database for ACL | ||
* | ||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org) | ||
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) | ||
* | ||
* Licensed under The MIT License | ||
* For full copyright and license information, please see the LICENSE.txt | ||
* Redistributions of files must retain the above copyright notice. | ||
* | ||
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) | ||
* @link http://cakephp.org CakePHP(tm) Project | ||
* @package app.Config.Schema | ||
* @since CakePHP(tm) v 0.2.9 | ||
* @license http://www.opensource.org/licenses/mit-license.php MIT License | ||
*/ | ||
|
||
/* | ||
* | ||
* Using the Schema command line utility | ||
* cake schema run create DbAcl | ||
* | ||
*/ | ||
class DbAclSchema extends CakeSchema { | ||
|
||
public function before($event = array()) { | ||
return true; | ||
} | ||
|
||
public function after($event = array()) { | ||
} | ||
|
||
/** | ||
* ACO - Access Control Object - Something that is wanted | ||
*/ | ||
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), | ||
'model' => array('type' => 'string', 'null' => true), | ||
'foreign_key' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'alias' => array('type' => 'string', 'null' => true), | ||
'lft' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'rght' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) | ||
); | ||
|
||
/** | ||
* ARO - Access Request Object - Something that wants something | ||
*/ | ||
public $aros = array( | ||
'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'), | ||
'parent_id' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'model' => array('type' => 'string', 'null' => true), | ||
'foreign_key' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'alias' => array('type' => 'string', 'null' => true), | ||
'lft' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'rght' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), | ||
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) | ||
); | ||
|
||
/** | ||
* Used by the Cake::Model:Permission class. | ||
* Checks if the given $aro has access to action $action in $aco. | ||
*/ | ||
public $aros_acos = array( | ||
'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'), | ||
'aro_id' => array('type' => 'integer', 'null' => false, 'length' => 10, 'key' => 'index'), | ||
'aco_id' => array('type' => 'integer', 'null' => false, 'length' => 10), | ||
'_create' => array('type' => 'string', 'null' => false, 'default' => '0', 'length' => 2), | ||
'_read' => array('type' => 'string', 'null' => false, 'default' => '0', 'length' => 2), | ||
'_update' => array('type' => 'string', 'null' => false, 'default' => '0', 'length' => 2), | ||
'_delete' => array('type' => 'string', 'null' => false, 'default' => '0', 'length' => 2), | ||
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1), 'ARO_ACO_KEY' => array('column' => array('aro_id', 'aco_id'), 'unique' => 1)) | ||
); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# $Id$ | ||
# | ||
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) | ||
# | ||
# Licensed under The MIT License | ||
# For full copyright and license information, please see the LICENSE.txt | ||
# Redistributions of files must retain the above copyright notice. | ||
# MIT License (http://www.opensource.org/licenses/mit-license.php) | ||
|
||
CREATE TABLE acos ( | ||
id INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT, | ||
parent_id INTEGER(10) DEFAULT NULL, | ||
model VARCHAR(255) DEFAULT '', | ||
foreign_key INTEGER(10) UNSIGNED DEFAULT NULL, | ||
alias VARCHAR(255) DEFAULT '', | ||
lft INTEGER(10) DEFAULT NULL, | ||
rght INTEGER(10) DEFAULT NULL, | ||
PRIMARY KEY (id) | ||
); | ||
|
||
CREATE TABLE aros_acos ( | ||
id INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT, | ||
aro_id INTEGER(10) UNSIGNED NOT NULL, | ||
aco_id INTEGER(10) UNSIGNED NOT NULL, | ||
_create CHAR(2) NOT NULL DEFAULT 0, | ||
_read CHAR(2) NOT NULL DEFAULT 0, | ||
_update CHAR(2) NOT NULL DEFAULT 0, | ||
_delete CHAR(2) NOT NULL DEFAULT 0, | ||
PRIMARY KEY(id) | ||
); | ||
|
||
CREATE TABLE aros ( | ||
id INTEGER(10) UNSIGNED NOT NULL AUTO_INCREMENT, | ||
parent_id INTEGER(10) DEFAULT NULL, | ||
model VARCHAR(255) DEFAULT '', | ||
foreign_key INTEGER(10) UNSIGNED DEFAULT NULL, | ||
alias VARCHAR(255) DEFAULT '', | ||
lft INTEGER(10) DEFAULT NULL, | ||
rght INTEGER(10) DEFAULT NULL, | ||
PRIMARY KEY (id) | ||
); |
Oops, something went wrong.