]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
update doc doc
authorSRE <serge.rehbinder@cea.fr>
Fri, 23 Jun 2017 08:33:30 +0000 (10:33 +0200)
committerSRE <serge.rehbinder@cea.fr>
Fri, 23 Jun 2017 08:33:30 +0000 (10:33 +0200)
doc/src/common/application.rst
doc/src/common/project.rst [new file with mode: 0644]
doc/src/index.rst

index b000c2bdbf0cc110fbd23a24ea77afb3b2473c1b..891a4d8ebb3b11c040f12ae0f8994fdc3a67c60c 100644 (file)
@@ -1,4 +1,105 @@
-.. _applications:
 ************
 APPLICATIONS
-************
\ No newline at end of file
+************
+
+The **application** is the key notion in SAT. Most of the SAT commands take an
+application as mandatory argument.
+
+An application is basically a set of **products**. referenced by their name and
+their version. An application is described by its pyconf config file.
+
+Here is an example of an application config file :
+
+.. code-block:: python
+
+   #!/usr/bin/env python
+   #-*- coding:utf-8 -*-
+   
+   APPLICATION :
+   {
+       name : 'SALOME-master'
+       workdir : $LOCAL.workdir + $VARS.sep + $APPLICATION.name + '-' + $VARS.dist
+       tag : 'master'
+       environ :
+       {
+           build : {CONFIGURATION_ROOT_DIR : $workdir + $VARS.sep + "SOURCES" + $VARS.sep + "CONFIGURATION"}
+       }
+       products :
+       {
+           # PREREQUISITES :
+           Python : '2.7.10'
+           Cython : '0.23.2'
+           numpy : '1.9.2'
+           scipy : '0.15.1'
+           lapack : '3.5.0'
+           cmake : '3.5.2'
+           pyreadline : '2.0'
+           setuptools : '0.6c11'
+           markupsafe : '0.23'
+           Jinja2 : '2.7.3'
+           six : '1.9.0'
+           distribute : '0.6.28'
+           pytz : '2014.10'
+           pyparsing : '1.5.6'
+           dateutil : '2.4.0'
+           freetype : '2.4.11'
+           matplotlib : '1.4.3'
+           cppunit : '1.13.2'
+           qt : '5.6.1-1'
+           PyQt : '5.6'
+           qwt : '6.1.2'
+           sip : '4.18'
+           omniORB : '4.1.6'
+           omniORBpy : '3.6'
+           boost : '1.58.0'
+           swig : '2.0.8'
+           gl2ps : '1.3.9p1'
+           freeimage : '3.16.0'
+           tcl : '8.6.0'
+           tk : '8.6.0'
+           libxml2 : '2.9.0'
+           CAS : 'V7_1_0p1'
+   
+           hdf5 : '1.8.14'
+           ParaView : {section : 'version_5_1_2plus_820', tag : '5.1.2plus'}
+           metis : '5.1.0'
+           scotch : '5.1.12b'
+           med : '3.2.1'
+   
+           graphviz : '2.38.0p1'
+           doxygen : '1.8.3.1'
+           docutils : '0.12'
+           Sphinx : '1.2.3'
+           Pygments : '2.0.2'
+           opencv : '2.4.6.1'
+           Homard : '11.8'
+           netgen : '5.3.1'
+           MeshGems : '2.5-3'
+           cgns : '3.1.3-4'
+   
+           lata : '1.3p3'
+   
+           # SALOME MODULES :
+           'CONFIGURATION'
+           'SALOME' : "Vmaster"
+   
+           'MEDCOUPLING'
+           'LIBBATCH' : "V2_3_1"
+           'KERNEL'
+           'GUI'
+   
+           'GEOM'
+   
+       }
+       profile :
+       {
+           product : "SALOME"
+       }
+       test_base : 
+       {
+           name : "SALOME"
+           tag : "SalomeV8"
+       }
+   }
+
+
diff --git a/doc/src/common/project.rst b/doc/src/common/project.rst
new file mode 100644 (file)
index 0000000..52d5591
--- /dev/null
@@ -0,0 +1,56 @@
+*******
+PROJECT
+*******
+
+In SAT, the largest notion is the notion of **project**, which includes the following:
+
+- a set of **applications** <application.rst>, 
+
+- a set of **products** <product.rst>,
+
+- a set of archives for the **products** <product.rst>,
+
+- a set of jobs,
+
+- a set of machines (for the jobs).
+
+In practical terms, a project is a pyconf file where the five variables 
+corresponding to the previous list are defined.
+
+Example :
+
+.. code-block:: python
+
+    #!/usr/bin/env python
+    #-*- coding:utf-8 -*-
+
+    project_path : "/home/salome/SPN_PRIVATE/SAT5/SALOME-PROJECT/"
+
+    # Where to search the archives of the products
+    ARCHIVEPATH : "/data/tmpsalome/salome/prerequis/archives"
+    # Where to search the pyconf of the applications
+    APPLICATIONPATH : "/home/salome/SPN_PRIVATE/sat5dev_Applications/"
+    # Where to search the pyconf of the products
+    PRODUCTPATH : $project_path + "products/"
+    # Where to search the pyconf of the jobs of the project
+    JOBPATH : $project_path + "jobs/"
+    # Where to search the pyconf of the machines of the project
+    MACHINEPATH : $project_path + "machines/"
+
+    git_info :
+    {
+        default_git_server : "http://git.salome-platform.org/gitpub/"
+        default_git_server_dev : "ssh://gitolite3@git.salome-platform.org/"
+    }
+
+    test_bases :
+    [
+          {
+            name : 'SALOME'
+            get_sources : 'git'
+            info :
+            {
+              base : '/home/salome/GitRepo/TestBases.git'
+            }
+          }
+    ]
index 9516c4222e63f94b92b1b0391a6e250b729cf19b..c795bf05d503b6cce97a1c242e34eb7c3c7d535c 100644 (file)
@@ -53,6 +53,15 @@ integrator documentation
    
    Introduction <integrator/introduction.rst>
 
+INDEX
+=====
+
+.. toctree::
+   :maxdepth: 1
+   
+   Project <common/project.rst>
+   Application <common/application.rst>
+   Product <common/product.rst>
 
 Release Notes
 =============