doc: Update basic documentation files due to new major release

FEA: ItEr76S03Community
This commit is contained in:
Manuel Rego Casasnovas 2012-07-26 15:52:59 +02:00
parent 7d917c2170
commit 1bd6b1a967
4 changed files with 38 additions and 22 deletions

View file

@ -6,9 +6,7 @@ Authors
LibrePlan Team
--------------
* Cristina Alvariño Pérez <cristina.alvarino@cafedered.es>
* Jacobo Aragunde Pérez <jaragunde@igalia.com>
* Nacho Barrientos Arias <nacho@igalia.com>
* Xavier Castaño García <xcastanho@igalia.com>
* Ignacio Díaz Teijido <ignacio.diaz@cafedered.es>
* Susana Montes Pedreira <smontes@wirelessgalicia.com>
@ -21,6 +19,8 @@ LibrePlan Team
Previous Team Members
---------------------
* Cristina Alvariño Pérez <cristina.alvarino@cafedered.es>
* Nacho Barrientos Arias <nacho@igalia.com>
* Fernando Bellas Permuy <fbellas@udc.es>
* José María Casanova Crespo <jmcasanova@igalia.com>
* Óscar González Fernández <ogonzalez@igalia.com>
@ -56,6 +56,7 @@ Contributors
* Eloy Calatayud <ecalatayud@wirelessgalicia.com>
* Sergio Carracedo <cto@opsou.com>
* Lucía García Fernández <lucia.garcia@cafedered.com>
* Pedro Figueras <sales@opsou.com>
* Dmytro Melanchenko <melanchenko@gmail.com>
* Adrián Pérez <aperez@igalia.com>

12
INSTALL
View file

@ -46,11 +46,11 @@ Instructions:
* Download the package::
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.2.0-1_amd64.deb
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.3.0-1_amd64.deb
* Install package::
# dpkg -i libreplan_1.2.0-1_amd64.deb
# dpkg -i libreplan_1.3.0-1_amd64.deb
* Install dependencies::
@ -133,7 +133,7 @@ Debian/Ubuntu
* Download database installation script::
$ wget -O install.sql http://downloads.sourceforge.net/project/libreplan/LibrePlan/install_1.2.0.sql
$ wget -O install.sql http://downloads.sourceforge.net/project/libreplan/LibrePlan/install_1.3.0.sql
* Create database structure::
@ -150,7 +150,7 @@ Debian/Ubuntu
* Download ``.war`` file from SourceForge.net::
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.2.0.war
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.3.0.war
* Create a new file ``/etc/tomcat6/Catalina/localhost/libreplan.xml`` (file
name has to match with ``.war`` name) with database configuration for
@ -249,7 +249,7 @@ openSUSE
* Download database installation script::
$ wget -O install.sql http://downloads.sourceforge.net/project/libreplan/LibrePlan/install_1.2.0.sql
$ wget -O install.sql http://downloads.sourceforge.net/project/libreplan/LibrePlan/install_1.3.0.sql
* Create database structure::
@ -266,7 +266,7 @@ openSUSE
* Download ``.war`` file from SourceForge.net::
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.2.0.war
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.3.0.war
* Create a new file ``/etc/tomcat6/Catalina/localhost/libreplan.xml`` (file
name has to match with ``.war`` name) with database configuration for

4
README
View file

@ -160,8 +160,8 @@ Please read the ``COPYING`` file for details.
Authors
-------
This project is sponsored by *Fundación para o Fomento da Calidade Industrial e
o Desenvolvemento Tecnolóxico de Galicia* [4]_.
This project was initially sponsored by *Fundación para o Fomento da Calidade
Industrial e o Desenvolvemento Tecnolóxico de Galicia* [4]_.
Please see ``AUTHORS`` file for more information about the authors.

39
UPDATE
View file

@ -26,11 +26,11 @@ Instructions:
* Download the new package::
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.2.1-1_amd64.deb
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.3.0-1_amd64.deb
* Install package::
# dpkg -i libreplan_1.2.1-1_amd64.deb
# dpkg -i libreplan_1.3.0-1_amd64.deb
* Install new dependencies if needed::
@ -40,6 +40,21 @@ Instructions:
LibrePlan manual update
-----------------------
.. WARNING::
It is recommended to create a backup of the database, just in case any
problem appear during the upgrade.
.. IMPORTANT::
If you are upgrading between version a.b.c to version x.y.z, you need to
execute all the upgrade scripts starting from the next one to a.b.c in
order.
For example, if you are upgrading from LibrePlan 1.2.1 to 1.3.0 you will
have to upgrade your database using the scripts: ``upgrade_1.2.2.sql``,
``upgrade_1.2.3.sql`` and ``upgrade_1.3.0.sql``.
Debian/Ubuntu
~~~~~~~~~~~~~
@ -48,18 +63,18 @@ Debian/Ubuntu
# /etc/init.d/tomcat6 stop
* Download database upgrade scripts from previous version. For example, if you
are upgrading from *LibrePlan 1.2.0* to *LibrePlan 1.2.1* you should download
``upgrade_1.2.1.sql``::
are upgrading from *LibrePlan 1.2.4* to *LibrePlan 1.3.0* you should download
``upgrade_1.3.0.sql``::
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/upgrade_1.2.1.sql
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/upgrade_1.3.0.sql
* Upgrade database::
$ psql -h localhost -U libreplan -W libreplan < upgrade_1.2.1.sql
$ psql -h localhost -U libreplan -W libreplan < upgrade_1.3.0.sql
* Download ``.war`` file of new version from SourceForge.net::
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.2.1.war
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.3.0.war
* Backup current deployed application::
@ -84,18 +99,18 @@ openSUSE
# /etc/init.d/tomcat6 stop
* Download database upgrade scripts from previous version. For example, if you
are upgrading from *LibrePlan 1.2.0* to *LibrePlan 1.2.1* you should download
``upgrade_1.2.1.sql``::
are upgrading from *LibrePlan 1.2.4* to *LibrePlan 1.3.0* you should download
``upgrade_1.3.0.sql``::
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/upgrade_1.2.1.sql
$ wget http://downloads.sourceforge.net/project/libreplan/LibrePlan/upgrade_1.3.0.sql
* Upgrade database::
$ psql -h localhost -U libreplan -W libreplan < upgrade_1.2.1.sql
$ psql -h localhost -U libreplan -W libreplan < upgrade_1.3.0.sql
* Download ``.war`` file of new version from SourceForge.net::
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.2.1.war
$ wget -O libreplan.war http://downloads.sourceforge.net/project/libreplan/LibrePlan/libreplan_1.3.0.war
* Backup current deployed application::