installation.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- EN-Revision: 19778 -->
  3. <!-- Reviewed: no -->
  4. <chapter id="introduction.installation">
  5. <title> Instalación</title>
  6. <para>
  7. Véase el apéndice <link linkend="requirements">
  8. requisitos</link> para
  9. una lista detallada de requisitos para Zend Framework. </para>
  10. <para> La instalación del Zend Framework es muy simple. Una vez que haya
  11. descargado y descomprimido el framework, deberá añadir la carpeta
  12. <filename>/library</filename> de la distribución al principio de su
  13. "include path". También puede mover la carpeta "library" a cualquier
  14. otra posición (compartida o no) de su sistema de archivos. </para>
  15. <itemizedlist>
  16. <listitem>
  17. <para>
  18. <ulink url="http://framework.zend.com/download">Descargar la
  19. última versión estable.</ulink> Esta versión esta disponible
  20. en formatos <filename>.zip</filename> .
  21. <filename>.tar.gz</filename> , es una buena opción para
  22. aquellos que comienzan o son nuevos en Zend Framework. </para>
  23. </listitem>
  24. <listitem>
  25. <para>
  26. <ulink url="http://framework.zend.com/download/snapshot"
  27. >Download the latest nightly snapshot.</ulink> For those who
  28. would brave the cutting edge, the nightly snapshots represent
  29. the latest progress of Zend Framework development. Snapshots are
  30. bundled with documentation either in English only or in all
  31. available languages. If you anticipate working with the latest
  32. Zend Framework developments, consider using a Subversion (
  33. <acronym>SVN</acronym> ) client. </para>
  34. </listitem>
  35. <listitem>
  36. <para> Using a <ulink url="http://subversion.tigris.org"
  37. >Subversion</ulink> ( <acronym>SVN</acronym> ) client. Zend
  38. Framework is open source software, and the Subversion repository
  39. used for its development is publicly available. Consider using
  40. <acronym>SVN</acronym> to get Zend Framework if you already
  41. use <acronym>SVN</acronym> for your application development,
  42. want to contribute back to the framework, or need to upgrade
  43. your framework version more often than releases occur. </para>
  44. <para>
  45. <ulink
  46. url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.export.html"
  47. > Exporting</ulink> is useful if you want to get a
  48. particular framework revision without the
  49. <filename>.svn</filename> directories as created in a
  50. working copy. </para>
  51. <para>
  52. <ulink
  53. url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.checkout.html"
  54. > Check out a working copy</ulink> if you want contribute to
  55. Zend Framework, a working copy can be updated any time with
  56. <ulink
  57. url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.update.html"
  58. > svn update</ulink> and changes can be commited to our
  59. <acronym>SVN</acronym> repository with the <ulink
  60. url="http://svnbook.red-bean.com/nightly/en/svn.ref.svn.c.commit.html"
  61. > svn commit</ulink> command. </para>
  62. <para> An <ulink
  63. url="http://svnbook.red-bean.com/nightly/en/svn.advanced.externals.html"
  64. > externals definition</ulink> is quite convenient for
  65. developers already using <acronym>SVN</acronym> to manage their
  66. application's working copies. </para>
  67. <para> The <acronym>URL</acronym> for the trunk of Zend Framework's
  68. <acronym>SVN</acronym> repository is: <ulink
  69. url="http://framework.zend.com/svn/framework/standard/trunk"
  70. >
  71. http://framework.zend.com/svn/framework/standard/trunk</ulink>
  72. </para>
  73. </listitem>
  74. </itemizedlist>
  75. <para> Una vez que tenga disponible una copia de Zend Framework, su
  76. aplicación necesita poder acceder a las clases del framework. Aunque hay
  77. <ulink url="http://www.php.net/manual/en/configuration.changes.php">
  78. diferentes maneras de lograr esto</ulink> , su <ulink
  79. url="http://www.php.net/manual/en/ini.core.php#ini.include-path">
  80. <methodname>include_path</methodname>
  81. </ulink> de <acronym>PHP</acronym> necesita contener una ruta a la
  82. librería de Zend Framework. </para>
  83. <para> Zend provides a <ulink
  84. url="http://framework.zend.com/docs/quickstart">QuickStart</ulink>
  85. to get you up and running as quickly as possible. This is an excellent
  86. way to begin learning about the framework with an emphasis on real world
  87. examples that you can built upon. </para>
  88. <para> Ya que los componentes de Zend Framework están débilmente conectados,
  89. tiene la opción de usar cualquier combinación de ellos en sus
  90. aplicaciones. Los siguientes capítulos presentan una referencia
  91. exhaustiva de Zend Framework, componente a componente. </para>
  92. </chapter>