Changeset 517


Ignore:
Timestamp:
04/13/12 12:58:01 (12 years ago)
Author:
pinsard
Message:

consolidation of doc dev. (to be cont.)

Location:
trunk
Files:
1 deleted
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/extract_demoandtest.sh

    r196 r517  
    77# extract_demoandtest.sh 
    88# ====================== 
    9 # 
    10 # -------------------------------------- 
    11 # extract demo and test from source file 
    12 # -------------------------------------- 
    139# 
    1410# SYNOPSIS 
     
    5248# 
    5349# SEE ALSO 
    54 # ======= 
     50# ======== 
    5551# 
    5652# http://www.gnu.org/software/octave/doc/interpreter/Test-and-Demo-Functions.html 
  • trunk/adm/makefile

    r503 r517  
    77# ======== 
    88# 
    9 # administration of project varamma 
     9# surcouche génération des documentations  
    1010# 
    1111# TODO 
     
    2020# add -W to sphinx command when encoding problems are solved 
    2121# 
    22 # usage of sphinx/source/Makefile 
    23 # 
    2422# IDL and matlab in man_troff 
    2523# 
     
    3937# $URL$ 
    4038# 
     39# - fplod 20120413T105213Z cratos (Linux) 
     40# 
     41#   * remove features which are now in makefile_non_sphinx and docs/docs_dev 
     42#   * remove doxygen stuff 
     43# 
    4144# - fplod 20110907T122710Z aedon.locean-ipsl.upmc.fr (Darwin) 
    4245# 
     
    280283LIST_INVENTORY = \ 
    281284$(DIRADM)/saxo.inv 
    282  
    283 LIST_RST_GUIDES = \ 
    284 $(shell find $(DIRADM)/guides/ -name "*.rst") 
    285  
    286 LIST_SRCSH = \ 
    287 $(shell find $(DIRSRC) -name "*.sh" | sort) 
    288  
    289 LIST_SRCSH_RST = \ 
    290 $(shell echo "$(LIST_SRCSH)" | \ 
    291         sed -e "s+$(DIRSRC)+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
    292             -e "s+\.sh+.sh.rst+g") 
    293  
    294 LIST_SRCSH_TROFF = \ 
    295 $(shell echo "$(LIST_SRCSH)" | \ 
    296         sed -e "s+$(DIRSRC)+$(DIRWWW)/man/man1/+g" \ 
    297             -e "s+\.sh+.sh.1+g") 
    298  
    299 LIST_SRCIDL = \ 
    300 $(shell find $(DIRSRC) -name "*.pro" | sort) 
    301  
    302 LIST_SRCIDL_RST = \ 
    303 $(shell echo "$(LIST_SRCIDL)" | \ 
    304         sed -e "s+$(DIRSRC)+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
    305             -e "s+\.pro+.pro.rst+g") 
    306  
    307 LIST_SRCMATLAB = \ 
    308 $(shell find $(DIRSRC) -name "*.m" | grep -v external_matlab | sort) 
    309  
    310 LIST_SRCMATLAB_RST = \ 
    311 $(shell echo "$(LIST_SRCMATLAB)" | \ 
    312         sed \ 
    313             -e "s+$(DIRSRC)/utilitaires+$(DIRTMP)/sphinx_tmpdir/manuals/utilitaires+g" \ 
    314             -e "s+$(DIRSRC)/external_matlab+$(DIRTMP)/sphinx_tmpdir/manuals/external_matlab+g" \ 
    315             -e "s+$(DIRSRC)+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
    316             -e "s+\.m+.m.rst+g") 
    317285 
    318286LIST_SRCMATLAB_DEMO = \ 
     
    325293        sed -e "s+$(DIRSRC)+$(DIRTMP)/test/+g" \ 
    326294            -e "s+\.m+_test.m+g") 
    327  
    328 LIST_SRCFERRET = \ 
    329 $(shell find $(DIRSRC) -name "*.jnl" | sort) 
    330  
    331 LIST_SRCFERRET_RST = \ 
    332 $(shell echo "$(LIST_SRCFERRET)" | \ 
    333         sed -e "s+$(DIRSRC)+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
    334             -e "s+\.jnl+.jnl.rst+g") 
    335295 
    336296LIST_SRCPYTHON = \ 
     
    354314pdf \ 
    355315pdf_sphinx \ 
    356 html_src_browser \ 
    357 html_src_browser_doxygen \ 
    358316matlab_demo \ 
    359317matlab_test 
     
    378336before : 
    379337        @mkdir -p $(DIRWWW)/man/man1/ 
    380         @mkdir -p $(DIRWWW)/html/sphinx/ 
    381         @mkdir -p $(DIRWWW)/pdf/sphinx/ 
    382         @mkdir -p $(DIRTMP)/sphinx_tmpdir/doctrees/ 
    383         @mkdir -p $(DIRTMP)/sphinx_tmpdir/manuals/ 
    384         @mkdir -p $(DIRTMP)/sphinx_tmpdir/manuals/utilitaires/ 
    385         @mkdir -p $(DIRTMP)/sphinx_tmpdir/manuals/external_matlab/ 
    386         @mkdir -p $(DIRTMP)/sphinx_tmpdir/guides/ 
    387         @mkdir -p $(DIRWWW)/src_browser/ 
    388338        @mkdir -p $(DIRTMP)/demo/ 
    389339        @mkdir -p $(DIRTMP)/test/ 
     
    392342install_all : \ 
    393343install_html \ 
    394 install_pdf \ 
    395 install_browser 
     344install_pdf 
    396345 
    397346install_html : 
     
    401350        @$(DIRADM)/install.sh -w $(DIRWWW)/pdf/ -u $(URLPUBLISH)/pdf/ 
    402351 
    403 install_browser : 
    404         @$(DIRADM)/install.sh -w $(DIRWWW)/src_browser/doxygen/html/ -u $(URLPUBLISH)/src_browser/doxygen/html/ 
    405  
    406352clean : \ 
    407353cleantmp 
     354        cd ../docs/docs_dev/; make clean 
    408355        -@rm -fr $(DIRWWW)/man/ 
    409356        -@rm -fr $(DIRWWW)/html/ 
    410357        -@rm -fr $(DIRWWW)/pdf/ 
    411         -@rm -fr $(DIRWWW)/src_browser/ 
    412358 
    413359 
     
    436382 
    437383all : \ 
    438 man \ 
    439 html_src_browser 
    440  
    441 html_src_browser : \ 
    442 html_src_browser_doxygen 
    443  
    444 man : \ 
    445 man_troff_sphinx 
    446  
    447 man_troff_sphinx : \ 
    448 $(DIRADM)/sphinx/conf.py \ 
    449 $(DIRTMP)/sphinx_tmpdir/index_manuals.rst \ 
    450 $(LIST_INVENTORY) \ 
    451 $(LIST_SRCSH_RST) \ 
    452 $(LIST_SRCPYTHON) \ 
    453 $(LIST_SRCIDL_RST) \ 
    454 $(LIST_SRCMATLAB_RST) \ 
    455 $(LIST_SRCFERRET_RST) 
    456         @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    457         @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
    458         @cp $(LIST_RST_GUIDES) $(DIRTMP)/sphinx_tmpdir/guides/ 
    459         @cp $(LIST_INVENTORY) $(DIRTMP)/sphinx_tmpdir/ 
    460         @sphinx-build -b man -c $(DIRADM)/sphinx \ 
    461             -d $(DIRTMP)/sphinx_tmpdir/doctrees/ \ 
    462             -d $(DIRTMP)/sphinx_tmpdir/doctrees/manuals/ \ 
    463             -w $(DIRTMP)/sphinx_man_troff.log \ 
    464             $(DIRTMP)/sphinx_tmpdir/ \ 
    465             $(DIRWWW)/man/man1/ 
     384all_dev 
     385 
     386all_dev : \ 
     387html_dev \ 
     388pdf_dev \ 
     389man_dev 
    466390 
    467391html : \ 
    468 html_sphinx \ 
    469 html_sphinx_one 
    470  
    471 html_sphinx : \ 
    472 $(DIRADM)/sphinx/conf.py \ 
    473 $(DIRADM)/index.rst \ 
    474 $(DIRADM)/index_guides.rst \ 
    475 $(DIRTMP)/sphinx_tmpdir/index_manuals.rst \ 
    476 $(LIST_INVENTORY) \ 
    477 $(LIST_RST_GUIDES) \ 
    478 $(LIST_SRCSH_RST) \ 
    479 $(LIST_SRCPYTHON) \ 
    480 $(LIST_SRCIDL_RST) \ 
    481 $(LIST_SRCMATLAB_RST) \ 
    482 $(LIST_SRCFERRET_RST) 
    483         @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    484         @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
    485         @cp $(LIST_RST_GUIDES) $(DIRTMP)/sphinx_tmpdir/guides/ 
    486         @cp $(LIST_INVENTORY) $(DIRTMP)/sphinx_tmpdir/ 
    487         @sphinx-build -b html -c $(DIRADM)/sphinx \ 
    488             -d $(DIRTMP)/sphinx_tmpdir/doctrees \ 
    489             -w $(DIRTMP)/sphinx_html.log \ 
    490             $(DIRTMP)/sphinx_tmpdir/ \ 
    491             $(DIRWWW)/html/sphinx/ 
    492  
    493 html_sphinx_one : \ 
    494 $(DIRADM)/sphinx/conf.py \ 
    495 $(DIRADM)/index.rst \ 
    496 $(DIRADM)/index_guides.rst \ 
    497 $(DIRTMP)/sphinx_tmpdir/index_manuals.rst \ 
    498 $(LIST_INVENTORY) \ 
    499 $(LIST_RST_GUIDES) \ 
    500 $(LIST_SRCSH_RST) \ 
    501 $(LIST_SRCPYTHON) \ 
    502 $(LIST_SRCIDL_RST) \ 
    503 $(LIST_SRCMATLAB_RST) \ 
    504 $(LIST_SRCFERRET_RST) 
    505         @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    506         @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
    507         @cp $(LIST_RST_GUIDES) $(DIRTMP)/sphinx_tmpdir/guides/ 
    508         @cp $(LIST_INVENTORY) $(DIRTMP)/sphinx_tmpdir/ 
    509         @sphinx-build -b singlehtml -c $(DIRADM)/sphinx \ 
    510             -d $(DIRTMP)/sphinx_tmpdir/doctrees \ 
    511             -w $(DIRTMP)/sphinx_html_one.log \ 
    512             $(DIRTMP)/sphinx_tmpdir/ \ 
    513             $(DIRWWW)/html/sphinx_one/ 
     392html_dev 
     393 
     394html_dev : 
     395        cd ../docs/docs_dev; make html 
    514396 
    515397pdf : \ 
    516 pdf_sphinx 
    517  
    518 pdf_sphinx : \ 
    519 $(DIRADM)/sphinx/conf.py \ 
    520 $(DIRADM)/index.rst \ 
    521 $(DIRADM)/index_guides.rst \ 
    522 $(DIRTMP)/sphinx_tmpdir/index_manuals.rst \ 
    523 $(LIST_INVENTORY) \ 
    524 $(LIST_RST_GUIDES) \ 
    525 $(LIST_SRCSH_RST) \ 
    526 $(LIST_SRCPYTHON) \ 
    527 $(LIST_SRCIDL_RST) \ 
    528 $(LIST_SRCMATLAB_RST) \ 
    529 $(LIST_SRCFERRET_RST) 
    530         @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    531         @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
    532         @cp $(LIST_RST_GUIDES) $(DIRTMP)/sphinx_tmpdir/guides/ 
    533         @cp $(LIST_INVENTORY) $(DIRTMP)/sphinx_tmpdir/ 
    534         @sphinx-build -b latex -c $(DIRADM)/sphinx \ 
    535             -d $(DIRTMP)/sphinx_tmpdir/doctrees \ 
    536             -w $(DIRTMP)/sphinx_pdf.log \ 
    537             $(DIRTMP)/sphinx_tmpdir/ \ 
    538             $(DIRTMP)/sphinx_tmpdir/latex_output 
    539         cd $(DIRTMP)/sphinx_tmpdir/latex_output/; make all-pdf 
    540         cp $(DIRTMP)/sphinx_tmpdir/latex_output/*.pdf \ 
    541            $(DIRWWW)/pdf/sphinx/ 
    542  
    543 $(DIRTMP)/sphinx_tmpdir/index_manuals.rst : 
    544         @-mkdir $(DIRTMP)/sphinx_tmpdir/ 
    545         @echo ".. _index_manuals:" > $@ 
    546         @echo " " >> $@ 
    547         @echo "$(PRODUCTNAME) manuals" | tr [:print:] = >> $@ 
    548         @echo "$(PRODUCTNAME) manuals" >> $@ 
    549         @echo "$(PRODUCTNAME) manuals" | tr [:print:] = >> $@ 
    550         @echo " " >> $@ 
    551         @echo ".. only:: html" >> $@ 
    552         @echo " " >> $@ 
    553         @echo "   **Download** offline version (\`.pdf <../../pdf/sphinx/$(PRODUCTNAME).pdf>\`__)" >> $@ 
    554         @echo " " >> $@ 
    555         @echo "Shell scripts" >> $@ 
    556         @echo "Shell scripts" | tr [:print:] = >> $@ 
    557         @echo ".. toctree::" >> $@ 
    558         @echo "   :maxdepth: 1" 1>> $@ 
    559         @echo "   :glob:" 1>> $@ 
    560         @echo " " >> $@ 
    561         @for file in $(LIST_SRCSH); \ 
    562         do \ 
    563            echo "   manuals/$$(basename $${file})"; \ 
    564         done >> $@ 
    565         @echo " " >> $@ 
    566         @echo "PYTHON scripts" >> $@ 
    567         @echo "PYTHON scripts" | tr [:print:] = >> $@ 
    568         @echo ".. toctree::" >> $@ 
    569         @echo "   :maxdepth: 1" 1>> $@ 
    570         @echo "   :glob:" 1>> $@ 
    571         @echo " " >> $@ 
    572         @for file in $(LIST_SRCPYTHON); \ 
    573         do \ 
    574            echo "   .. automodule:: src.$$(basename $${file} .py).$$(basename $${file} .py)"; \ 
    575            echo "      :members:"; \ 
    576         done >> $@ 
    577         @echo " " >> $@ 
    578         @echo "IDL scripts" >> $@ 
    579         @echo "IDL scripts" | tr [:print:] = >> $@ 
    580         @echo ".. toctree::" >> $@ 
    581         @echo "   :maxdepth: 1" 1>> $@ 
    582         @echo "   :glob:" 1>> $@ 
    583         @echo " " >> $@ 
    584         @for file in $(LIST_SRCIDL); \ 
    585         do \ 
    586            echo "   manuals/$$(basename $${file})"; \ 
    587         done >> $@ 
    588         @echo " " >> $@ 
    589         @echo "MATLAB scripts" >> $@ 
    590         @echo "MATLAB scripts" | tr [:print:] = >> $@ 
    591         @echo ".. toctree::" >> $@ 
    592         @echo "   :maxdepth: 1" 1>> $@ 
    593         @echo "   :glob:" 1>> $@ 
    594         @echo " " >> $@ 
    595         @for file in $(LIST_SRCMATLAB); \ 
    596         do \ 
    597            echo "   manuals/$$(dirname $${file})/$$(basename $${file})" | sed -e "s+\.\./src/++"; \ 
    598         done >> $@ 
    599         @echo " " >> $@ 
    600         @echo "FERRET scripts" >> $@ 
    601         @echo "FERRET scripts" | tr [:print:] = >> $@ 
    602         @echo ".. toctree::" >> $@ 
    603         @echo "   :maxdepth: 1" 1>> $@ 
    604         @echo "   :glob:" 1>> $@ 
    605         @echo " " >> $@ 
    606         @for file in $(LIST_SRCFERRET); \ 
    607         do \ 
    608            echo "   manuals/$$(basename $${file})"; \ 
    609         done >> $@ 
    610         @echo " " >> $@ 
    611  
    612 html_src_browser_doxygen : \ 
    613         $(DIRWWW)/src_browser/doxygen/ 
    614  
    615 $(DIRWWW)/src_browser/doxygen/ : \ 
    616 $(DIRADM)/Doxyfile_$(PRODUCT) \ 
    617 $(DIRADM)/m2cpp.pl \ 
    618 $(LIST_SRCMATLAB) \ 
    619 $(LIST_SRCFORTRAN) 
    620         @doxygen $< 
    621         @touch $@ 
     398pdf_dev 
     399 
     400pdf_dev : 
     401        cd ../docs/docs_dev; make latexpdf 
     402 
     403man_dev : 
     404        cd ../docs/docs_dev; make man 
    622405 
    623406matlab_demo : \ 
     
    627410$(LIST_SRCMATLAB_TEST) 
    628411 
    629 $(DIRTMP)/sphinx_tmpdir/manuals/%.sh.rst : $(DIRSRC)/%.sh $(DIRADM)/extract_rst.sh 
    630         @$(DIRADM)/extract_rst.sh -i $< -l sh -o $@ 
    631  
    632 $(DIRTMP)/sphinx_tmpdir/manuals/%.pro.rst : $(DIRSRC)/%.pro $(DIRADM)/extract_rst.sh 
    633         @$(DIRADM)/extract_rst.sh -i $< -l IDL -o $@ 
    634  
    635 $(DIRTMP)/sphinx_tmpdir/manuals/%.m.rst : $(DIRSRC)/%.m $(DIRADM)/extract_rst.sh 
    636         @$(DIRADM)/extract_rst.sh -i $< -l matlab -o $@ 
    637  
    638 $(DIRTMP)/sphinx_tmpdir/manuals/utilitaires/%.m.rst : $(DIRSRC)/utilitaires/%.m $(DIRADM)/extract_rst.sh 
    639         @$(DIRADM)/extract_rst.sh -i $< -l matlab -o $@ 
    640  
    641 $(DIRTMP)/sphinx_tmpdir/manuals/external_matlab/%.m.rst : $(DIRSRC)/external_matlab/%.m $(DIRADM)/extract_rst.sh 
    642         @$(DIRADM)/extract_rst.sh -i $< -l matlab -o $@ 
    643  
    644412$(DIRTMP)/demo/%_demo.m : $(DIRSRC)/%.m $(DIRADM)/extract_demoandtest.sh 
    645413        -@$(DIRADM)/extract_demoandtest.sh -i $< -m demo -o $@ 
     
    647415$(DIRTMP)/test/%_test.m : $(DIRSRC)/%.m $(DIRADM)/extract_demoandtest.sh 
    648416        -@$(DIRADM)/extract_demoandtest.sh -i $< -m test -o $@ 
    649  
    650 $(DIRTMP)/sphinx_tmpdir/manuals/%.jnl.rst : $(DIRSRC)/%.jnl  $(DIRADM)/extract_rst.sh 
    651         @$(DIRADM)/extract_rst.sh -i $< -l ferret -o $@ 
    652417 
    653418$(DIRDESIGN)/images/%.png : $(DIRDESIGN)/images/%.svg 
  • trunk/docs/docs_dev/Makefile

    r516 r517  
    22# 
    33# .. _Makefile: 
     4# 
    45# ======== 
    56# Makefile 
     
    1011# 
    1112# Makefile for Sphinx documentation 
    12 #  
     13# 
    1314# SEE ALSO 
    1415# ======== 
     
    1718# 
    1819# :ref:`makefile_non_sphinx` 
    19 #  
     20# 
    2021# TODO 
    2122# ==== 
    2223# 
    23 # moins bourrin dans l'usage de makefile_non_sphinx et la génération du  
     24# moins bourrin dans l'usage de makefile_non_sphinx et la génération du 
    2425# logo 
    2526# 
    2627# update whith new sphinx backend 
    27 #  
     28# 
    2829# EVOLUTIONS 
    2930# ========== 
    30 #  
     31# 
    3132# $Id: Makefile 30 2012-03-13 10:53:33Z pinsard $ 
    3233# 
    3334# $URL: svn+ssh://pinsard@forge.ipsl.jussieu.fr/ipsl/forge/projets/fptools/svn/trunk/docs/docs_dev/Makefile $ 
    34 #  
     35# 
    3536# - fplod 20120413T082638Z cratos (Linux) 
    36 #    
     37# 
    3738#   * add header 
    3839#- 
  • trunk/docs/docs_dev/makefile_non_sphinx

    r516 r517  
    1919# :ref:`Makefile` 
    2020# 
    21 # :ref:`extract_rst.sh` 
     21# :ref:`extract_rst.sh <fptools:extract_rst.sh>` 
    2222# 
    2323# :ref:`for_doc.sh` 
     
    207207# 
    208208#   * add man_troff which shell script possible now with docutils 0.6 
    209 #     can be test with 
    210 #      $ man -M ../doc/manuals/man varamma_profile.sh 
     209#     can be test with:: 
     210# 
     211#      man -M ../doc/manuals/man varamma_profile.sh 
    211212# 
    212213# - fplod 2009-05-15T13:26:19Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    285286$(shell echo "$(LIST_SRCMATLAB)" | \ 
    286287        sed \ 
    287             -e "s+../../utilitaires+source/manuals/utilitaires+g" \ 
     288            -e "s+../../src/utilitaires+source/manuals/+g" \ 
    288289            -e "s+../../src/+source/manuals/+g" \ 
    289290            -e "s+\.m+.m.rst+g") 
     
    366367        @extract_rst.sh -i $< -l matlab -o $@ 
    367368 
    368 source/manuals/utilitaires/%.m.rst : ../../src/utilitaires/%.m 
     369source/manuals/%.m.rst : ../../src/utilitaires/%.m 
    369370        @extract_rst.sh -i $< -l matlab -o $@ 
    370371 
  • trunk/docs/docs_dev/source/conf.py

    r516 r517  
    9494# General information about the project. 
    9595project = u'VARAMMA' 
    96 copyright = u'2011,2012, CNRS' 
     96copyright = u'2008, 2009, 2010, 2011, 2012, CNRS' 
    9797 
    9898# The version info for the project you're documenting, acts as replacement for 
     
    283283 
    284284# intersphinx with saxo 
    285 intersphinx_mapping = {'saxo': ('http://forge.ipsl.jussieu.fr/saxo/download/idldoc_html_output/','saxo.inv')} 
     285intersphinx_mapping = {'saxo': ('http://forge.ipsl.jussieu.fr/saxo/download/idldoc_html_output/','saxo.inv'), 
     286                'fptools' : ('http://www.locean-ipsl.upmc.fr/~fplod/fptools/fptools_ws/doc/html/', None)} 
  • trunk/docs/docs_dev/source/guides/builddoc.rst

    r443 r517  
    4343~~~~~~~~~~~~~~~~~~~~~~~ 
    4444La documentation est construite à partir des fichiers ReStructuredText_  
    45 dans :file:`${VARAMMA}/adm/` et des commentaires dans les sources  
    46 sous :file:`${VARAMMA}/src/`. 
     45dans :file:`${PROJECT}/adm/` et des commentaires dans les sources  
     46sous :file:`${PROJECT}/src/`. 
    4747 
    4848.. _ReStructuredText: http://docutils.sourceforge.net/rst.html 
     
    5757 $ make clean 
    5858 $ make before 
    59  $ make html_sphinx 
     59 $ make html_dev 
    6060 
    6161et regarder le résultat dans :file:`../doc/html/sphinx/index.html`. 
  • trunk/docs/docs_dev/source/index_guides.rst

    r516 r517  
    4444   guides/coding_rules 
    4545   guides/rundemotest 
     46   guides/builddoc 
    4647   guides/using 
    4748   guides/contributing 
     49   guides/svnbasiccommands 
     50   guides/contact 
  • trunk/src/extract_amsuab.pro

    r514 r517  
    113113; 
    114114;   * introduction du parametre "descending" (orbite descendante 1, 
    115 ;   montante 0) dans le fichier de sortie : a tester! 
     115;     montante 0) dans le fichier de sortie : a tester! 
    116116; 
    117117; - fplod 20110818T160435Z aedon.locean-ipsl.upmc.fr (Darwin) 
  • trunk/src/mem_to_file_amsu_t2.pro

    r514 r517  
    11;+ 
    22; 
    3 ; .. _mem_to_file_amsu_t2: 
     3; .. _mem_to_file_amsu_t2.pro: 
    44; 
    55; ======================= 
  • trunk/src/plot_cartes3B42.m

    r502 r517  
    22 
    33%+ 
     4% _plot_cartes3B42.m: 
     5% 
     6% ================= 
     7% plot_cartes3B42.m 
     8% ================= 
     9% 
    410%- 
    511 
  • trunk/src/plot_clim3B42.m

    r502 r517  
    22 
    33%+ 
     4% _plot_clim3B42.m: 
     5% 
     6% =============== 
     7% plot_clim3B42.m 
     8% =============== 
     9% 
    410%- 
    511 
  • trunk/src/precipPlot.m

    r370 r517  
    1515% This zip file contains Excel files. Some have been converted in CSV. 
    1616% 
    17 % +todo+ :ref:`pre_precip.sh` 
     17% +todo+ pre_precip.sh 
    1818% 
    1919% This file in mainly a serie of exercices for Soukèyé Cisse to learn octave. 
  • trunk/src/run_traite_amsuab.sh

    r501 r517  
    2828# .. option:: -numch <channel> 
    2929# 
    30 # lancement de :ref:`trait_amsuab.sh` en batch 
     30# lancement de :ref:`traite_amsuab.sh` en batch 
    3131# 
    3232# Job stderr is in the working directory :file:`run_traite_amsuab.e{xxxxx}`, stdout is in :file:`run_traite_amsuab.o{xxxxx}` 
    3333# 
    34 # Log file of :ref:`trait_amsuab.sh` is written on 
     34# Log file of :ref:`traite_amsuab.sh` is written on 
    3535# :file:`${PROJECT_LOG}/traite_amsuab.log.{YYYYMMDDTHHMMSSZ}` 
    3636# 
  • trunk/src/simul_zi.py

    r377 r517  
    1  #!/usr/bin/env python 
     1#!/usr/bin/env python 
    22# -*- coding: iso-8859-1 -*- 
    33 
Note: See TracChangeset for help on using the changeset viewer.