├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE │ └── add-new-license.md ├── .gitignore ├── DOCUMENTATION.adoc ├── LICENSE ├── LICENSE-Apache-2.0 ├── NOTICE ├── README.md ├── output ├── adoc │ └── OSLC-handbook.adoc ├── docbook │ └── OSLC-handbook.xml ├── docx │ └── OSLC-handbook.docx ├── html │ └── index.html ├── markdown │ └── OSLC-handbook.md └── pdf │ └── OSLC-handbook.pdf ├── src ├── .header.adoc ├── 0BSD.yaml ├── AGPL-3.0.yaml ├── Apache-1.1.yaml ├── Apache-2.0.yaml ├── Artistic-1.0-Perl.yaml ├── Artistic-2.0.yaml ├── BSD-2-Clause.yaml ├── BSD-3-Clause.yaml ├── BSD-4-Clause-UC.yaml ├── BSD-4-Clause.yaml ├── BSL-1.0.yaml ├── CDDL-1.0.yaml ├── CDDL-1.1.yaml ├── EPL-1.0.yaml ├── EPL-2.0.yaml ├── Entessa.yaml ├── GPL-2.0.yaml ├── GPL-3.0.yaml ├── ISC.yaml ├── LGPL-2.0.yaml ├── LGPL-2.1.yaml ├── LGPL-3.0.yaml ├── MIT-CMU.yaml ├── MIT.yaml ├── MPL-1.0.yaml ├── MPL-1.1.yaml ├── MPL-2.0.yaml ├── Ms-PL.yaml ├── NCSA.yaml ├── OpenSSL.yaml ├── PHP-3.0.yaml ├── PHP-3.01.yaml ├── Plexus.yaml ├── Python-2.0.yaml ├── TCL.yaml ├── libpng.yaml └── zlib.yaml ├── style ├── asciidoctor.css └── finos.css └── unyaml.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-new-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/.github/ISSUE_TEMPLATE/add-new-license.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .bash_profile 3 | -------------------------------------------------------------------------------- /DOCUMENTATION.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/DOCUMENTATION.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/LICENSE-Apache-2.0 -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/README.md -------------------------------------------------------------------------------- /output/adoc/OSLC-handbook.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/output/adoc/OSLC-handbook.adoc -------------------------------------------------------------------------------- /output/docbook/OSLC-handbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/output/docbook/OSLC-handbook.xml -------------------------------------------------------------------------------- /output/docx/OSLC-handbook.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/output/docx/OSLC-handbook.docx -------------------------------------------------------------------------------- /output/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/output/html/index.html -------------------------------------------------------------------------------- /output/markdown/OSLC-handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/output/markdown/OSLC-handbook.md -------------------------------------------------------------------------------- /output/pdf/OSLC-handbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/output/pdf/OSLC-handbook.pdf -------------------------------------------------------------------------------- /src/.header.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/.header.adoc -------------------------------------------------------------------------------- /src/0BSD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/0BSD.yaml -------------------------------------------------------------------------------- /src/AGPL-3.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/AGPL-3.0.yaml -------------------------------------------------------------------------------- /src/Apache-1.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Apache-1.1.yaml -------------------------------------------------------------------------------- /src/Apache-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Apache-2.0.yaml -------------------------------------------------------------------------------- /src/Artistic-1.0-Perl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Artistic-1.0-Perl.yaml -------------------------------------------------------------------------------- /src/Artistic-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Artistic-2.0.yaml -------------------------------------------------------------------------------- /src/BSD-2-Clause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/BSD-2-Clause.yaml -------------------------------------------------------------------------------- /src/BSD-3-Clause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/BSD-3-Clause.yaml -------------------------------------------------------------------------------- /src/BSD-4-Clause-UC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/BSD-4-Clause-UC.yaml -------------------------------------------------------------------------------- /src/BSD-4-Clause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/BSD-4-Clause.yaml -------------------------------------------------------------------------------- /src/BSL-1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/BSL-1.0.yaml -------------------------------------------------------------------------------- /src/CDDL-1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/CDDL-1.0.yaml -------------------------------------------------------------------------------- /src/CDDL-1.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/CDDL-1.1.yaml -------------------------------------------------------------------------------- /src/EPL-1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/EPL-1.0.yaml -------------------------------------------------------------------------------- /src/EPL-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/EPL-2.0.yaml -------------------------------------------------------------------------------- /src/Entessa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Entessa.yaml -------------------------------------------------------------------------------- /src/GPL-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/GPL-2.0.yaml -------------------------------------------------------------------------------- /src/GPL-3.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/GPL-3.0.yaml -------------------------------------------------------------------------------- /src/ISC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/ISC.yaml -------------------------------------------------------------------------------- /src/LGPL-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/LGPL-2.0.yaml -------------------------------------------------------------------------------- /src/LGPL-2.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/LGPL-2.1.yaml -------------------------------------------------------------------------------- /src/LGPL-3.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/LGPL-3.0.yaml -------------------------------------------------------------------------------- /src/MIT-CMU.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/MIT-CMU.yaml -------------------------------------------------------------------------------- /src/MIT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/MIT.yaml -------------------------------------------------------------------------------- /src/MPL-1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/MPL-1.0.yaml -------------------------------------------------------------------------------- /src/MPL-1.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/MPL-1.1.yaml -------------------------------------------------------------------------------- /src/MPL-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/MPL-2.0.yaml -------------------------------------------------------------------------------- /src/Ms-PL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Ms-PL.yaml -------------------------------------------------------------------------------- /src/NCSA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/NCSA.yaml -------------------------------------------------------------------------------- /src/OpenSSL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/OpenSSL.yaml -------------------------------------------------------------------------------- /src/PHP-3.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/PHP-3.0.yaml -------------------------------------------------------------------------------- /src/PHP-3.01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/PHP-3.01.yaml -------------------------------------------------------------------------------- /src/Plexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Plexus.yaml -------------------------------------------------------------------------------- /src/Python-2.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/Python-2.0.yaml -------------------------------------------------------------------------------- /src/TCL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/TCL.yaml -------------------------------------------------------------------------------- /src/libpng.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/libpng.yaml -------------------------------------------------------------------------------- /src/zlib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/src/zlib.yaml -------------------------------------------------------------------------------- /style/asciidoctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/style/asciidoctor.css -------------------------------------------------------------------------------- /style/finos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/style/finos.css -------------------------------------------------------------------------------- /unyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finos/OSLC-handbook/HEAD/unyaml.py --------------------------------------------------------------------------------