IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9796


Ignore:
Timestamp:
Oct 30, 2006, 12:32:13 PM (20 years ago)
Author:
jhoblitt
Message:

VERSION 0.0.54

Location:
trunk/ippdb
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/configure.ac

    r9788 r9796  
    11dnl
    2 dnl This file was generated by glueforge 0.30
     2dnl This file was generated by glueforge 0.31
    33dnl
    44dnl Do NOT directly edit this file.
     
    77AC_PREREQ(2.59)
    88
    9 AC_INIT([ippdb], [0.0.53], [pan-starrs.ifa.hawaii.edu])
     9AC_INIT([ippdb], [0.0.54], [pan-starrs.ifa.hawaii.edu])
    1010AC_CONFIG_SRCDIR([ippdb.pc.in])
    1111
  • trunk/ippdb/src/ippdb.c

    r9788 r9796  
    2020/*
    2121 *
    22  * This file was generated by glueforge 0.30
     22 * This file was generated by glueforge 0.31
    2323 *
    2424 * Do NOT directly edit this file.
     
    146146                // !->offEnd test
    147147                continue;
     148            case PS_DATA_TIME:
     149               // pass through NULLs as "NULL"
     150                if (item->data.V) {
     151                    psString time = psTimeToISO(item->data.V);
     152                    psStringAppend(&str, "%s", time);
     153                psFree(time);
     154                } else {
     155                    psStringAppend(&str, "NULL");
     156                }
     157                break;
    148158            default:
    149159                psError(PS_ERR_UNKNOWN, true,"unsupported psMetadataItem type");
  • trunk/ippdb/src/ippdb.h

    r9788 r9796  
    2020/*
    2121 *
    22  * This file was generated by glueforge 0.30
     22 * This file was generated by glueforge 0.31
    2323 *
    2424 * Do NOT directly edit this file.
Note: See TracChangeset for help on using the changeset viewer.