Changeset 10991
- Timestamp:
- 2019-05-16T22:54:07+02:00 (4 years ago)
- Location:
- NEMO/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/INSTALL.rst
r10604 r10991 104 104 .. code:: console 105 105 106 $ svn co http ://forge.ipsl.jussieu.fr/ioserver/svn/XIOS/branchs/xios-2.5106 $ svn co https://forge.ipsl.jussieu.fr/ioserver/svn/XIOS/branchs/xios-2.5 107 107 108 108 Download the NEMO source code … … 147 147 148 148 All compiler options in NEMO are controlled using files in 149 trunk/arch/arch-'my_arch'.fcmwhere 'my_arch' is the name of the computing149 ``./arch/arch-'my_arch'.fcm`` where 'my_arch' is the name of the computing 150 150 architecture. It is recommended to copy and rename an configuration file from 151 151 an architecture similar to your owns. You will need to set appropriate values … … 286 286 .. code-block:: sh 287 287 288 trunk/cfgs/'MYCONFIG'/cpp_'MY_CONFIG'.fcm288 ./cfgs/'MYCONFIG'/cpp_'MY_CONFIG'.fcm 289 289 290 290 -
NEMO/trunk/README.rst
r10790 r10991 1 :Release: |version|2 :Date: 3 :SVN rev ision: |svn_revision|1 :Release: |release| 2 :Date: |today| 3 :SVN rev.: |revision| 4 4 5 5 NEMO_ for **Nucleus for European Modelling of the Ocean** is a state-of-the-art modelling framework for -
NEMO/trunk/doc/rst/README.rst
r10990 r10991 42 42 $ make livehtml 43 43 44 | In the same time, open the 2 formats of the content to review: the source file and the web page by browsing from `the new guide hosted by your local server <127.0.0.1:8000/NEMO_guide.html>`_.44 | Open in the same time the 2 formats of the content to review: the source file and the web page by browsing from the new guide hosted by your local server on `<http://127.0.0.1:8000/NEMO_guide.html>`_. 45 45 | Start the update, save your changes and verify instantly the HTML export in your browser. 46 46 -
NEMO/trunk/doc/rst/source/_templates/layout.html
r10279 r10991 12 12 <p>Community ocean model for multifarious space and time scales</p> 13 13 14 <div class="version">{{ release}}</div>14 <div class="version">{{ version }}</div> 15 15 16 16 {% include "searchbox.html" %} -
NEMO/trunk/doc/rst/source/conf.py
r10990 r10991 13 13 14 14 # The short X.Y version 15 version = ' 4.0'15 version = 'trk' 16 16 # The full version, including alpha/beta/rc tags 17 release = ' release-4.0'17 release = 'trunk' 18 18 19 19 … … 113 113 import subprocess 114 114 revision = subprocess.check_output("svnversion").decode("utf-8") 115 rst_prolog = '.. | svn_revision| replace:: %s' % revision115 rst_prolog = '.. |revision| replace:: %s' % revision
Note: See TracChangeset
for help on using the changeset viewer.