2021-02-01 21:44:03 +09:00
|
|
|
/* Copyright 2021 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { ConfigNamespace } from "./config.js";
|
2021-02-11 20:30:37 +09:00
|
|
|
import { ConnectionSetNamespace } from "./connection_set.js";
|
|
|
|
import { DatasetsNamespace } from "./datasets.js";
|
2021-02-11 02:04:43 +09:00
|
|
|
import { LocaleSetNamespace } from "./locale_set.js";
|
2021-02-11 20:30:37 +09:00
|
|
|
import { SignatureNamespace } from "./signature.js";
|
|
|
|
import { StylesheetNamespace } from "./stylesheet.js";
|
2021-02-01 23:12:19 +09:00
|
|
|
import { TemplateNamespace } from "./template.js";
|
2021-02-01 21:44:03 +09:00
|
|
|
import { XdpNamespace } from "./xdp.js";
|
2021-02-11 20:30:37 +09:00
|
|
|
import { XhtmlNamespace } from "./xhtml.js";
|
2021-02-01 21:44:03 +09:00
|
|
|
|
|
|
|
const NamespaceSetUp = {
|
|
|
|
config: ConfigNamespace,
|
2021-02-11 20:30:37 +09:00
|
|
|
connection: ConnectionSetNamespace,
|
|
|
|
datasets: DatasetsNamespace,
|
2021-02-11 02:04:43 +09:00
|
|
|
localeSet: LocaleSetNamespace,
|
2021-02-11 20:30:37 +09:00
|
|
|
signature: SignatureNamespace,
|
|
|
|
stylesheet: StylesheetNamespace,
|
2021-02-01 23:12:19 +09:00
|
|
|
template: TemplateNamespace,
|
2021-02-01 21:44:03 +09:00
|
|
|
xdp: XdpNamespace,
|
2021-02-11 20:30:37 +09:00
|
|
|
xhtml: XhtmlNamespace,
|
2021-02-01 21:44:03 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
export { NamespaceSetUp };
|