mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-28 23:28:16 +02:00
XFA -- Add other objects (#12949)
- connectionSet: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.364.2157&rep=rep1&type=pdf#page=969 - datasets: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.364.2157&rep=rep1&type=pdf#page=1038 - signature: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.364.2157&rep=rep1&type=pdf#page=1040 - stylesheet: the same - xhtml: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.364.2157&rep=rep1&type=pdf#page=1187
This commit is contained in:
parent
3787bd41ef
commit
0479deef4e
9 changed files with 623 additions and 2 deletions
|
@ -14,15 +14,25 @@
|
|||
*/
|
||||
|
||||
import { ConfigNamespace } from "./config.js";
|
||||
import { ConnectionSetNamespace } from "./connection_set.js";
|
||||
import { DatasetsNamespace } from "./datasets.js";
|
||||
import { LocaleSetNamespace } from "./locale_set.js";
|
||||
import { SignatureNamespace } from "./signature.js";
|
||||
import { StylesheetNamespace } from "./stylesheet.js";
|
||||
import { TemplateNamespace } from "./template.js";
|
||||
import { XdpNamespace } from "./xdp.js";
|
||||
import { XhtmlNamespace } from "./xhtml.js";
|
||||
|
||||
const NamespaceSetUp = {
|
||||
config: ConfigNamespace,
|
||||
connection: ConnectionSetNamespace,
|
||||
datasets: DatasetsNamespace,
|
||||
localeSet: LocaleSetNamespace,
|
||||
signature: SignatureNamespace,
|
||||
stylesheet: StylesheetNamespace,
|
||||
template: TemplateNamespace,
|
||||
xdp: XdpNamespace,
|
||||
xhtml: XhtmlNamespace,
|
||||
};
|
||||
|
||||
export { NamespaceSetUp };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue