Changeset 1305
- Timestamp:
- 11/29/06 12:02:15 (18 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r1295 r1305 1 PREFIX := /Library/Frameworks/Python.framework/Versions/2.42 PYDIR := $(PREFIX)/lib/python2.4/site-packages3 4 1 ifndef ASAPROOT 5 2 ASAPROOT := $(shell pwd) 6 3 endif 7 4 5 PREFIX := /Library/Frameworks/Python.framework/Versions/2.4 6 PYDIR := $(PREFIX)/lib/python2.4/site-packages 7 8 8 9 PY := $(wildcard python/*.py) 9 LIBS := /tmp/_asap.so10 LIBS := src/_asap.so 10 11 BINS := bin/asap 11 12 -
trunk/SConstruct
r1280 r1305 79 79 env = conf.Finish() 80 80 81 env["version"] = "2.1.1 b"81 env["version"] = "2.1.1" 82 82 83 83 # general CPPFLAGS -
trunk/doc/CHANGELOG
r1295 r1305 2 2 ========= 3 3 4 Minor Release 2.1.1 [ ]4 Minor Release 2.1.1 [2006-11-09] 5 5 6 6 * fix for Ticket #88 - numpy masks … … 9 9 * ticket #64 - speed up of auto_poly_baseline 10 10 * fix for ticket #89 - export of IF sub-selections 11 * fix for Ticket #83 - export to ms2 crashed asap 12 * added file suffix support for name.rpf.1 etc. 11 13 12 14 Release Version 2.1.0 [2006-09-11] -
trunk/python/__init__.py
r1295 r1305 358 358 359 359 __date__ = '$Date$'.split()[1] 360 __version__ = '2.1.1 b'360 __version__ = '2.1.1' 361 361 362 362 def is_ipython(): -
trunk/src/STWriter.cpp
r1295 r1305 124 124 Vector<Bool> havexpol(nIF); 125 125 nPol = 0;nChan = 0; havexpol = False; 126 for ( int i=0;i<ifs.size();++i) {126 for (uint i=0;i<ifs.size();++i) { 127 127 nPol(ifs[i]) = in->npol(); 128 128 nChan(ifs[i]) = in->nchan(ifs[i]); -
trunk/web/index.html
r1295 r1305 71 71 <b class="asap">ASAP</b> project tracking page</a>. Please also check if the defect has already been submitted under 72 72 <a href="http://sourcecode.atnf.csiro.au/cgi-bin/trac_asap.cgi/report/1">current tickets</a>. 73 73 If the trac system tells you that your submission has been considered spam, please log in with the username "bugs" and password "mops". 74 74 75 75 <h2>Documentation</h2> … … 118 118 <li><b class="asap">ASAP</b> source code is available through our subversion repository 119 119 <pre> 120 svn co http://sourcecode.atnf.csiro.au/repos/asap/tags/ Release2.1.1asap2.1.1120 svn co http://sourcecode.atnf.csiro.au/repos/asap/tags/asap2.1.1 121 121 </pre> 122 122 </li>
Note:
See TracChangeset
for help on using the changeset viewer.