From 5443d85bcd6ac9a3ca444586ab7a83c3ba85bc6b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 9 Jan 2004 19:54:05 +0000 Subject: [PATCH] Update SRW messages strings to version 1.1 --- src/srwutil.c | 80 +++++++++++++++++++++++++++++++++------------------------ 1 file changed, 47 insertions(+), 33 deletions(-) diff --git a/src/srwutil.c b/src/srwutil.c index 226b43a..0257c9c 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -2,7 +2,7 @@ * Copyright (c) 2002-2004, Index Data. * See the file LICENSE for details. * - * $Id: srwutil.c,v 1.8 2004-01-09 18:10:32 adam Exp $ + * $Id: srwutil.c,v 1.9 2004-01-09 19:54:05 adam Exp $ */ #include @@ -532,22 +532,28 @@ static struct { {1, "Permanent system error"}, {2, "System temporarily unavailable"}, {3, "Authentication error"}, +{4, "Unsupported operation"}, +{5, "Unsupported version"}, +{6, "Unsupported parameter value"}, +{7, "Mandatory parameter not supplied"}, +{8, "Unknown database"}, +{9, "Unknown parameter type"}, /* Diagnostics Relating to CQL */ {10, "Query syntax error"}, {11, "Unsupported query type"}, {12, "Too many characters in query"}, -{13, "Unbalanced or illegal use of parentheses"}, -{14, "Unbalanced or illegal use of quotes"}, -{15, "Illegal or unsupported context set"}, -{16, "Illegal or unsupported index"}, -{17, "Illegal or unsupported combination of index and context set"}, -{18, "Illegal or unsupported combination of indexes"}, -{19, "Illegal or unsupported relation"}, -{20, "Illegal or unsupported relation modifier"}, -{21, "Illegal or unsupported combination of relation modifers"}, -{22, "Illegal or unsupported combination of relation and index"}, +{13, "Invalid or unsupported use of parentheses"}, +{14, "Invalid or unsupported use of quotes"}, +{15, "Unsupported context context set"}, +{16, "Unsupported index"}, +{17, "Unsupported combination of index and context set"}, +{18, "Unsupported combination of indexes"}, +{19, "Unsupported relation"}, +{20, "Unsupported relation modifier"}, +{21, "Unsupported combination of relation modifers"}, +{22, "Unsupported combination of relation and index"}, {23, "Too many characters in term"}, -{24, "Illegal combination of relation and term"}, +{24, "Unsupported combination of relation and term"}, {25, "Special characters not quoted in term"}, {26, "Non special character escaped in term"}, {27, "Empty term unsupported"}, @@ -555,19 +561,19 @@ static struct { {29, "Masked words too short"}, {30, "Too many masking characters in term"}, {31, "Anchoring character not supported"}, -{32, "Anchoring character in illegal or unsupported position"}, +{32, "Anchoring character in unsupported position"}, {33, "Combination of proximity/adjacency and masking characters not supported"}, {34, "Combination of proximity/adjacency and anchoring characters not supported"}, -{35, "Terms only exclusion (stop) words"}, +{35, "Terms only exclusion stopwords"}, {36, "Term in invalid format for index or relation"}, -{37, "Illegal or unsupported boolean operator"}, +{37, "Unsupported boolean operator"}, {38, "Too many boolean operators in query"}, {39, "Proximity not supported"}, -{40, "Illegal or unsupported proximity relation"}, -{41, "Illegal or unsupported proximity distance"}, -{42, "Illegal or unsupported proximity unit"}, -{43, "Illegal or unsupported proximity ordering"}, -{44, "Illegal or unsupported combination of proximity modifiers"}, +{40, "Unsupported proximity relation"}, +{41, "Unsupported proximity distance"}, +{42, "Unsupported proximity unit"}, +{43, "Unsupported proximity ordering"}, +{44, "Unsupported combination of proximity modifiers"}, {45, "context set name (prefix) assigned to multiple identifiers"}, /* Diagnostics Relating to Result Sets */ {50, "Result sets not supported"}, @@ -581,7 +587,7 @@ static struct { {58, "Result set created with unpredictable partial results available"}, {59, "Result set created with valid partial results available"}, /* Diagnostics Relating to Records */ -{60, "Too many records retrieved"}, +{60, "Result set no created: too many records retrieved"}, {61, "First record position out of range"}, {62, "Negative number of records requested"}, {63, "System error in retrieving records"}, @@ -592,24 +598,33 @@ static struct { {68, "Not authorised to send record"}, {69, "Not authorised to send record in this schema"}, {70, "Record too large to send"}, +{71, "Unsupported record packing"}, +{72, "XPath retrieval unsupported"}, +{73, "XPath expression contains unsupported feature"}, +{74, "Unable to evaluate XPath expression"}, /* Diagnostics Relating to Sorting */ {80, "Sort not supported"}, -{81, "Unsupported sort type (sortKeys vs xSortKeys)"}, -{82, "Illegal or unsupported sort sequence"}, -{83, "Too many records"}, -{84, "Too many sort keys"}, +{81, "Unsupported sort type"}, +{82, "Unsupported sort sequence"}, +{83, "Too many records to sort"}, +{84, "Too many sort keys to sort"}, {85, "Duplicate sort keys"}, -{86, "Incompatible record formats"}, +{86, "Cannot sort: incompatible record formats"}, {87, "Unsupported schema for sort"}, -{88, "Unsupported tag path for sort"}, -{89, "Tag path illegal or unsupported for schema"}, -{90, "Illegal or unsupported direction value"}, -{91, "Illegal or unsupported case value"}, -{92, "Illegal or unsupported missing value action"}, +{88, "Unsupported path for sort"}, +{89, "Path unsupported for schema"}, +{90, "Unsupported direction value"}, +{91, "Unsupported case value"}, +{92, "Unsupported missing value action"}, /* Diagnostics Relating to Explain */ {100, "Explain not supported"}, {101, "Explain request type not supported (SOAP vs GET)"}, {102, "Explain record temporarily unavailable"}, +/* Diagnostics Relating to Stylesheets */ +{110, "Stylesheets not supported"}, +{111, "Unsupported stylesheet"}, +/* Diagnostics relating to Scan */ +{120, "Response position out of range"}, {0, 0} }; @@ -672,7 +687,6 @@ static int srw_bib1_map[] = { 105, 3, 106, 66, 107, 11, - 108, 10, 108, 13, 108, 14, 108, 25, @@ -680,7 +694,7 @@ static int srw_bib1_map[] = { 108, 27, 108, 45, - 109, 1, + 109, 9, 110, 37, 111, 1, 112, 58, -- 1.7.10.4