зеркало из https://github.com/mozilla/pjs.git
Adding makefile.wins for transformiix examples, not part of build, submitted by Arthur Barrett, raised build number and updated contributors/changes
This commit is contained in:
Родитель
a80d531408
Коммит
4bd308df68
|
@ -1,6 +1,11 @@
|
|||
TransforMiiX (TM)
|
||||
(C) Copyright 1999, 2000, The MITRE Corporation, Keith Visco, et al. All rights reserved.
|
||||
|
||||
Build 20000725
|
||||
|
||||
-- Windows Makefiles are up to date to create Mozilla module
|
||||
- thanx to Arthur Barrett and Justin Smith
|
||||
|
||||
Build 20000722
|
||||
|
||||
-- Fixed leading + trailing whitspace when printing comments
|
||||
|
|
|
@ -98,6 +98,19 @@ The following people have contributed to the development.
|
|||
<TABLE WIDTH="100%" CELLSPACING="1">
|
||||
<TR BGColor="#EEEEEE"><TH>Name</TH><TH>Contribution</TH><TH>Company</TH></TR>
|
||||
|
||||
<!-- Entry -->
|
||||
<TR BGColor="#EEEEEE">
|
||||
<TD VALIGN="TOP">
|
||||
<A HREF="mailto:arthur.barrett@march-hare.com">Barrett, Arthur</A>
|
||||
</TD>
|
||||
<TD WIDTH="300">
|
||||
Working on Windows makefiles.
|
||||
</TD>
|
||||
<TD VALIGN="TOP">
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<!-- Entry -->
|
||||
<TR BGColor="#EEEEEE">
|
||||
<TD VALIGN="TOP">
|
||||
|
@ -276,6 +289,19 @@ The following people have contributed to the development.
|
|||
</TD>
|
||||
</TR>
|
||||
|
||||
<!-- Entry -->
|
||||
<TR BGColor="#EEEEEE">
|
||||
<TD VALIGN="TOP">
|
||||
<A HREF="mailto:jjs@acis.com.au">Smith, Justin</A>
|
||||
</TD>
|
||||
<TD WIDTH="300">
|
||||
Working on Windows Makefiles.
|
||||
</TD>
|
||||
<TD VALIGN="TOP">
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
|
||||
|
||||
</TABLE>
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is Transformiix XSLT Processor.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Axel Hecht.
|
||||
# Portions created by Axel Hecht are Copyright (C) Axel Hecht.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Axel Hecht <axel@pike.org>
|
||||
#
|
||||
|
||||
DEPTH = ..\..\..\..\..\..\..
|
||||
|
||||
CHROME_DIR=packages\transformiix
|
||||
CHROME_CONTENT_DIR=transformiix\content
|
||||
|
||||
CHROME_CONTENT = \
|
||||
.\transformiix.xul \
|
||||
.\transformiix.js \
|
||||
.\simple.xml \
|
||||
.\simplexsl.xml \
|
||||
$(NULL)
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
|
@ -82,7 +82,7 @@ function tryToTransform() {
|
|||
dump("Mal sehen, "+xsltProcessor+"\n");
|
||||
var outDocument = resultDocument.implementation.createDocument("", "", null);
|
||||
xsltProcessor.TransformDocument(xmlDocumentNode, xslDocumentNode, outDocument, null);
|
||||
DumpDOM(outDocument.documentElement);
|
||||
DumpDOM(xmlDocument.documentElement);
|
||||
// DumpDOM(outDocument.documentElement);
|
||||
// DumpDOM(xmlDocument.documentElement);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is Transformiix XSLT Processor.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Axel Hecht.
|
||||
# Portions created by Axel Hecht are Copyright (C) Axel Hecht.
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Axel Hecht <axel@pike.org>
|
||||
#
|
||||
|
||||
DEPTH = ..\..\..\..\..\..
|
||||
|
||||
DIRS = content
|
||||
|
||||
CHROME_DIR = packages\transformiix
|
||||
CHROME_MISC_DIR = \
|
||||
.\
|
||||
$(NULL)
|
||||
|
||||
CHROME_TYPE = content skin
|
||||
|
||||
CHROME_MISC = \
|
||||
.\manifest.rdf \
|
||||
$(NULL)
|
||||
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
|
@ -22,5 +22,8 @@
|
|||
DEPTH=..\..\..
|
||||
|
||||
DIRS=base net xml xpath xslt
|
||||
!if defined(MOZ_XSL)
|
||||
DIRS=$(DIRS) examples\mozilla\Transformiix
|
||||
!endif
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
* Olivier Gerardin
|
||||
* -- Changed behavior of passing parameters to templates
|
||||
*
|
||||
* $Id: XSLTProcessor.cpp,v 1.20 2000-07-23 07:43:37 kvisco%ziplink.net Exp $
|
||||
* $Id: XSLTProcessor.cpp,v 1.21 2000-07-25 07:03:40 axel%pike.org Exp $
|
||||
*/
|
||||
|
||||
#include "XSLTProcessor.h"
|
||||
|
@ -53,7 +53,7 @@
|
|||
/**
|
||||
* XSLTProcessor is a class for Processing XSL styelsheets
|
||||
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
* @version $Revision: 1.20 $ $Date: 2000-07-23 07:43:37 $
|
||||
* @version $Revision: 1.21 $ $Date: 2000-07-25 07:03:40 $
|
||||
**/
|
||||
|
||||
/**
|
||||
|
@ -74,7 +74,7 @@ XSLTProcessor::XSLTProcessor() {
|
|||
|
||||
xslVersion.append("1.0");
|
||||
appName.append("TransforMiiX");
|
||||
appVersion.append("1.0 [beta v20000722]");
|
||||
appVersion.append("1.0 [beta v20000725]");
|
||||
|
||||
|
||||
//-- create XSL element types
|
||||
|
|
Загрузка…
Ссылка в новой задаче