installation.xml 5.7 KB

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