1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
--- ./src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp.orig Sat Mar 5 17:46:13 2005
+++ ./src/xalanc/ICUBridge/ICUFormatNumberFunctor.hpp Sat Mar 5 17:46:23 2005
@@ -120,6 +120,8 @@ struct DecimalFormatCacheStruct
private:
DecimalFormatCacheStruct();
+
+public:
DecimalFormatCacheStruct(const DecimalFormatCacheStruct& other);
};
--- ./src/xalanc/TestXSLT/process.cpp.orig Sat Dec 25 10:53:35 2004
+++ ./src/xalanc/TestXSLT/process.cpp Sat Dec 25 12:05:48 2004
@@ -628,7 +628,7 @@
}
else if(FormatterListener::OUTPUT_METHOD_TEXT == outputType)
{
- formatter = new FormatterToText( theManager, resultWriter, mimeEncoding);
+ formatter = new FormatterToText( resultWriter, mimeEncoding, true, true, theManager);
}
else if(FormatterListener::OUTPUT_METHOD_HTML == outputType)
{
@@ -656,14 +656,15 @@
FormatterToHTML* const fToHTML =
new FormatterToHTML(
- theManager,
resultWriter,
mimeEncoding,
mediatype,
doctypeSystem,
doctypePublic,
outputIndent,
- indentAmount);
+ indentAmount,
+ true, false,
+ theManager);
fToHTML->setPrefixResolver(&prefixResolver);
--- ./src/xalanc/XMLSupport/FormatterToText.hpp.orig Sat Dec 25 10:50:53 2004
+++ ./src/xalanc/XMLSupport/FormatterToText.hpp Sat Dec 25 10:50:57 2004
@@ -221,7 +221,9 @@
private:
// These are not implemented.
+#if 0
FormatterToText(const FormatterToText&);
+#endif
FormatterToText&
operator=(const FormatterToText&);
--- ./src/xalanc/XPath/ElementPrefixResolverProxy.hpp.orig Sat Dec 25 09:51:20 2004
+++ ./src/xalanc/XPath/ElementPrefixResolverProxy.hpp Sat Dec 25 09:51:28 2004
@@ -86,7 +86,9 @@
private:
//notimplemented
+#if 0
ElementPrefixResolverProxy(const ElementPrefixResolverProxy&);
+#endif
const XalanElement* const m_namespaceContext;
--- ./src/xalanc/XPath/NameSpace.hpp.orig Sat Dec 25 10:17:01 2004
+++ ./src/xalanc/XPath/NameSpace.hpp Sat Dec 25 10:17:15 2004
@@ -191,7 +191,9 @@
}
private:
+#if 0
NameSpace(const NameSpace&);
+#endif
XalanDOMString m_prefix;
--- ./src/xalanc/XPath/XalanQNameByValue.hpp.orig Sat Dec 25 10:30:57 2004
+++ ./src/xalanc/XPath/XalanQNameByValue.hpp Sat Dec 25 10:31:09 2004
@@ -290,7 +290,9 @@
private:
// not implemented
+#if 0
XalanQNameByValue(const XalanQNameByValue& theSource);
+#endif
void
initialize(
const XalanDOMChar* qname,
--- ./src/xalanc/XSLT/FunctionSystemProperty.hpp.orig Sat Dec 25 10:29:12 2004
+++ ./src/xalanc/XSLT/FunctionSystemProperty.hpp Sat Dec 25 10:30:13 2004
@@ -73,7 +73,9 @@
private:
+#if 0
FunctionSystemProperty(const FunctionSystemProperty&);
+#endif
// Not implemented...
FunctionSystemProperty&
--- ./src/xalanc/XSLT/TopLevelArg.hpp.orig Sat Dec 25 10:26:41 2004
+++ ./src/xalanc/XSLT/TopLevelArg.hpp Sat Dec 25 10:27:01 2004
@@ -147,7 +147,9 @@
private:
// not implemented
+#if 0
TopLevelArg(const TopLevelArg& theSource);
+#endif
XalanQNameByValue m_qname;
|