Commit graph

169248 commits

Author SHA1 Message Date
zafer
99b907b6c1 service suspended. fetch from backup. 2011-03-11 12:33:04 +00:00
zafer
b123e78e29 service suspended. fetch from backup. prevent timeout. 2011-03-11 12:29:23 +00:00
zafer
7d8ab7af7e remove dead mirror. 2011-03-11 12:28:03 +00:00
zafer
fc06dc7613 service suspended. fetch from backup. 2011-03-11 12:27:08 +00:00
zafer
d0ed86ff89 update master_sites 2011-03-11 12:16:31 +00:00
zafer
4c426155ed remove dead mirrors. update master_sites. 2011-03-11 12:08:04 +00:00
wiz
ef945d6464 Updated games/puzzles to 9109 2011-03-11 12:07:46 +00:00
wiz
39ac6a0b7b Update to 9109: new grid types, not used yet. Bug fixes. 2011-03-11 12:07:36 +00:00
wiz
cc2c6011ac Updated devel/libgnomeui to 2.24.5 2011-03-11 12:04:00 +00:00
wiz
7a71f66c8e Update to 2.24.5:
libgnomeui 2.24.5

* Fix typo (G_TYPE_INSTANCE_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE)
  (Piotr Eljasiak)

* New and updated translations
  (ca@valencia, et, lu, ug, zh_CN, zh_TW)
2011-03-11 12:03:50 +00:00
obache
707a1071f6 Add user-destdir installation support. 2011-03-11 12:02:50 +00:00
wiz
47ea826cdc Updated devel/cfitsio to 3.270 2011-03-11 11:56:33 +00:00
wiz
f9b4747f09 Update to 3.270, set LICENSE:
Version 3.27 - 3 March 2011

  Enhancements

    - added new routines fits_read_str and fits_delete_str which read or
      delete, respectively, a header keyword record that contains a specified
      character string.

    - added a new routine call fits_free_key_longstr which frees the memory
      that fits_read_key_longstr allocated for the long string keyword value.

    - enhanced the ffmkky routine in fitscore.c to not put a space before the
      equals sign when writing long string-valued keywords using the ESO
      HIERARCH keyword convension, if that extra character is needed to
      fit the length of the keyword name + value string within the 80-character
      FITS keyword record.

    - made small change to fits_translate_keyword to support translation of
      blank keywords (where the name = 8 blank chracters)

    - modified fpack so that it uses the minimum of the 2nd, 3rd, and 5th order
      MAD noise values when quantizing and compressing a floating point image.
      This is more conservative than just using the 3rd order MAD value alone.

    - added new routine imcomp_copy_prime2img to imcompress.c that is used by
      funpack to copy any keywords that may have been added to the primary
      array of the compressed image file (a null image) back into the header of
      the uncompressed image.

    - enhanced the fits_quantize_float and fits_quantize_double routines in
      quantize.c to also compress the tile if it is completely filled with
      null values.  Previously, this type of tile would have been written
      to the output compressed image without any compression.

    - enhanced imcomp_decompress_tile to support implicit datatype conversion
      when reading a losslessly compressed (with gzip) real*4 image into an
      array of real*8 values.

Version 3.26 - 30 December 2010

  Enhancements

   - defined 2 new macros in fitsio.h:
       #define CFITSIO_MAJOR 3
       #define CFITSIO_MINOR 26
     These may be used within other macros to detect the CFITSIO
     version number at compile time.

   - modified group.c to initialize the output URL to a null string in
     fits_url2relurl.  Also added more robust tests to see if 2 file
     pointers point to the same file.

   - enhanced the template keyword parsing code in grparser.c to support
     the 'D' exponent character in the ASCII representation of floating
     point keyword values (as in TVAL = 1.23D03).  Previously, the parser
     would have writen this keyword with a string value (TVAL = '1.23D03').

   - modified the low-level routines that write a keyword record to a FITS
     header so that they silently replace any illegal characters (ASCII
     values less than 32 or greater than 126) with an ASCII space character.
     Previously, these routines would have returned with an error when
     encountering these illegal characters in the keyword record (most commonly
     tab, carriage return, and line feed characters).

   - made substantial internal changes to imcompress.c in preparation for
     possible future support for compression methods for FITS tables analogous
     to the tiled image compression method.

   - replaced all the source code in CFITSIO that was distributed under the
     GNU General Public License with freely available code.  In particular,
     the  gzip file compression and uncompression code was replaced by the
     zlib compression library.  Thus, beginning with this version 3.26 of CFITSIO,
     other software applications may freely use CFITSIO without necessarily
     incurring any GNU licensing requirement.  See the License.txt file for
     the CFITSIO licensing requirements.

   - added support for using cfitsio in different 'locales' which use a
     comma, not a period, as the decimal point character in ASCII
     representation of a floating point number (e.g., France).  This
     affects how floating point keyword values and floating point numbers
     in ASCII tables are read and written with the 'printf' and 'strtod'
     functions.

   - added a new utility routine called fits_copy_rows/ffcprw that copies
     a specified range of rows from one table to another.

   - enhanced the test for illegal ASCII characters in a header (fftrec) to
     print out the name of the offending character (e.g TAB or Line Feed) as
     well as the Hex value of the chracter.

   - modified ffgtbc (in fitscore.c) to support nonstandard vector variable
     length array columns in binary tables (e.g. with TFORMn = 2000PE(500)').

   - modified the configure file to add "-lm" when linking CFITSIO on
     Solaris machines.

   - added new routine, fits_get_inttype, to parse an integer keyword value
     string and return the minimum integer datatype (TBYTE, TSHORT, TLONG,
     TLONGLONG) required to store the integer value.

   - added new routine, fits_convert_hdr2str, which is similar to fits_hdr2str
     except that if the input HDU is a tile compressed image (stored
     in a binary table) then it will first convert that header back to
     that of a normal uncompressed FITS image before concatenating the header
     keyword records.

   - modified the file template reading routine (ngp_line_from_file in
     grparser.c) so that it ignores any carriage return characters (\r)
     in the line, that might be present, e.g. if the file was created on a
     Windows machine that uses \r\n as end of line characters.

   - modified the ffoptplt routine in cfileio.c to check if the PCOUNT
     keyword in the template file has a non-zero value, and if so, resets
     it to zero in the newly created file.

   Bug Fixes

   - fixed a bug when uncompressing floating-point images that contain Nan
     values on some 64-bit platforms.

   - fixed a bug when updating the value of the CRPIXn world coordinate
     system keywords when extracting a subimage from larger FITS image, using the
     extended CFITSIO syntax (e.g.  myimage[1:500:2, 1:500:2]).  This bug only
     affects casee where the pixel increment value is not equal to 1, and caused
     the coordinate grid to be shifted by between 0.25 pixels (in the case of
     a pixel increment of 2) and 0.5 pixels (for large pixel increment values).

   - fixed a potential string buffer overflow error in the ffmkls routine
     that modifies the value and comment strings in a keyword that uses
     the HEASARC long string keyword convention.

   - fixed a bug in imcompress.c that could cause programs to abort on 64-bit
     machines when using gzip to tile-compress images.  Changed the declaration
     of clen in imcomp_compress_tile from int to size_t.

Version 3.25 - 9 June 2010

   - fixed bug that was introduced in version 3.13 that broke the ability
     to reverse an image section along the y-axis with an image section
     specifier like this: myimage.fits[*,-*].  This bug caused the output
     image to be filled with zeros.

   - fixed typo in the definition of the ftgprh Fortran wrapper routine
     in f77_wrap3.c.

   - modified the cfitsio.pc.in configuration file to make the lib path
     a variable instead of hard coding the path.   The provides more
     flexibility for projects such as suse and fedora when building CFITSIO.

   - fixed bug in imcomp_compress_tile in imcompress.c which caused
     null pixel values to be written incorrectly in the rare case where
     the floating-point tile of pixels could not be quantized into integers.

   - modified imcompress.c to add a new specialized routine to uncompress
     an input image and then write it to a output image on a tile by tile basis.
     This appears to be faster than the old method of uncompressing the
     whole image into memory before writing it out.  It also supports
     large images with more than 2**31 pixels.

   - made trivial changes to 2 statements in drvrfile.c to suppress
     nuisance compiler warnings.

   - some compilers define CLOCKS_PER_SEC as a double instead of an integer,
     so added an explicted integer type conversion to 2 statements in
     imcompress.c that used this macro.

   - removed debugging printf statements in drvrnet.c (15 July)

Version 3.24 - 26 January 2010

   - modified fits_translate_keywords so that it silently ignores any
     illegal ASCII characters in the value or comment fields of the input
     FITS file. Otherwise, fpack would abort without compressing input
     files that contained this minor violation of the FITS rules.

   - added support for Super H cpu in fitsio2.h

   - updated funpack to correctly handle the -S option, and to use a
     more robust algorithm for creating temporary output files.

   - modified the imcomp_compress_tile routine to support the NOCOMPRESS
     debugging option for real*4 images.

Version 3.23 - 7 January 2010

   - reduced the default value for the floating point image quantization
     parameter (q) from 16 to 4.  This parameter is used when tile compressing
     floating point images.  This change will increase the average compression
     ratio for floating point images from about 4.6 to about 6.5 without losing
     any significant information in the image.

   - enhanced the template keyword parsing routine to reject a header
     template string that only contains a sequence of dashes.

   - enhanced the ASCII region file reading routine to allow tabs as well
     as spaces between fields in the file.

   - got rid of bogus error message when calling fits_update_key_longstr

   - Made the error message more explicit when CFITSIO tries to write
     to a GZIP compressed file.  Instead of just stating "cannot write
     to a READONLY file", it will say "cannot write to a GZIP compressed
     file".

Version 3.22 - 28 October 2009

   - added an option (in imcompress.c) to losslessly compress floating
     point images, rather than using the default integer scaling method.
     This option is almost never useful in practice for astronomical
     images (because the amount of compression is so poor), but it has
     been added for test comparison purposes.

   - enhanced the dithering option when quantizing and compressing
     floating point images so that a random dithering starting point
     is used, so that the same dithering pattern does not get used for
     every image.

   - modified the architecture setup section of fitsio2.h to support the
     64-core 8x8-architecture Tile64 platform (thanks to Ken Mighell, NOAO)

   Fixes

   - fixed a problem that was introduced in version 3.13 of CFITSIO
     in cases where a program writes it own END keyword to the header
     instead of letting CFITSIO do it, as is strongly recommended.  In
     one case this caused CFITSIO to rewrite the END keyword and any
     blank fill keywords in the header many times, causing a
     noticeable slow-down in the FITS file writing speed.

Version 3.21 - 24 September 2009

   - fixed bug in cfileio.c  that caused CFITSIO to crash with a bus error
     on Mac OS X if CFITSIO was compiled with multi-threaded support (with
     the  --enable-reentrant configure option). The Mac requires an
     additional thread initialization step that is not required on Linux
     machines.  Even with this fix, occasional bus errors have been seen on
     some Mac platforms, The bus errors are seen when running the
     thread_test.c program.  The bus errors are very intermittent, and occur
     less than about 1% of the time, on the affected platforms.
     These bus errors have not been seen on Linux platforms.

   - fixed invalid C comment delimiter ("//*" should have been "/*")
     in imcompress.c.

   - Increased the CFITSIO version number string length
     in fpackutil.c, to fix problem on some platforms when running
     fpack -V or funpack -V.   Also modified the output format of the
     fpack -L command.

Version 3.20 - 31 August 2009

   - modified configure.in and configure so that it will build the Fortran
     interface routines by default, even if no Fortran compiler is found
     in the user's path. Building the interface routines may be disabled
     by specifying FC="none".  This was done at the request of users who
     obtained CFITSIO from some other standard linux distributions, where
     CFITSIO was apparently built in an environment that had no Fortran
     compiler and hence did not build the Fortran wrappers.

   - modified ffchdu (close HDU) so that it calls the routine to update
     the maximum length of variable length table columns in the TFORM
     values in all cases  where the values may have changed.  Previously
     it would not update the values if a value was already specified in
     the TFORM value.

   - added 2 new string manipulation functions to the CFITSIO parser
     (contributed by Craig Markwardt): strmid extracts a substring
     from a string, and strstr searches for a substring within a string.

   - removed the code in quantize.c that treated "floating-point integer"
     images as a special case (it would just do a datatype conversion from
     float to int, and not otherwise quantize the pixel values).  This
     caused complications with the new subtractive dithering feature.

   - enhanced the code for converting floating point images to quantized
     scaled integer prior to tile-compressing them, to apply a random
     subtractive dithering, which improves the photometric accuracy
     of the compressed images.

   - added new internal routine, iraf_delete_file, for use by fpack to
     delete a pair of IRAF format header and pixel files.

   - small change in cfileio.c in the way it recognizes an IRAF format
     .imh file.  Instead of just requiring that the filename contain the
     ".imh" string, that string must occur at the end of the file name.

   - fixed bug in the code that is used when tile-compressing real*4 FITS
     images, which quantizes the floating point pixel values into
     integer levels.  The bug would only appear in the fairly rare
     circumstance of tile compressing a floating point image that contains
     null pixels (NaNs) and only when using the lossy Hcompress algorithm
     (with the s parameter not equal to 1).  This could cause underflow of
     low valued pixels, causing them to appear as very large pixel values
     (e.g., > 10**30)  in the compressed image

   - changed the "if defined" blocks in fitsio.h, fitsio2.h and f77_wrap.h
     to correctly set the length of long variables on sparc64 machines.
     Patch contributed by Matthew Truch (U. Penn).

   - modified the HTTP file access code in drvrnet.c to support basic
     HTTP authentication, where the user supplies a user name and
     password.  The CFITSIO filename format in this case is:
     "http://username:password@hostname/..."
     Thanks to Jochen Liske (ESO) for the suggestion and the code.

Version 3.181 (BETA) - 12 May 2009

   - modified region.c and region.h to add support for additional
     types of region shapes that are supported by ds9: panda, epanda,
     and bpanda.

   - fixed compiler error when using the new _REENTRANT flag, having to
     do with the an attempted static definition of Fitsio_Lock in
     several source files, after declaring it to be non-static in fitsio2.h.

Version 3.18 (BETA) - 10 April 2009

   - Made extensive changes to make CFITSIO thread safe.  Previously,
     all opened FITS files shared a common pool of memory to store
     the most recently read or written FITS records in the files.
     In a multi-threaded environment different threads could
     simultaneously read or write to this common area causing
     unpredictable results. This was changed so that every opened
     FITS file has its own private memory area for buffering the
     file. Most of the changes were in buffers.c, fitsio.h, and
     fitsio2.h. Additional changes were made to cfileio.c, mainly
     to put locks around small sections of code when setting up the
     low-level drivers to read or write the FITS file.  Also, locks
     were needed around the GZIP compression and uncompression code
     in compress.c.,  the error message stack access routine in
     fitscore.c, the encode and decode routines in fits_hcompress.c
     and  fits_hdecompress.c, in ricecomp.c,  and  the table row
     selection and table calculator functions. Also, removed the
     'static' declaration of the local variables in pliocomp.c
     which did not appeared to be required and prevented the
     routines from being thread safe.

     As a consequence of having a separate memory buffer for every
     FITS file (by default, about 115 kB per file), CFITSIO may now
     allocate more memory than previously when an application
     program opens multiple FITS files at once.  The read and write
     speed may also be slightly faster, since the buffers are not
     shared between files.

   - Added new families of Fortran wrapper routines to read and
     write values to large tables that have more than 2**31 rows.
     The arguments that define the first row and first element to
     read or write must be I*8 integers, not ordinary I*4
     integers.  The names of these new routines have 'LL' appended
     to them, so for example, ftgcvb becomes ftgcvbll.

   Fixes

   - Corrected an obscure bug in imcompress.c that would have incorrectly
     written the null values only in the rare case of writing a signed
     byte array that is then tile compressed using the Hcompress or PLIO
     algorithm.

Version 3.14 - 18 March 2009

  Enhancements

   - modified the tiled-image compression and uncompression code to
     support compressing unsigned 16-bit integer images with PLIO.
     FITS unsigned integer arrays are offset by -32768, but the PLIO
     algorithm does not work with negative integer values.  In this
     case, an offset of 32768 is added to the array before compression,
     and then subtracted again when reading the compressed array.
     IMPORTANT NOTE:  This change is not backward compatible, so
     these PLIO compressed unsigned 16-bit integer images will not be
     read correctly by previous versions of CFITSIO; the pixel values
     will have an offset of +32768.

   - minor changes to the fpack utility to print out more complete
     version information with the -V option, and format the report
     produced by the -T option more compactly.

  Fixes

   - Modified imcomp_compress_image (which is called by fpack) so that
     it will preserve any null values (NaNs) if the input image has
     a floating point datatype (BITPIX = -32 or -64).  Null values in
     integer datatype images are handled correctly.

   - Modified imcomp_copy_comp2img so that it does not copy the
     ZBLANK keyword, if present, from the compressed image header
     when uncompressing the image.

   - Fixed typo in the Fortran wrapper macro for the ftexist function.

Version 3.13 -  5 January 2009

  Enhancements

   - updated the typedef of LONGLONG in fitsio.h and cfortran.h to
     support the Borland compiler which uses the  __int64 data type.

   - added new feature to the extended filename syntax so that when
     performing a filtering operation on specified HDU, if you add
     a '#' character after the name or number of the HDU, then ONLY
     that HDU (and the primary array if the HDU is a table) will be
     copied into the filtered version of the file in memory.  Otherwise,
     by default CFITSIO copies all the HDUs from the input file into
     memory.

   - when specifying a section, if the specified number of dimensions
     is less than the number of dimensions in the image, then CFITSIO
     will use the entire dimension, as if a '*' had been specified.
     Thus [1:100] is equivalent to [1:100,*] when specifying a section
     of 2 dimensional image.

   - modified fits_copy_image_section to read/write the section 1 row
     at a time, instead of the whole section, to reduce memory usage.

   - added new stream:// drivers for reading/writing to stdin/stdout.
     This driver is somewhat fragile, but for simple FITS read and
     write operations this driver streams the FITS file on stdin
     or stdout without first copying the entire file in memory, as is
     done when specifying the file name as "-".

   - slight modification to ffcopy to make sure that the END keyword
     is correctly written before copying the data.  This is required
     by the new stream driver.

   - modified ffgcprll, so that when writing data to an HDU, it first
     checks that the END keyword has been written to the correct place.
     This is required by the new stream driver.

  Fixes

   - fixed bug in ffgcls2 when reading an ASCII string column in binary
     tables in cases where the width of the column is greater than 2880
     characters and when reading more than 1 row at a time.  Similar
     change was made to ffpcls to fix same problem with writing to
     columns wider than 2880 characters.

   - updated the source files listed in makepc.bat so that it can be
     used to build CFITSIO with the Borland C++ compiler.

   - fixed overflow error in ffiblk that could cause writing to Large Files
     (> 2.1 GB) to fail with an error status.

   - fixed a bug in the spatial region code (region.c) with the annulus
     region.   This bug only affected specialized applications which
     directly use the internal region structure; it does not affect
     any CFITSIO functions directly.

   - fixed memory corruption bug in region.c that was triggered if the
     region file contained a large number of excluded regions.

   - got rid of a harmless error message that would appear if filtering
     a FITS table with a GTI file that has zero rows. (eval_f.c)

   - modified fits_read_rgnfile so that it removes the error messages
     from the error stack if it is unable to open the region file as
     a FITS file. (region.c)

Version 3.12 - 8 October 2008

   - modified the histogramming code so that the first pixel in the binned
     array is chosen as the reference pixel by default, if no other
     value is previously defined.

   - modified ffitab and ffibin to allow a null pointer to the
     EXTNAME string, when inserting a table with no name.

Version 3.11 - 19 September 2008

   - optimized the code when tile compressing real*4 images (which get
     scaled to integers).  This produced a modest speed increase.  For
     best performance, one must specify the absolute q quantization
     parameter, rather than relative to the noise in the tile (which
     is expensive to compute).

   - modified the FITS region file reading code to check for NaN values,
     which signify the end of the array of points in a polygon region.

   - removed the test for LONGSIZE == 64 from fitsio.h, since it may
     not be defined.

   - modified imcompress.c to support unconventional floating point FITS
     images that also have BSCALE and BZERO keywords.  The compressed
     floating point images are linearly scaled twice in this case.
2011-03-11 11:56:05 +00:00
zafer
c0b32e779d service suspended. prevent timeout. fetch from backup. 2011-03-11 11:48:40 +00:00
zafer
bdb71c6cad ftp service suspended. fetch from master_sites_backup. 2011-03-11 11:47:28 +00:00
zafer
78210beb75 ftp service suspended. fetch from backup. prevent time out. 2011-03-11 11:44:38 +00:00
zafer
c57532d8c9 ftp service suspended. fetch from backup. 2011-03-11 11:42:46 +00:00
wiz
bfb73ca6b1 Add options.mk file, split off during 2.32.1 update. 2011-03-11 11:42:35 +00:00
wiz
ca64a9eb57 Updated devel/libgnome to 2.32.1 2011-03-11 11:41:35 +00:00
wiz
7614077809 Update to 2.32.1. Set LICENSE.
Changes: translation updates.

Also remove patch for Darwin that's been here since 2004. I can't believe
it's still necessary.
2011-03-11 11:41:24 +00:00
zafer
e1bf8c3f3c service suspended. fetch from backup. 2011-03-11 11:40:37 +00:00
obache
f559e6f250 * set LICENSE=gnu-gpl-v2
* add user-destdir installation support.
2011-03-11 11:36:28 +00:00
zafer
3ef581bac9 remove dead mirror from list. 2011-03-11 11:32:47 +00:00
zafer
5f55aa0ce3 service suspended. prevent time out. fetch from backup. 2011-03-11 11:29:42 +00:00
zafer
a6125996f1 remove dead mirror. 2011-03-11 11:27:13 +00:00
wiz
475a12d467 Updated devel/libidn to 1.20 2011-03-11 11:25:36 +00:00
wiz
4a94eeabbe Update to 1.20:
* Version 1.20 (released 2011-03-01) [?]

** libidn: Fix bug in ToUnicode to compare 'xn--' case-insensitively.
The problem is typically noticed when an upper ACE case string is
converted to Unicode.  Before, this would return the input rather than
converting the ACE form to Unicode.  Reported by Stepan Golosunov
<stepan@golosunov.pp.ru> in <http://bugs.debian.org/610617>.

** tests: Added self-test tst_idna3 to catch any regression of problem above.

** idn: Only print copyright and license blurb when used interactively.
Reported by "Andrew O. Shadoura" <bugzilla@tut.by> and Roman Mamedov
<rm@romanrm.ru> in <http://bugs.debian.org/615947> and
<http://bugs.debian.org/615949> respectively.

** Update gnulib files and translations.

** API and ABI is backwards compatible with the previous version.
2011-03-11 11:25:27 +00:00
zafer
6c5fd22901 service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
wiz
5474086ebf Updated multimedia/farsight2 to 0.0.26 2011-03-11 11:06:40 +00:00
wiz
273594e368 Update to 0.0.26:
Version 0.0.26
    rawconference: Correctly check if thread is internal
    rawstream: Don't start sending before having codecs
    rawsession: Only manipulate the valve from the session itlsef
    rawsession: Simplify transform bins creation
    rawsession: Remove g_debug
    rawsession: Unref the right object
    rawsession: Only remove sink if it has been added
    rtpconference: Correctly check if a thread is internal

    rtpstream: Fix reference leak in fs_rtp_stream_set_negotiated_codecs_unlock()
    Keep a ref to the fakesink
    fsrawconference: Make the construction more consistent

    In the construction of a raw session we add a bunch of elements. For all
    elements unref them in _constructed if adding them to the bin fails, for
    all other failures, leave it to the _dispose function to remove and
    unref the elements

    Use full prefix, even for private functions

    Add a transformation bin the source pipeline

    As upstream negotiation in Gstreamer still doesn't actually work, we'll
    need to change transform elements around every time the caps are changed
    as that will cause a re-negotiation and things will keep working..

    Unfortunately managing dynamic pipelines has its own challenges, so add
    a tee ! fakesink which will eat all the errors for us...

    fsrawconference: Make fsrawstream explicitely ask the session to set the direction
    fsrawconference: Cope with fs_raw_session_new returning NULL
2011-03-11 11:06:30 +00:00
wiz
76eabf590a Updated net/yaz to 4.1.4 2011-03-11 11:01:35 +00:00
wiz
19611bc967 Update to 4.1.4:
--- 4.1.4 2011/02/21

yaz-client: show may XML format records. Command show followed by 'format'
will format XML records retrieved using Libxml2's xmlDocDumpFormatMemory
function.

src/stemmer.c: Avoid using unnamed union. It is not supported by some
older C compilers.

For PHPYAZ: set YAZVERSION, not YAZ_VERSION.
2011-03-11 11:01:26 +00:00
wiz
7bb7ff14ba Updated misc/dialog to 1.1.20110302 2011-03-11 10:59:44 +00:00
wiz
5ad2bb3750 Update to 1.1.20110302:
2011/03/02
	+ add --prgbox and --programbox (adapted from patch by David Boyd).
	+ add sl.po from
		http://translationproject.org/latest/dialog/
	+ fix timeouts from 2011/01/18, which were being interpreted as
	  milliseconds rather than seconds (report by Luis Moreira).
2011-03-11 10:59:35 +00:00
wiz
dca8b757c3 Updated misc/JBidwatcher to 2.1.4.1 2011-03-11 10:57:12 +00:00
wiz
01781f697c Update to 2.1.4.1:
eBay made some surprising changes over the last week or so, removing the end date from a lot of their auction and fixed price listings. I had to scramble a little, but I came up with a way to handle it in the general case. Fixed price items now may show up as ‘n/a’ as their end date, because it’s just not visible to JBidwatcher. Other than that there’s a few minor fixes, improving the UI in little ways, and continuing to try and improve speed. Thanks for your support, and best of luck with your auctions!

Changes

    * Fix breakage due to eBay removing the end-date from the title
    on many listings
    * Try to provide a safety-net for a potential sniping failure bug
    * Get eBay pages as compressed data for faster updating
    * Paste and Add Auction should add to the currently displayed tab/category
    * Allow Basic Authentication lines longer than 80 characters
    for My JBidwatcher support
    * Improve the look of JBidwatcher’s minimized window under Mac OS X
2011-03-11 10:57:03 +00:00
wiz
b37c0ee4af Updated finance/gnucash to 2.4.3 2011-03-11 10:53:50 +00:00
wiz
4d5b0ca60c Update to 2.4.3:
Changes between 2.4.2 and 2.4.3 include:

    * User-visible changes
	  o Only show the Save As dialog at the end of the Hierarchy
	  druid if it was called at the beginning of a new book,
	  not when a hierarchy is added to from the actions menu.
	  o Set a printer job name when printing reports and cheques
	  o Update revision to 2.4.3
	  o Fix invoice line ordering mismatch between register
	  window and reports. The new code was missing the call to
	  gncInvoiceSortEntries.
	  o Add extra toolbar buttons as shortcuts for some business
	  functions, "New Invoice" for now. The extra toolbar
	  buttons are disabled until the user enables them manually
	  in Preferences -> Business -> Extra buttons.
	  o Implement command for changing the ordering of invoice
	  entries by moving them up or down one row. Turned out
	  this is rather easy: Just swap the "date-entered" of both
	  items.
	  o Fix r20272: The text selection after auto-completion
	  should work correctly now.
	  o Extend the addr2/addr3 auto-completion also to the
	  shipping addr2/addr3 lines.
	  o Implement auto-completion on the addr2/addr3 lines of
	  the "New Customer" dialog box.
	  o Fix missing copying of invoice currency on "Copy
	  Invoice". Unfortunately this feature has been creating
	  invoices with no currency set. This leads to weird amounts
	  that have more digits than expected and don't sum up
	  correctly, and it also triggers the warning dialog "One
	  or more of the entries are for accounts different from
	  the invoice/bill currency. (...)"
	  o Minor tweaking of icon for duplicate invoice so that
	  it doesn't look grayed out
    * Translation updates
    * Bugs fixed
	  o Bug #635552: Rename "Financial Calculator" into "Loan
	  Repayment Calculator" I've been told (by users who know
	  the subject well enough) the "Financial Calculator" should
	  rather be called a "Loan Repayment Calculator" or a
	  "Mortgage Payment Calculator", as this is what is being
	  offered there. So I finally made this renaming.
	  o Bug #640357: Adding very limited Perl-Support for
	  doxygen Adding Doxygen commands to the Perl-scripts in
	  the sources I searched for every *.pl file in the GnuCash
	  source and added Doxygen commands like @file, @brief,
	  @author to better include them in doxygen. Patch by
	  Christoph Holtermann.
	  o Bug #640357: Adding very limited Perl-Support for
	  doxygen There are a few Perl-scripts scattered through
	  the GnuCash sources. This patch enables doxygen to
	  interpret them so that they can be provided with information
	  about author, date and so on. This is done by telling
	  doxygen that their python-files. So python-comments can
	  be used. The actual Perl-source is commented out by using
	  @cond Perl ...PERL-CODE... @endcond Perl Patch by Christoph
	  Holtermann
	  o Bug #640347: Adding Example Skripts for historic Stock
	  Quotes This patch adds the example skripts from
	  http://wiki.gnucash.org/wiki/Stocks/get_prices to the
	  directory python-bindings/example_scripts. Patch by
	  Christoph Holtermann.
	  o Bug #640328: This patch makes Transaction.GetSplitList
	  and Account.GetSplitList return Split instances I changed
	  gnucash_core.py so that GetSplitList methods of Transaction
	  and Account return Split-instances so that the user
	  doesn't need to call Split(instance=GetSplitList()[n]).
	  I checked the examples and changed one either. Patch by
	  Christoph Holtermann
	  o Bug #639906: Changing the way __format__ works for
	  Split and Transaction Patch by Christoph Holtermann
	  o Bug #641832: Workaround to avoid the current crashes
	  on windows. On win32 the queryf() calls below seem to
	  crash. On the other hand, we know the used libdbi on
	  windows is fine, so as a first workaround, we assume
	  libdbi is safe.
	  o Bug #642445 [PATCH] Segfault when tip_of_the_day.list
	  is empty
	  o Bug #642284: Fails to build on Ubuntu Natty Patch by
	  Ahmed El-Mahmoudy.
	  o Bug #641832: Use g_strdup_printf() instead of
	  dbi_conn_queryf() to format the query; the latter crashed
	  msvcrt. Also reverts r20287 because the root bug is fixed.
	  o Bug #641909: Fix broken price scatter plot The report
	  was unknowingly broken by the move of one function in
	  r20209 namely gnc-locale-default-iso-currency-code from
	  app-utils to core-utils, and somehow this needs a re-export
	  in the core-utils.scm declaration. (I don't know why.
	  For me, this confirms again this whole scheme plugin
	  stuff sucks, royally.)
    * Other code/build changes
	  o Tag 2.4.3
	  o Re-indentation of source code.
	  o Really fix conditional configure test for gtkmm.
	  o Add optional module that compiles with gtkmm, i.e. in
	  C++. This was just a crazy idea, but it turns out to be
	  extremely easy. This can be used as a place for new GUI
	  elements which people prefer to write in gtkmm/C++ instead
	  of C. It's disabled by default. Use configure --enable-gtkmm
	  to enable it.
	  o Fix const-correctness of gnc-module interface.
	  o Add missing run-time typechecks in new code.
	  o Fix CRIT gtk warning if the old_page_long_name was NULL
	  but still passed to g_strrstr.
	  o Add accessor of GtkUIManager in GncMainWindow.
	  o QofSession: Don't push a new generic error if there's
	  already one available that might be more descriptive.
	  o Remove no-longer-correct warning about the aqbanking5
	  setup wizard not being implemented: It is.
	  o Add a Timespec constructor for the current clock time.
	  o Fix potential parsing of NULL strings by correctly use
	  an empty non-NULL string instead.
	  o Another error message somewhat more verbose.
	  o Make log warning about bad gnc_numeric print the actual
	  error code.
	  o Add address auto-completion of r20272 also for address
	  line 4.
	  o Add a common shared quickfill object for the addr2/addr3
	  lines of a GncAddress.
	  o Minor code cleanup - remove includes from header if
	  not necessary.
	  o Fix CRIT error message on program quit in the aqbanking
	  module.
