From 4134c3a7bec9c0e78a7b49bb6ff75ebdcd195cef Mon Sep 17 00:00:00 2001 From: inoussa Date: Fri, 22 Apr 2016 08:53:28 +0000 Subject: [PATCH] +NCName support git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4625 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- wst/trunk/base_service_intf.pas | 3 ++- wst/trunk/ws_helper/pascal_parser_intf.pas | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wst/trunk/base_service_intf.pas b/wst/trunk/base_service_intf.pas index 0d438c6be..f8041985a 100644 --- a/wst/trunk/base_service_intf.pas +++ b/wst/trunk/base_service_intf.pas @@ -41,7 +41,8 @@ type { standart data types defines } anyURI = type string; token = type string; - language = type string; + language = type string; + NCName = type string; nonNegativeInteger = type LongWord; positiveInteger = type nonNegativeInteger; float = Single; diff --git a/wst/trunk/ws_helper/pascal_parser_intf.pas b/wst/trunk/ws_helper/pascal_parser_intf.pas index 95edf042c..ecdeb10d6 100644 --- a/wst/trunk/ws_helper/pascal_parser_intf.pas +++ b/wst/trunk/ws_helper/pascal_parser_intf.pas @@ -535,6 +535,7 @@ begin AddAlias('language','string',Result); AddAlias('anyURI','string',Result); AddAlias('ID','string',Result); + AddAlias('NCName','string',Result); //AddAlias('float','Single',Result); AddAlias('integer','int',Result); AddAlias('nonNegativeInteger','LongWord',Result);