IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27475


Ignore:
Timestamp:
Mar 26, 2010, 12:04:01 PM (16 years ago)
Author:
rhenders
Message:

Added some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/scripts/pspsSchema2xml.pl

    r27431 r27475  
    11#!/usr/bin/perl -w
    22
     3#######################################################################################
     4#
     5# Script that searches a dir containing PSPS schema files, finds those that comtain the
     6# tables on interest then parses them into an XML format. Also generates C-header files
     7# containing enums that detail table column names and numbers.
     8#
     9#######################################################################################
     10
     11use warnings;
     12use strict;
    313use IPC::Cmd 0.36 qw( can_run run );
    414use XML::Writer;
     
    616use Pod::Usage qw( pod2usage );
    717
    8 use warnings;
    9 use strict;
    1018
    1119my ($schemaPath, $type);
     
    294302        $default =~ s/'//g;
    295303        if ($type ne "TSTRING" && !$default) {$default = "0";}
    296         #   print "got default='$default'\n";
    297304        if ($ISBINARY && $default eq "0x") {$default = "";}
    298305    }
Note: See TracChangeset for help on using the changeset viewer.