├── org.oasis.committeeNote.xhtml ├── build.xml ├── resource │ ├── OASISLogo-v2.0.jpg │ └── oasis-note.css ├── xsl │ ├── insertParameters.xml │ └── oasis-cn-dita2xhtml.xsl ├── plugin.xml └── build-oasis-xhtml-committeeNote.xml ├── org.oasis-open.dita.publishing ├── template │ ├── out │ │ ├── OASISLogo-v2.0.jpg │ │ ├── introduction │ │ │ └── introduction.html │ │ ├── acknowledgments │ │ │ └── acknowledgments.html │ │ ├── revision-history │ │ │ └── revision-history.html │ │ ├── frontmatter │ │ │ └── notices.html │ │ └── oasis-note.css │ ├── introduction │ │ ├── introduction.ditamap │ │ └── introduction.dita │ ├── acknowledgments │ │ └── acknowledgments.dita │ ├── revision-history │ │ └── revision-history.dita │ ├── committee-note.ditamap │ ├── frontmatter │ │ ├── notices.dita │ │ └── cover-page-information.dita │ ├── spec.ditamap │ └── resources │ │ ├── subjectScheme.ditamap │ │ └── key-definitions.ditamap ├── PDFTransformParameters.xml ├── doc │ └── OASIS-style-specifications │ │ └── oasis.ditaval ├── pdf │ ├── common │ │ ├── artwork │ │ │ └── OASISLogo-v2.0.jpg │ │ └── vars │ │ │ └── en.xml │ ├── fo │ │ ├── attrs │ │ │ ├── oasis-common-sw-domain-attr.xsl │ │ │ ├── oasis-common-hi-domain-attr.xsl │ │ │ ├── oasis-common-lists-attr.xsl │ │ │ ├── oasis-common-xml-domain-attr.xsl │ │ │ ├── oasis-common-pr-domain-attr.xsl │ │ │ ├── oasis-tc-custom-attr.xsl │ │ │ ├── oasis-common-links-attr.xsl │ │ │ ├── oasis-cn-custom-attr.xsl │ │ │ ├── oasis-common-static-content-attr.xsl │ │ │ ├── oasis-common-toc-attr.xsl │ │ │ ├── oasis-common-basic-settings.xsl │ │ │ ├── oasis-spec-topic-attr.xsl │ │ │ ├── oasis-common-tables-attr.xsl │ │ │ ├── oasis-common-commons-attr.xsl │ │ │ └── oasis-common-cover-attr.xsl │ │ ├── xsl │ │ │ ├── oasis-tc-topic2fo-fop-shell.xsl │ │ │ ├── oasis-spec-topic2fo-fop-shell.xsl │ │ │ ├── oasis-spec-footers.xsl │ │ │ ├── oasis-tc-footers.xsl │ │ │ ├── oasis-tc-topic2fo-shell.xsl │ │ │ ├── oasis-spec-topic2fo-shell.xsl │ │ │ ├── oasis-common-toc.xsl │ │ │ ├── oasis-tc-task-elements.xsl │ │ │ ├── oasis-tc-front-matter.xsl │ │ │ ├── oasis-spec-custom-xsl.xsl │ │ │ ├── oasis-spec-front-matter.xsl │ │ │ ├── oasis-common-footers.xsl │ │ │ ├── oasis-common-links.xsl │ │ │ ├── oasis-common-front-matter.xsl │ │ │ └── oasis-common-tables.xsl │ │ └── oasis-common-font-mappings.xml │ └── catalog.xml ├── html5-params.xml ├── xslhtml5 │ ├── dita2oasis-html5_shell.xsl │ ├── format-rfc.xsl │ └── oasis-html-footer.xsl ├── plugin.xml ├── xsl │ ├── locate-rfc-items.xsl │ ├── add-identifiers.xsl │ ├── maplink_oasis.xsl │ ├── prefix-titles-with-numbers.xsl │ ├── collect-rfclist.xsl │ ├── add-topic-numbers.xsl │ └── generate-rfclist.xsl ├── readme.txt ├── build-oasis-pdf.xml └── resources │ ├── oasis.css │ └── OASIS_Specification_Template_v1-0.css ├── org.oasis.spec.xhtml ├── integrator.xml ├── plugin.xml ├── xsl │ ├── oasis-overrides.xsl │ ├── spec_dita2htmlShell.xsl │ └── oasis_footer.xsl ├── resource │ ├── oasis.css │ └── OASIS_Specification_Template_v1-0.css └── build_dita2spec-xhtml.xml ├── .gitignore └── CONTRIBUTING.md /org.oasis.committeeNote.xhtml/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /org.oasis.committeeNote.xhtml/resource/OASISLogo-v2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasis-open/dita-stylesheets/HEAD/org.oasis.committeeNote.xhtml/resource/OASISLogo-v2.0.jpg -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/template/out/OASISLogo-v2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasis-open/dita-stylesheets/HEAD/org.oasis-open.dita.publishing/template/out/OASISLogo-v2.0.jpg -------------------------------------------------------------------------------- /org.oasis.spec.xhtml/integrator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/PDFTransformParameters.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/doc/OASIS-style-specifications/oasis.ditaval: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/pdf/common/artwork/OASISLogo-v2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasis-open/dita-stylesheets/HEAD/org.oasis-open.dita.publishing/pdf/common/artwork/OASISLogo-v2.0.jpg -------------------------------------------------------------------------------- /org.oasis.committeeNote.xhtml/xsl/insertParameters.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/template/introduction/introduction.ditamap: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Introduction 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/template/introduction/introduction.dita: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Introduction 5 | 6 |

7 | 8 |
9 | -------------------------------------------------------------------------------- /org.oasis.spec.xhtml/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.oasis.committeeNote.xhtml/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | com.sophos.tocjs/ 2 | com.tagsmiths.preprocess.inspector/ 3 | org.dita.base/ 4 | org.dita.eclipsehelp/ 5 | org.dita.html5/ 6 | org.dita.htmlhelp/ 7 | org.dita.javahelp/ 8 | org.dita.pdf2/ 9 | org.dita.pdf2.axf/ 10 | org.dita.pdf2.fop/ 11 | org.dita.pdf2.xep/ 12 | org.dita.specialization.dita11/ 13 | org.dita.troff/ 14 | org.dita.xhtml/ 15 | org.oasis-open.dita.v1_2/ 16 | org.oasis-open.dita.v1_3/ 17 | org.oasis.spec.pdf/SpecPDF.xpr 18 | org.oasis.spec.xhtml/SpecXHTML.xpr 19 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/html5-params.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/xslhtml5/dita2oasis-html5_shell.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/pdf/fo/attrs/oasis-common-sw-domain-attr.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/template/acknowledgments/acknowledgments.dita: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Acknowledgments 5 | The following individuals participated in the creation of this document and are 6 | gratefully acknowledged. 7 | 8 | 9 | <Name, Company | Individual member> 10 | 11 |

In addition, the <name of OASIS TC> also would like to recognize the following people 12 | for their insights and support:

13 | 14 | <Name> 15 | <Name> 16 | 17 | 18 |
19 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/pdf/fo/xsl/oasis-tc-topic2fo-fop-shell.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/pdf/fo/attrs/oasis-common-hi-domain-attr.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | green 12 | 13 | 14 | 15 | red 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.oasis-open.dita.publishing/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |