Index: /trunk/dbconfig/changes.txt
===================================================================
--- /trunk/dbconfig/changes.txt	(revision 15532)
+++ /trunk/dbconfig/changes.txt	(revision 15533)
@@ -28,3 +28,3 @@
 
 ???
-alter table warpSkyfile add column ingore tinyint after good_frac;
+alter table warpSkyfile add column ignored tinyint after good_frac;
Index: /trunk/dbconfig/config.md
===================================================================
--- /trunk/dbconfig/config.md	(revision 15532)
+++ /trunk/dbconfig/config.md	(revision 15533)
@@ -2,4 +2,4 @@
     pkg_name        STR     ippdb
     pkg_namespace   STR     ippdb
-    pkg_version     STR     1.1.28
+    pkg_version     STR     1.1.29
 END
Index: /trunk/dbconfig/warp.md
===================================================================
--- /trunk/dbconfig/warp.md	(revision 15532)
+++ /trunk/dbconfig/warp.md	(revision 15533)
@@ -1,3 +1,3 @@
-# $Id: warp.md,v 1.8 2007-11-09 02:56:46 jhoblitt Exp $
+# $Id: warp.md,v 1.9 2007-11-09 03:34:05 jhoblitt Exp $
 
 #
@@ -51,5 +51,5 @@
     bg_stdev    F64         0.0
     good_frac   F64         0.0     # Key
-    ignore      BOOL        f       # Key
+    ignored     BOOL        f       # Key
     fault       S16         0       # Key
 END
Index: /trunk/ippdb/src/ippdb.c
===================================================================
--- /trunk/ippdb/src/ippdb.c	(revision 15532)
+++ /trunk/ippdb/src/ippdb.c	(revision 15533)
@@ -9592,5 +9592,5 @@
 static void warpSkyfileRowFree(warpSkyfileRow *object);
 
-warpSkyfileRow *warpSkyfileRowAlloc(psS64 warp_id, const char *skycell_id, const char *tess_id, const char *uri, const char *path_base, psF64 bg, psF64 bg_stdev, psF64 good_frac, bool ignore, psS16 fault)
+warpSkyfileRow *warpSkyfileRowAlloc(psS64 warp_id, const char *skycell_id, const char *tess_id, const char *uri, const char *path_base, psF64 bg, psF64 bg_stdev, psF64 good_frac, bool ignored, psS16 fault)
 {
     warpSkyfileRow  *_object;
@@ -9607,5 +9607,5 @@
     _object->bg_stdev = bg_stdev;
     _object->good_frac = good_frac;
-    _object->ignore = ignore;
+    _object->ignored = ignored;
     _object->fault = fault;
 
@@ -9664,6 +9664,6 @@
         return false;
     }
