summaryrefslogtreecommitdiff
path: root/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2012-08-01 18:18:44 +0000
committerLudovic Pouzenc <ludovic@pouzenc.fr>2012-08-01 18:18:44 +0000
commitf435a514cd0597108cec95b5febdc105b0e16302 (patch)
treef7b2c218f32655b352bf4ca89fc947274c49ebdb /poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs
parent1133e9dadec074e41ae4e08fc6c97cf74b7539fe (diff)
download2012-php-weave-f435a514cd0597108cec95b5febdc105b0e16302.tar.gz
2012-php-weave-f435a514cd0597108cec95b5febdc105b0e16302.tar.bz2
2012-php-weave-f435a514cd0597108cec95b5febdc105b0e16302.zip
Copie des sources du poc01 pour un poc02 et ajout d'un CakePHP
git-svn-id: file:///var/svn/2012-php-weave/trunk@4 d972a294-176a-4cf9-8ea1-fcd5b0c30f5c
Diffstat (limited to 'poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs')
-rw-r--r--poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/CHANGELOG.txt13
-rw-r--r--poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/COPYING.txt24
-rw-r--r--poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/INSTALL.txt40
-rw-r--r--poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/README.txt19
4 files changed, 96 insertions, 0 deletions
diff --git a/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/CHANGELOG.txt b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/CHANGELOG.txt
new file mode 100644
index 0000000..7d1e628
--- /dev/null
+++ b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/CHANGELOG.txt
@@ -0,0 +1,13 @@
+///////////////////////////////////////////////////////////////////////////////////////////////////////////
+// +---------------------------------------------------------------------------------------------------+//
+// + $Id: CHANGELOG.txt 4064 2006-12-04 05:29:12Z phpnut $
+// + Last Modified: $Date: 2006-12-04 00:29:12 -0500 (Mon, 04 Dec 2006) $
+// + Modified By: $LastChangedBy: phpnut $
+// +---------------------------------------------------------------------------------------------------+//
+///////////////////////////////////////////////////////////////////////////////////////////////////////////
+
+Changelog:
+https://trac.cakephp.org/wiki/changelog/1.1.x.x
+
+Release Notes:
+https://trac.cakephp.org/wiki/notes/1.1.x.x \ No newline at end of file
diff --git a/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/COPYING.txt b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/COPYING.txt
new file mode 100644
index 0000000..4787242
--- /dev/null
+++ b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/COPYING.txt
@@ -0,0 +1,24 @@
+The MIT License
+
+CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
+Copyright 2005-2007, Cake Software Foundation, Inc.
+ 1785 E. Sahara Avenue, Suite 490-204
+ Las Vegas, Nevada 89104
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE. \ No newline at end of file
diff --git a/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/INSTALL.txt b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/INSTALL.txt
new file mode 100644
index 0000000..47698fc
--- /dev/null
+++ b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/INSTALL.txt
@@ -0,0 +1,40 @@
+///////////////////////////////////////////////////////////////////////////////////////////////////////////
+// +---------------------------------------------------------------------------------------------------+//
+// + $Id: INSTALL.txt 4409 2007-02-02 13:20:59Z phpnut $
+// + Last Modified: $Date: 2007-02-02 08:20:59 -0500 (Fri, 02 Feb 2007) $
+// + Modified By: $LastChangedBy: phpnut $
+// +---------------------------------------------------------------------------------------------------+//
+///////////////////////////////////////////////////////////////////////////////////////////////////////////
+
+
+In order use CakePHP you must first have a server that has all the required libraries and programs to run CakePHP:
+
+Here are the requirements for setting up a server to run CakePHP:
+
+ 1. An HTTP server (like Apache) with the following enabled.
+ 2. PHP 4.3.2 or greater. Yes, CakePHP works great in either PHP 4 or 5.
+ 3. A database engine (right now, there is support for MySQL, MsSQL, Oracle, Sqlite, PostgreSQL and a wrapper for ADODB).
+
+For development we can place the whole Cake installation directory inside the specified DocumentRoot.
+
+ 1. Unpack latest distribution in your DocumentRoot.
+ 2. Rename the directory to anything you like.
+ 3. Access the install.
+ a. If mod_rewrite is working then http://www.example.com/my_directory
+ 1. If you receive a "Bad Request" add the trailing slash, http://www.example.com/my_directory/
+ 4. If mod_rewrite is not working you will need to remove the comment from app/config/core.php
+ a. Around line 40: define ('BASE_URL', env('SCRIPT_NAME'));
+ b. Then access using http://www.example.com/my_directory/index.php/pages to verify installation is working
+
+For more information on installation see http://manual.cakephp.org/chapter/installing
+
+Good resources for help.
+* The Bakery :: Everything CakePHP (http://bakery.cakephp.org/)
+* CakePHP Manual :: Your Rapid Development Cookbook (http://manual.cakephp.org/)
+* CakePHP API :: Docblock Your Best Friend (http://api.cakephp.org/)
+* CakePHP Google Group :: Community mailing list (http://groups-beta.google.com/group/cake-php)
+* CakePHP(tm) :: The Rapid Development Framework (http://www.cakephp.org/)
+* CakeForge :: Open Development for CakePHP (http://cakeforge.org/)
+* CakePHP Trac :: For the Development of CakePHP (Tickets, SVN browser, Roadmap, Changelogs) (https://trac.cakephp.org/)
+* Live chat about CakePHP (irc.freenode.net #cakephp)
+ Web Interface to IRC (http://irc.cakephp.org/irc.htm) \ No newline at end of file
diff --git a/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/README.txt b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/README.txt
new file mode 100644
index 0000000..234e171
--- /dev/null
+++ b/poc/poc02-compiling-cake/src/vendor/cake_1.1.20.7692/docs/README.txt
@@ -0,0 +1,19 @@
+///////////////////////////////////////////////////////////////////////////////////////////////////////////
+// +---------------------------------------------------------------------------------------------------+//
+// + $Id: README.txt 4064 2006-12-04 05:29:12Z phpnut $
+// + Last Modified: $Date: 2006-12-04 00:29:12 -0500 (Mon, 04 Dec 2006) $
+// + Modified By: $LastChangedBy: phpnut $
+// +---------------------------------------------------------------------------------------------------+//
+///////////////////////////////////////////////////////////////////////////////////////////////////////////
+
+This README will be updated
+
+Home:
+http://www.cakephp.org/
+
+Documentation
+http://manual.cakephp.org/
+
+Development:
+https://trac.cakephp.org/
+