Added definitions for some of the XSLT extension functions

This commit is contained in:
kvisco%ziplink.net 2000-04-19 10:32:35 +00:00
Родитель b604dd5b36
Коммит 3f82647a53
2 изменённых файлов: 15 добавлений и 5 удалений

Просмотреть файл

@ -27,14 +27,14 @@
* PRECEDING_SIBLING_AXIS to be compatible with the
* W3C XPath 1.0 Recommendation
*
* $Id: Names.cpp,v 1.3 2000/04/12 11:00:29 kvisco%ziplink.net Exp $
* $Id: Names.cpp,v 1.4 2000/04/19 10:32:35 kvisco%ziplink.net Exp $
*/
/**
* XSL names used throughout the XSLProcessor.
* Probably should be wrapped in a Namespace
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
* @version $Revision: 1.3 $ $Date: 2000/04/12 11:00:29 $
* @version $Revision: 1.4 $ $Date: 2000/04/19 10:32:35 $
**/
#include "Names.h"
@ -147,7 +147,12 @@ const String NODE_FNAME = "node";
const String IDENTITY_OP = ".";
const String PARENT_OP = "..";
//-- XSL extension functions
//-- XSLT extension functions
const String CURRENT_FN = "current";
const String FORMAT_NUMBER_FN = "format-number";
const String GENERATE_ID_FN = "generate-id";
const String SYSTEM_PROPERTY_FN = "system-property";
//-- MISC
const String WILD_CARD = "*";

Просмотреть файл

@ -21,7 +21,7 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: Names.h,v 1.3 2000/04/12 22:33:33 nisheeth%netscape.com Exp $
* $Id: Names.h,v 1.4 2000/04/19 10:32:20 kvisco%ziplink.net Exp $
*/
#include "TxString.h"
@ -137,8 +137,13 @@ extern const String NODE_FNAME;
extern const String IDENTITY_OP;
extern const String PARENT_OP;
//-- XSL extension functions
//-- XSLT extension functions
extern const String CURRENT_FN;
extern const String FORMAT_NUMBER_FN;
extern const String GENERATE_ID_FN;
extern const String SYSTEM_PROPERTY_FN;
//-- MISC
extern const String WILD_CARD;
#endif