-    if (!psMetadataAdd(md, PS_LIST_TAIL, "ignore", PS_DATA_BOOL, "Key", 0)) {
-        psError(PS_ERR_UNKNOWN, false, "failed to add item ignore");
+    if (!psMetadataAdd(md, PS_LIST_TAIL, "ignored", PS_DATA_BOOL, "Key", 0)) {
+        psError(PS_ERR_UNKNOWN, false, "failed to add item ignored");
         psFree(md);
         return false;
@@ -9687,5 +9687,5 @@
 }
 
-bool warpSkyfileInsert(psDB * dbh, psS64 warp_id, const char *skycell_id, const char *tess_id, const char *uri, const char *path_base, psF64 bg, psF64 bg_stdev, psF64 good_frac, bool ignore, psS16 fault)
+bool warpSkyfileInsert(psDB * dbh, psS64 warp_id, const char *skycell_id, const char *tess_id, const char *uri, const char *path_base, psF64 bg, psF64 bg_stdev, psF64 good_frac, bool ignored, psS16 fault)
 {
     psMetadata *md = psMetadataAlloc();
@@ -9730,6 +9730,6 @@
         return false;
     }
-    if (!psMetadataAdd(md, PS_LIST_TAIL, "ignore", PS_DATA_BOOL, NULL, ignore)) {
-        psError(PS_ERR_UNKNOWN, false, "failed to add item ignore");
+    if (!psMetadataAdd(md, PS_LIST_TAIL, "ignored", PS_DATA_BOOL, NULL, ignored)) {
+        psError(PS_ERR_UNKNOWN, false, "failed to add item ignored");
         psFree(md);
         return false;
@@ -9763,5 +9763,5 @@
 bool warpSkyfileInsertObject(psDB *dbh, warpSkyfileRow *object)
 {
-    return warpSkyfileInsert(dbh, object->warp_id, object->skycell_id, object->tess_id, object->uri, object->path_base, object->bg, object->bg_stdev, object->good_frac, object->ignore, object->fault);
+    return warpSkyfileInsert(dbh, object->warp_id, object->skycell_id, object->tess_id, object->uri, object->path_base, object->bg, object->bg_stdev, object->good_frac, object->ignored, object->fault);
 }
 
@@ -9876,6 +9876,6 @@
         return false;
     }
-    if (!psMetadataAdd(md, PS_LIST_TAIL, "ignore", PS_DATA_BOOL, NULL, object->ignore)) {
-        psError(PS_ERR_UNKNOWN, false, "failed to add item ignore");
+    if (!psMetadataAdd(md, PS_LIST_TAIL, "ignored", PS_DATA_BOOL, NULL, object->ignored)) {
+        psError(PS_ERR_UNKNOWN, false, "failed to add item ignored");
         psFree(md);
         return false;
@@ -9935,7 +9935,7 @@
         return false;
     }
-    bool ignore = psMetadataLookupBool(&status, md, "ignore");
-    if (!status) {
-        psError(PS_ERR_UNKNOWN, true, "failed to lookup value for item ignore");
+    bool ignored = psMetadataLookupBool(&status, md, "ignored");
+    if (!status) {
+        psError(PS_ERR_UNKNOWN, true, "failed to lookup value for item ignored");
         return false;
     }
@@ -9946,5 +9946,5 @@
     }
 
-    return warpSkyfileRowAlloc(warp_id, skycell_id, tess_id, uri, path_base, bg, bg_stdev, good_frac, ignore, fault);
+    return warpSkyfileRowAlloc(warp_id, skycell_id, tess_id, uri, path_base, bg, bg_stdev, good_frac, ignored, fault);
 }
 psArray *warpSkyfileSelectRowObjects(psDB *dbh, const psMetadata *where, unsigned long long limit)
Index: /trunk/ippdb/src/ippdb.h
===================================================================
--- /trunk/ippdb/src/ippdb.h	(revision 15532)
+++ /trunk/ippdb/src/ippdb.h	(revision 15533)
@@ -4735,5 +4735,5 @@
     psF64           bg_stdev;
     psF64           good_frac;
-    bool            ignore;
+    bool            ignored;
     psS16           fault;
 } warpSkyfileRow;
@@ -4753,5 +4753,5 @@
     psF64           bg_stdev,
     psF64           good_frac,
-    bool            ignore,
+    bool            ignored,
     psS16           fault
 );
@@ -4792,5 +4792,5 @@
     psF64           bg_stdev,
     psF64           good_frac,
-    bool            ignore,
+    bool            ignored,
     psS16           fault
 );
Index: /trunk/ippdb/tests/alloc.c
===================================================================
--- /trunk/ippdb/tests/alloc.c	(revision 15532)
+++ /trunk/ippdb/tests/alloc.c	(revision 15533)
@@ -1070,5 +1070,5 @@
             exit(EXIT_FAILURE);
         }
-        if (!object->ignore == true) {
+        if (!object->ignored == true) {
             psFree(object);
             exit(EXIT_FAILURE);
Index: /trunk/ippdb/tests/metadatafromobject.c
===================================================================
--- /trunk/ippdb/tests/metadatafromobject.c	(revision 15532)
+++ /trunk/ippdb/tests/metadatafromobject.c	(revision 15533)
@@ -1221,5 +1221,5 @@
             exit(EXIT_FAILURE);
         }
-        if (!psMetadataLookupBool(&status, md, "ignore") == true) {
+        if (!psMetadataLookupBool(&status, md, "ignored") == true) {
             psFree(md);
             exit(EXIT_FAILURE);
Index: /trunk/ippdb/tests/objectfrommetadata.c
===================================================================
--- /trunk/ippdb/tests/objectfrommetadata.c	(revision 15532)
+++ /trunk/ippdb/tests/objectfrommetadata.c	(revision 15533)
@@ -1870,5 +1870,5 @@
             exit(EXIT_FAILURE);
         }
-        if (!psMetadataAdd(md, PS_LIST_TAIL, "ignore", PS_DATA_BOOL, NULL, true)) {
+        if (!psMetadataAdd(md, PS_LIST_TAIL, "ignored", PS_DATA_BOOL, NULL, true)) {
             psFree(md);
             exit(EXIT_FAILURE);
@@ -1917,5 +1917,5 @@
             exit(EXIT_FAILURE);
         }
-        if (!object->ignore == true) {
+        if (!object->ignored == true) {
             psFree(object);
             exit(EXIT_FAILURE);
