Ongoing attempt to get Transformiix building on Windows. Not part of mozilla build.
git-svn-id: svn://10.0.0.236/trunk@65731 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -25,21 +25,21 @@
|
||||
* - changed constant short declarations in many of the classes
|
||||
* with enumerations, commented with //--LF
|
||||
*
|
||||
* $Id: Expr.h,v 1.2 2000-04-06 22:34:02 Peter.VanderBeken%pandora.be Exp $
|
||||
* $Id: Expr.h,v 1.3 2000-04-12 22:32:25 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* XSL expression class definitions.
|
||||
* Much of this code was ported from XSL:P. <BR />
|
||||
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
|
||||
* @version $Revision: 1.2 $ $Date: 2000-04-06 22:34:02 $
|
||||
* @version $Revision: 1.3 $ $Date: 2000-04-12 22:32:25 $
|
||||
**/
|
||||
|
||||
#ifndef TRANSFRMX_EXPR_H
|
||||
#define TRANSFRMX_EXPR_H
|
||||
|
||||
#include <math.h>
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "ErrorObserver.h"
|
||||
#include "NodeSet.h"
|
||||
#include "List.h"
|
||||
|
||||
@@ -25,14 +25,14 @@
|
||||
* -- changed constant short declarations in Token and ExprLexer to
|
||||
* enumerations, commented with //--LF
|
||||
*
|
||||
* $Id: ExprLexer.h,v 1.1 2000-04-06 07:45:29 kvisco%ziplink.net Exp $
|
||||
* $Id: ExprLexer.h,v 1.2 2000-04-12 22:32:45 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
|
||||
#ifndef MITREXSL_EXPRLEXER_H
|
||||
#define MITREXSL_EXPRLEXER_H
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "baseutils.h"
|
||||
#include <iostream.h>
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
* This class was ported from XSL:P, an open source Java based
|
||||
* XSLT processor, written by yours truly.
|
||||
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
* @version $Revision: 1.1 $ $Date: 2000-04-06 07:45:29 $
|
||||
* @version $Revision: 1.2 $ $Date: 2000-04-12 22:32:45 $
|
||||
**/
|
||||
class Token {
|
||||
|
||||
|
||||
@@ -21,21 +21,21 @@
|
||||
* Keith Visco, kvisco@ziplink.net
|
||||
* -- original author.
|
||||
*
|
||||
* $Id: ExprParser.h,v 1.1 2000-04-06 07:45:30 kvisco%ziplink.net Exp $
|
||||
* $Id: ExprParser.h,v 1.2 2000-04-12 22:32:58 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* ExprParser
|
||||
* This class is used to parse XSL Expressions
|
||||
* @author <A href="mailto:kvisco@ziplink.net">Keith Visco</A>
|
||||
* @version $Revision: 1.1 $ $Date: 2000-04-06 07:45:30 $
|
||||
* @version $Revision: 1.2 $ $Date: 2000-04-12 22:32:58 $
|
||||
* @see ExprLexer
|
||||
**/
|
||||
|
||||
#ifndef MITREXSL_EXPRPARSER_H
|
||||
#define MITREXSL_EXPRPARSER_H
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "ExprLexer.h"
|
||||
#include "Expr.h"
|
||||
#include "FunctionLib.h"
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
* Olivier Gerardin, ogerardin@vo.lu
|
||||
* -- added number functions
|
||||
*
|
||||
* $Id: FunctionLib.h,v 1.2 2000-04-06 22:35:20 Peter.VanderBeken%pandora.be Exp $
|
||||
* $Id: FunctionLib.h,v 1.3 2000-04-12 22:33:21 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
#ifndef MITREXSL_FUNCTIONLIB_H
|
||||
#define MITREXSL_FUNCTIONLIB_H
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "primitives.h"
|
||||
#include "NodeSet.h"
|
||||
#include "List.h"
|
||||
|
||||
@@ -21,17 +21,17 @@
|
||||
* Keith Visco, kvisco@ziplink.net
|
||||
* -- original author.
|
||||
*
|
||||
* $Id: Parser.cpp,v 1.1 2000-04-06 07:45:36 kvisco%ziplink.net Exp $
|
||||
* $Id: Parser.cpp,v 1.2 2000-04-12 22:33:30 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* Test App for Expressions
|
||||
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
|
||||
* @version $Revision: 1.1 $ $Date: 2000-04-06 07:45:36 $
|
||||
* @version $Revision: 1.2 $ $Date: 2000-04-12 22:33:30 $
|
||||
**/
|
||||
|
||||
#include <iostream.h>
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "Expr.h"
|
||||
#include "ExprLexer.h"
|
||||
#include "ExprParser.h"
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
DEPTH=..\..\..\..\..
|
||||
DEPTH=..\..\..\..
|
||||
|
||||
LIBRARY_NAME=transformix_xpath
|
||||
MODULE=transformix
|
||||
@@ -98,8 +98,8 @@ CPP_OBJS= \
|
||||
EXPORTS = \
|
||||
$(NULL)
|
||||
|
||||
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\..\base -I..\util -I..\..\xml\dom \
|
||||
-I..\..\xml -I ..\..\xsl
|
||||
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\raptor -I..\base -I..\util -I..\xml\dom \
|
||||
-I..\xml -I ..\xslt
|
||||
|
||||
LCFLAGS = \
|
||||
$(LCFLAGS) \
|
||||
|
||||
Reference in New Issue
Block a user