New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 10991 for NEMO – NEMO

Changeset 10991 for NEMO


Ignore:
Timestamp:
2019-05-16T22:54:07+02:00 (5 years ago)
Author:
nicolasmartin
Message:

First part of content synchronisation between trunk & 4.0

Location:
NEMO/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/INSTALL.rst

    r10604 r10991  
    104104   .. code:: console 
    105105 
    106       $ svn co http://forge.ipsl.jussieu.fr/ioserver/svn/XIOS/branchs/xios-2.5 
     106      $ svn co https://forge.ipsl.jussieu.fr/ioserver/svn/XIOS/branchs/xios-2.5 
    107107 
    108108Download the NEMO source code 
     
    147147 
    148148All compiler options in NEMO are controlled using files in 
    149 trunk/arch/arch-'my_arch'.fcm where 'my_arch' is the name of the computing 
     149``./arch/arch-'my_arch'.fcm`` where 'my_arch' is the name of the computing 
    150150architecture.  It is recommended to copy and rename an configuration file from 
    151151an architecture similar to your owns. You will need to set appropriate values 
     
    286286.. code-block:: sh 
    287287 
    288         trunk/cfgs/'MYCONFIG'/cpp_'MY_CONFIG'.fcm 
     288        ./cfgs/'MYCONFIG'/cpp_'MY_CONFIG'.fcm 
    289289 
    290290 
  • NEMO/trunk/README.rst

    r10790 r10991  
    1 :Release:      |version| 
    2 :Date:         |today| 
    3 :SVN revision: |svn_revision| 
     1:Release:  |release| 
     2:Date:     |today| 
     3:SVN rev.: |revision| 
    44 
    55NEMO_ 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  
    4242    $ make livehtml 
    4343 
    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>`_. 
    4545| Start the update, save your changes and verify instantly the HTML export in your browser. 
    4646 
  • NEMO/trunk/doc/rst/source/_templates/layout.html

    r10279 r10991  
    1212   <p>Community ocean model for multifarious space and time scales</p> 
    1313 
    14    <div class="version">{{ release }}</div> 
     14   <div class="version">{{ version }}</div> 
    1515 
    1616   {% include "searchbox.html" %} 
  • NEMO/trunk/doc/rst/source/conf.py

    r10990 r10991  
    1313 
    1414# The short X.Y version 
    15 version = '4.0' 
     15version = 'trk' 
    1616# The full version, including alpha/beta/rc tags 
    17 release = 'release-4.0' 
     17release = 'trunk' 
    1818 
    1919 
     
    113113import subprocess 
    114114revision = subprocess.check_output("svnversion").decode("utf-8") 
    115 rst_prolog = '.. |svn_revision| replace:: %s' % revision 
     115rst_prolog = '.. |revision| replace:: %s' % revision 
Note: See TracChangeset for help on using the changeset viewer.