mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
Issue #80 - De-unify dom/xslt
This commit is contained in:
parent
e11bd35692
commit
2c7e0856ce
6 changed files with 9 additions and 4 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
UNIFIED_SOURCES += [
|
SOURCES += [
|
||||||
'txDouble.cpp',
|
'txDouble.cpp',
|
||||||
'txExpandedName.cpp',
|
'txExpandedName.cpp',
|
||||||
'txExpandedNameMap.cpp',
|
'txExpandedNameMap.cpp',
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
UNIFIED_SOURCES += [
|
SOURCES += [
|
||||||
'txXMLParser.cpp',
|
'txXMLParser.cpp',
|
||||||
'txXMLUtils.cpp',
|
'txXMLUtils.cpp',
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ EXPORTS.mozilla.dom += [
|
||||||
'XPathResult.h',
|
'XPathResult.h',
|
||||||
]
|
]
|
||||||
|
|
||||||
UNIFIED_SOURCES += [
|
SOURCES += [
|
||||||
'txBooleanExpr.cpp',
|
'txBooleanExpr.cpp',
|
||||||
'txBooleanResult.cpp',
|
'txBooleanResult.cpp',
|
||||||
'txCoreFunctionCall.cpp',
|
'txCoreFunctionCall.cpp',
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ EXPORTS.mozilla.dom += [
|
||||||
'txMozillaXSLTProcessor.h'
|
'txMozillaXSLTProcessor.h'
|
||||||
]
|
]
|
||||||
|
|
||||||
UNIFIED_SOURCES += [
|
SOURCES += [
|
||||||
'txBufferingHandler.cpp',
|
'txBufferingHandler.cpp',
|
||||||
'txCurrentFunctionCall.cpp',
|
'txCurrentFunctionCall.cpp',
|
||||||
'txDocumentFunctionCall.cpp',
|
'txDocumentFunctionCall.cpp',
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,9 @@
|
||||||
#include "txLog.h"
|
#include "txLog.h"
|
||||||
#include "txURIUtils.h"
|
#include "txURIUtils.h"
|
||||||
#include "txXMLParser.h"
|
#include "txXMLParser.h"
|
||||||
|
#include "mozilla/Logging.h"
|
||||||
|
|
||||||
|
using mozilla::LogLevel;
|
||||||
|
|
||||||
const int32_t txExecutionState::kMaxRecursionDepth = 20000;
|
const int32_t txExecutionState::kMaxRecursionDepth = 20000;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,9 @@
|
||||||
#include "nsVariant.h"
|
#include "nsVariant.h"
|
||||||
#include "mozilla/dom/DocumentFragment.h"
|
#include "mozilla/dom/DocumentFragment.h"
|
||||||
#include "mozilla/dom/XSLTProcessorBinding.h"
|
#include "mozilla/dom/XSLTProcessorBinding.h"
|
||||||
|
#include "mozilla/ErrorResult.h"
|
||||||
|
|
||||||
|
using namespace mozilla;
|
||||||
using namespace mozilla::dom;
|
using namespace mozilla::dom;
|
||||||
|
|
||||||
static NS_DEFINE_CID(kXMLDocumentCID, NS_XMLDOCUMENT_CID);
|
static NS_DEFINE_CID(kXMLDocumentCID, NS_XMLDOCUMENT_CID);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue