JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for STARDEV Archives


STARDEV Archives

STARDEV Archives


STARDEV@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

STARDEV Home

STARDEV Home

STARDEV  July 2009

STARDEV July 2009

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Recent repository commits

From:

Tim Jenness <[log in to unmask]>

Reply-To:

Starlink development <[log in to unmask]>

Date:

Thu, 2 Jul 2009 05:00:49 +0100

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (242 lines)

Commit summary from repository starlink
------------------------------------

  (Tim Jenness) mers: Do not rely on errno when testing result of strtod
   100.0% libraries/mers/
  
  (Tim Jenness) perlmods: Use ExtUtils::Constant in NDF module
   100.0% perlmods/Starlink/NDF/
  
  (Tim Jenness) perlmods: Simplify the AUTOLOAD code in NDF to stop it calling AutoLoader
   100.0% perlmods/Starlink/NDF/
  
  (Tim Jenness) perlmods: No need to ship private ExtUtils::F77 with NDF
    99.8% perlmods/Starlink/NDF/ExtUtils/
  
  (Tim Jenness) perlmods: Add new NDG API to NDF perl module
   100.0% perlmods/Starlink/NDF/
  
  (Tim Jenness) perlmods: Factor out string array to AST object conversion in NDF.xs
   100.0% perlmods/Starlink/NDF/
  
  (Malcolm J. Currie) CONVERT: Improve the formatting of history records written to the NDF.
   100.0% applications/convert/libcof/
  
  (Peter W. Draper) gaia: add prefix control for names of baselined cubes
    95.3% applications/gaia/gaia/library/
     4.6% applications/gaia/
  
  (David Berry) smurf: Speed up timesort
    86.2% applications/smurf/libsmf/
    13.7% applications/smurf/libsmurf/
  
  (David Berry) smurf: Fix memory leak in timesort
  
  (Peter W. Draper) gaia: add mask invert option for images and Go menu
    17.7% applications/gaia/gaia/generic/
    82.2% applications/gaia/gaia/library/
  
  (Peter W. Draper) dummy
   100.0% applications/gaia/gaia.htx/
  
  (David Berry) ast: Retain any original error status in astFlushMemory
   100.0% libraries/ast/
  
  (Tim Jenness) atl: atl_mgfts was removing non-blank cards by mistake
   100.0% libraries/atl/
  
  (Tim Jenness) ast: Add some consting to fix some compiler warnings
   100.0% libraries/ast/
  
  (Tim Jenness) ast: undef is an allowed card_type
   100.0% libraries/ast/
 