2011-03-11 10:53:39 +00:00
zafer
7b3de2b0f4 service suspended. fetch from master_sites_backup. 2011-03-11 10:52:26 +00:00
zafer
a8813fe38f service suspended. fetch from backup. 2011-03-11 10:51:02 +00:00
zafer
54e68cac20 service supended. fall back to master_sites_backup. 2011-03-11 10:48:08 +00:00
zafer
429346a013 service discontinued (> 2 years ago). prevent time out. fetch from master_sites_backup. 2011-03-11 10:45:49 +00:00
zafer
a0bb580e8f update master_sites. remove non-working mirror. 2011-03-11 10:42:14 +00:00
zafer
d543a7e891 service discontinued. prevent timeout. fetch from backup. 2011-03-11 10:39:33 +00:00
zafer
6809fd1c13 service discontinued long time ago. fetch from backup to prevent time out. 2011-03-11 10:38:14 +00:00
zafer
ef5eae582a service discontinued. prevent time out. fetch from backup. 2011-03-11 10:32:20 +00:00
zafer
d14ff49f3b revert previous. seems to work, but slow. 2011-03-11 10:29:44 +00:00
zafer
dc6e0e64c7 service discontinued. prevent timeout. fetch from backup. 2011-03-11 10:24:35 +00:00
zafer
1f4a3d764f service discontinued. fetch from backup. 2011-03-11 10:18:12 +00:00
zafer
953bfe77a3 remove non-working mirror. prevent timing out. fetch from backup. 2011-03-11 10:13:20 +00:00