Changeset 3934
- Timestamp:
- Nov 7, 2006, 4:46:20 PM (18 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/documentation/user_manual/anuga_installation_guide.tex
r3921 r3934 62 62 \begin{itemize} 63 63 \item Enthought version of Python2.4: \url{http://code.enthought.com/enthon/}. 64 \item Scientific Python: \url{http://sourcesup.cru.fr/frs/download.php/745/ScientificPython-2.4.9.win32-py2.4.exe} 64 \item Scientific Python:\\ 65 \url{http://sourcesup.cru.fr/frs/download.php/745/ScientificPython-2.4.9.win32-py2.4.exe} 65 66 \item NETCDF \url{ftp://ftp.unidata.ucar.edu/pub/netcdf/contrib/win32/netcdf-3.6.1-beta1-win32dll.zip} 66 67 \end{itemize} … … 109 110 To verify that the installed version of ANUGA validates satisfactorily 110 111 against the Okushiri Island wave tank validation dataset 111 (\url{http://www.cee.cornell.edu/longwave /index.cfm?page=benchmark&problem=2})112 (\url{http://www.cee.cornell.edu/longwave}) 112 113 unpack the distribution (\code{anuga_validation_1.0_xxxx.tgz}) into 113 114 any directory and run the scripts \code{create_okushiri.py}, -
anuga_core/documentation/user_manual/update_anuga_user_manual.py
r3923 r3934 54 54 # Compile with LaTeX, makeindex etc 55 55 for i in range(3): 56 # os.system('latex --interaction=nonstopmode %s.tex' %texfile)57 os.system('pdflatex --interaction=nonstopmode %s.tex' %texfile)58 os.system('makeindex %s.idx' %texfile)59 os.system('makeindex mod%s.idx' %texfile)60 os.system('bibtex %s' %texfile)56 #system('latex --interaction=nonstopmode %s.tex' %texfile) 57 system('pdflatex --interaction=nonstopmode %s.tex' %texfile) 58 system('makeindex %s.idx' %texfile) 59 system('makeindex mod%s.idx' %texfile) 60 system('bibtex %s' %texfile) 61 61 62 62 # Create pdf file 63 # os.system('dvips %s -o %s.ps' %((texfile,)*2))64 # os.system('ps2pdf %s.ps' %texfile)63 #system('dvips %s -o %s.ps' %((texfile,)*2)) 64 #system('ps2pdf %s.ps' %texfile) 65 65 66 66 # Create html pages -
create_distribution.py
r3922 r3934 33 33 last_line = fid.readlines()[-1] 34 34 remove(filename) 35 if not last_line.startswith('At revision'): 35 if not (last_line.startswith('At revision') or\ 36 last_line.startswith('Updated to revision')): 36 37 msg = 'Unexpected output from svn up: %s' %last_line 37 38 raise Exception, msg 38 39 39 svn_revision = last_line[12:-2] 40 fields = last_line.split() 41 svn_revision = fields[-1][:-1] 40 42 41 43 revision = '%s_%s' %(major_revision, svn_revision) 44 45 print 'Creating ANUGA revision %s' %revision 42 46 43 47 distro_filename = 'anuga-%s.tgz' %revision … … 145 149 print 'The release files are in %s:' %release_dir 146 150 system('ls -la %s' %release_dir) 151 152 153 154 #---------------------------- 155 # Throw away code to drop all files into the RAMP download area 156 # This is hardwired for Ole 157 158 system('scp %s/*.tgz onielsen@cyclone:/d/cit/1/cit/risk_assessment_methods_project/downloads/ANUGA_install/anuga' %release_dir) 159 160 system('scp %s/*.pdf onielsen@cyclone:/d/cit/1/cit/risk_assessment_methods_project/downloads/ANUGA_install' %release_dir)
Note: See TracChangeset
for help on using the changeset viewer.