Changeset 746


Ignore:
Timestamp:
Aug 18, 2011 9:14:48 PM (13 years ago)
Author:
letzel
Message:
  • 'wiki' inserted into weblink path to error message database (message)
  • support for Linux OS with German locale (mrun)
  • properly report hosts on general Linux clusters (mrun)
Location:
palm/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mrun

    r741 r746  
    226226     # 17/08/11 - Siggi  - extensions for impi library
    227227     # 18/08/11 - Siggi  - bugfix for local append of output files with suffix (.nc)
     228     # 18/08/11 - Marcus - support for Linux OS with German locale
     229     #                   - properly report hosts on general Linux clusters
    228230
    229231
     
    13031305       # PRUEFEN AUF VORHANDENSEIN
    13041306    if [[ $(ls $filename* 2>&1 | grep -c "not found") = 1  || \
     1307          $(ls $filename* 2>&1 | grep -c "nicht gefunden") = 1  || \
    13051308          $(ls $filename* 2>&1 | grep -c "No such file") = 1  || \
    13061309          $(ls $filename* 2>&1 | grep -c "does not exist") = 1 ]]
     
    14151418       eval catalogname=${pathout[$i]}
    14161419       if [[ $(ls $filename* 2>&1 | grep -c "not found") = 1  || \
     1420             $(ls $filename* 2>&1 | grep -c "nicht gefunden") = 1  || \
    14171421             $(ls $filename* 2>&1 | grep -c "No such file") = 1  || \
    14181422             $(ls $filename* 2>&1 | grep -c "does not exist") = 1 ]]
     
    32893293                then
    32903294                   cp  $hostfile  hostfile
     3295                   (( ii = $numprocs / $threads_per_task ))
    32913296                else
    32923297                   (( ii = 1 ))
  • palm/trunk/SOURCE/message.f90

    r563 r746  
    55! Current revisions:
    66! -----------------
    7 ! Weblink to error message database changed to new trac server
     7! 'wiki' inserted into weblink path to error message database
     8!
    89!
    910! Former revisions:
    1011! -----------------
    1112! $Id$
     13!
     14! 563 2010-09-30 13:08:44Z raasch
     15! Weblink to error message database changed to new trac server
    1216!
    1317! 213 2008-11-13 10:26:18Z raasch
     
    6468    information_string_1 = 'Further information can be found at'
    6569    IF(message_identifier(1:2) == 'NC') THEN
    66        information_string_2 = 'http://palm.muk.uni-hannover.de/doc' // &
     70       information_string_2 = 'http://palm.muk.uni-hannover.de/wiki/doc' // &
    6771                              '/app/errmsg#NC'
    6872    ELSE
    69        information_string_2 = 'http://palm.muk.uni-hannover.de/doc' // &
     73       information_string_2 = 'http://palm.muk.uni-hannover.de/wiki/doc' // &
    7074                              '/app/errmsg#' // message_identifier
    7175    END IF
Note: See TracChangeset for help on using the changeset viewer.