Changeset 17211


Ignore:
Timestamp:
02/04/14 16:11:55 (11 years ago)
Author:
jbondzio
Message:

minor: partial correction of revert

Location:
issm/trunk-jpl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/ipython/install.sh

    r17210 r17211  
    77mkdir src
    88
    9 if [ ! -f ipython-1.0.0.tar.gz ]; then
    10         #Download from ISSM server
    11         $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/ipython-1.0.0.tar.gz' 'ipython-1.0.0.tar.gz'
    12 fi
     9#Download from ISSM server
     10$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/ipython-1.0.0.tar.gz' 'ipython-1.0.0.tar.gz'
    1311
    1412#Untar
  • issm/trunk-jpl/externalpackages/matplotlib/install-linux64.sh

    r17210 r17211  
    88export FFLAGS=-ff2c
    99
    10 if [ ! -d src ]; then
    11         git clone https://github.com/matplotlib/matplotlib
    12         mv matplotlib src
    13 fi
     10git clone https://github.com/matplotlib/matplotlib
     11mv matplotlib src
    1412cd src
    1513python setup.py build
  • issm/trunk-jpl/externalpackages/vim/addons/vimrc

    r17210 r17211  
    100100
    101101" save & "make" the current file in all modes
    102 map <F6> :w <Enter> :make <Enter><Enter>
    103 map! <F6>  <ESC> :w <Enter> :make <Enter><Enter>
     102map <F8> :w <Enter> :make <Enter><Enter>
     103map! <F8>  <ESC> :w <Enter> :make <Enter><Enter>
    104104" make update: nice for longer documents
    105 map <F5> :w <Enter> :make update <Enter><Enter>
    106 map! <F5> <ESC> :w <Enter> :make update <Enter><Enter>
    107 
    108 " switch between tabs
    109 nmap <F7> :tabp <CR>
    110 nmap <F8> :tabn <CR>
     105map <F7> :w <Enter> :make update <Enter><Enter>
     106map! <F7> <ESC> :w <Enter> :make update <Enter><Enter>
    111107
    112108
     
    145141  autocmd BufWritePost   *.sh         !chmod +x %
    146142
    147         " Commenting blocks of code.
    148         autocmd FileType c,cpp,java,scala let b:comment_leader = '// '
    149         autocmd FileType sh,ruby,python   let b:comment_leader = '# '
    150         autocmd FileType conf,fstab       let b:comment_leader = '# '
    151         autocmd FileType tex              let b:comment_leader = '% '
    152         autocmd FileType mail             let b:comment_leader = '> '
    153         autocmd FileType vim              let b:comment_leader = '" '
    154         noremap <silent> ,cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR>
    155         noremap <silent> ,cu :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR>
    156143endif " has("autocmd")
    157144" ----------------------------------------------------------------------}}}
  • issm/trunk-jpl/src/c/analyses/EnthalpyAnalysis.cpp

    r17210 r17211  
    826826        int solution_type, i;
    827827        bool computebasalmeltingrates=true;
    828         bool isdrainage=false;
     828        bool isdrainage=true;
    829829        bool updatebasalconstraints=true;
    830830
Note: See TracChangeset for help on using the changeset viewer.