Changeset 3837
- Timestamp:
- 02/19/08 02:41:37 (17 months ago)
- Files:
-
- 9 modified
-
branches/0.10/manual/docs/en/getting-started/installation.txt (modified) (1 diff)
-
branches/0.10/manual/docs/en/getting-started/starting-new-project.txt (modified) (1 diff)
-
branches/0.10/manual/docs/en/getting-started/working-with-existing-databases.txt (modified) (1 diff)
-
branches/0.9/manual/docs/en/getting-started/installation.txt (modified) (1 diff)
-
branches/0.9/manual/docs/en/getting-started/starting-new-project.txt (modified) (1 diff)
-
branches/0.9/manual/docs/en/getting-started/working-with-existing-databases.txt (modified) (1 diff)
-
trunk/manual/docs/en/getting-started/installation.txt (modified) (1 diff)
-
trunk/manual/docs/en/getting-started/starting-new-project.txt (modified) (1 diff)
-
trunk/manual/docs/en/getting-started/working-with-existing-databases.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/manual/docs/en/getting-started/installation.txt
r3721 r3837 1 The installation of doctrine is very easy. Just get the latest revision of 2 Doctrine from http://svn.phpdoctrine.org/branches/0.10. 1 There are currently four different methods to install Doctrine. 3 2 4 You need a SVN (Subversion) client for downloading Doctrine. 3 * SVN (subversion) 4 * SVN externals 5 * Pear 6 * Zip-package 5 7 6 In order to check out Doctrine in the current directory using the **svn** command line tool use the following code: 8 It is recommended to download Doctrine via SVN (subversion), because in this case updating is easy. 9 If your project is already under version control with SVN, you should choose SVN externals. 10 11 12 +++ SVN 13 14 The installation of doctrine via SVN is very easy. Just get the latest revision of Doctrine from http://svn.phpdoctrine.org/branches/0.10. 15 16 In order to check out Doctrine in the current directory using the **svn** command line tool use the following code: 7 17 8 18 <code type="bash"> 9 svn co http://svn.phpdoctrine.org/branches/0.10 . 19 svn co http://svn.phpdoctrine.org/branches/0.10 . 10 20 </code> 11 21 12 If you do not have a SVN client, chose one from the list below. Find the 13 **Checkout** option and enter http://svn.phpdoctrine.org/branches/0.10 in the **path** or **repository url** parameter. There is no need for a username or password to check out Doctrine. 22 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter svn.phpdoctrine.org/branches/0.10 in the **path** or **repository url** parameter. There is no need for a username or password to check out Doctrine. 14 23 15 24 * [http://tortoisesvn.tigris.org/ TortoiseSVN] a Windows application that integrates into Windows Explorer 16 25 * [http://www.apple.com/downloads/macosx/development_tools/svnx.html svnx] a Mac OS X GUI svn application 17 26 * Eclipse has SVN integration through the [http://subclipse.tigris.org/ subeclipse] plugin 27 28 You can update to the latest version with 29 30 <code type="bash"> 31 svn update 32 </code> 33 34 in your doctrine directory. 35 36 37 +++ SVN externals 38 39 If your project is under version control with SVN, you should set up doctrine via svn externals. You can do this with the **svn** command line tool: 40 41 <code type="bash"> 42 svn pe svn:externals /path/to/project 43 </code> 44 45 You have to put the following line in the editor and save the changes. 46 47 <code> 48 doctrine http://svn.phpdoctrine.org/branches/0.10 49 </code> 50 51 Afterwards you can download doctrine with 52 53 <code> 54 svn update 55 </code> 56 57 58 +++ PEAR 59 60 You can install Doctrine via PEAR with the following command: 61 62 <code type="bash"> 63 pear install http://pear.phpdoctrine.org/Doctrine-0.10.1 64 </code> 65 66 67 +++ Zip-package 68 69 You can download Doctrine as a .zip or .tgz (for Linux) package from http://www.phpdoctrine.org/download. 70 Simply unzip it to your project directory with your favorite zip tool. 71 72 Under Linux you can extract the .tgz package with the following command line instruction: 73 74 <code type="bash"> 75 tar xzf Doctrine-0.10.1.tgz 76 </code> -
branches/0.10/manual/docs/en/getting-started/starting-new-project.txt
r3065 r3837 26 26 <code type="php"> 27 27 //require the base Doctrine class 28 require_once(' lib/Doctrine.php');28 require_once('path-to-doctrine/lib/Doctrine.php'); 29 29 30 30 //register the autoloader -
branches/0.10/manual/docs/en/getting-started/working-with-existing-databases.txt
r3105 r3837 26 26 27 27 <code type="php"> 28 require_once(' lib/Doctrine.php');28 require_once('path-to-doctrine/lib/Doctrine.php'); 29 29 30 30 spl_autoload_register(array('Doctrine', 'autoload')); -
branches/0.9/manual/docs/en/getting-started/installation.txt
r3065 r3837 1 The installation of doctrine is very easy. Just get the latest revision of Doctrine from http://doctrine.pengus.net/svn/trunk.1 There are currently four different methods to install Doctrine. 2 2 3 You need a SVN (Subversion) client for downloading Doctrine. 3 * SVN (subversion) 4 * SVN externals 5 * Pear 6 * Zip-package 4 7 5 In order to check out Doctrine in the current directory using the **svn** command line tool use the following code: 8 It is recommended to download Doctrine via SVN (subversion), because in this case updating is easy. 9 If your project is already under version control with SVN, you should choose SVN externals. 10 11 12 +++ SVN 13 14 The installation of doctrine via SVN is very easy. Just get the latest revision of Doctrine from http://svn.phpdoctrine.org/branches/0.9. 15 16 In order to check out Doctrine in the current directory using the **svn** command line tool use the following code: 6 17 7 18 <code type="bash"> 8 svn co http:// doctrine.pengus.net/svn/trunk .19 svn co http://svn.phpdoctrine.org/branches/0.9 . 9 20 </code> 10 21 11 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter http://doctrine.pengus.net/svn/trunkin the **path** or **repository url** parameter. There is no need for a username or password to check out Doctrine.22 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter svn.phpdoctrine.org/branches/0.9 in the **path** or **repository url** parameter. There is no need for a username or password to check out Doctrine. 12 23 13 24 * [http://tortoisesvn.tigris.org/ TortoiseSVN] a Windows application that integrates into Windows Explorer 14 25 * [http://www.apple.com/downloads/macosx/development_tools/svnx.html svnx] a Mac OS X GUI svn application 15 26 * Eclipse has SVN integration through the [http://subclipse.tigris.org/ subeclipse] plugin 27 28 You can update to the latest version with 29 30 <code type="bash"> 31 svn update 32 </code> 33 34 in your doctrine directory. 35 36 37 +++ SVN externals 38 39 If your project is under version control with SVN, you should set up doctrine via svn externals. You can do this with the **svn** command line tool: 40 41 <code type="bash"> 42 svn pe svn:externals /path/to/project 43 </code> 44 45 You have to put the following line in the editor and save the changes. 46 47 <code> 48 doctrine http://svn.phpdoctrine.org/branches/0.9 49 </code> 50 51 Afterwards you can download doctrine with 52 53 <code> 54 svn update 55 </code> 56 57 58 +++ PEAR 59 60 You can install Doctrine via PEAR with the following command: 61 62 <code type="bash"> 63 pear install http://pear.phpdoctrine.org/Doctrine-0.9.1 64 </code> 65 66 67 +++ Zip-package 68 69 You can download Doctrine as a .zip or .tgz (for Linux) package from http://www.phpdoctrine.org/download. 70 Simply unzip it to your project directory with your favorite zip tool. 71 72 Under Linux you can extract the .tgz package with the following command line instruction: 73 74 <code type="bash"> 75 tar xzf Doctrine-0.9.1.tgz 76 </code> -
branches/0.9/manual/docs/en/getting-started/starting-new-project.txt
r3065 r3837 26 26 <code type="php"> 27 27 //require the base Doctrine class 28 require_once(' lib/Doctrine.php');28 require_once('path-to-doctrine/lib/Doctrine.php'); 29 29 30 30 //register the autoloader -
branches/0.9/manual/docs/en/getting-started/working-with-existing-databases.txt
r3131 r3837 26 26 27 27 <code type="php"> 28 require_once(' lib/Doctrine.php');28 require_once('path-to-doctrine/lib/Doctrine.php'); 29 29 30 30 spl_autoload_register(array('Doctrine', 'autoload')); -
trunk/manual/docs/en/getting-started/installation.txt
r3403 r3837 1 The installation of doctrine is very easy. Just get the latest revision of 2 Doctrine from http://svn.phpdoctrine.org/trunk. 1 There are currently two different methods to install Doctrine. 3 2 4 You need a SVN (Subversion) client for downloading Doctrine. 3 * SVN (subversion) 4 * SVN externals 5 5 6 In order to check out Doctrine in the current directory using the **svn** command line tool use the following code: 6 It is recommended to download Doctrine via SVN (subversion), because in this case updating is easy. 7 If your project is already under version control with SVN, you should choose SVN externals. 8 9 10 +++ SVN 11 12 The installation of doctrine via SVN is very easy. Just get the latest revision of Doctrine from http://svn.phpdoctrine.org/trunk. 13 14 In order to check out Doctrine in the current directory using the **svn** command line tool use the following code: 7 15 8 16 <code type="bash"> 9 svn co http://svn.phpdoctrine.org/trunk . 17 svn co http://svn.phpdoctrine.org/trunk . 10 18 </code> 11 19 12 If you do not have a SVN client, chose one from the list below. Find the 13 **Checkout** option and enter http://svn.phpdoctrine.org/trunk in the **path** or **repository url** parameter. There is no need for a username or password to check out Doctrine. 20 If you do not have a SVN client, chose one from the list below. Find the **Checkout** option and enter svn.phpdoctrine.org/trunk in the **path** or **repository url** parameter. There is no need for a username or password to check out Doctrine. 14 21 15 22 * [http://tortoisesvn.tigris.org/ TortoiseSVN] a Windows application that integrates into Windows Explorer 16 23 * [http://www.apple.com/downloads/macosx/development_tools/svnx.html svnx] a Mac OS X GUI svn application 17 24 * Eclipse has SVN integration through the [http://subclipse.tigris.org/ subeclipse] plugin 25 26 You can update to the latest version with 27 28 <code type="bash"> 29 svn update 30 </code> 31 32 in your doctrine directory. 33 34 35 +++ SVN externals 36 37 If your project is under version control with SVN, you should set up doctrine via svn externals. You can do this with the **svn** command line tool: 38 39 <code type="bash"> 40 svn pe svn:externals /path/to/project 41 </code> 42 43 You have to put the following line in the editor and save the changes. 44 45 <code> 46 doctrine http://svn.phpdoctrine.org/trunk 47 </code> 48 49 Afterwards you can download doctrine with 50 51 <code> 52 svn update 53 </code> -
trunk/manual/docs/en/getting-started/starting-new-project.txt
r3065 r3837 26 26 <code type="php"> 27 27 //require the base Doctrine class 28 require_once(' lib/Doctrine.php');28 require_once('path-to-doctrine/lib/Doctrine.php'); 29 29 30 30 //register the autoloader -
trunk/manual/docs/en/getting-started/working-with-existing-databases.txt
r3568 r3837 26 26 27 27 <code type="php"> 28 require_once(' lib/Doctrine.php');28 require_once('path-to-doctrine/lib/Doctrine.php'); 29 29 30 30 spl_autoload_register(array('Doctrine', 'autoload'));