Commits from repository starlink
-----------------------------

  commit c9d354fc86507e2cccf38030e4018900b166a0ac
  Author: Tim Jenness <[log in to unmask]>
  Date:   Wed Jul 1 16:32:53 2009 -1000
  
      mers: Do not rely on errno when testing result of strtod
  
   libraries/mers/mers1Getenv.c |   38 +++++++++++++++++---------------------
   1 files changed, 17 insertions(+), 21 deletions(-)
  
  commit 74f6bdbc90519cb9f7f375011cf4614498214b3b
  Author: Tim Jenness <[log in to unmask]>
  Date:   Wed Jul 1 15:57:17 2009 -1000
  
      perlmods: Use ExtUtils::Constant in NDF module
      
      Dynamically generate constant code rather than having it all
      hand written.
  
   .gitignore                        |    1 +
   perlmods/Starlink/NDF/Makefile.PL |   38 ++++++++++
   perlmods/Starlink/NDF/NDF.xs      |  136 ++---------------------------------
   3 files changed, 44 insertions(+), 131 deletions(-)
  
  commit ebce19ffbb9e98b4c146bd41f37fa5c7306773d6
  Author: Tim Jenness <[log in to unmask]>
  Date:   Wed Jul 1 15:55:39 2009 -1000
  
      perlmods: Simplify the AUTOLOAD code in NDF to stop it calling AutoLoader
      
      Before if it could not find a function it would call AutoLoader which
      would attempt to dynamically load it from some other file (eg .al).
      This is never the right thing to do for the NDF module since it
      does not actually try to dynamically load anything other than
      Constants.
  
   perlmods/Starlink/NDF/NDF.pm |   30 ++++++++++--------------------
   1 files changed, 10 insertions(+), 20 deletions(-)
  
  commit 090740f992fd5059a1d99f5c6fcd880ad8501ea4
  Author: Tim Jenness <[log in to unmask]>
  Date:   Wed Jul 1 15:49:36 2009 -1000
  
      perlmods: No need to ship private ExtUtils::F77 with NDF
  
   perlmods/Starlink/NDF/ExtUtils/F77.pm |  534 -------------------------------
   perlmods/Starlink/NDF/MANIFEST        |    1 -
   2 files changed, 0 insertions(+), 535 deletions(-)
  
  commit a0fc567e679b404c74ba13af853e006adcda0e95
  Author: Tim Jenness <[log in to unmask]>
  Date:   Wed Jul 1 12:58:01 2009 -1000
  
      perlmods: Add new NDG API to NDF perl module
      
      Old API removed. New API is now object-oriented.
  
   perlmods/Starlink/NDF/NDF.pm  |   52 +++++++----
   perlmods/Starlink/NDF/NDF.xs  |  198 +++++++++++++++++++++-----------------
   perlmods/Starlink/NDF/typemap |    1 +
   3 files changed, 144 insertions(+), 107 deletions(-)
  
  commit bec877df16e2aefa7c7cfb92d00fac0f7d545f63
  Author: Tim Jenness <[log in to unmask]>
  Date:   Wed Jul 1 12:56:54 2009 -1000
  
      perlmods: Factor out string array to AST object conversion in NDF.xs
  
   perlmods/Starlink/NDF/NDF.xs |   45 ++++++++++++++++++++++++----------------
   1 files changed, 27 insertions(+), 18 deletions(-)
  
  commit 3154f4c5771cddce85a655f0457b25f0c95530e0
  Author: Malcolm J. Currie <[log in to unmask]>
  Date:   Wed Jul 1 22:02:07 2009 +0100
  
      CONVERT: Improve the formatting of history records written to the NDF.
      
      The indentation after headings in history records written by FITS2NDF
      were wrong.  These are now indented by three characters to replicate
      the original history after a NDF->FITS->NDF cycle.  Headings after the
      first heading formed part of the paragraph; they now start on a new
      line as provided by the NDF library.  At present it assumes the
      headings are "Arguments:", "Parameters:", and "Software:".
  
   applications/convert/libcof/cof_chisr.f |   71 +++++++++++++++++++++++++++-
   1 files changed, 68 insertions(+), 3 deletions(-)
  
  commit 66c80e51d7604faf85b38d58ff3be5fa12de2df2
  Author: Peter W. Draper <[log in to unmask]>
  Date:   Wed Jul 1 17:08:01 2009 +0100
  
      gaia: add prefix control for names of baselined cubes
  
   applications/gaia/gaia.news                        |    3 ++
   .../gaia/gaia/library/GaiaCubeBaseline.tcl         |   31 ++++++++++++++++-
   2 files changed, 32 insertions(+), 2 deletions(-)
  
  commit 8e91dc899be506dea83095d0934a335b16412aff
  Author: David Berry <[log in to unmask]>
  Date:   Wed Jul 1 16:48:34 2009 +0100
  
      smurf: Speed up timesort
  
   applications/smurf/libsmf/smf.h.source       |    5 +-
   applications/smurf/libsmf/smf_kmmerge.c      |  259 ++++++++++++++++--------
   applications/smurf/libsmurf/smurf_timesort.c |   67 ++++---
   3 files changed, 222 insertions(+), 109 deletions(-)
  
  commit 9dde0ce31d6b65842c7d0274696d40b5f094a2ff
  Author: David Berry <[log in to unmask]>
  Date:   Wed Jul 1 15:14:43 2009 +0100
  
      smurf: Fix memory leak in timesort
  
   applications/smurf/libsmurf/smurf_timesort.c |    1 +
   1 files changed, 1 insertions(+), 0 deletions(-)
  
  commit 94cb462f22665f49ef37599d790ed058f4c49a47
  Author: Peter W. Draper <[log in to unmask]>
  Date:   Wed Jul 1 14:33:48 2009 +0100
  
      gaia: add mask invert option for images and Go menu
      
      Shows parts of image not in mask, useful for seeing what wasn't detected
  
   applications/gaia/gaia/generic/GaiaArray.C         |   67 ++++--
   .../{GaiaCubeHistory.tcl => GaiaHistory.tcl}       |  224 +++++++-----------
   applications/gaia/gaia/library/GaiaMask.tcl        |   75 ++++++-
   3 files changed, 213 insertions(+), 153 deletions(-)
  
  commit 27c46a10f970e2cbcfc9a0427652f5cb7faef3a7
  Author: Peter W. Draper <[log in to unmask]>
  Date:   Wed Jul 1 14:43:16 2009 +0100
  
      dummy
  
   applications/gaia/gaia.htx/mask.html |   12 +++++++++---
   1 files changed, 9 insertions(+), 3 deletions(-)
  
  commit f9498c6e179d1d9c7a2d95a091591c5c17e2e0df
  Author: David Berry <[log in to unmask]>
  Date:   Wed Jul 1 09:14:46 2009 +0100
  
      ast: Retain any original error status in astFlushMemory
  
   libraries/ast/memory.c |   13 +++++++++++--
   1 files changed, 11 insertions(+), 2 deletions(-)
  
  commit 21aa83e36ab3d991489410b6b8636354f20b1c1c
  Author: Tim Jenness <[log in to unmask]>
  Date:   Tue Jun 30 20:09:27 2009 -1000
  
      atl: atl_mgfts was removing non-blank cards by mistake
      
      At the end of atl_mgfts it attempts to remove contiguous
      blank lines. This was not working properly because AST_FINDFITS
      was incrementing the Card to the following card and so AST_DELFITS
      was removing the card following two contiguous blank cards.
      
      Fixed to decrement the Card attribute prior to call AST_DELFITS.
  
   libraries/atl/atl_mgfts.f |   11 ++++++++++-
   1 files changed, 10 insertions(+), 1 deletions(-)
  
  commit 14c97255e13a9b76dfb251b3c9cb9fb9e536b218
  Author: Tim Jenness <[log in to unmask]>
  Date:   Tue Jun 30 18:06:05 2009 -1000
  
      ast: Add some consting to fix some compiler warnings
  
   libraries/ast/channel.c  |    2 +-
   libraries/ast/fitschan.c |   32 ++++++++++++++++----------------
   2 files changed, 17 insertions(+), 17 deletions(-)
  
  commit 6afe28085b7aad3c311e8d101a556e898e78db04
  Author: Tim Jenness <[log in to unmask]>
  Date:   Tue Jun 30 18:04:19 2009 -1000
  
      ast: undef is an allowed card_type
      
      Otherwise you get a SEGV when astShow tries to dump a FitsChan
      that includes an undefined item.
  
   libraries/ast/fitschan.c |    4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

December 2023
January 2023
December 2022
July 2022
June 2022
April 2022
March 2022
December 2021
October 2021
July 2021
April 2021
January 2021
October 2020
September 2020
August 2020
May 2020
November 2019
October 2019
July 2019
June 2019
February 2019
January 2019
December 2018
November 2018
August 2018
July 2018
May 2018
April 2018
March 2018
February 2018
December 2017
October 2017
August 2017
July 2017
May 2017
April 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
October 2015
September 2015
August 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
October 2006
September 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
October 2005
September 2005
August 2005
July 2005
June 2005
May 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
April 2004
March 2004
February 2004
January 2004
2004
April 2003
2003


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager