Changeset 7607
- Timestamp:
- Jan 13, 2010, 12:14:38 PM (15 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/documentation/user_manual/anuga_whats_new.tex
r7604 r7607 87 87 88 88 89 \section{Release Name: anuga-1.1beta\_760 4, Date: 7January 2010}89 \section{Release Name: anuga-1.1beta\_7607, Date: 12 January 2010} 90 90 Discarded obsolete variable 'z' in sww files. This commits ANUGA to the 91 91 new viewer: \url{http://www.ausposdevelop.com.au/trac/anuga_viewer}. -
create_distribution.py
r7513 r7607 121 121 122 122 123 124 125 #---------------------------------------------- 126 # Compile and bundle up the LaTeX documentation 127 #---------------------------------------------- 128 print 129 print lsep 130 print 'Preparing User Manual (see update_anuga_user_manual.log)' 131 print lsep 132 s = 'cd anuga_core/documentation/user_manual;' 133 s += 'python update_anuga_user_manual.py --no_html' 134 print s 135 system(s + ' 1>update_anuga_user_manual.log 2>/dev/null') 136 137 # Copy to distro_dir to become part of one tarball 138 release_name = 'anuga_user_manual-%s.pdf' % revision 139 s = '/bin/mv anuga_core/documentation/user_manual/anuga_user_manual.pdf %s/%s'\ 140 %(distro_dir, release_name) 141 print s 142 system(s) 143 144 release_name = 'anuga_installation_guide-%s.pdf' % revision 145 s = '/bin/mv anuga_core/documentation/user_manual/anuga_installation_guide.pdf %s/%s' %(distro_dir, release_name) 146 print s 147 system(s) 148 149 release_name = 'anuga_whats_new-%s.pdf' % revision 150 s = '/bin/mv anuga_core/documentation/user_manual/anuga_whats_new.pdf %s/%s' %(distro_dir, release_name) 151 print s 152 system(s) 153 154 155 156 157 158 159 123 160 #------------------ 124 161 # Zip everything up … … 227 264 print 'NSI installer created' 228 265 229 230 #----------------------------------------------231 # Compile and bundle up the LaTeX documentation232 #----------------------------------------------233 print234 print lsep235 print 'Preparing User Manual (see update_anuga_user_manual.log)'236 print lsep237 s = 'cd anuga_core/documentation/user_manual;'238 s += 'python update_anuga_user_manual.py --no_html'239 print s240 system(s + ' 1>update_anuga_user_manual.log 2>/dev/null')241 242 release_name = 'anuga_user_manual-%s.pdf' %revision243 s = '/bin/mv anuga_core/documentation/user_manual/anuga_user_manual.pdf %s/%s'\244 %(release_dir, release_name)245 print s246 system(s)247 248 release_name = 'anuga_installation_guide-%s.pdf' %revision249 s = '/bin/mv anuga_core/documentation/user_manual/anuga_installation_guide.pdf %s/%s' %(release_dir, release_name)250 print s251 system(s)252 253 release_name = 'anuga_whats_new-%s.pdf' %revision254 s = '/bin/mv anuga_core/documentation/user_manual/anuga_whats_new.pdf %s/%s' %(release_dir, release_name)255 print s256 system(s)257 266 258 267
Note: See TracChangeset
for help on using the changeset viewer.