Changeset 7607


Ignore:
Timestamp:
Jan 13, 2010, 12:14:38 PM (15 years ago)
Author:
ole
Message:

Added manuals into release tarball

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/documentation/user_manual/anuga_whats_new.tex

    r7604 r7607  
    8787
    8888
    89 \section{Release Name: anuga-1.1beta\_7604, Date: 7 January 2010}
     89\section{Release Name: anuga-1.1beta\_7607, Date: 12 January 2010}
    9090Discarded obsolete variable 'z' in sww files. This commits ANUGA to the
    9191new viewer: \url{http://www.ausposdevelop.com.au/trac/anuga_viewer}.
  • create_distribution.py

    r7513 r7607  
    121121
    122122
     123   
     124
     125#----------------------------------------------
     126# Compile and bundle up the LaTeX documentation
     127#----------------------------------------------
     128print
     129print lsep
     130print 'Preparing User Manual (see update_anuga_user_manual.log)'
     131print lsep
     132s = 'cd anuga_core/documentation/user_manual;'
     133s += 'python update_anuga_user_manual.py --no_html'
     134print s
     135system(s + ' 1>update_anuga_user_manual.log 2>/dev/null')
     136
     137# Copy to distro_dir to become part of one tarball
     138release_name = 'anuga_user_manual-%s.pdf' % revision
     139s = '/bin/mv anuga_core/documentation/user_manual/anuga_user_manual.pdf %s/%s'\
     140    %(distro_dir, release_name)
     141print s
     142system(s)
     143
     144release_name = 'anuga_installation_guide-%s.pdf' % revision
     145s = '/bin/mv anuga_core/documentation/user_manual/anuga_installation_guide.pdf %s/%s' %(distro_dir, release_name)   
     146print s
     147system(s)
     148
     149release_name = 'anuga_whats_new-%s.pdf' % revision
     150s = '/bin/mv anuga_core/documentation/user_manual/anuga_whats_new.pdf %s/%s' %(distro_dir, release_name)   
     151print s
     152system(s)
     153   
     154   
     155   
     156   
     157   
     158   
     159   
    123160#------------------
    124161# Zip everything up
     
    227264print 'NSI installer created'
    228265
    229 
    230 #----------------------------------------------
    231 # Compile and bundle up the LaTeX documentation
    232 #----------------------------------------------
    233 print
    234 print lsep
    235 print 'Preparing User Manual (see update_anuga_user_manual.log)'
    236 print lsep
    237 s = 'cd anuga_core/documentation/user_manual;'
    238 s += 'python update_anuga_user_manual.py --no_html'
    239 print s
    240 system(s + ' 1>update_anuga_user_manual.log 2>/dev/null')
    241 
    242 release_name = 'anuga_user_manual-%s.pdf' %revision
    243 s = '/bin/mv anuga_core/documentation/user_manual/anuga_user_manual.pdf %s/%s'\
    244     %(release_dir, release_name)
    245 print s
    246 system(s)
    247 
    248 release_name = 'anuga_installation_guide-%s.pdf' %revision
    249 s = '/bin/mv anuga_core/documentation/user_manual/anuga_installation_guide.pdf %s/%s' %(release_dir, release_name)   
    250 print s
    251 system(s)
    252 
    253 release_name = 'anuga_whats_new-%s.pdf' %revision
    254 s = '/bin/mv anuga_core/documentation/user_manual/anuga_whats_new.pdf %s/%s' %(release_dir, release_name)   
    255 print s
    256 system(s)
    257266
    258267
Note: See TracChangeset for help on using the changeset viewer.