├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── call-for-papers.yml │ ├── ospo-book-content.md │ ├── ospo-book-infra.yml │ └── ospo-book-translation.yml ├── dependabot.yml ├── linters │ └── markdownlint.yml ├── settings.yml └── workflows │ ├── linter.yml │ └── review-docs.yaml ├── .gitmodules ├── .vale.ini ├── .vale.tmpl ├── .vale ├── TODO │ ├── AMPM.yml │ ├── Acronyms.yml │ ├── Colons.yml │ ├── Contractions.yml │ ├── DateFormat.yml │ ├── Ellipses.yml │ ├── EmDashes.yml │ ├── Exclamation.yml │ ├── FirstPerson.yml │ ├── Gender.yml │ ├── GenderBias.yml │ ├── HeadingPunctuation.yml │ ├── Headings.yml │ ├── LICENSE │ ├── Latin.yml │ ├── LyHyphens.yml │ ├── NOTICE │ ├── OptionalPlurals.yml │ ├── Ordinal.yml │ ├── OxfordComma.yml │ ├── Parens.yml │ ├── Passive.yml │ ├── Periods.yml │ ├── Quotes.yml │ ├── README.md │ ├── Ranges.yml │ ├── Semicolons.yml │ ├── Slang.yml │ ├── Slash.yml │ ├── Spacing.yml │ ├── SpatialReferences.yml │ ├── Spelling.yml │ ├── Units.yml │ ├── We.yml │ ├── Will.yml │ ├── WordList.yml │ └── meta.json └── config │ └── vocabularies │ └── TODO │ └── accept.txt ├── BoF ├── India2024_Report │ ├── About.md │ ├── Apendix.md │ ├── Background.md │ ├── Bibliography.md │ ├── Challenges.md │ ├── README.md │ └── Report.pdf ├── README.md ├── attribution.md ├── example.pdf └── template.md ├── GOVERNANCE.md ├── LICENSE ├── README.md ├── local-meetups ├── framework.md └── local-ambassadors-guidelines.md ├── meetings ├── Agenda_2025 │ ├── Apr-10.md │ ├── Apr-24.md │ ├── Feb-13.md │ ├── Feb-24.md │ ├── Feb-27.md │ ├── Jul-03.md │ ├── Mar-24.md │ ├── May-12.md │ ├── May-27.md │ ├── May-29.md │ └── README.md ├── GOVERNANCE.md └── README.md ├── newsletter ├── 2021-07-26.md ├── 2021-08-30.md ├── 2021-09-27.md ├── 2021-10-26.md ├── 2021-11-30.md ├── 2021-12-28.md ├── 2022-01-31.md ├── 2022-02-22.md ├── 2022-03-29.md ├── 2022-04-26.md ├── 2022-05-31.md ├── 2022-06-28.md ├── 2022-07-26.md ├── 2022-08-30.md ├── 2022-09-26.md ├── 2022-10-25.md ├── 2022-11-29.md ├── 2022-12-30.md ├── 2023-01-31.md ├── 2023-02-27.md ├── 2023-03-29.md ├── 2023-04-25.md ├── 2023-05-30.md ├── 2023-07-25.md ├── 2023-08-29.md ├── 2023-10-02.md ├── 2023-10-31.md ├── 2023-12-20.md ├── 2024-01-30.md ├── 2024-02-29.md ├── 2024-03-31.md ├── 2024-06-07.md ├── 2024-06-27.md ├── 2024-09-03.md ├── 2024-11-07.md ├── 2024-12-20.md ├── 2025-01-28.md ├── 2025-02-27.md ├── 2025-06-02.md ├── 2025-07-29.md ├── 2025-11-26.md ├── Italian Version │ ├── 2022-09-26.md │ └── newsletter-template-italian.md ├── README.md ├── Spanish Version │ └── 2022-10-25.md ├── newsletter-guidelines.md ├── newsletter-template.md ├── 中文版 │ ├── 2023-07-25.md │ ├── 2023-08-29.md │ ├── 2023-10-02.md │ ├── 2023-10-31.md │ ├── 2023-12-20.md │ └── README.md └── 日本語版 │ ├── 2022-05-31.md │ ├── 2022-06-28.md │ ├── 2022-07-26.md │ ├── 2022-08-30.md │ ├── 2022-09-26.md │ ├── 2022-10-25.md │ └── 2022-11-29.md ├── ospo-book ├── .gitignore ├── .hugo_build.lock ├── AUTHORS.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE.md ├── Makefile ├── README.md ├── assets │ ├── icons │ │ ├── OSPOlogy-white.svg │ │ ├── logo-white.svg │ │ └── logo.svg │ ├── js │ │ ├── offline-search.js │ │ └── search.js │ ├── json │ │ └── offline-search-index.json │ └── scss │ │ ├── _archive.scss │ │ ├── _buttons.scss │ │ ├── _categories.scss │ │ ├── _cookie-banner.scss │ │ ├── _footer.scss │ │ ├── _hamburger.scss │ │ ├── _header.scss │ │ ├── _main.scss │ │ ├── _search.scss │ │ ├── _sidebar-left.scss │ │ ├── _sidebar-right.scss │ │ ├── _styles_project.scss │ │ ├── _tag-search.scss │ │ ├── _taxonomy.scss │ │ ├── _typography.scss │ │ └── _variables_project.scss ├── author-guide.md ├── config.toml ├── content │ ├── en │ │ ├── 00-chapter.md │ │ ├── 01-chapter.md │ │ ├── 02-chapter.md │ │ ├── 03-chapter.md │ │ ├── 04-chapter.md │ │ ├── 05-chapter.md │ │ ├── 06-chapter.md │ │ ├── 07-chapter.md │ │ ├── _index.md │ │ ├── references.md │ │ ├── search.md │ │ ├── taxonomy.md │ │ ├── toc.md │ │ └── use-cases.md │ ├── es │ │ ├── 00-chapter.md │ │ ├── 01-chapter.md │ │ ├── 02-chapter.md │ │ ├── 03-chapter.md │ │ ├── 04-chapter.md │ │ ├── 05-chapter.md │ │ ├── 06-chapter.md │ │ ├── 07-chapter.md │ │ ├── _index.md │ │ ├── references.md │ │ ├── search.md │ │ ├── taxonomy.md │ │ ├── toc.md │ │ └── use-cases.md │ ├── ja │ │ ├── 00-chapter.md │ │ ├── 01-chapter.md │ │ ├── 02-chapter.md │ │ ├── 03-chapter.md │ │ ├── 04-chapter.md │ │ ├── 05-chapter.md │ │ ├── 06-chapter.md │ │ ├── 07-chapter.md │ │ ├── _index.md │ │ ├── references.md │ │ ├── search.md │ │ ├── taxonomy.md │ │ ├── toc.md │ │ └── use-cases.md │ ├── pt-br │ │ ├── 00-chapter.md │ │ ├── 01-chapter.md │ │ ├── 02-chapter.md │ │ ├── 03-chapter.md │ │ ├── 04-chapter.md │ │ ├── 05-chapter.md │ │ ├── 06-chapter.md │ │ ├── 07-chapter.md │ │ ├── _index.md │ │ ├── references.md │ │ ├── search.md │ │ ├── taxonomy.md │ │ ├── toc.md │ │ └── use-cases.md │ └── zh │ │ ├── 00-chapter.md │ │ ├── 01-chapter.md │ │ ├── 02-chapter.md │ │ ├── 03-chapter.md │ │ ├── 04-chapter.md │ │ ├── 05-chapter.md │ │ ├── 06-chapter.md │ │ ├── 07-chapter.md │ │ ├── _index.md │ │ ├── references.md │ │ ├── search.md │ │ ├── taxonomy.md │ │ ├── toc.md │ │ └── use-cases.md ├── docs │ ├── interview-questionnaire.md │ ├── meeting-notes │ │ ├── 04-01-2024.md │ │ └── 1-04-2024.md │ └── release-checklist.md ├── i18n │ ├── en.toml │ ├── es.toml │ ├── ja.toml │ ├── pt-br.toml │ └── zh.toml ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── baseof.print.html │ │ ├── content.html │ │ ├── list.html │ │ ├── list.print.html │ │ ├── search.html │ │ ├── single.html │ │ ├── sitemap.xml │ │ ├── taxonomy.html │ │ └── terms.html │ ├── home.html │ └── partials │ │ ├── favicons.html │ │ ├── feedback.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── navbar-lang-selector.html │ │ ├── navbar.html │ │ ├── page-meta-links.html │ │ ├── search-input.html │ │ ├── sidebar-tree.html │ │ ├── taxonomy_terms_article.html │ │ └── taxonomy_terms_cloud.html ├── netlify.toml ├── package-lock.json ├── package.json ├── static │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ └── favicon.svg │ ├── fonts │ │ ├── Nunito-Black.ttf │ │ ├── Nunito-BlackItalic.ttf │ │ ├── Nunito-Bold.ttf │ │ ├── Nunito-BoldItalic.ttf │ │ ├── Nunito-ExtraBold.ttf │ │ ├── Nunito-ExtraBoldItalic.ttf │ │ ├── Nunito-ExtraLight.ttf │ │ ├── Nunito-ExtraLightItalic.ttf │ │ ├── Nunito-Italic.ttf │ │ ├── Nunito-Light.ttf │ │ ├── Nunito-LightItalic.ttf │ │ ├── Nunito-Medium.ttf │ │ ├── Nunito-MediumItalic.ttf │ │ ├── Nunito-Regular.ttf │ │ ├── Nunito-SemiBold.ttf │ │ └── Nunito-SemiBoldItalic.ttf │ ├── images │ │ ├── Book.png │ │ ├── CHAOSS.Health.Impacts.png │ │ ├── CHAOSS.Health.Impacts_ja.png │ │ ├── CHAOSS.Health.Impacts_zh.png │ │ ├── activityparticipationcategorization.png │ │ ├── activityparticipationcategorization_ja.png │ │ ├── activityparticipationcategorization_zh.png │ │ ├── benefits-of-oss.png │ │ ├── benefits-of-oss_ja.png │ │ ├── benefits-of-oss_zh.png │ │ ├── homepage │ │ │ └── colorful-houses.jpg │ │ ├── opensourceinvolvementmodel.png │ │ ├── opensourceinvolvementmodel_ja.png │ │ ├── opensourceinvolvementmodel_zh.png │ │ ├── organization-architecture.png │ │ ├── organization-architecture_ja.png │ │ ├── organization-architecture_zh.png │ │ ├── osmm-carl.png │ │ ├── osmm-carl_ja.png │ │ ├── osmm-carl_zh.png │ │ ├── ospo-book-social.jpg │ │ ├── ospo-flower.png │ │ ├── ospo-flower_ja.png │ │ ├── ospo-flower_zh.png │ │ ├── ospo-maturity-model.jpg │ │ ├── ospo-maturity-model_ja.png │ │ ├── ospo-maturity-model_zh.png │ │ ├── ospo-role.png │ │ ├── ospo-role_ja.png │ │ ├── ospo-role_zh.png │ │ ├── ospo-segments_ja.png │ │ ├── ospo-support.png │ │ ├── ospo-support_ja.png │ │ ├── ospo-support_zh.png │ │ ├── ospowork.png │ │ ├── ospowork_ja.png │ │ ├── ospowork_zh.png │ │ ├── players-in-a-business-oriented-OSPO.png │ │ ├── players-in-a-business-oriented-OSPO_ja.png │ │ └── players-in-a-business-oriented-OSPO_zh.png │ ├── js │ │ └── tag-search.js │ └── pdfs │ │ └── ospoflower-seconddraft-1.pdf ├── themes │ └── docsy │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .prettierrc.json │ │ ├── .s3deploy.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ ├── icons │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── js │ │ │ ├── anchor.js │ │ │ ├── base.js │ │ │ ├── markmap.js │ │ │ ├── mermaid.js │ │ │ ├── offline-search.js │ │ │ ├── plantuml.js │ │ │ └── search.js │ │ ├── json │ │ │ └── offline-search-index.json │ │ ├── scss │ │ │ ├── _alerts.scss │ │ │ ├── _blog.scss │ │ │ ├── _boxes.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _buttons.scss │ │ │ ├── _code.scss │ │ │ ├── _colors.scss │ │ │ ├── _content.scss │ │ │ ├── _main-container.scss │ │ │ ├── _nav.scss │ │ │ ├── _pageinfo.scss │ │ │ ├── _search.scss │ │ │ ├── _sidebar-toc.scss │ │ │ ├── _sidebar-tree.scss │ │ │ ├── _styles_project.scss │ │ │ ├── _taxonomy.scss │ │ │ ├── _variables.scss │ │ │ ├── _variables_project.scss │ │ │ ├── blocks │ │ │ │ ├── _blocks.scss │ │ │ │ └── _cover.scss │ │ │ ├── main.scss │ │ │ ├── rtl │ │ │ │ ├── _main.scss │ │ │ │ └── _spacing.scss │ │ │ ├── section-index.scss │ │ │ └── support │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ └── _utilities.scss │ │ └── stubs │ │ │ └── new-page-template.md │ │ ├── config.toml │ │ ├── i18n │ │ ├── ar.toml │ │ ├── bg.toml │ │ ├── bn.toml │ │ ├── de.toml │ │ ├── en.toml │ │ ├── es.toml │ │ ├── et.toml │ │ ├── fa.toml │ │ ├── fr.toml │ │ ├── hu.toml │ │ ├── it.toml │ │ ├── ja.toml │ │ ├── ko.toml │ │ ├── nl.toml │ │ ├── no.toml │ │ ├── pl.toml │ │ ├── pt-br.toml │ │ ├── ru.toml │ │ ├── tr.toml │ │ └── zh.toml │ │ ├── images │ │ ├── screenshot.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── baseof.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ ├── list.rss.xml │ │ │ ├── search.html │ │ │ ├── single.html │ │ │ ├── taxonomy.html │ │ │ └── terms.html │ │ ├── blog │ │ │ ├── baseof.html │ │ │ ├── baseof.print.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ ├── section.print.html │ │ │ └── single.html │ │ ├── community │ │ │ └── list.html │ │ ├── docs │ │ │ ├── baseof.html │ │ │ ├── baseof.print.html │ │ │ ├── list.html │ │ │ ├── list.print.html │ │ │ └── single.html │ │ ├── home.html │ │ ├── partials │ │ │ ├── breadcrumb.html │ │ │ ├── community_links.html │ │ │ ├── disqus-comment.html │ │ │ ├── favicons.html │ │ │ ├── featured-image.html │ │ │ ├── feedback.html │ │ │ ├── footer.html │ │ │ ├── head-css.html │ │ │ ├── head.html │ │ │ ├── hooks │ │ │ │ ├── body-end.html │ │ │ │ └── head-end.html │ │ │ ├── navbar-lang-selector.html │ │ │ ├── navbar-version-selector.html │ │ │ ├── navbar.html │ │ │ ├── outputformat.html │ │ │ ├── page-meta-lastmod.html │ │ │ ├── page-meta-links.html │ │ │ ├── pager.html │ │ │ ├── print │ │ │ │ ├── content-blog.html │ │ │ │ ├── content.html │ │ │ │ ├── page-heading.html │ │ │ │ ├── render.html │ │ │ │ ├── toc-li-blog.html │ │ │ │ └── toc-li.html │ │ │ ├── reading-time.html │ │ │ ├── scripts.html │ │ │ ├── search-input.html │ │ │ ├── section-index.html │ │ │ ├── sidebar-tree.html │ │ │ ├── sidebar.html │ │ │ ├── taxonomy_terms_article.html │ │ │ ├── taxonomy_terms_cloud.html │ │ │ ├── taxonomy_terms_clouds.html │ │ │ ├── toc.html │ │ │ └── version-banner.html │ │ ├── shortcodes │ │ │ ├── alert.html │ │ │ ├── blocks │ │ │ │ ├── cover.html │ │ │ │ ├── feature.html │ │ │ │ ├── lead.html │ │ │ │ ├── link-down.html │ │ │ │ └── section.html │ │ │ ├── card-code.html │ │ │ ├── card.html │ │ │ ├── cardpane.html │ │ │ ├── figure.html │ │ │ ├── iframe.html │ │ │ ├── imgproc.html │ │ │ ├── pageinfo.html │ │ │ ├── readfile.md │ │ │ ├── swaggerui.html │ │ │ ├── tab.html │ │ │ └── tabpane.html │ │ └── swagger │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── netlify.toml │ │ ├── postcss.config.js │ │ ├── static │ │ ├── css │ │ │ ├── prism.css │ │ │ ├── shortcodes.css │ │ │ ├── shortcodes │ │ │ │ ├── cards-pane.css │ │ │ │ └── tabbed-pane.css │ │ │ └── swagger-ui.css │ │ ├── favicons │ │ │ ├── android-144x144.png │ │ │ ├── android-192x192.png │ │ │ ├── android-36x36.png │ │ │ ├── android-48x48.png │ │ │ ├── android-72x72.png │ │ │ ├── android-96x96.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── favicon-1024.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-256.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── pwa-192x192.png │ │ │ ├── pwa-512x512.png │ │ │ ├── tile150x150.png │ │ │ ├── tile310x150.png │ │ │ ├── tile310x310.png │ │ │ └── tile70x70.png │ │ ├── js │ │ │ ├── deflate.js │ │ │ ├── prism.js │ │ │ ├── swagger-ui-bundle.js │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ └── tabpane-persist.js │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── theme.toml │ │ └── userguide │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── assets │ │ └── scss │ │ │ └── _variables_project.scss │ │ ├── config.toml │ │ ├── content │ │ └── en │ │ │ ├── _index.html │ │ │ ├── about │ │ │ ├── _index.md │ │ │ └── featured-background.jpg │ │ │ ├── community │ │ │ └── _index.md │ │ │ ├── docs │ │ │ ├── Adding content │ │ │ │ ├── Shortcodes │ │ │ │ │ ├── index.md │ │ │ │ │ └── spruce.jpg │ │ │ │ ├── _index.md │ │ │ │ ├── content.md │ │ │ │ ├── feedback.md │ │ │ │ ├── iconsimages.md │ │ │ │ ├── lookandfeel.md │ │ │ │ ├── navigation.md │ │ │ │ ├── print.md │ │ │ │ ├── repository-links.md │ │ │ │ ├── taxonomy.md │ │ │ │ └── versioning.md │ │ │ ├── Best practices │ │ │ │ ├── _index.md │ │ │ │ ├── organizing-content.md │ │ │ │ └── site-guidance.md │ │ │ ├── Contribution guidelines │ │ │ │ └── _index.md │ │ │ ├── Deployment │ │ │ │ └── _index.md │ │ │ ├── Examples │ │ │ │ └── _index.md │ │ │ ├── Getting started │ │ │ │ ├── _index.md │ │ │ │ └── quickstart-docker.md │ │ │ ├── Language │ │ │ │ └── _index.md │ │ │ ├── Updating │ │ │ │ └── _index.md │ │ │ └── _index.md │ │ │ ├── featured-background.jpg │ │ │ └── search.md │ │ ├── deploy.sh │ │ ├── layouts │ │ └── sitemap.xml │ │ ├── package-lock.json │ │ ├── package.json │ │ └── static │ │ ├── google6a6ae8b5b016a20d.html │ │ └── images │ │ ├── feedback.png │ │ ├── no.png │ │ ├── version-banner.png │ │ └── yes.png └── translator-guide.md ├── ospo-mindmap ├── .gitignore ├── Content │ ├── ospomindmap.md │ ├── ospomindmap_jp.md │ ├── ospomindmap_zh_cn.md │ └── ospomindmap_zh_tw.md ├── GOVERNANCE.md ├── Img │ ├── initial-mindmap.pdf │ ├── ospomindmap.html │ └── ospomindmap.svg ├── README.md ├── additional-info │ └── mind-map-idea.md └── package.json ├── ospo-model ├── en │ ├── five-stage-OSPO-maturity-model.md │ └── ospo-checklist.md ├── jp │ ├── five-stage-OSPO-maturity-model.md │ ├── ospo-checklist.md │ └── ospo-maturity-model-jp.png └── zh │ ├── README.md │ ├── five-stage-OSPO-maturity-model.md │ ├── ospo-checklist.md │ └── ospo-maturity-model-zh.png ├── ospology-live ├── 2022-october-stockholm │ ├── OSPOlogy-live-csuite-pitch.pptx │ └── registration-info.md ├── 2023-january-netherlands │ ├── README.md │ ├── day1-best-practices-for-measuring-the-success-and-impact-of-your-OSPO.md │ ├── day1-creating-an-open-source-strategy.md │ ├── day1-support-dev-to-contribute-to-innersource.md │ ├── day2-best-practices-for-supporting-developers-to-contribute-to-open-source-and-or-innersource.md │ ├── day2-creating-an-open-source-strategy.md │ ├── day2-minimal-viable-ospo.md │ └── presentations │ │ ├── 2023-01-23 - Improving open source security for a sustainable open source ecosystem.pdf │ │ ├── Automating License Scanning and Reporting.pdf │ │ ├── CHAOSS-Tooling-for-OSPOs--how-to-build-OSPO-metrics-in-GrimoreLab.pdf │ │ ├── OSPOlogyLive_Building an OSPO in the energy sector_The Alliander experiences.pdf │ │ ├── Open-Source-At-the-Dutch-Tax_Administration.pdf │ │ ├── chaoss-tooling-for-ospos-with-grimoirelab.md │ │ ├── innersource.pdf │ │ ├── ospo-trailmap-os-strategy.md │ │ └── public–private collaboration-dutch-association.pdf ├── 2023-october-germany │ └── README.md ├── 2024-february-apeldoorn │ └── README.md ├── 2024-may-malmo │ └── README.md ├── 2025-march-amsterdam │ └── README.md ├── 2025-november-lyon │ └── README.md ├── framework.md ├── mentor-guide.md ├── organizing-team.md ├── roundtable-leader-guide.md ├── speaker-guide.md └── strategic-goals │ └── 2023.md ├── ospologylogo.svg └── whitepapers ├── business-value ├── CONTRIBUTING.md ├── README.md ├── Roadmap.md ├── engineering-vs-business-driven.md └── glossary.md └── ospo-lifecycle ├── README.md └── assets ├── Figure_1.png ├── Figure_1.svg ├── Figure_2.png ├── Figure_2.svg ├── Figure_3.png ├── Figure_3.svg ├── Figure_4.png ├── Figure_4.svg ├── Figure_5.png ├── Figure_5.svg ├── Figure_6.png ├── Figure_6.svg ├── Figure_7.png ├── Figure_7.svg └── README.md /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/call-for-papers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/ISSUE_TEMPLATE/call-for-papers.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ospo-book-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/ISSUE_TEMPLATE/ospo-book-content.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ospo-book-infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/ISSUE_TEMPLATE/ospo-book-infra.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ospo-book-translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/ISSUE_TEMPLATE/ospo-book-translation.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/linters/markdownlint.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/review-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.github/workflows/review-docs.yaml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vale.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale.tmpl -------------------------------------------------------------------------------- /.vale/TODO/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/AMPM.yml -------------------------------------------------------------------------------- /.vale/TODO/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Acronyms.yml -------------------------------------------------------------------------------- /.vale/TODO/Colons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Colons.yml -------------------------------------------------------------------------------- /.vale/TODO/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Contractions.yml -------------------------------------------------------------------------------- /.vale/TODO/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/DateFormat.yml -------------------------------------------------------------------------------- /.vale/TODO/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Ellipses.yml -------------------------------------------------------------------------------- /.vale/TODO/EmDashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/EmDashes.yml -------------------------------------------------------------------------------- /.vale/TODO/Exclamation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Exclamation.yml -------------------------------------------------------------------------------- /.vale/TODO/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/FirstPerson.yml -------------------------------------------------------------------------------- /.vale/TODO/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Gender.yml -------------------------------------------------------------------------------- /.vale/TODO/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/GenderBias.yml -------------------------------------------------------------------------------- /.vale/TODO/HeadingPunctuation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/HeadingPunctuation.yml -------------------------------------------------------------------------------- /.vale/TODO/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Headings.yml -------------------------------------------------------------------------------- /.vale/TODO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/LICENSE -------------------------------------------------------------------------------- /.vale/TODO/Latin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Latin.yml -------------------------------------------------------------------------------- /.vale/TODO/LyHyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/LyHyphens.yml -------------------------------------------------------------------------------- /.vale/TODO/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/NOTICE -------------------------------------------------------------------------------- /.vale/TODO/OptionalPlurals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/OptionalPlurals.yml -------------------------------------------------------------------------------- /.vale/TODO/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Ordinal.yml -------------------------------------------------------------------------------- /.vale/TODO/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/OxfordComma.yml -------------------------------------------------------------------------------- /.vale/TODO/Parens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Parens.yml -------------------------------------------------------------------------------- /.vale/TODO/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Passive.yml -------------------------------------------------------------------------------- /.vale/TODO/Periods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Periods.yml -------------------------------------------------------------------------------- /.vale/TODO/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Quotes.yml -------------------------------------------------------------------------------- /.vale/TODO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/README.md -------------------------------------------------------------------------------- /.vale/TODO/Ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Ranges.yml -------------------------------------------------------------------------------- /.vale/TODO/Semicolons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Semicolons.yml -------------------------------------------------------------------------------- /.vale/TODO/Slang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Slang.yml -------------------------------------------------------------------------------- /.vale/TODO/Slash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Slash.yml -------------------------------------------------------------------------------- /.vale/TODO/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Spacing.yml -------------------------------------------------------------------------------- /.vale/TODO/SpatialReferences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/SpatialReferences.yml -------------------------------------------------------------------------------- /.vale/TODO/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Spelling.yml -------------------------------------------------------------------------------- /.vale/TODO/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Units.yml -------------------------------------------------------------------------------- /.vale/TODO/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/We.yml -------------------------------------------------------------------------------- /.vale/TODO/Will.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/Will.yml -------------------------------------------------------------------------------- /.vale/TODO/WordList.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/WordList.yml -------------------------------------------------------------------------------- /.vale/TODO/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/TODO/meta.json -------------------------------------------------------------------------------- /.vale/config/vocabularies/TODO/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/.vale/config/vocabularies/TODO/accept.txt -------------------------------------------------------------------------------- /BoF/India2024_Report/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/About.md -------------------------------------------------------------------------------- /BoF/India2024_Report/Apendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/Apendix.md -------------------------------------------------------------------------------- /BoF/India2024_Report/Background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/Background.md -------------------------------------------------------------------------------- /BoF/India2024_Report/Bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/Bibliography.md -------------------------------------------------------------------------------- /BoF/India2024_Report/Challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/Challenges.md -------------------------------------------------------------------------------- /BoF/India2024_Report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/README.md -------------------------------------------------------------------------------- /BoF/India2024_Report/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/India2024_Report/Report.pdf -------------------------------------------------------------------------------- /BoF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/README.md -------------------------------------------------------------------------------- /BoF/attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/attribution.md -------------------------------------------------------------------------------- /BoF/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/example.pdf -------------------------------------------------------------------------------- /BoF/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/BoF/template.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/README.md -------------------------------------------------------------------------------- /local-meetups/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/local-meetups/framework.md -------------------------------------------------------------------------------- /local-meetups/local-ambassadors-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/local-meetups/local-ambassadors-guidelines.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Apr-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Apr-10.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Apr-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Apr-24.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Feb-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Feb-13.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Feb-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Feb-24.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Feb-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Feb-27.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Jul-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Jul-03.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/Mar-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/Mar-24.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/May-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/May-12.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/May-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/May-27.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/May-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/May-29.md -------------------------------------------------------------------------------- /meetings/Agenda_2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/Agenda_2025/README.md -------------------------------------------------------------------------------- /meetings/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/GOVERNANCE.md -------------------------------------------------------------------------------- /meetings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/meetings/README.md -------------------------------------------------------------------------------- /newsletter/2021-07-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2021-07-26.md -------------------------------------------------------------------------------- /newsletter/2021-08-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2021-08-30.md -------------------------------------------------------------------------------- /newsletter/2021-09-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2021-09-27.md -------------------------------------------------------------------------------- /newsletter/2021-10-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2021-10-26.md -------------------------------------------------------------------------------- /newsletter/2021-11-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2021-11-30.md -------------------------------------------------------------------------------- /newsletter/2021-12-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2021-12-28.md -------------------------------------------------------------------------------- /newsletter/2022-01-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-01-31.md -------------------------------------------------------------------------------- /newsletter/2022-02-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-02-22.md -------------------------------------------------------------------------------- /newsletter/2022-03-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-03-29.md -------------------------------------------------------------------------------- /newsletter/2022-04-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-04-26.md -------------------------------------------------------------------------------- /newsletter/2022-05-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-05-31.md -------------------------------------------------------------------------------- /newsletter/2022-06-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-06-28.md -------------------------------------------------------------------------------- /newsletter/2022-07-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-07-26.md -------------------------------------------------------------------------------- /newsletter/2022-08-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-08-30.md -------------------------------------------------------------------------------- /newsletter/2022-09-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-09-26.md -------------------------------------------------------------------------------- /newsletter/2022-10-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-10-25.md -------------------------------------------------------------------------------- /newsletter/2022-11-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-11-29.md -------------------------------------------------------------------------------- /newsletter/2022-12-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2022-12-30.md -------------------------------------------------------------------------------- /newsletter/2023-01-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-01-31.md -------------------------------------------------------------------------------- /newsletter/2023-02-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-02-27.md -------------------------------------------------------------------------------- /newsletter/2023-03-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-03-29.md -------------------------------------------------------------------------------- /newsletter/2023-04-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-04-25.md -------------------------------------------------------------------------------- /newsletter/2023-05-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-05-30.md -------------------------------------------------------------------------------- /newsletter/2023-07-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-07-25.md -------------------------------------------------------------------------------- /newsletter/2023-08-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-08-29.md -------------------------------------------------------------------------------- /newsletter/2023-10-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-10-02.md -------------------------------------------------------------------------------- /newsletter/2023-10-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-10-31.md -------------------------------------------------------------------------------- /newsletter/2023-12-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2023-12-20.md -------------------------------------------------------------------------------- /newsletter/2024-01-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-01-30.md -------------------------------------------------------------------------------- /newsletter/2024-02-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-02-29.md -------------------------------------------------------------------------------- /newsletter/2024-03-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-03-31.md -------------------------------------------------------------------------------- /newsletter/2024-06-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-06-07.md -------------------------------------------------------------------------------- /newsletter/2024-06-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-06-27.md -------------------------------------------------------------------------------- /newsletter/2024-09-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-09-03.md -------------------------------------------------------------------------------- /newsletter/2024-11-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-11-07.md -------------------------------------------------------------------------------- /newsletter/2024-12-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2024-12-20.md -------------------------------------------------------------------------------- /newsletter/2025-01-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2025-01-28.md -------------------------------------------------------------------------------- /newsletter/2025-02-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2025-02-27.md -------------------------------------------------------------------------------- /newsletter/2025-06-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2025-06-02.md -------------------------------------------------------------------------------- /newsletter/2025-07-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2025-07-29.md -------------------------------------------------------------------------------- /newsletter/2025-11-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/2025-11-26.md -------------------------------------------------------------------------------- /newsletter/Italian Version/2022-09-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/Italian Version/2022-09-26.md -------------------------------------------------------------------------------- /newsletter/Italian Version/newsletter-template-italian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/Italian Version/newsletter-template-italian.md -------------------------------------------------------------------------------- /newsletter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/README.md -------------------------------------------------------------------------------- /newsletter/Spanish Version/2022-10-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/Spanish Version/2022-10-25.md -------------------------------------------------------------------------------- /newsletter/newsletter-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/newsletter-guidelines.md -------------------------------------------------------------------------------- /newsletter/newsletter-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/newsletter-template.md -------------------------------------------------------------------------------- /newsletter/中文版/2023-07-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/中文版/2023-07-25.md -------------------------------------------------------------------------------- /newsletter/中文版/2023-08-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/中文版/2023-08-29.md -------------------------------------------------------------------------------- /newsletter/中文版/2023-10-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/中文版/2023-10-02.md -------------------------------------------------------------------------------- /newsletter/中文版/2023-10-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/中文版/2023-10-31.md -------------------------------------------------------------------------------- /newsletter/中文版/2023-12-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/中文版/2023-12-20.md -------------------------------------------------------------------------------- /newsletter/中文版/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/中文版/README.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-05-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-05-31.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-06-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-06-28.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-07-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-07-26.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-08-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-08-30.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-09-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-09-26.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-10-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-10-25.md -------------------------------------------------------------------------------- /newsletter/日本語版/2022-11-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/newsletter/日本語版/2022-11-29.md -------------------------------------------------------------------------------- /ospo-book/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/.gitignore -------------------------------------------------------------------------------- /ospo-book/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ospo-book/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/AUTHORS.md -------------------------------------------------------------------------------- /ospo-book/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/CONTRIBUTING.md -------------------------------------------------------------------------------- /ospo-book/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/GOVERNANCE.md -------------------------------------------------------------------------------- /ospo-book/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/LICENSE.md -------------------------------------------------------------------------------- /ospo-book/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/Makefile -------------------------------------------------------------------------------- /ospo-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/README.md -------------------------------------------------------------------------------- /ospo-book/assets/icons/OSPOlogy-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/icons/OSPOlogy-white.svg -------------------------------------------------------------------------------- /ospo-book/assets/icons/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/icons/logo-white.svg -------------------------------------------------------------------------------- /ospo-book/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/icons/logo.svg -------------------------------------------------------------------------------- /ospo-book/assets/js/offline-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/js/offline-search.js -------------------------------------------------------------------------------- /ospo-book/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/js/search.js -------------------------------------------------------------------------------- /ospo-book/assets/json/offline-search-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/json/offline-search-index.json -------------------------------------------------------------------------------- /ospo-book/assets/scss/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_archive.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_categories.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_cookie-banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_cookie-banner.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_footer.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_hamburger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_hamburger.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_header.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_main.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_search.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_sidebar-left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_sidebar-left.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_sidebar-right.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_sidebar-right.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_tag-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_tag-search.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_taxonomy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_taxonomy.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_typography.scss -------------------------------------------------------------------------------- /ospo-book/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /ospo-book/author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/author-guide.md -------------------------------------------------------------------------------- /ospo-book/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/config.toml -------------------------------------------------------------------------------- /ospo-book/content/en/00-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/00-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/01-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/01-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/02-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/02-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/03-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/03-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/04-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/04-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/05-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/05-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/06-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/06-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/07-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/07-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/_index.md -------------------------------------------------------------------------------- /ospo-book/content/en/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/references.md -------------------------------------------------------------------------------- /ospo-book/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/search.md -------------------------------------------------------------------------------- /ospo-book/content/en/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/taxonomy.md -------------------------------------------------------------------------------- /ospo-book/content/en/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/toc.md -------------------------------------------------------------------------------- /ospo-book/content/en/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/en/use-cases.md -------------------------------------------------------------------------------- /ospo-book/content/es/00-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/00-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/01-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/01-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/02-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/02-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/03-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/03-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/04-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/04-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/05-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/05-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/06-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/06-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/07-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/07-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/es/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/_index.md -------------------------------------------------------------------------------- /ospo-book/content/es/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/references.md -------------------------------------------------------------------------------- /ospo-book/content/es/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Resultados de búsqueda 3 | layout: search 4 | --- 5 | -------------------------------------------------------------------------------- /ospo-book/content/es/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/taxonomy.md -------------------------------------------------------------------------------- /ospo-book/content/es/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/toc.md -------------------------------------------------------------------------------- /ospo-book/content/es/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/es/use-cases.md -------------------------------------------------------------------------------- /ospo-book/content/ja/00-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/00-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/01-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/01-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/02-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/02-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/03-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/03-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/04-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/04-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/05-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/05-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/06-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/06-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/07-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/07-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/ja/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/_index.md -------------------------------------------------------------------------------- /ospo-book/content/ja/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/references.md -------------------------------------------------------------------------------- /ospo-book/content/ja/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 検索結果 3 | layout: search 4 | --- 5 | -------------------------------------------------------------------------------- /ospo-book/content/ja/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/taxonomy.md -------------------------------------------------------------------------------- /ospo-book/content/ja/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/toc.md -------------------------------------------------------------------------------- /ospo-book/content/ja/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/ja/use-cases.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/00-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/00-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/01-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/01-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/02-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/02-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/03-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/03-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/04-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/04-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/05-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/05-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/06-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/06-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/07-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/07-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/_index.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/references.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Resultados da pesquisa 3 | layout: search 4 | --- 5 | -------------------------------------------------------------------------------- /ospo-book/content/pt-br/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/taxonomy.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/toc.md -------------------------------------------------------------------------------- /ospo-book/content/pt-br/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/pt-br/use-cases.md -------------------------------------------------------------------------------- /ospo-book/content/zh/00-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/00-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/01-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/01-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/02-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/02-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/03-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/03-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/04-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/04-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/05-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/05-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/06-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/06-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/07-chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/07-chapter.md -------------------------------------------------------------------------------- /ospo-book/content/zh/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/_index.md -------------------------------------------------------------------------------- /ospo-book/content/zh/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/references.md -------------------------------------------------------------------------------- /ospo-book/content/zh/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 搜索结果 3 | layout: search 4 | --- 5 | -------------------------------------------------------------------------------- /ospo-book/content/zh/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/taxonomy.md -------------------------------------------------------------------------------- /ospo-book/content/zh/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/toc.md -------------------------------------------------------------------------------- /ospo-book/content/zh/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/content/zh/use-cases.md -------------------------------------------------------------------------------- /ospo-book/docs/interview-questionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/docs/interview-questionnaire.md -------------------------------------------------------------------------------- /ospo-book/docs/meeting-notes/04-01-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/docs/meeting-notes/04-01-2024.md -------------------------------------------------------------------------------- /ospo-book/docs/meeting-notes/1-04-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/docs/meeting-notes/1-04-2024.md -------------------------------------------------------------------------------- /ospo-book/docs/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/docs/release-checklist.md -------------------------------------------------------------------------------- /ospo-book/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/i18n/en.toml -------------------------------------------------------------------------------- /ospo-book/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/i18n/es.toml -------------------------------------------------------------------------------- /ospo-book/i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/i18n/ja.toml -------------------------------------------------------------------------------- /ospo-book/i18n/pt-br.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/i18n/pt-br.toml -------------------------------------------------------------------------------- /ospo-book/i18n/zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/i18n/zh.toml -------------------------------------------------------------------------------- /ospo-book/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/404.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/baseof.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/baseof.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/baseof.print.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/content.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/list.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/list.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/list.print.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/search.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/single.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/sitemap.xml -------------------------------------------------------------------------------- /ospo-book/layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /ospo-book/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/_default/terms.html -------------------------------------------------------------------------------- /ospo-book/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/home.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/favicons.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/feedback.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/footer.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/head.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/navbar-lang-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/navbar-lang-selector.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/navbar.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/page-meta-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/page-meta-links.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/search-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/search-input.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/sidebar-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/sidebar-tree.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/taxonomy_terms_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/taxonomy_terms_article.html -------------------------------------------------------------------------------- /ospo-book/layouts/partials/taxonomy_terms_cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/layouts/partials/taxonomy_terms_cloud.html -------------------------------------------------------------------------------- /ospo-book/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/netlify.toml -------------------------------------------------------------------------------- /ospo-book/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/package-lock.json -------------------------------------------------------------------------------- /ospo-book/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/package.json -------------------------------------------------------------------------------- /ospo-book/static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /ospo-book/static/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /ospo-book/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /ospo-book/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/favicons/favicon.ico -------------------------------------------------------------------------------- /ospo-book/static/favicons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/favicons/favicon.svg -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-Black.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-BlackItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-BoldItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-ExtraLight.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-Italic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-Light.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-LightItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-Medium.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-MediumItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /ospo-book/static/fonts/Nunito-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/fonts/Nunito-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /ospo-book/static/images/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/Book.png -------------------------------------------------------------------------------- /ospo-book/static/images/CHAOSS.Health.Impacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/CHAOSS.Health.Impacts.png -------------------------------------------------------------------------------- /ospo-book/static/images/CHAOSS.Health.Impacts_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/CHAOSS.Health.Impacts_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/CHAOSS.Health.Impacts_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/CHAOSS.Health.Impacts_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/activityparticipationcategorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/activityparticipationcategorization.png -------------------------------------------------------------------------------- /ospo-book/static/images/activityparticipationcategorization_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/activityparticipationcategorization_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/activityparticipationcategorization_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/activityparticipationcategorization_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/benefits-of-oss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/benefits-of-oss.png -------------------------------------------------------------------------------- /ospo-book/static/images/benefits-of-oss_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/benefits-of-oss_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/benefits-of-oss_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/benefits-of-oss_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/homepage/colorful-houses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/homepage/colorful-houses.jpg -------------------------------------------------------------------------------- /ospo-book/static/images/opensourceinvolvementmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/opensourceinvolvementmodel.png -------------------------------------------------------------------------------- /ospo-book/static/images/opensourceinvolvementmodel_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/opensourceinvolvementmodel_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/opensourceinvolvementmodel_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/opensourceinvolvementmodel_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/organization-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/organization-architecture.png -------------------------------------------------------------------------------- /ospo-book/static/images/organization-architecture_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/organization-architecture_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/organization-architecture_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/organization-architecture_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/osmm-carl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/osmm-carl.png -------------------------------------------------------------------------------- /ospo-book/static/images/osmm-carl_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/osmm-carl_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/osmm-carl_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/osmm-carl_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-book-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-book-social.jpg -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-flower.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-flower_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-flower_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-flower_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-flower_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-maturity-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-maturity-model.jpg -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-maturity-model_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-maturity-model_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-maturity-model_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-maturity-model_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-role.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-role_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-role_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-role_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-role_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-segments_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-segments_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-support.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-support_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-support_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospo-support_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospo-support_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospowork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospowork.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospowork_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospowork_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/ospowork_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/ospowork_zh.png -------------------------------------------------------------------------------- /ospo-book/static/images/players-in-a-business-oriented-OSPO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/players-in-a-business-oriented-OSPO.png -------------------------------------------------------------------------------- /ospo-book/static/images/players-in-a-business-oriented-OSPO_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/players-in-a-business-oriented-OSPO_ja.png -------------------------------------------------------------------------------- /ospo-book/static/images/players-in-a-business-oriented-OSPO_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/images/players-in-a-business-oriented-OSPO_zh.png -------------------------------------------------------------------------------- /ospo-book/static/js/tag-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/js/tag-search.js -------------------------------------------------------------------------------- /ospo-book/static/pdfs/ospoflower-seconddraft-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/static/pdfs/ospoflower-seconddraft-1.pdf -------------------------------------------------------------------------------- /ospo-book/themes/docsy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/.editorconfig -------------------------------------------------------------------------------- /ospo-book/themes/docsy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/.gitignore -------------------------------------------------------------------------------- /ospo-book/themes/docsy/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/.gitmodules -------------------------------------------------------------------------------- /ospo-book/themes/docsy/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/.prettierrc.json -------------------------------------------------------------------------------- /ospo-book/themes/docsy/.s3deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/.s3deploy.yml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/CONTRIBUTING.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/LICENSE -------------------------------------------------------------------------------- /ospo-book/themes/docsy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/README.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/icons/logo.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/icons/logo.svg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/anchor.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/base.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/markmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/markmap.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/mermaid.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/offline-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/offline-search.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/plantuml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/plantuml.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/js/search.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/json/offline-search-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/json/offline-search-index.json -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_alerts.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_blog.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_boxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_boxes.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_code.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_colors.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_content.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_main-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_main-container.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_nav.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_pageinfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_pageinfo.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_search.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_sidebar-toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_sidebar-toc.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_sidebar-tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_sidebar-tree.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_taxonomy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_taxonomy.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_variables.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/blocks/_blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/blocks/_blocks.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/blocks/_cover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/blocks/_cover.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/main.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/rtl/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/rtl/_main.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/rtl/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/rtl/_spacing.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/section-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/section-index.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/support/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/support/_functions.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/support/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/support/_mixins.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/scss/support/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/scss/support/_utilities.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/assets/stubs/new-page-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/assets/stubs/new-page-template.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/config.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/ar.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/ar.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/bg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/bg.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/bn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/bn.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/de.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/en.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/es.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/et.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/et.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/fa.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/fa.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/fr.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/hu.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/hu.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/it.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/it.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/ja.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/ko.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/ko.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/nl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/nl.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/no.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/no.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/pl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/pl.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/pt-br.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/pt-br.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/ru.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/ru.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/tr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/tr.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/i18n/zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/i18n/zh.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/images/screenshot.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/images/tn.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/404.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/baseof.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/content.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/list.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/list.rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/list.rss.xml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/search.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/single.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/_default/terms.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/blog/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/blog/baseof.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/blog/baseof.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/blog/baseof.print.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/blog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/blog/content.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/blog/list.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/blog/section.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/blog/section.print.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/blog/single.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/community/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/community/list.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/docs/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/docs/baseof.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/docs/baseof.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/docs/baseof.print.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/docs/list.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/docs/list.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/docs/list.print.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/docs/single.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/home.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/breadcrumb.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/community_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/community_links.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/disqus-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/disqus-comment.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/favicons.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/featured-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/featured-image.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/feedback.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/footer.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/head-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/head-css.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/head.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/hooks/body-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/hooks/body-end.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/hooks/head-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/hooks/head-end.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/navbar-lang-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/navbar-lang-selector.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/navbar-version-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/navbar-version-selector.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/navbar.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/outputformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/outputformat.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/page-meta-lastmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/page-meta-lastmod.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/page-meta-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/page-meta-links.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/pager.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/print/content-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/print/content-blog.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/print/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/print/content.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/print/page-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/print/page-heading.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/print/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/print/render.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/print/toc-li-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/print/toc-li-blog.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/print/toc-li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/print/toc-li.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/reading-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/reading-time.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/scripts.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/search-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/search-input.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/section-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/section-index.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/sidebar-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/sidebar-tree.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/taxonomy_terms_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/taxonomy_terms_article.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/taxonomy_terms_cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/taxonomy_terms_cloud.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/taxonomy_terms_clouds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/taxonomy_terms_clouds.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/toc.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/partials/version-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/partials/version-banner.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/blocks/cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/blocks/cover.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/blocks/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/blocks/feature.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/blocks/lead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/blocks/lead.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/blocks/link-down.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/blocks/link-down.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/blocks/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/blocks/section.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/card-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/card-code.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/card.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/cardpane.html: -------------------------------------------------------------------------------- 1 |
2 | {{- .Inner -}} 3 |
-------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/figure.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/iframe.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/imgproc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/imgproc.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/pageinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/pageinfo.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/readfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/readfile.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/swaggerui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/swaggerui.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/shortcodes/tabpane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/shortcodes/tabpane.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/swagger/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/swagger/baseof.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/swagger/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/swagger/list.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/layouts/swagger/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/layouts/swagger/single.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/netlify.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/postcss.config.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/css/prism.css -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/css/shortcodes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/css/shortcodes.css -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/css/shortcodes/cards-pane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/css/shortcodes/cards-pane.css -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/css/shortcodes/tabbed-pane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/css/shortcodes/tabbed-pane.css -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/css/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/css/swagger-ui.css -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/android-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/android-144x144.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/android-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/android-192x192.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/android-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/android-36x36.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/android-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/android-48x48.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/android-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/android-72x72.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/android-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/android-96x96.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/favicon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/favicon-1024.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/favicon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/favicon-256.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/favicon.ico -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/pwa-192x192.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/pwa-512x512.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/favicons/tile70x70.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/js/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/js/deflate.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/js/prism.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/js/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/js/swagger-ui-bundle.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/js/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/js/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/js/tabpane-persist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/js/tabpane-persist.js -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /ospo-book/themes/docsy/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /ospo-book/themes/docsy/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/theme.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | resources/ 3 | -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/.gitmodules -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/CONTRIBUTING.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/LICENSE -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/config.toml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/_index.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/about/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/about/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/about/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/about/featured-background.jpg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/community/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/community/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/Shortcodes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/Shortcodes/index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/Shortcodes/spruce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/Shortcodes/spruce.jpg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/content.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/feedback.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/iconsimages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/iconsimages.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/lookandfeel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/lookandfeel.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/navigation.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/print.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/repository-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/repository-links.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/taxonomy.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Adding content/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Adding content/versioning.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Best practices/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Best practices/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Best practices/organizing-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Best practices/organizing-content.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Best practices/site-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Best practices/site-guidance.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Contribution guidelines/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Contribution guidelines/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Deployment/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Deployment/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Examples/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Examples/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Getting started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Getting started/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Getting started/quickstart-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Getting started/quickstart-docker.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Language/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Language/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/Updating/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/Updating/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/docs/_index.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/featured-background.jpg -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/content/en/search.md -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/deploy.sh -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/layouts/sitemap.xml -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/package-lock.json -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/package.json -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/static/google6a6ae8b5b016a20d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/static/google6a6ae8b5b016a20d.html -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/static/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/static/images/feedback.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/static/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/static/images/no.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/static/images/version-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/static/images/version-banner.png -------------------------------------------------------------------------------- /ospo-book/themes/docsy/userguide/static/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/themes/docsy/userguide/static/images/yes.png -------------------------------------------------------------------------------- /ospo-book/translator-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-book/translator-guide.md -------------------------------------------------------------------------------- /ospo-mindmap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | # Generated by `npm run build` 4 | Public/ -------------------------------------------------------------------------------- /ospo-mindmap/Content/ospomindmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Content/ospomindmap.md -------------------------------------------------------------------------------- /ospo-mindmap/Content/ospomindmap_jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Content/ospomindmap_jp.md -------------------------------------------------------------------------------- /ospo-mindmap/Content/ospomindmap_zh_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Content/ospomindmap_zh_cn.md -------------------------------------------------------------------------------- /ospo-mindmap/Content/ospomindmap_zh_tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Content/ospomindmap_zh_tw.md -------------------------------------------------------------------------------- /ospo-mindmap/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/GOVERNANCE.md -------------------------------------------------------------------------------- /ospo-mindmap/Img/initial-mindmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Img/initial-mindmap.pdf -------------------------------------------------------------------------------- /ospo-mindmap/Img/ospomindmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Img/ospomindmap.html -------------------------------------------------------------------------------- /ospo-mindmap/Img/ospomindmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/Img/ospomindmap.svg -------------------------------------------------------------------------------- /ospo-mindmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/README.md -------------------------------------------------------------------------------- /ospo-mindmap/additional-info/mind-map-idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/additional-info/mind-map-idea.md -------------------------------------------------------------------------------- /ospo-mindmap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-mindmap/package.json -------------------------------------------------------------------------------- /ospo-model/en/five-stage-OSPO-maturity-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/en/five-stage-OSPO-maturity-model.md -------------------------------------------------------------------------------- /ospo-model/en/ospo-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/en/ospo-checklist.md -------------------------------------------------------------------------------- /ospo-model/jp/five-stage-OSPO-maturity-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/jp/five-stage-OSPO-maturity-model.md -------------------------------------------------------------------------------- /ospo-model/jp/ospo-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/jp/ospo-checklist.md -------------------------------------------------------------------------------- /ospo-model/jp/ospo-maturity-model-jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/jp/ospo-maturity-model-jp.png -------------------------------------------------------------------------------- /ospo-model/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/zh/README.md -------------------------------------------------------------------------------- /ospo-model/zh/five-stage-OSPO-maturity-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/zh/five-stage-OSPO-maturity-model.md -------------------------------------------------------------------------------- /ospo-model/zh/ospo-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/zh/ospo-checklist.md -------------------------------------------------------------------------------- /ospo-model/zh/ospo-maturity-model-zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospo-model/zh/ospo-maturity-model-zh.png -------------------------------------------------------------------------------- /ospology-live/2022-october-stockholm/OSPOlogy-live-csuite-pitch.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2022-october-stockholm/OSPOlogy-live-csuite-pitch.pptx -------------------------------------------------------------------------------- /ospology-live/2022-october-stockholm/registration-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2022-october-stockholm/registration-info.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/README.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/day1-best-practices-for-measuring-the-success-and-impact-of-your-OSPO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/day1-best-practices-for-measuring-the-success-and-impact-of-your-OSPO.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/day1-creating-an-open-source-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/day1-creating-an-open-source-strategy.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/day1-support-dev-to-contribute-to-innersource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/day1-support-dev-to-contribute-to-innersource.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/day2-best-practices-for-supporting-developers-to-contribute-to-open-source-and-or-innersource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/day2-best-practices-for-supporting-developers-to-contribute-to-open-source-and-or-innersource.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/day2-creating-an-open-source-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/day2-creating-an-open-source-strategy.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/day2-minimal-viable-ospo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/day2-minimal-viable-ospo.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/2023-01-23 - Improving open source security for a sustainable open source ecosystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/2023-01-23 - Improving open source security for a sustainable open source ecosystem.pdf -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/Automating License Scanning and Reporting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/Automating License Scanning and Reporting.pdf -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/CHAOSS-Tooling-for-OSPOs--how-to-build-OSPO-metrics-in-GrimoreLab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/CHAOSS-Tooling-for-OSPOs--how-to-build-OSPO-metrics-in-GrimoreLab.pdf -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/OSPOlogyLive_Building an OSPO in the energy sector_The Alliander experiences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/OSPOlogyLive_Building an OSPO in the energy sector_The Alliander experiences.pdf -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/Open-Source-At-the-Dutch-Tax_Administration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/Open-Source-At-the-Dutch-Tax_Administration.pdf -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/chaoss-tooling-for-ospos-with-grimoirelab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/chaoss-tooling-for-ospos-with-grimoirelab.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/innersource.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/innersource.pdf -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/ospo-trailmap-os-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/ospo-trailmap-os-strategy.md -------------------------------------------------------------------------------- /ospology-live/2023-january-netherlands/presentations/public–private collaboration-dutch-association.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-january-netherlands/presentations/public–private collaboration-dutch-association.pdf -------------------------------------------------------------------------------- /ospology-live/2023-october-germany/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2023-october-germany/README.md -------------------------------------------------------------------------------- /ospology-live/2024-february-apeldoorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2024-february-apeldoorn/README.md -------------------------------------------------------------------------------- /ospology-live/2024-may-malmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2024-may-malmo/README.md -------------------------------------------------------------------------------- /ospology-live/2025-march-amsterdam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2025-march-amsterdam/README.md -------------------------------------------------------------------------------- /ospology-live/2025-november-lyon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/2025-november-lyon/README.md -------------------------------------------------------------------------------- /ospology-live/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/framework.md -------------------------------------------------------------------------------- /ospology-live/mentor-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/mentor-guide.md -------------------------------------------------------------------------------- /ospology-live/organizing-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/organizing-team.md -------------------------------------------------------------------------------- /ospology-live/roundtable-leader-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/roundtable-leader-guide.md -------------------------------------------------------------------------------- /ospology-live/speaker-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/speaker-guide.md -------------------------------------------------------------------------------- /ospology-live/strategic-goals/2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospology-live/strategic-goals/2023.md -------------------------------------------------------------------------------- /ospologylogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/ospologylogo.svg -------------------------------------------------------------------------------- /whitepapers/business-value/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/business-value/CONTRIBUTING.md -------------------------------------------------------------------------------- /whitepapers/business-value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/business-value/README.md -------------------------------------------------------------------------------- /whitepapers/business-value/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/business-value/Roadmap.md -------------------------------------------------------------------------------- /whitepapers/business-value/engineering-vs-business-driven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/business-value/engineering-vs-business-driven.md -------------------------------------------------------------------------------- /whitepapers/business-value/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/business-value/glossary.md -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/README.md -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_1.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_1.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_2.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_2.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_3.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_3.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_4.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_4.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_5.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_5.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_6.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_6.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_7.png -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/Figure_7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/Figure_7.svg -------------------------------------------------------------------------------- /whitepapers/ospo-lifecycle/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/ospology/HEAD/whitepapers/ospo-lifecycle/assets/README.md --------------------------------------------------------------------------------