Pages enfant
  • Migration guide

Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.
Commentaire: Migrated to Confluence 5.3

...

Sommaire
minLevel1
indent20px
styledisc

From 1.5.1 to 1.5.2

  • Download esup-lecture-1.5.2.zip from the projectsite
  • Unzip the file in the parent directory of the 1.5.2 directory.
  • Recover the files from previous version :
    • ant recover-config
  • Deploy the application:
    • ant deploy
  • Start the "esup-lecture" context on all application servers

From 1.2.x or 1.3.x to 1.5.1

  • Download esup-lecture-1.5.1.zip from the projectsite
  • Unzip the file in the parent directory of the 1.5.1 directory.
  • Recover the files from previous version :
    • ant recover-config
    • NOTE:
      • properties/esup-lecture.dtd has been modified since previous version and should not be recovered
      • properties/domain/domain.xml has been modified since previous version and should not be recovered
  • Verify the configuration files
  • Stop the "esup-lecture" context on all application servers
  • SAVE the esup-lecture database
  • Run ant upgrade
  • Deploy the application:
    • ant deploy
  • Start the "esup-lecture" context on all application servers

From 1.2.7-1.2.8 to 1.3.0

  • Download esup-lecture-1.3.0.zip from the projectsite
  • Unzip the file in the parent directory of the 1.3.0 directory.
  • Recover the files from previous version :
    • ant recover-config
    • NOTE : esup-lecture.dtd has been modified since previous version and should not be recovered
  • Verify the configuration files
  • Stop the "esup-lecture" context on all application servers
  • SAVE the esup-lecture database
  • Run ant upgrade
  • If you want to keep old records of read items, initialize the new table of read items like this :
    • Open a database connexion with a SQL editor
    • Run the SQL command :
    • insert into LECT_READITEMFLAG (ELEMENTID, CUSTOMSOURCE_CUSTOMSOURCEPK, DATE) (select ITEMID, CUSTOMSOURCE_CUSTOMSOURCEPK, now() from LECT_READITEM)
    • (replace "now()" with the appropriate function or pseudocolumn according to your SGBD)
  • Then, delete the old table of read items :
    • Open a database connexion with a SQL editor
    • Run the SQL command :
    • drop table LECT_READITEM;
  • Deploy the application:
  • ant deploy
  • Start the "esup-lecture" context on all application servers

From 1.2.5-1.2.6 to 1.2.7


  • Download esup-lecture-1.2.7.zip from the projectsite
  • Unzip the file in the parent directory of the 1.2.7 directory.

...