Changeset 14


Ignore:
Timestamp:
11/05/15 16:01:48 (9 years ago)
Author:
pinsard
Message:

complete supplemental dictionaries; add recipe to locate true positive typo

Location:
trunk/docs/manual
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/manual/for_typo/bash.txt

    r9 r14  
     1esac 
     2elif 
     3eq 
     4printf 
     5rsync 
     6rsh 
    17awk 
    28Bourne 
  • trunk/docs/manual/for_typo/chemicals.txt

    r9 r14  
    55CH4 
    66O2 
    7 NO2CFC11 
     7NO2 
     8CFC11 
    89CFC12 
  • trunk/docs/manual/for_typo/institution.txt

    r13 r14  
    1212cines 
    1313cnrs 
     14Scientifique 
    1415ecmwf 
    1516esgf 
  • trunk/docs/manual/for_typo/logins.txt

    r13 r14  
    99p86maf 
    1010ryyy999 
     11rpsl035 
     12rpslxxx 
     13ryyy999@ada 
     14ryyy999@curie 
     15ryyy999@ergon 
  • trunk/docs/manual/source/developers/guides/typo.rst

    r12 r14  
    256256   find ${dirpdf} -type f -name "*.pdf.txt" -exec grep -Hi ${w} {} \; 
    257257 
     258Here is how to identify files to be corrected according of a list of identified true positive typo. 
     259 
     260First create a fils with true positive typo :file:`${PROJECT}/log/truepositive.txt`. 
     261You may add a comment (`#` at the end of the line to suggest modification. 
     262 
     263.. code-block:: bash 
     264 
     265   true_positive=$(sed -e "s/ #.*$//" ${PROJECT_LOG}/truepositive.txt) 
     266   for one_word in ${true_positive} 
     267   do 
     268       echo "look for ${one_word}" 
     269       grep ${one_word} ${dirpdf}/*.pdf.txt 
     270   done 
     271 
    258272Check typo in :file:`libIGCM` source files 
    259273++++++++++++++++++++++++++++++++++++++++++ 
     
    268282 
    269283   cd ${PROJECT_LOG} 
    270    listf=$(find ${MODIPSL} -path '*/.svn' -prune -o -type f) 
     284   listf=$(find ${MODIPSL} -path '*/.svn' -prune -o -type f -print) 
    271285   hunspell_out=${PROJECT_LOG}/hunspell_out 
    272286   hunspell_out_uniq=${PROJECT_LOG}/hunspell_out_uniq 
Note: See TracChangeset for help on using the changeset viewer.