From: bri Date: Mon, 15 Jul 2013 16:13:52 +0000 (+0000) Subject: updated README X-Git-Tag: V7_3_0b1~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=32308cb4177c7a7517c07e6adc0440013bce6ed3;p=tools%2Fsiman.git updated README --- diff --git a/Workspace/README b/Workspace/README index 9272d3c..c634b78 100644 --- a/Workspace/README +++ b/Workspace/README @@ -18,8 +18,8 @@ cvs -d :pserver:bri@cvs.opencascade.com:/home/server/cvs/SIMAN checkout SIMAN_S 3. Build SIMAN java libraries and web archive siman.war -- go to the directory SIMAN -- adjust paths to ANT bin folder, JAVA_HOME and required RDBMS (MySQL or PostgreSQL) in the file build-war.bat or build-war.sh +- go to the directory Siman +- adjust paths to ANT bin folder, JAVA_HOME as well as required RDBMS (prepare-mysql or prepare-postgres) and Workflows (prepare-edf or prepare-cea) in the file build-war.bat or build-war.sh - run script build-war.bat or build-war.sh - the result web archive siman.war is created in sub-directory dist @@ -27,8 +27,8 @@ The examples of "# Connection properties" of release.properties for PostgreSQL a 4. Build SIMAN java libraries and web archive Siman-WS.war -- go to the directory SIMAN-WS -- adjust paths to ANT bin folder, JAVA_HOME and required RDBMS (MySQL or PostgreSQL) in the file build-war.bat or build-war.sh +- go to the directory Siman-WS +- adjust paths to ANT bin folder, JAVA_HOME as well as required RDBMS (prepare-mysql or prepare-postgres) and Workflows (prepare-edf or prepare-cea) in the file build-war.bat or build-war.sh - run script build-war.bat or build-war.sh -- the result web archive SIMAN-WS.war is created in sub-directory dist +- the result web archive Siman-WS.war is created in sub-directory dist diff --git a/Workspace/Siman-WS/WebContent/conf/som.xml b/Workspace/Siman-WS/WebContent/conf/som.xml index 3115e34..d19362e 100644 --- a/Workspace/Siman-WS/WebContent/conf/som.xml +++ b/Workspace/Siman-WS/WebContent/conf/som.xml @@ -6,7 +6,7 @@ - + @@ -68,8 +68,9 @@
-
-
+
+
+
@@ -156,11 +157,17 @@ - + - + - + + + + + + + @@ -212,12 +219,20 @@ + - + + + + + + + + - - + + @@ -251,18 +266,30 @@ + - - - + + + + + + + + + + + + + + - + diff --git a/Workspace/Siman-WS/conf/customer.txt b/Workspace/Siman-WS/conf/customer.txt index b1121e1..114dcac 100644 --- a/Workspace/Siman-WS/conf/customer.txt +++ b/Workspace/Siman-WS/conf/customer.txt @@ -1 +1 @@ -cea \ No newline at end of file +edf \ No newline at end of file diff --git a/Workspace/Siman-WS/conf/debug.properties b/Workspace/Siman-WS/conf/debug.properties index e846683..997c048 100644 --- a/Workspace/Siman-WS/conf/debug.properties +++ b/Workspace/Siman-WS/conf/debug.properties @@ -1,12 +1,12 @@ # Connection properties -connection.url=jdbc:postgresql://localhost:5432/simer +connection.url=jdbc:mysql://localhost/simer connection.username=simer connection.password=admin -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver # Hibernate config hibernate.hbm2ddl.auto=update -hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect hibernate.current_session_context_class=thread # Log properties diff --git a/Workspace/Siman-WS/conf/release.properties b/Workspace/Siman-WS/conf/release.properties index 88555e3..e849ecb 100644 --- a/Workspace/Siman-WS/conf/release.properties +++ b/Workspace/Siman-WS/conf/release.properties @@ -1,13 +1,13 @@ # Connection properties -connection.url=jdbc:postgresql://localhost:5432/simer +connection.url=jdbc:mysql://localhost/simer connection.username=simer connection.password=admin -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver # Hibernate config #hibernate.hbm2ddl.auto=validate hibernate.hbm2ddl.auto=update -hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.dialect=org.hibernate.dialect.MySQLDialect hibernate.current_session_context_class=thread # Log properties diff --git a/Workspace/Siman-WS/src/hibernate.properties b/Workspace/Siman-WS/src/hibernate.properties index 4d5b37a..8ce2b56 100644 --- a/Workspace/Siman-WS/src/hibernate.properties +++ b/Workspace/Siman-WS/src/hibernate.properties @@ -1,11 +1,11 @@ -# Generated at 10/07/2013 07:17:41 +# Generated at 11/07/2013 04:06:50 # Don't edit manually. See the source in /data/SIMAN/SIMAN_SRC/Workspace/Siman-WS/conf/templates. # Connection properties -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver # Hibernate config hibernate.hbm2ddl.auto=update -hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect hibernate.current_session_context_class=thread # Log properties diff --git a/Workspace/Siman-WS/src/jdbc.properties b/Workspace/Siman-WS/src/jdbc.properties index b11f196..4bd43ce 100644 --- a/Workspace/Siman-WS/src/jdbc.properties +++ b/Workspace/Siman-WS/src/jdbc.properties @@ -1,7 +1,7 @@ -# Generated at 10/07/2013 07:17:41 +# Generated at 11/07/2013 04:06:50 # Don't edit manually. See the source in /data/SIMAN/SIMAN_SRC/Workspace/Siman-WS/conf/templates. # Connection properties -connection.url=jdbc:postgresql://localhost:5432/simer +connection.url=jdbc:mysql://localhost/simer connection.username=simer connection.password=admin -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver diff --git a/Workspace/Siman-WS/src/log4j.xml b/Workspace/Siman-WS/src/log4j.xml index bef234b..20a6563 100644 --- a/Workspace/Siman-WS/src/log4j.xml +++ b/Workspace/Siman-WS/src/log4j.xml @@ -3,7 +3,7 @@ - + diff --git a/Workspace/Siman-WS/src/som.properties b/Workspace/Siman-WS/src/som.properties index fb563dc..ef5492e 100644 --- a/Workspace/Siman-WS/src/som.properties +++ b/Workspace/Siman-WS/src/som.properties @@ -8,21 +8,25 @@ menu.step.1 = Sp menu.step.2 = Concevoir le scénario menu.step.3 = Créer la géométrie menu.step.4 = Générer le modèle d''analyse -menu.step.5 = Entrer les conditions de calcul -menu.step.6 = Analyser les résultats -menu.step.7 = Définir le schéma de calcul -menu.step.8 = Capitaliser ce cas d''étude -menu.step.9 = Finaliser l''étude +menu.step.5 = Effectuer le CASTEM +menu.step.6 = Effectuer le MECA +menu.step.7 = Effectuer le SYRTHES +menu.step.8 = Analyser les résultats +menu.step.9 = Définir le schéma de calcul +menu.step.10 = Capitaliser ce cas d''étude +menu.step.11 = Finaliser l''étude folder.step.1 = Spécification de l''étude folder.step.2 = Description du scénario folder.step.3 = Géométrie folder.step.4 = Modèle d''analyse -folder.step.5 = Conditions de calcul -folder.step.6 = Résultats -folder.step.7 = Schéma de calcul -folder.step.8 = Élements de connaissances -folder.step.9 = Rapport final +folder.step.5 = Exécution de calcul CASTEM +folder.step.6 = Exécution de calcul MECA +folder.step.7 = Exécution de calcul SYRTHES +folder.step.8 = Résultats +folder.step.9 = Schéma de calcul +folder.step.10 = Élements de connaissances +folder.step.11 = Rapport final type.document.requirements = Cahier des charges diff --git a/Workspace/Siman-WS/src/som_en.properties b/Workspace/Siman-WS/src/som_en.properties index 56aa516..14265c9 100644 --- a/Workspace/Siman-WS/src/som_en.properties +++ b/Workspace/Siman-WS/src/som_en.properties @@ -8,21 +8,23 @@ menu.step.1 = Specify the study menu.step.2 = Design the scenario menu.step.3 = Create the geometry menu.step.4 = Generate the analysis model -menu.step.5 = Enter the boundary conditions -menu.step.6 = Analyze the results -menu.step.7 = Define the calculation schema -menu.step.8 = Capitalize this use-case -menu.step.9 = Finalize the study +menu.step.5 = Execute MECA +menu.step.6 = Execute SYRTHES +menu.step.7 = Analyze the results +menu.step.8 = Define the calculation schema +menu.step.9 = Capitalize this use-case +menu.step.10 = Finalize the study folder.step.1 = Specification of the study folder.step.2 = Description of the scenario folder.step.3 = Geometry folder.step.4 = Analysis model -folder.step.5 = Boundary conditions -folder.step.6 = Calculation results -folder.step.7 = Calculation schema -folder.step.8 = Knowledge elements -folder.step.9 = Final report +folder.step.5 = MECA calculation execution +folder.step.6 = SYRTHES calculation execution +folder.step.7 = Calculation results +folder.step.8 = Calculation schema +folder.step.9 = Knowledge elements +folder.step.10 = Final report type.document.requirements = Customer requirements diff --git a/Workspace/Siman/WebContent/conf/som.xml b/Workspace/Siman/WebContent/conf/som.xml index 3115e34..d19362e 100644 --- a/Workspace/Siman/WebContent/conf/som.xml +++ b/Workspace/Siman/WebContent/conf/som.xml @@ -6,7 +6,7 @@ - + @@ -68,8 +68,9 @@
-
-
+
+
+
@@ -156,11 +157,17 @@ - + - + - + + + + + + + @@ -212,12 +219,20 @@ + - + + + + + + + + - - + + @@ -251,18 +266,30 @@ + - - - + + + + + + + + + + + + + + - + diff --git a/Workspace/Siman/WebContent/jap/splat-launcher.jar b/Workspace/Siman/WebContent/jap/splat-launcher.jar index b2fb6ba..04e4737 100644 Binary files a/Workspace/Siman/WebContent/jap/splat-launcher.jar and b/Workspace/Siman/WebContent/jap/splat-launcher.jar differ diff --git a/Workspace/Siman/WebContent/jap/splat-signedlauncher.jar b/Workspace/Siman/WebContent/jap/splat-signedlauncher.jar index 067fff1..6910ca9 100644 Binary files a/Workspace/Siman/WebContent/jap/splat-signedlauncher.jar and b/Workspace/Siman/WebContent/jap/splat-signedlauncher.jar differ diff --git a/Workspace/Siman/conf/customer.txt b/Workspace/Siman/conf/customer.txt index b1121e1..114dcac 100644 --- a/Workspace/Siman/conf/customer.txt +++ b/Workspace/Siman/conf/customer.txt @@ -1 +1 @@ -cea \ No newline at end of file +edf \ No newline at end of file diff --git a/Workspace/Siman/conf/debug.properties b/Workspace/Siman/conf/debug.properties index e846683..997c048 100644 --- a/Workspace/Siman/conf/debug.properties +++ b/Workspace/Siman/conf/debug.properties @@ -1,12 +1,12 @@ # Connection properties -connection.url=jdbc:postgresql://localhost:5432/simer +connection.url=jdbc:mysql://localhost/simer connection.username=simer connection.password=admin -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver # Hibernate config hibernate.hbm2ddl.auto=update -hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect hibernate.current_session_context_class=thread # Log properties diff --git a/Workspace/Siman/conf/release.properties b/Workspace/Siman/conf/release.properties index 88555e3..e849ecb 100644 --- a/Workspace/Siman/conf/release.properties +++ b/Workspace/Siman/conf/release.properties @@ -1,13 +1,13 @@ # Connection properties -connection.url=jdbc:postgresql://localhost:5432/simer +connection.url=jdbc:mysql://localhost/simer connection.username=simer connection.password=admin -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver # Hibernate config #hibernate.hbm2ddl.auto=validate hibernate.hbm2ddl.auto=update -hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.dialect=org.hibernate.dialect.MySQLDialect hibernate.current_session_context_class=thread # Log properties diff --git a/Workspace/Siman/src/hibernate.properties b/Workspace/Siman/src/hibernate.properties index 2efac10..bdc8c0b 100644 --- a/Workspace/Siman/src/hibernate.properties +++ b/Workspace/Siman/src/hibernate.properties @@ -1,11 +1,11 @@ -# Generated at 10/07/2013 07:14:30 +# Generated at 11/07/2013 04:06:35 # Don't edit manually. See the source in /data/SIMAN/SIMAN_SRC/Workspace/Siman/conf/templates. # Connection properties -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver # Hibernate config hibernate.hbm2ddl.auto=update -hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect hibernate.current_session_context_class=thread # Log properties diff --git a/Workspace/Siman/src/jdbc.properties b/Workspace/Siman/src/jdbc.properties index a91d722..61843b5 100644 --- a/Workspace/Siman/src/jdbc.properties +++ b/Workspace/Siman/src/jdbc.properties @@ -1,7 +1,7 @@ -# Generated at 10/07/2013 07:14:30 +# Generated at 11/07/2013 04:06:35 # Don't edit manually. See the source in /data/SIMAN/SIMAN_SRC/Workspace/Siman/conf/templates. # Connection properties -connection.url=jdbc:postgresql://localhost:5432/simer +connection.url=jdbc:mysql://localhost/simer connection.username=simer connection.password=admin -connection.driver_class=org.postgresql.Driver +connection.driver_class=com.mysql.jdbc.Driver diff --git a/Workspace/Siman/src/som.properties b/Workspace/Siman/src/som.properties index fb563dc..e71213c 100644 --- a/Workspace/Siman/src/som.properties +++ b/Workspace/Siman/src/som.properties @@ -8,21 +8,23 @@ menu.step.1 = Sp menu.step.2 = Concevoir le scénario menu.step.3 = Créer la géométrie menu.step.4 = Générer le modèle d''analyse -menu.step.5 = Entrer les conditions de calcul -menu.step.6 = Analyser les résultats -menu.step.7 = Définir le schéma de calcul -menu.step.8 = Capitaliser ce cas d''étude -menu.step.9 = Finaliser l''étude +menu.step.5 = Effectuer le MECA +menu.step.6 = Effectuer le SYRTHES +menu.step.7 = Analyser les résultats +menu.step.8 = Définir le schéma de calcul +menu.step.9 = Capitaliser ce cas d''étude +menu.step.10 = Finaliser l''étude folder.step.1 = Spécification de l''étude folder.step.2 = Description du scénario folder.step.3 = Géométrie folder.step.4 = Modèle d''analyse -folder.step.5 = Conditions de calcul -folder.step.6 = Résultats -folder.step.7 = Schéma de calcul -folder.step.8 = Élements de connaissances -folder.step.9 = Rapport final +folder.step.5 = Exécution de calcul MECA +folder.step.6 = Exécution de calcul SYRTHES +folder.step.7 = Résultats +folder.step.8 = Schéma de calcul +folder.step.9 = Élements de connaissances +folder.step.10 = Rapport final type.document.requirements = Cahier des charges diff --git a/Workspace/Siman/src/som_en.properties b/Workspace/Siman/src/som_en.properties index 56aa516..14265c9 100644 --- a/Workspace/Siman/src/som_en.properties +++ b/Workspace/Siman/src/som_en.properties @@ -8,21 +8,23 @@ menu.step.1 = Specify the study menu.step.2 = Design the scenario menu.step.3 = Create the geometry menu.step.4 = Generate the analysis model -menu.step.5 = Enter the boundary conditions -menu.step.6 = Analyze the results -menu.step.7 = Define the calculation schema -menu.step.8 = Capitalize this use-case -menu.step.9 = Finalize the study +menu.step.5 = Execute MECA +menu.step.6 = Execute SYRTHES +menu.step.7 = Analyze the results +menu.step.8 = Define the calculation schema +menu.step.9 = Capitalize this use-case +menu.step.10 = Finalize the study folder.step.1 = Specification of the study folder.step.2 = Description of the scenario folder.step.3 = Geometry folder.step.4 = Analysis model -folder.step.5 = Boundary conditions -folder.step.6 = Calculation results -folder.step.7 = Calculation schema -folder.step.8 = Knowledge elements -folder.step.9 = Final report +folder.step.5 = MECA calculation execution +folder.step.6 = SYRTHES calculation execution +folder.step.7 = Calculation results +folder.step.8 = Calculation schema +folder.step.9 = Knowledge elements +folder.step.10 = Final report type.document.requirements = Customer requirements