├── .github ├── package-lock.json ├── package.json ├── validate.js └── workflows │ └── test.yml ├── .gitignore ├── .netlify ├── build │ └── _headers ├── deploy.js ├── package-lock.json └── package.json ├── .prettierignore ├── .prettierrc.yaml ├── LICENSE ├── ReadMe.md ├── _all.json ├── _config.yml ├── _index.json ├── com.acolad.imagemap-pdf.json ├── com.antennahouse.wml.json ├── com.elovirta.fo.json ├── com.elovirta.ooxml.json ├── com.elovirta.pdf.json ├── com.here.validate.svrl.json ├── com.here.validate.svrl.overrides.json ├── com.here.validate.svrl.text-rules.json ├── com.sophos.tocjs.json ├── com.synopsys.mapref-topichead.json ├── fox.jason.audiobook.json ├── fox.jason.extend.css.json ├── fox.jason.favicon.json ├── fox.jason.open-graph.json ├── fox.jason.passthrough.doxygen.json ├── fox.jason.passthrough.javadoc.json ├── fox.jason.passthrough.json ├── fox.jason.passthrough.pandoc.json ├── fox.jason.passthrough.postman.json ├── fox.jason.passthrough.swagger.json ├── fox.jason.pretty-dita.json ├── fox.jason.prismjs.dark-theme.json ├── fox.jason.prismjs.json ├── fox.jason.readthedocs.json ├── fox.jason.splash.json ├── fox.jason.tabs.css.json ├── fox.jason.translate.xliff.json ├── fox.jason.unit-test.json ├── fox.jason.watermark.auth.json ├── fox.jason.watermark.json ├── html5.json ├── net.infotexture.dita-bootstrap.extension.json ├── net.infotexture.dita-bootstrap.json ├── net.infotexture.dita-bootstrap.lunr.json ├── net.infotexture.dita-bootstrap.sass.json ├── net.infotexture.dita-bootstrap.table.json ├── org.dita-community.common.xslt.json ├── org.dita-community.glossary.preprocess.json ├── org.dita-community.i18n.json ├── org.dita-community.pdf-page-break.json ├── org.dita-semia.diff.json ├── org.dita-semia.image-convert.json ├── org.dita-semia.pdf.json ├── org.dita-semia.postprocessing.json ├── org.dita-semia.resolver.json ├── org.dita-semia.topic-num.json ├── org.dita.docbook.json ├── org.dita.eclipsecontent.json ├── org.dita.eclipsehelp.json ├── org.dita.html5.dublin-core.json ├── org.dita.html5.json ├── org.dita.htmlhelp.json ├── org.dita.index.json ├── org.dita.javahelp.json ├── org.dita.normalize.json ├── org.dita.pdf2.axf.json ├── org.dita.pdf2.fop.json ├── org.dita.pdf2.json ├── org.dita.pdf2.legacy.json ├── org.dita.pdf2.xep.json ├── org.dita.specialization.dita11.json ├── org.dita.specialization.dita132.json ├── org.dita.specialization.eclipsemap.json ├── org.dita.troff.json ├── org.dita.wordrtf.json ├── org.dita.xhtml.json ├── org.doctales.ant-contrib.json ├── org.doctales.schematron.json ├── org.doctales.terminology.json ├── org.iirds.dita.package.json ├── org.jung.graal.json ├── org.jung.release-notes.json ├── org.jung.reveal.json ├── org.jung.xmltask.json ├── org.lwdita.json ├── org.metadita.deprecated.json ├── org.metadita.morse.json ├── org.metadita.pdf.examplelist.json ├── org.oasis-open.dita.techcomm.v2_0.json ├── org.oasis-open.dita.v1_2.json ├── org.oasis-open.dita.v2_0.json ├── org.oasis-open.xdita.json ├── pdf.json ├── pdf2.json └── troff.json /.github/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "registry", 3 | "version": "1.0.0", 4 | "description": "DITA-OT registry validation", 5 | "repository": "github:dita-ot/registry", 6 | "author": "Jarno Elovirta ", 7 | "license": "Apache-2.0", 8 | "dependencies": { 9 | "request": "^2.88.0", 10 | "semver": "^5.6.0" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.github/validate.js: -------------------------------------------------------------------------------- 1 | const util = require('util'); 2 | const exec = util.promisify(require('child_process').exec); 3 | const fs = require('fs'); 4 | const request = require('request'); 5 | const crypto = require('crypto'); 6 | const readFileAsync = util.promisify(fs.readFile); 7 | const semver = require('semver'); 8 | 9 | const IGNORE = [ 10 | 'package-lock.json', 11 | 'package.json', 12 | '.github/package-lock.json', 13 | '.github/package.json', 14 | '.netlify/package-lock.json', 15 | '.netlify/package.json', 16 | ]; 17 | 18 | async function changedFiles() { 19 | let stdout; 20 | try { 21 | const { out, err } = await exec(`diff -rq base head`); 22 | stdout = out; 23 | } catch (e) { 24 | stdout = e.stdout; 25 | } 26 | return stdout 27 | .trim() 28 | .split(/\r?\n/) 29 | .filter((line) => line.endsWith('differ') || line.startsWith('Only')) 30 | .map((line) => { 31 | if (line.startsWith('Only in ')) { 32 | return line.substring(line.indexOf(': ') + 2).trim(); 33 | } else if (line.endsWith(' differ')) { 34 | return line.substring(line.indexOf('/') + 1, line.indexOf(' and ')).trim(); 35 | } else { 36 | return line; 37 | } 38 | }) 39 | .filter((file) => file.match(/.json$/) && !IGNORE.includes(file)); 40 | } 41 | 42 | function arrayToMapByVersion(plugins) { 43 | const res = {}; 44 | if (!!plugins) { 45 | plugins.forEach((plugin) => { 46 | res[plugin.vers] = plugin; 47 | }); 48 | } 49 | return res; 50 | } 51 | 52 | function isSame(p1, p2) { 53 | if (!p1 || !p2) { 54 | return false; 55 | } 56 | if (['name', 'vers', 'url', 'cksum'].map((key) => p1[key] === p2[key]).includes(false)) { 57 | return false; 58 | } 59 | const depsCompare = (a, b) => a.name.localeCompare(b.name); 60 | p1.deps.sort(depsCompare); 61 | p2.deps.sort(depsCompare); 62 | return JSON.stringify(p1.deps) === JSON.stringify(p2.deps); 63 | } 64 | 65 | function sha256(url) { 66 | return new Promise((resolve, reject) => { 67 | const hash = crypto.createHash('sha256'); 68 | console.log(`INFO: Download ${url}`); 69 | request 70 | .get(url) 71 | .on('error', (err) => { 72 | reject(new Error(`Failed to download ${url}: ${err}`)); 73 | }) 74 | .on('data', (chunk) => { 75 | try { 76 | hash.update(chunk); 77 | } catch (e) { 78 | reject(new Error(`Failed to calculate checksum: ${e}`)); 79 | } 80 | }) 81 | .on('end', () => { 82 | try { 83 | resolve(hash.digest('hex')); 84 | } catch (e) { 85 | reject(new Error(`Failed to calculate checksum: ${e}`)); 86 | } 87 | }); 88 | }); 89 | } 90 | 91 | function validateVersion(file, plugin, prev) { 92 | if (isSame(plugin, prev)) { 93 | console.log(`INFO: No changes in ${plugin.name}@${plugin.vers}`); 94 | return; 95 | } 96 | 97 | console.log(`INFO: Validating plugin ${plugin.name}@${plugin.vers}`); 98 | if (!plugin.name) { 99 | return Promise.reject(new Error('plugin name missing')); 100 | } else { 101 | if (file !== `${plugin.name}.json`) { 102 | return Promise.reject(new Error(`plugin name ${plugin.name} doesn't match filename ${file}`)); 103 | } 104 | } 105 | if (!plugin.vers) { 106 | return Promise.reject(new Error('plugin vers missing')); 107 | } else { 108 | if (!semver.valid(plugin.vers)) { 109 | return Promise.reject(new Error(`plugin version ${plugin.vers} is not a valid SemVer version`)); 110 | } 111 | } 112 | if (!!plugin.deps) { 113 | try { 114 | plugin.deps.forEach((dep) => { 115 | if (!dep.name) { 116 | throw new Error('plugin dependency name missing'); 117 | } 118 | if (!dep.req) { 119 | throw new Error('plugin dependency version missing'); 120 | } else { 121 | if (!semver.validRange(dep.req)) { 122 | throw new Error(`plugin dependency version ${dep.req} is not a valid SemVer version`); 123 | } 124 | } 125 | }); 126 | } catch (e) { 127 | return Promise.reject(e); 128 | } 129 | } 130 | 131 | if (!plugin.url) { 132 | return Promise.reject(new Error('plugin url missing')); 133 | } 134 | if (!plugin.cksum) { 135 | console.log('WARN: cksum missing'); 136 | return Promise.resolve(); 137 | } else { 138 | return sha256(plugin.url).then((act) => { 139 | if (plugin.cksum.toLowerCase() !== act.toLowerCase()) { 140 | throw new Error(`File checksum ${act} doesn't match expected ${plugin.cksum}`); 141 | } 142 | }); 143 | } 144 | } 145 | 146 | async function validate(file, plugins, origs) { 147 | if (!!plugins.alias) { 148 | // FIXME 149 | return Promise.resolve(); 150 | } 151 | const origByVers = arrayToMapByVersion(origs); 152 | const validations = plugins 153 | .map((plugin) => validateVersion(file, plugin, origByVers[plugin.vers])) 154 | .filter((promise) => !!promise); 155 | return Promise.all(validations); 156 | } 157 | 158 | async function parseFile(file) { 159 | try { 160 | const data = await readFileAsync(file, { encoding: 'utf8' }); 161 | try { 162 | return JSON.parse(data); 163 | } catch (e) { 164 | console.error(`ERROR: Failed to parse ${file}`, e); 165 | throw e; 166 | } 167 | } catch (e) { 168 | console.error(`INFO: Failed to read ${file}`); 169 | return []; 170 | } 171 | } 172 | 173 | changedFiles() 174 | .then((files) => { 175 | if (files.length === 0) { 176 | console.log('INFO: No changes to validate'); 177 | } 178 | console.log(files.join(', ')); 179 | files.map((file) => { 180 | Promise.all([parseFile(`head/${file}`), parseFile(`base/${file}`)]) 181 | .then(([plugin, origPlugin]) => { 182 | console.log(`INFO: Reading ${file}`); 183 | return validate(file, plugin, origPlugin); 184 | }) 185 | .catch((e) => { 186 | console.error(`ERROR: Plugin ${file} validation failed: ${e.message}`); 187 | process.exit(1); 188 | }); 189 | }); 190 | }) 191 | .catch((e) => { 192 | console.error(`ERROR: Failed to list changed files`, e); 193 | process.exit(1); 194 | }); 195 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | on: [push, pull_request] 3 | jobs: 4 | build: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - uses: actions/checkout@v2 8 | with: 9 | path: 'head' 10 | - uses: actions/checkout@v2 11 | with: 12 | repository: ${{ github.repository }} 13 | ref: ${{ github.base_ref }} 14 | path: 'base' 15 | - uses: actions/setup-node@v2 16 | with: 17 | node-version: '14.16' 18 | - name: Install 19 | run: | 20 | npm --prefix head/.github ci 21 | - name: Show GitHub context 22 | env: 23 | GITHUB_CONTEXT: ${{ toJson(github) }} 24 | run: echo "$GITHUB_CONTEXT" 25 | - name: Test 26 | run: | 27 | node head/.github/validate.js 28 | env: 29 | HEAD_SHA: ${{ github.event.after }} 30 | BASE_SHA: ${{ github.event.pull_request.base.sha }} 31 | API_URL: https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .netlify/build/* 3 | !.netlify/build/_headers 4 | -------------------------------------------------------------------------------- /.netlify/build/_headers: -------------------------------------------------------------------------------- 1 | # Fix CORS for https://www.dita-ot.org/plugins 2 | /* 3 | Access-Control-Allow-Origin: https://www.dita-ot.org 4 | -------------------------------------------------------------------------------- /.netlify/deploy.js: -------------------------------------------------------------------------------- 1 | const util = require('util'); 2 | const _fs = require('fs'); 3 | const fs = { 4 | mkdir: util.promisify(_fs.mkdir), 5 | readdir: util.promisify(_fs.readdir), 6 | copyFile: util.promisify(_fs.copyFile), 7 | readFile: util.promisify(_fs.readFile), 8 | writeFile: util.promisify(_fs.writeFile) 9 | }; 10 | 11 | const SRC = '..'; 12 | const BUILD = 'build'; 13 | const PREFIX = '.json' 14 | 15 | async function main() { 16 | try { 17 | await fs.mkdir(BUILD, { recursive: true }); 18 | } catch (err) { 19 | if (err.code !== 'EEXIST') { 20 | throw err; 21 | } 22 | } 23 | const filesAll = await fs.readdir(SRC); 24 | const files = filesAll.filter(file => file.endsWith(PREFIX) && !file.startsWith('_')); 25 | const all = {}; 26 | const index = []; 27 | for (let file of files) { 28 | const input = `${SRC}/${file}`; 29 | const output = `${BUILD}/${file}`; 30 | const data = await fs.readFile(input, { encoding: 'utf8' }); 31 | const json = JSON.parse(data); 32 | console.log(`Write ${output}`); 33 | await fs.writeFile(output, JSON.stringify(json), { encoding: 'utf8' }); 34 | const id = file.substring(0, file.length - PREFIX.length); 35 | all[id] = json; 36 | index.push(id); 37 | } 38 | const allOutput = `${BUILD}/_all.json` 39 | console.log(`Write ${allOutput}`); 40 | await fs.writeFile(`${allOutput}`, JSON.stringify(all), { encoding: 'utf8' }); 41 | const indexOutput = `${BUILD}/_index.json` 42 | console.log(`Write ${indexOutput}`); 43 | await fs.writeFile(`${indexOutput}`, JSON.stringify(index), { encoding: 'utf8' }); 44 | } 45 | 46 | main(); 47 | -------------------------------------------------------------------------------- /.netlify/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "registry", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1 5 | } 6 | -------------------------------------------------------------------------------- /.netlify/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "registry", 3 | "version": "1.0.0", 4 | "description": "DITA-OT registry deployment", 5 | "repository": "github:dita-ot/registry", 6 | "author": "Jarno Elovirta ", 7 | "license": "Apache-2.0", 8 | "scripts": { 9 | "install": "node deploy.js" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore configuration files with YAML front matter (transformed by Jekyll) 2 | _all.json 3 | _index.json 4 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | printWidth: 120 2 | proseWrap: preserve 3 | singleQuote: true 4 | tabWidth: 2 5 | 6 | overrides: 7 | - files: '*.json' 8 | options: 9 | printWidth: 120 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # DITA Open Toolkit Plug-in Registry [![Netlify Status](https://api.netlify.com/api/v1/badges/626192a4-0b63-4a52-9b5a-ef6b46dc6464/deploy-status)](https://app.netlify.com/sites/plugins-dita-ot/deploys) 2 | 3 | This repository serves as the data backend for the DITA-OT plug-in registry. 4 | 5 | The registry provides a searchable list of plug-ins at [dita-ot.org/plugins](https://www.dita-ot.org/plugins), which makes it easier to discover and install new plug-ins for DITA Open Toolkit. 6 | 7 | 8 | 9 | - [Adding plug-ins to the registry](#adding-plug-ins-to-the-registry) 10 | - [Contribution Guidelines](#contribution-guidelines) 11 | 12 | 13 | 14 | --- 15 | 16 | ![DITA-OT plug-in registry](https://user-images.githubusercontent.com/129995/48142257-bee91a00-e2ac-11e8-877e-827d2471fec6.png) 17 | 18 | --- 19 | 20 | ## Adding plug-ins to the registry 21 | 22 | The entries for each plug-in are stored in a file named after the plug-in ID as `.json`. 23 | 24 | To add a plug-in, [fork][1] this repository, create a new plug-in entry file in JSON format, and send a [pull request][2]. 25 | 26 | For details on the file format, see [Publishing plug-ins to the registry][3] in the DITA-OT documentation. 27 | 28 | ## Contribution Guidelines 29 | 30 | This repository follows the [DITA-OT Contribution Guidelines][4], summarized below: 31 | 32 | - If you find a bug or would like to suggest a change, [create an issue][5]. 33 | _(If it's a bug, provide steps to recreate the issue.)_ 34 | 35 | - To add a new plug-in or new version, [submit a pull request][2] with the proposed changes. Create separate pull request for each plug-in version. 36 | 37 | - Indicate that you agree to the terms of the Apache License Version 2.0 by "[signing off][6]" your contribution with `git commit -s`. 38 | 39 | This adds a line with your name and e-mail address to your Git commit message: 40 | 41 | ```bash 42 | Signed-off-by: Jane Doe 43 | ``` 44 | 45 | [1]: https://help.github.com/articles/fork-a-repo/ 46 | [2]: https://help.github.com/articles/about-pull-requests/ 47 | [3]: https://www.dita-ot.org/dev/topics/plugins-registry.html#plugin-registry__publishing-to-registry 48 | [4]: https://github.com/dita-ot/dita-ot/blob/develop/.github/CONTRIBUTING.md 49 | [5]: https://github.com/dita-ot/registry/issues/new 50 | [6]: https://www.dita-ot.org/DCO 51 | 52 | -------------------------------------------------------------------------------- /_all.json: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | { 4 | {%- for file in site.static_files -%} 5 | {%- if file.path contains '/build/' -%} 6 | {%- elsif file.path contains '/package.json' -%} 7 | {%- elsif file.path contains '/package-lock.json' -%} 8 | {%- elsif file.path contains '/manifest.json' -%} 9 | {%- elsif file.path contains '/asset-manifest.json' -%} 10 | {%- elsif file.extname == '.json' -%} 11 | "{{ file.basename }}": {%- include_relative {{file.name}} -%}, 12 | {%- endif -%} 13 | {%- endfor -%} 14 | "_":null 15 | } 16 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | include: [_index.json,_all.json] 2 | exclude: [CNAME] 3 | -------------------------------------------------------------------------------- /_index.json: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | [ 4 | {%- for file in site.static_files -%} 5 | {%- if file.path contains '/build/' -%} 6 | {%- elsif file.path contains '/package.json' -%} 7 | {%- elsif file.path contains '/package-lock.json' -%} 8 | {%- elsif file.path contains '/manifest.json' -%} 9 | {%- elsif file.path contains '/asset-manifest.json' -%} 10 | {%- elsif file.extname == '.json' -%} 11 | "{{ file.name }}", 12 | {%- endif -%} 13 | {%- endfor -%} 14 | null 15 | ] 16 | -------------------------------------------------------------------------------- /com.acolad.imagemap-pdf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.acolad.imagemap-pdf", 4 | "description": "DITA-OT plugin to manage imagemap element in PDF.", 5 | "keywords": ["Image map","PDF"], 6 | "homepage": "https://github.com/acolad-digital/com.acolad.imagemap-pdf/", 7 | "vers": "1.2.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.0.0" 13 | } 14 | ], 15 | "url": "https://github.com/acolad-digital/com.acolad.imagemap-pdf/archive/refs/tags/v1.2.0.zip", 16 | "cksum": "E802E45533D04780A68160B43F774FD665BAF490F976C2925BA4490C162E6F5E" 17 | }, 18 | { 19 | "name": "com.acolad.imagemap-pdf", 20 | "description": "DITA-OT plugin to manage imagemap element in PDF.", 21 | "keywords": ["Image map","PDF"], 22 | "homepage": "https://github.com/acolad-digital/com.acolad.imagemap-pdf/", 23 | "vers": "1.1.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=3.0.0" 29 | } 30 | ], 31 | "url": "https://github.com/acolad-digital/com.acolad.imagemap-pdf/archive/refs/tags/v1.1.0.zip", 32 | "cksum": "9D058782D54FB4505932A5C365C17106387211FA5CBAA538C082B36E689C785E" 33 | }, 34 | { 35 | "name": "com.acolad.imagemap-pdf", 36 | "description": "DITA-OT plugin to manage imagemap element in PDF.", 37 | "keywords": ["Image map","PDF"], 38 | "homepage": "https://github.com/acolad-digital/com.acolad.imagemap-pdf/", 39 | "vers": "1.0.0", 40 | "license": "Apache-2.0", 41 | "deps": [ 42 | { 43 | "name": "org.dita.base", 44 | "req": ">=3.0.0" 45 | } 46 | ], 47 | "url": "https://github.com/acolad-digital/com.acolad.imagemap-pdf/archive/refs/tags/v1.0.0.zip", 48 | "cksum": "140F752A5AE98FCAB65518A43CDC66D2677EB448708065BB287BF8B89E3E969F" 49 | } 50 | ] 51 | -------------------------------------------------------------------------------- /com.antennahouse.wml.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.antennahouse.wml", 4 | "description": "Convert DITA to Microsoft Word (.docx).", 5 | "keywords": ["Word",".docx"], 6 | "homepage": "https://github.com/AntennaHouse/ah-wml", 7 | "vers": "0.9.1", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/AntennaHouse/ah-wml/archive/V0.9.1.zip", 16 | "cksum": "4547FF9133EFB38DB424E295E7CA9971D60CEB8A7834648E235D29F1392DDF71" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /com.elovirta.fo.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.elovirta.fo", 4 | "description": "DITA to XSL-FO", 5 | "keywords": ["XSL-FO", "PDF"], 6 | "homepage": "https://github.com/jelovirt/com.elovirta.fo/", 7 | "vers": "1.0.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/jelovirt/com.elovirta.fo/archive/1.0.0.zip", 16 | "cksum": "782b7e1e17af6bd22cbf56a0099fc87a7b71eaf6f65168b64c39f74b62a1d01e" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /com.elovirta.ooxml.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.elovirta.ooxml", 4 | "description": "DITA to Word plug-in", 5 | "keywords": ["Word"], 6 | "homepage": "https://github.com/jelovirt/com.elovirta.ooxml/", 7 | "vers": "1.3.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.1.0" 13 | } 14 | ], 15 | "url": "https://github.com/jelovirt/com.elovirta.ooxml/archive/1.3.0.zip", 16 | "cksum": "887e1d5ca73af51f0008a890c24ce8898e7948f035c66a6fcba9a2ef0153a136" 17 | }, 18 | { 19 | "name": "com.elovirta.ooxml", 20 | "description": "DITA to Word plug-in", 21 | "keywords": ["Word"], 22 | "homepage": "https://github.com/jelovirt/com.elovirta.ooxml/", 23 | "vers": "1.4.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=2.1.0" 29 | } 30 | ], 31 | "url": "https://github.com/jelovirt/com.elovirta.ooxml/archive/1.4.0.zip", 32 | "cksum": "4b7913d147c995898e1821a9d1f09a055adc4f49fc853588410d3210f29a4b66" 33 | } 34 | ] 35 | -------------------------------------------------------------------------------- /com.elovirta.pdf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.elovirta.pdf", 4 | "description": "Template support for PDF2", 5 | "keywords": [ 6 | "PDF", 7 | "theme" 8 | ], 9 | "homepage": "https://github.com/jelovirt/pdf-generator/", 10 | "vers": "0.3.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.6.0" 16 | } 17 | ], 18 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.3.0/com.elovirta.pdf.zip", 19 | "cksum": "606698ad61f89ce82c56a66df85e6da2eeeb022d2d18d3967fc6f7e95c7fcce4" 20 | }, 21 | { 22 | "name": "com.elovirta.pdf", 23 | "description": "Template support for PDF2", 24 | "keywords": [ 25 | "PDF", 26 | "theme" 27 | ], 28 | "homepage": "https://github.com/jelovirt/pdf-generator/", 29 | "vers": "0.4.0", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.6.0" 35 | } 36 | ], 37 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.4.0/com.elovirta.pdf.zip", 38 | "cksum": "f1dbca6d8f138f76cb3b08a9fb9d3111a4d9ec4d9565ee25f35b2f76fc268e61" 39 | }, 40 | { 41 | "name": "com.elovirta.pdf", 42 | "description": "Template support for PDF2", 43 | "keywords": [ 44 | "PDF", 45 | "theme" 46 | ], 47 | "homepage": "https://github.com/jelovirt/pdf-generator/", 48 | "vers": "0.6.0", 49 | "license": "Apache-2.0", 50 | "deps": [ 51 | { 52 | "name": "org.dita.base", 53 | "req": ">=3.6.0" 54 | } 55 | ], 56 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.6.0/com.elovirta.pdf.zip", 57 | "cksum": "60dfbff83682508becc71b543d8d79e14ea4acab7f6c6ff7694e5179f387f04e" 58 | }, 59 | { 60 | "name": "com.elovirta.pdf", 61 | "description": "Template support for PDF2", 62 | "keywords": [ 63 | "PDF", 64 | "theme" 65 | ], 66 | "homepage": "https://github.com/jelovirt/pdf-generator/", 67 | "vers": "0.7.0", 68 | "license": "Apache-2.0", 69 | "deps": [ 70 | { 71 | "name": "org.dita.base", 72 | "req": ">=3.6.0" 73 | } 74 | ], 75 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.7.0/com.elovirta.pdf-0.7.0.zip", 76 | "cksum": "be541cee316579e75d8a100e8158d4df3e36a7cb8e6efbc42d0639842b324af5" 77 | }, 78 | { 79 | "name": "com.elovirta.pdf", 80 | "description": "Template support for PDF2", 81 | "keywords": [ 82 | "PDF", 83 | "theme" 84 | ], 85 | "homepage": "https://github.com/jelovirt/pdf-generator/", 86 | "vers": "0.7.1", 87 | "license": "Apache-2.0", 88 | "deps": [ 89 | { 90 | "name": "org.dita.base", 91 | "req": ">=3.6.0" 92 | } 93 | ], 94 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.7.1/com.elovirta.pdf-0.7.1.zip", 95 | "cksum": "b5788296cb66b38ae66f1e9ef74094619e64924cf4c9ac808ba89253c9644369" 96 | }, 97 | { 98 | "name": "com.elovirta.pdf", 99 | "description": "Template support for PDF2", 100 | "keywords": [ 101 | "PDF", 102 | "theme" 103 | ], 104 | "homepage": "https://github.com/jelovirt/pdf-generator/", 105 | "vers": "0.7.2", 106 | "license": "Apache-2.0", 107 | "deps": [ 108 | { 109 | "name": "org.dita.base", 110 | "req": ">=3.6.0" 111 | } 112 | ], 113 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.7.2/com.elovirta.pdf-0.7.2.zip", 114 | "cksum": "c59df242e3709b8ccb00d71cf2095b0c255b26868d5fdbe5b7c60315d8689984" 115 | }, 116 | { 117 | "name": "com.elovirta.pdf", 118 | "description": "Template support for PDF2", 119 | "keywords": [ 120 | "PDF", 121 | "theme" 122 | ], 123 | "homepage": "https://github.com/jelovirt/pdf-generator/", 124 | "vers": "0.8.0", 125 | "license": "Apache-2.0", 126 | "deps": [ 127 | { 128 | "name": "org.dita.base", 129 | "req": ">=3.6.0" 130 | } 131 | ], 132 | "url": "https://github.com/jelovirt/pdf-generator/releases/download/0.8.0/com.elovirta.pdf-0.8.0.zip", 133 | "cksum": "1bb5678d585d010edfbc3f3ed39a0d58c1570f9a61a3d3314ab83a881c623d19" 134 | } 135 | ] 136 | -------------------------------------------------------------------------------- /com.here.validate.svrl.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.here.validate.svrl", 4 | "description": "A structure, style and content linter for DITA documents.", 5 | "keywords": [ 6 | "validation", 7 | "lint" 8 | ], 9 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 10 | "vers": "2.0.2", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=2.3.0" 16 | } 17 | ], 18 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v2.0.2.zip", 19 | "cksum": "57a7db08366935a8554a25a82bb4d0a73f73f3f2e6048ed19c970747ce97c320" 20 | }, 21 | { 22 | "name": "com.here.validate.svrl", 23 | "description": "A structure, style and content linter for DITA, MDITA and Markdown documents.", 24 | "keywords": [ 25 | "validation", 26 | "lint" 27 | ], 28 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 29 | "vers": "3.0.0", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.0.0" 35 | } 36 | ], 37 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v3.0.0.zip", 38 | "cksum": "4416550b4e9baf0d7efae6ce19145631a0bdd4aebf3f230112293026cb2a67b9" 39 | }, 40 | { 41 | "name": "com.here.validate.svrl", 42 | "description": "A structure, style and content linter for DITA, MDITA and Markdown documents.", 43 | "keywords": [ 44 | "validation", 45 | "lint" 46 | ], 47 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 48 | "vers": "4.0.0", 49 | "license": "Apache-2.0", 50 | "deps": [ 51 | { 52 | "name": "org.dita.base", 53 | "req": ">=3.0.0" 54 | }, 55 | { 56 | "name": "org.doctales.xmltask", 57 | "req": ">=1.16.1" 58 | } 59 | ], 60 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v4.0.0.zip", 61 | "cksum": "b9afa2df2d0f5c1edfe2af44dc05b9ba8286c8e81743ad21e766b0239d44cafe" 62 | }, 63 | { 64 | "name": "com.here.validate.svrl", 65 | "description": "A structure, style and content linter for DITA, MDITA and Markdown documents.", 66 | "keywords": [ 67 | "validation", 68 | "lint" 69 | ], 70 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 71 | "vers": "4.1.0", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.0.0" 77 | }, 78 | { 79 | "name": "org.doctales.xmltask", 80 | "req": ">=1.16.1" 81 | } 82 | ], 83 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v4.1.0.zip", 84 | "cksum": "8d9c65ab723e1c8d5a1107e5e543401313be5383b500346048884b629f5e0300" 85 | }, 86 | { 87 | "name": "com.here.validate.svrl", 88 | "description": "A structure, style and content linter for DITA, MDITA and Markdown documents.", 89 | "keywords": [ 90 | "validation", 91 | "lint" 92 | ], 93 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 94 | "vers": "4.1.1", 95 | "license": "Apache-2.0", 96 | "deps": [ 97 | { 98 | "name": "org.dita.base", 99 | "req": ">=3.0.0" 100 | }, 101 | { 102 | "name": "org.doctales.xmltask", 103 | "req": ">=1.16.1" 104 | } 105 | ], 106 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v4.1.1.zip", 107 | "cksum": "3d486e3c7070b67c949cd186ef5393e8efd82d23c02690f7e3be2b05f53ffc2b" 108 | }, 109 | { 110 | "name": "com.here.validate.svrl", 111 | "description": "A structure, style and content linter for DITA, MDITA and Markdown documents.", 112 | "keywords": [ 113 | "validation", 114 | "lint" 115 | ], 116 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 117 | "vers": "5.0.0", 118 | "license": "Apache-2.0", 119 | "deps": [ 120 | { 121 | "name": "org.dita.base", 122 | "req": ">=3.0.0" 123 | } 124 | ], 125 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v5.0.0.zip", 126 | "cksum": "b54d0fa018760af474ee32d5e9473a1907da6ea6b58141918c966ac7e44bc97c" 127 | }, 128 | { 129 | "name": "com.here.validate.svrl", 130 | "description": "A structure, style and content linter for DITA, MDITA and Markdown documents.", 131 | "keywords": [ 132 | "validation", 133 | "lint" 134 | ], 135 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl", 136 | "vers": "5.1.0", 137 | "license": "Apache-2.0", 138 | "deps": [ 139 | { 140 | "name": "org.dita.base", 141 | "req": ">=3.0.0" 142 | } 143 | ], 144 | "url": "https://github.com/jason-fox/com.here.validate.svrl/archive/v5.1.0.zip", 145 | "cksum": "54eb03af2501548d915614a4cbd9860fe71e55d78aa1dbb5c74176ba8d4ecac9" 146 | } 147 | ] 148 | -------------------------------------------------------------------------------- /com.here.validate.svrl.overrides.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.here.validate.svrl.overrides", 4 | "description": "Shows how to add, remove or extend the ruleset of the base DITA Validator (com.here.validate.svrl).", 5 | "keywords": ["validation", "lint"], 6 | "homepage": "https://github.com/jason-fox/com.here.validate.svrl.overrides/blob/master/README.md", 7 | "vers": "2.0.1", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | }, 14 | { 15 | "name": "com.here.validate.svrl", 16 | "req": ">=2.0.0" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/com.here.validate.svrl.overrides/archive/v2.0.1.zip", 20 | "cksum": "e2e700d6936b4ff238b5711c40601e396c040ee3a31426fe97eba3702a11754a" 21 | }, 22 | { 23 | "name": "com.here.validate.svrl.overrides", 24 | "description": "Shows how to add, remove or extend the ruleset of the base DITA Validator (com.here.validate.svrl).", 25 | "keywords": ["validation", "lint"], 26 | "homepage": "https://github.com/jason-fox/com.here.validate.svrl.overrides/blob/master/README.md", 27 | "vers": "3.0.0", 28 | "license": "Apache-2.0", 29 | "deps": [ 30 | { 31 | "name": "org.dita.base", 32 | "req": ">=3.0.0" 33 | }, 34 | { 35 | "name": "com.here.validate.svrl", 36 | "req": ">=3.0.0" 37 | } 38 | ], 39 | "url": "https://github.com/jason-fox/com.here.validate.svrl.overrides/archive/v3.0.0.zip", 40 | "cksum": "bb5c69ce4b80daeb618743c373cbe2f23fdb2a061e76e913ba38dd4b1cdaf47b" 41 | }, 42 | { 43 | "name": "com.here.validate.svrl.overrides", 44 | "description": "Shows how to add, remove or extend the ruleset of the base DITA Validator (com.here.validate.svrl).", 45 | "keywords": ["validation", "lint"], 46 | "homepage": "https://github.com/jason-fox/com.here.validate.svrl.overrides/blob/master/README.md", 47 | "vers": "4.0.0", 48 | "license": "Apache-2.0", 49 | "deps": [ 50 | { 51 | "name": "org.dita.base", 52 | "req": ">=3.0.0" 53 | }, 54 | { 55 | "name": "org.doctales.xmltask", 56 | "req": ">=1.16.1" 57 | }, 58 | { 59 | "name": "com.here.validate.svrl", 60 | "req": ">=4.0.0" 61 | } 62 | ], 63 | "url": "https://github.com/jason-fox/com.here.validate.svrl.overrides/archive/v4.0.0.zip", 64 | "cksum": "b62089a7d7010c1cd973a88b17682b562091bb619dd59cf729ade51e702a4bcb" 65 | }, 66 | { 67 | "name": "com.here.validate.svrl.overrides", 68 | "description": "Shows how to add, remove or extend the ruleset of the base DITA Validator (com.here.validate.svrl).", 69 | "keywords": ["validation", "lint"], 70 | "homepage": "https://github.com/jason-fox/com.here.validate.svrl.overrides/blob/master/README.md", 71 | "vers": "4.1.0", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.0.0" 77 | }, 78 | { 79 | "name": "org.doctales.xmltask", 80 | "req": ">=1.16.1" 81 | }, 82 | { 83 | "name": "com.here.validate.svrl", 84 | "req": ">=4.1.0" 85 | } 86 | ], 87 | "url": "https://github.com/jason-fox/com.here.validate.svrl.overrides/archive/v4.1.0.zip", 88 | "cksum": "339c1e0cb4505f6ffdb06fc1c42b8c62f9f0ce4c15d750ff2497887864ac5857" 89 | } 90 | ] 91 | -------------------------------------------------------------------------------- /com.here.validate.svrl.text-rules.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.here.validate.svrl.text-rules", 4 | "description": "Simple rule-based spelling and grammar validation DITA-OT plug-in for text elements within DITA documents.", 5 | "keywords": [ 6 | "validation", 7 | "text-lint", 8 | "spell-checking", 9 | "grammar-checking" 10 | ], 11 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl.text-rules", 12 | "vers": "2.0.2", 13 | "license": "Apache-2.0", 14 | "deps": [ 15 | { 16 | "name": "org.dita.base", 17 | "req": ">=2.3.0" 18 | }, 19 | { 20 | "name": "com.here.validate.svrl", 21 | "req": ">=2.0.0" 22 | } 23 | ], 24 | "url": "https://github.com/jason-fox/com.here.validate.svrl.text-rules/archive/v2.0.2.zip", 25 | "cksum": "c3940ba8a4c4d24f331996527cc5ab666b3e05738b0cfe0e0613a1ff5591ab8c" 26 | }, 27 | { 28 | "name": "com.here.validate.svrl.text-rules", 29 | "description": "Simple rule-based spelling and grammar validation DITA-OT plug-in for text elements within DITA documents.", 30 | "keywords": [ 31 | "validation", 32 | "text-lint", 33 | "spell-checking", 34 | "grammar-checking" 35 | ], 36 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl.text-rules", 37 | "vers": "3.0.0", 38 | "license": "Apache-2.0", 39 | "deps": [ 40 | { 41 | "name": "org.dita.base", 42 | "req": ">=3.0.0" 43 | }, 44 | { 45 | "name": "com.here.validate.svrl", 46 | "req": ">=3.0.0" 47 | } 48 | ], 49 | "url": "https://github.com/jason-fox/com.here.validate.svrl.text-rules/archive/v3.0.0.zip", 50 | "cksum": "6bfebafd60033f718c5c7e6389bc166989e516c8b63d09be93c8de43726f6a93" 51 | }, 52 | { 53 | "name": "com.here.validate.svrl.text-rules", 54 | "description": "Simple rule-based spelling and grammar validation DITA-OT plug-in for text elements within DITA documents.", 55 | "keywords": [ 56 | "validation", 57 | "text-lint", 58 | "spell-checking", 59 | "grammar-checking" 60 | ], 61 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl.text-rules", 62 | "vers": "4.0.0", 63 | "license": "Apache-2.0", 64 | "deps": [ 65 | { 66 | "name": "org.dita.base", 67 | "req": ">=3.0.0" 68 | }, 69 | { 70 | "name": "org.doctales.xmltask", 71 | "req": ">=1.16.1" 72 | }, 73 | { 74 | "name": "com.here.validate.svrl", 75 | "req": ">=4.0.0" 76 | } 77 | ], 78 | "url": "https://github.com/jason-fox/com.here.validate.svrl.text-rules/archive/v4.0.0.zip", 79 | "cksum": "34cdba1498d43519ac30bb6d7f8e2a7d3fade3a6e37f34e6255941ed321412ab" 80 | }, 81 | { 82 | "name": "com.here.validate.svrl.text-rules", 83 | "description": "Simple rule-based spelling and grammar validation DITA-OT plug-in for text elements within DITA documents.", 84 | "keywords": [ 85 | "validation", 86 | "text-lint", 87 | "spell-checking", 88 | "grammar-checking" 89 | ], 90 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl.text-rules", 91 | "vers": "4.1.0", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.0.0" 97 | }, 98 | { 99 | "name": "org.doctales.xmltask", 100 | "req": ">=1.16.1" 101 | }, 102 | { 103 | "name": "com.here.validate.svrl", 104 | "req": ">=4.1.0" 105 | } 106 | ], 107 | "url": "https://github.com/jason-fox/com.here.validate.svrl.text-rules/archive/v4.1.0.zip", 108 | "cksum": "49747de1d451dc621b467c05f06385a63bfd2d7be0bbbedd627167036d402aec" 109 | }, 110 | { 111 | "name": "com.here.validate.svrl.text-rules", 112 | "description": "Simple rule-based spelling and grammar validation DITA-OT plug-in for text elements within DITA documents.", 113 | "keywords": [ 114 | "validation", 115 | "text-lint", 116 | "spell-checking", 117 | "grammar-checking" 118 | ], 119 | "homepage": "https://jason-fox.github.io/com.here.validate.svrl.text-rules", 120 | "vers": "4.1.1", 121 | "license": "Apache-2.0", 122 | "deps": [ 123 | { 124 | "name": "org.dita.base", 125 | "req": ">=3.0.0" 126 | }, 127 | { 128 | "name": "org.doctales.xmltask", 129 | "req": ">=1.16.1" 130 | }, 131 | { 132 | "name": "com.here.validate.svrl", 133 | "req": ">=4.1.0" 134 | } 135 | ], 136 | "url": "https://github.com/jason-fox/com.here.validate.svrl.text-rules/archive/v4.1.1.zip", 137 | "cksum": "c51baa62de4a3140fdb8ac06a0220c6921d557ff87580b7c9fa0262094865fe8" 138 | } 139 | ] 140 | -------------------------------------------------------------------------------- /com.sophos.tocjs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.sophos.tocjs", 4 | "description": "The TocJS plugin generates a JavaScript-based frameset for DITA Open Toolkit's XHTML output with Table of Contents entries that expand and collapse.", 5 | "keywords": ["XHTML", "ToC", "JavaScript"], 6 | "homepage": "https://github.com/dita-ot/com.sophos.tocjs/", 7 | "vers": "2.5.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.5.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/com.sophos.tocjs/archive/2.5.zip", 16 | "cksum": "babe148b69b07ff04cf547e569995a557fbfbba2b29a7c92fcb3aa77bd15f2fc" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /com.synopsys.mapref-topichead.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "com.synopsys.mapref-topichead", 4 | "description": "Create navigation hierarchy from submap titles instead of discarding them.", 5 | "keywords": [ 6 | "mapref", 7 | "navigation", 8 | "submaps", 9 | "titles", 10 | "topichead" 11 | ], 12 | "homepage": "https://github.com/chrispy-snps/DITA-mapref-topichead/", 13 | "vers": "1.0.0", 14 | "license": "GPL-3.0-or-later", 15 | "deps": [ 16 | { 17 | "name": "org.dita.base", 18 | "req": ">=3.7.0" 19 | } 20 | ], 21 | "url": "https://github.com/chrispy-snps/DITA-mapref-topichead/releases/download/1.0.0/com.synopsys.mapref-topichead-1.0.0.zip", 22 | "cksum": "6ce413c3d7431d1bbfc4a957c1dcb71f6df171c1ba94095a0504da93c379b3e1" 23 | } 24 | ] 25 | -------------------------------------------------------------------------------- /fox.jason.audiobook.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.audiobook", 4 | "description": "Transforms DITA to speech in the form of an audiobook. It uses freely available Text-to-Speech cloud services to transform SSML files into MP3 audio files or a single m4a audiobook.", 5 | "keywords": [ 6 | "speech-synthesis", 7 | "audio-processing", 8 | "audiobook", 9 | "text-to-speech" 10 | ], 11 | "homepage": "https://jason-fox.github.io/fox.jason.audiobook", 12 | "vers": "1.0.0", 13 | "license": "Apache-2.0", 14 | "deps": [ 15 | { 16 | "name": "org.dita.base", 17 | "req": "3.0.0 - 3.7.4" 18 | } 19 | ], 20 | "url": "https://github.com/jason-fox/fox.jason.audiobook/archive/v1.0.0.zip", 21 | "cksum": "ed1a96639cc007aef96568afe85a3466db54921ef446e929b08e19b18a610060" 22 | }, 23 | { 24 | "name": "fox.jason.audiobook", 25 | "description": "Transforms DITA to speech in the form of an audiobook. It uses freely available Text-to-Speech cloud services to transform SSML files into MP3 audio files or a single m4a audiobook.", 26 | "keywords": [ 27 | "speech-synthesis", 28 | "audio-processing", 29 | "audiobook", 30 | "text-to-speech" 31 | ], 32 | "homepage": "https://jason-fox.github.io/fox.jason.audiobook", 33 | "vers": "1.1.0", 34 | "license": "Apache-2.0", 35 | "deps": [ 36 | { 37 | "name": "org.dita.base", 38 | "req": "3.0.0 - 3.7.4" 39 | } 40 | ], 41 | "url": "https://github.com/jason-fox/fox.jason.audiobook/archive/v1.1.0.zip", 42 | "cksum": "475c7f1b68cb4cce02865c2f69c6dec8d284db37e4c6f10636a75d4b0d2e157e" 43 | }, 44 | { 45 | "name": "fox.jason.audiobook", 46 | "description": "Transforms DITA to speech in the form of an audiobook. It uses freely available Text-to-Speech cloud services to transform SSML files into MP3 audio files or a single m4a audiobook.", 47 | "keywords": [ 48 | "speech-synthesis", 49 | "audio-processing", 50 | "audiobook", 51 | "text-to-speech" 52 | ], 53 | "homepage": "https://jason-fox.github.io/fox.jason.audiobook", 54 | "vers": "1.2.0", 55 | "license": "Apache-2.0", 56 | "deps": [ 57 | { 58 | "name": "org.dita.base", 59 | "req": "3.0.0 - 3.7.4" 60 | } 61 | ], 62 | "url": "https://github.com/jason-fox/fox.jason.audiobook/archive/v1.2.0.zip", 63 | "cksum": "88b9c30fead4995049462364edf5d4b4b3fd29eb6cf9a23d599d16aaaa288a39" 64 | }, 65 | { 66 | "name": "fox.jason.audiobook", 67 | "description": "Transforms DITA to speech in the form of an audiobook. It uses freely available Text-to-Speech cloud services to transform SSML files into MP3 audio files or a single m4a audiobook.", 68 | "keywords": [ 69 | "speech-synthesis", 70 | "audio-processing", 71 | "audiobook", 72 | "text-to-speech" 73 | ], 74 | "homepage": "https://jason-fox.github.io/fox.jason.audiobook", 75 | "vers": "1.3.0", 76 | "license": "Apache-2.0", 77 | "deps": [ 78 | { 79 | "name": "org.dita.base", 80 | "req": "3.0.0 - 3.7.4" 81 | } 82 | ], 83 | "url": "https://github.com/jason-fox/fox.jason.audiobook/archive/v1.3.0.zip", 84 | "cksum": "c94350783c1d165b175aa950cd4c6678b117b3d6b84a02309fb68361f3b58475" 85 | }, 86 | { 87 | "name": "fox.jason.audiobook", 88 | "description": "Transforms DITA to speech in the form of an audiobook. It uses freely available Text-to-Speech cloud services to transform SSML files into MP3 audio files or a single m4a audiobook.", 89 | "keywords": [ 90 | "speech-synthesis", 91 | "audio-processing", 92 | "audiobook", 93 | "text-to-speech" 94 | ], 95 | "homepage": "https://jason-fox.github.io/fox.jason.audiobook", 96 | "vers": "1.3.1", 97 | "license": "Apache-2.0", 98 | "deps": [ 99 | { 100 | "name": "org.dita.base", 101 | "req": "3.0.0 - 3.7.4" 102 | } 103 | ], 104 | "url": "https://github.com/jason-fox/fox.jason.audiobook/archive/v1.3.1.zip", 105 | "cksum": "3057aa4e625c7f537381f8887d485bcebbfa033016534eaa9df6206e72bfcc1c" 106 | }, 107 | { 108 | "name": "fox.jason.audiobook", 109 | "description": "Transforms DITA to speech in the form of an audiobook. It uses freely available Text-to-Speech cloud services to transform SSML files into MP3 audio files or a single m4a audiobook.", 110 | "keywords": [ 111 | "speech-synthesis", 112 | "audio-processing", 113 | "audiobook", 114 | "text-to-speech" 115 | ], 116 | "homepage": "https://jason-fox.github.io/fox.jason.audiobook", 117 | "vers": "2.0.0", 118 | "license": "Apache-2.0", 119 | "deps": [ 120 | { 121 | "name": "org.dita.base", 122 | "req": ">=4.0.0" 123 | } 124 | ], 125 | "url": "https://github.com/jason-fox/fox.jason.audiobook/archive/v2.0.0.zip", 126 | "cksum": "c6f915ecb87c3921e1be620fd9273289a98d08eb0859b650850dbec8b353f6ec" 127 | } 128 | ] 129 | -------------------------------------------------------------------------------- /fox.jason.extend.css.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.extend.css", 4 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 5 | "keywords": [ 6 | "html", 7 | "css" 8 | ], 9 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 10 | "vers": "1.0.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.1.0" 16 | } 17 | ], 18 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.0.0.zip", 19 | "cksum": "992faf0e3a20d3ec9c2b064f07958bb6e3fe3dd97ca50a2744636971d00f30f0" 20 | }, 21 | { 22 | "name": "fox.jason.extend.css", 23 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 24 | "keywords": [ 25 | "html", 26 | "css" 27 | ], 28 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 29 | "vers": "1.0.1", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.1.0" 35 | } 36 | ], 37 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.0.1.zip", 38 | "cksum": "c9260266c7ee6e46d178499ed9039e4a14a50ac37b161a44e06c01e7bbf099fe" 39 | }, 40 | { 41 | "name": "fox.jason.extend.css", 42 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 43 | "keywords": [ 44 | "html", 45 | "css" 46 | ], 47 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 48 | "vers": "1.0.2", 49 | "license": "Apache-2.0", 50 | "deps": [ 51 | { 52 | "name": "org.dita.base", 53 | "req": ">=3.1.0" 54 | } 55 | ], 56 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.0.2.zip", 57 | "cksum": "2de53a6c10ca6965ed5d362c7e2db834474ad012a3fafa125b3e9a10aa0971d7" 58 | }, 59 | { 60 | "name": "fox.jason.extend.css", 61 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 62 | "keywords": [ 63 | "html", 64 | "css" 65 | ], 66 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 67 | "vers": "1.0.3", 68 | "license": "Apache-2.0", 69 | "deps": [ 70 | { 71 | "name": "org.dita.base", 72 | "req": ">=3.1.0" 73 | } 74 | ], 75 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.0.3.zip", 76 | "cksum": "c9ea515b2a62951890c5cd30b56b63a4c07c90adbc12db112fd518afc36b818b" 77 | }, 78 | { 79 | "name": "fox.jason.extend.css", 80 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 81 | "keywords": [ 82 | "html", 83 | "css" 84 | ], 85 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 86 | "vers": "1.1.0", 87 | "license": "Apache-2.0", 88 | "deps": [ 89 | { 90 | "name": "org.dita.base", 91 | "req": ">=3.1.0" 92 | } 93 | ], 94 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.1.0.zip", 95 | "cksum": "b87ae00f2ac56f02f1e46f6c2581afda124df5d7e74b6db0b23d87a5323816b8" 96 | }, 97 | { 98 | "name": "fox.jason.extend.css", 99 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 100 | "keywords": [ 101 | "html", 102 | "css" 103 | ], 104 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 105 | "vers": "1.2.0", 106 | "license": "Apache-2.0", 107 | "deps": [ 108 | { 109 | "name": "org.dita.base", 110 | "req": ">=3.1.0" 111 | } 112 | ], 113 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.2.0.zip", 114 | "cksum": "4cfe30bd265ad3a96d4a62d31a5b5577e8239285a0419bd4a8e7bdf6443e2ad7" 115 | }, 116 | { 117 | "name": "fox.jason.extend.css", 118 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 119 | "keywords": [ 120 | "html", 121 | "css" 122 | ], 123 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 124 | "vers": "1.2.1", 125 | "license": "Apache-2.0", 126 | "deps": [ 127 | { 128 | "name": "org.dita.base", 129 | "req": ">=3.1.0" 130 | } 131 | ], 132 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.2.1.zip", 133 | "cksum": "34b2b255c27d429a669b35aa8cf1f05fd5c61d0ad191da98ca8cec1caa6a4c90" 134 | }, 135 | { 136 | "name": "fox.jason.extend.css", 137 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 138 | "keywords": [ 139 | "html", 140 | "css" 141 | ], 142 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 143 | "vers": "1.2.2", 144 | "license": "Apache-2.0", 145 | "deps": [ 146 | { 147 | "name": "org.dita.base", 148 | "req": ">=3.1.0" 149 | } 150 | ], 151 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.2.2.zip", 152 | "cksum": "af1af7e73ec3f24e3c77e17f432c9037abe4183900f9ad6b6e004b91e5957b25" 153 | }, 154 | { 155 | "name": "fox.jason.extend.css", 156 | "description": "Extension to allow additional plug-ins to add an extra CSS stylesheet to HTML pages.", 157 | "keywords": [ 158 | "html", 159 | "css" 160 | ], 161 | "homepage": "https://jason-fox.github.io/fox.jason.extend.css", 162 | "vers": "1.3.0", 163 | "license": "Apache-2.0", 164 | "deps": [ 165 | { 166 | "name": "org.dita.base", 167 | "req": ">=3.1.0" 168 | } 169 | ], 170 | "url": "https://github.com/jason-fox/fox.jason.extend.css/archive/v1.3.0.zip", 171 | "cksum": "7a70b73fd3b8aaa03e9fd03cb525946c68be56afae155895ed03e21cf4ba450c" 172 | } 173 | ] 174 | -------------------------------------------------------------------------------- /fox.jason.favicon.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.favicon", 4 | "description": "Adds a favicon to DITA HTML output.", 5 | "keywords": [ 6 | "html", 7 | "css" 8 | ], 9 | "homepage": "https://jason-fox.github.io/fox.jason.favicon", 10 | "vers": "1.0.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.1.0" 16 | } 17 | ], 18 | "url": "https://github.com/jason-fox/fox.jason.favicon/archive/v1.0.0.zip", 19 | "cksum": "494cf0d2d4efb4d254873bec4360e67c7fc1c816e95baee4bd350b3ec5b77867" 20 | }, 21 | { 22 | "name": "fox.jason.favicon", 23 | "description": "Adds a favicon to DITA HTML output.", 24 | "keywords": [ 25 | "html", 26 | "css" 27 | ], 28 | "homepage": "https://jason-fox.github.io/fox.jason.favicon", 29 | "vers": "1.0.1", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.1.0" 35 | } 36 | ], 37 | "url": "https://github.com/jason-fox/fox.jason.favicon/archive/v1.0.1.zip", 38 | "cksum": "4ae086ce039f18df392601f27cd6dc8b379544dc1d6e882a9c56d983c836bd4d" 39 | }, 40 | { 41 | "name": "fox.jason.favicon", 42 | "description": "Adds a favicon to DITA HTML output.", 43 | "keywords": [ 44 | "html", 45 | "css" 46 | ], 47 | "homepage": "https://jason-fox.github.io/fox.jason.favicon", 48 | "vers": "1.1.0", 49 | "license": "Apache-2.0", 50 | "deps": [ 51 | { 52 | "name": "org.dita.base", 53 | "req": ">=3.1.0" 54 | } 55 | ], 56 | "url": "https://github.com/jason-fox/fox.jason.favicon/archive/v1.1.0.zip", 57 | "cksum": "0a08147da40110c9addaec9a4d596f37c72d7df3d4b5e1121ea4200bd688657e" 58 | } 59 | ] 60 | -------------------------------------------------------------------------------- /fox.jason.open-graph.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.open-graph", 4 | "description": "Adds Open-Graph social media metadata to DITA HTML output.", 5 | "keywords": [ 6 | "twitter", 7 | "facebook", 8 | "open-graph" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.open-graph", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.1.0" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/fox.jason.open-graph/archive/v1.0.0.zip", 20 | "cksum": "66ab41ade08594dc593940b7b2989962f5e973204085a7d79ba293a42739f04c" 21 | }, 22 | { 23 | "name": "fox.jason.open-graph", 24 | "description": "Adds Open-Graph social media metadata to DITA HTML output.", 25 | "keywords": [ 26 | "twitter", 27 | "facebook", 28 | "open-graph" 29 | ], 30 | "homepage": "https://jason-fox.github.io/fox.jason.open-graph", 31 | "vers": "1.1.0", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.1.0" 37 | } 38 | ], 39 | "url": "https://github.com/jason-fox/fox.jason.open-graph/archive/v1.1.0.zip", 40 | "cksum": "9ce9a46848b6a1e3a60b988adddd785939f9eabe1265d79957a291f03002a829" 41 | } 42 | ] 43 | -------------------------------------------------------------------------------- /fox.jason.passthrough.doxygen.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.passthrough.doxygen", 4 | "description": "Creates DITA-based API documentation from Doxygen XML sources.", 5 | "keywords": [ 6 | "doxygen", 7 | "xml", 8 | "auto-generated text" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.doxygen", 11 | "vers": "1.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.3.0" 17 | }, 18 | { 19 | "name": "org.doctales.xmltask", 20 | "req": ">=1.16.1" 21 | }, 22 | { 23 | "name": "fox.jason.passthrough", 24 | "req": ">=2.2.1" 25 | } 26 | ], 27 | "url": "https://github.com/jason-fox/fox.jason.passthrough.doxygen/archive/v1.2.0.zip", 28 | "cksum": "d0f35dae3e5382f51e301e25ecb5b258a6a460318d840ba2ca9b36075a85056f" 29 | }, 30 | { 31 | "name": "fox.jason.passthrough.doxygen", 32 | "description": "Creates DITA-based API documentation from Doxygen XML sources.", 33 | "keywords": [ 34 | "doxygen", 35 | "xml", 36 | "auto-generated text" 37 | ], 38 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.doxygen", 39 | "vers": "1.3.0", 40 | "license": "Apache-2.0", 41 | "deps": [ 42 | { 43 | "name": "org.dita.base", 44 | "req": ">=3.3.0" 45 | }, 46 | { 47 | "name": "org.doctales.xmltask", 48 | "req": ">=1.16.1" 49 | }, 50 | { 51 | "name": "fox.jason.passthrough", 52 | "req": ">=2.2.1" 53 | } 54 | ], 55 | "url": "https://github.com/jason-fox/fox.jason.passthrough.doxygen/archive/v1.3.0.zip", 56 | "cksum": "def1263bc7c2d1ee0d734bcdebdd040f2211ed81f02ad8611cd0970b980e7a02" 57 | } 58 | ] 59 | -------------------------------------------------------------------------------- /fox.jason.passthrough.javadoc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.passthrough.javadoc", 4 | "description": "DITA-OT Plug-in to automatically create API documentation extracted from comments within Java source code.", 5 | "keywords": [ 6 | "javadoc", 7 | "java", 8 | "auto-generated text" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.javadoc", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.3.0" 17 | }, 18 | { 19 | "name": "org.doctales.xmltask", 20 | "req": ">=1.16.1" 21 | }, 22 | { 23 | "name": "fox.jason.passthrough", 24 | "req": ">=2.2.1" 25 | } 26 | ], 27 | "url": "https://github.com/jason-fox/fox.jason.passthrough.javadoc/archive/v1.0.0.zip", 28 | "cksum": "2a78574eb5ca7ebde78a7e4d8567b2bf8df528c3428df7489341133f76dc1eac" 29 | }, 30 | { 31 | "name": "fox.jason.passthrough.javadoc", 32 | "description": "DITA-OT Plug-in to automatically create API documentation extracted from comments within Java source code.", 33 | "keywords": [ 34 | "javadoc", 35 | "java", 36 | "auto-generated text" 37 | ], 38 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.javadoc", 39 | "vers": "1.0.1", 40 | "license": "Apache-2.0", 41 | "deps": [ 42 | { 43 | "name": "org.dita.base", 44 | "req": ">=3.3.0" 45 | }, 46 | { 47 | "name": "org.doctales.xmltask", 48 | "req": ">=1.16.1" 49 | }, 50 | { 51 | "name": "fox.jason.passthrough", 52 | "req": ">=3.0.0" 53 | } 54 | ], 55 | "url": "https://github.com/jason-fox/fox.jason.passthrough.javadoc/archive/v1.0.1.zip", 56 | "cksum": "5119d1b16720de95ee0809a204b2d7794d37696d36a1648465d181e82b8eb663" 57 | }, 58 | { 59 | "name": "fox.jason.passthrough.javadoc", 60 | "description": "DITA-OT Plug-in to automatically create API documentation extracted from comments within Java source code.", 61 | "keywords": [ 62 | "javadoc", 63 | "java", 64 | "auto-generated text" 65 | ], 66 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.javadoc", 67 | "vers": "2.0.0", 68 | "license": "Apache-2.0", 69 | "deps": [ 70 | { 71 | "name": "org.dita.base", 72 | "req": ">=3.3.0" 73 | }, 74 | { 75 | "name": "fox.jason.passthrough", 76 | "req": ">=4.0.0" 77 | } 78 | ], 79 | "url": "https://github.com/jason-fox/fox.jason.passthrough.javadoc/archive/v2.0.0.zip", 80 | "cksum": "d18e4b3baf12059954cc405cd15309762e45337ba1cb153c9b53d9f5b4af6c8e" 81 | } 82 | ] 83 | -------------------------------------------------------------------------------- /fox.jason.passthrough.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.passthrough", 4 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 5 | "keywords": [ 6 | "passthrough" 7 | ], 8 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 9 | "vers": "1.0.0", 10 | "license": "Apache-2.0", 11 | "deps": [ 12 | { 13 | "name": "org.dita.base", 14 | "req": ">=3.0.0" 15 | }, 16 | { 17 | "name": "org.doctales.xmltask", 18 | "req": ">=1.16.1" 19 | } 20 | ], 21 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v1.0.0.zip", 22 | "cksum": "a1284de4dc2554f433466cdc50ac715392030d010d4fc252fa55edfe069fa61d" 23 | }, 24 | { 25 | "name": "fox.jason.passthrough", 26 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 27 | "keywords": [ 28 | "passthrough" 29 | ], 30 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 31 | "vers": "2.1.0", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.0.0" 37 | }, 38 | { 39 | "name": "org.doctales.xmltask", 40 | "req": ">=1.16.1" 41 | } 42 | ], 43 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v2.1.0.zip", 44 | "cksum": "ec20099b56f2278deee4cf6494372778aeb234d7e3171753b1476faca7f8d7f0" 45 | }, 46 | { 47 | "name": "fox.jason.passthrough", 48 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 49 | "keywords": [ 50 | "passthrough" 51 | ], 52 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 53 | "vers": "2.2.0", 54 | "license": "Apache-2.0", 55 | "deps": [ 56 | { 57 | "name": "org.dita.base", 58 | "req": ">=3.0.0" 59 | }, 60 | { 61 | "name": "org.doctales.xmltask", 62 | "req": ">=1.16.1" 63 | } 64 | ], 65 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v2.2.0.zip", 66 | "cksum": "99061e1cb7d98d53e358ec12f5b996248b8d8a21f69a3dc375b8ef9d48494014" 67 | }, 68 | { 69 | "name": "fox.jason.passthrough", 70 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 71 | "keywords": [ 72 | "passthrough" 73 | ], 74 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 75 | "vers": "2.2.1", 76 | "license": "Apache-2.0", 77 | "deps": [ 78 | { 79 | "name": "org.dita.base", 80 | "req": ">=3.0.0" 81 | }, 82 | { 83 | "name": "org.doctales.xmltask", 84 | "req": ">=1.16.1" 85 | } 86 | ], 87 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v2.2.1.zip", 88 | "cksum": "34de8279d9ae7ae883c09ad18c5ded544519e87e58e929a384892f3b291e89c7" 89 | }, 90 | { 91 | "name": "fox.jason.passthrough", 92 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 93 | "keywords": [ 94 | "passthrough" 95 | ], 96 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 97 | "vers": "3.0.0", 98 | "license": "Apache-2.0", 99 | "deps": [ 100 | { 101 | "name": "org.dita.base", 102 | "req": ">=3.0.0" 103 | }, 104 | { 105 | "name": "org.doctales.xmltask", 106 | "req": ">=1.16.1" 107 | } 108 | ], 109 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v3.0.0.zip", 110 | "cksum": "2783c2bb3231b23a999de30d3126ff2ab396d3f30ab79b2295a66d241280e973" 111 | }, 112 | { 113 | "name": "fox.jason.passthrough", 114 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 115 | "keywords": [ 116 | "passthrough" 117 | ], 118 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 119 | "vers": "3.1.0", 120 | "license": "Apache-2.0", 121 | "deps": [ 122 | { 123 | "name": "org.dita.base", 124 | "req": ">=3.0.0" 125 | }, 126 | { 127 | "name": "org.doctales.xmltask", 128 | "req": ">=1.16.1" 129 | } 130 | ], 131 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v3.1.0.zip", 132 | "cksum": "38795f0ee714bfeacd796e7250ec109df0e461cd70316a75e4a6d241cd3ef59a" 133 | }, 134 | { 135 | "name": "fox.jason.passthrough", 136 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 137 | "keywords": [ 138 | "passthrough" 139 | ], 140 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 141 | "vers": "4.0.0", 142 | "license": "Apache-2.0", 143 | "deps": [ 144 | { 145 | "name": "org.dita.base", 146 | "req": ">=3.0.0" 147 | } 148 | ], 149 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v4.0.0.zip", 150 | "cksum": "ed7eb03c86233e847987f8bc74b4eafb74a402fb690bb37d4c58791fef04d92c" 151 | }, 152 | { 153 | "name": "fox.jason.passthrough", 154 | "description": "Plug-in to enable files to bypass DITA-OT pre-processing", 155 | "keywords": [ 156 | "passthrough" 157 | ], 158 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough", 159 | "vers": "4.1.0", 160 | "license": "Apache-2.0", 161 | "deps": [ 162 | { 163 | "name": "org.dita.base", 164 | "req": ">=3.0.0" 165 | } 166 | ], 167 | "url": "https://github.com/jason-fox/fox.jason.passthrough/archive/v4.1.0.zip", 168 | "cksum": "d1dbea2529be790ac4550f417fed5b16c56dfe98315af78361813526293a5ce9" 169 | } 170 | ] 171 | -------------------------------------------------------------------------------- /fox.jason.passthrough.pandoc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.passthrough.pandoc", 4 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 5 | "keywords": [ 6 | "pandoc", 7 | "DocBook", 8 | "HTML", 9 | "markdown", 10 | "MS Word", 11 | "docx", 12 | "odt", 13 | "wiki", 14 | "rst", 15 | "epub", 16 | "latex" 17 | ], 18 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 19 | "vers": "1.1.0", 20 | "license": "Apache-2.0", 21 | "deps": [ 22 | { 23 | "name": "org.dita.base", 24 | "req": ">=3.0.0" 25 | }, 26 | { 27 | "name": "org.doctales.xmltask", 28 | "req": ">=1.16.1" 29 | }, 30 | { 31 | "name": "fox.jason.passthrough", 32 | "req": ">=1.0.0" 33 | } 34 | ], 35 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v1.1.0.zip", 36 | "cksum": "8d9b1687de575efb1f5f2b4faba555b531ce22bc10c88e077e4ecb5b84eb602f" 37 | }, 38 | { 39 | "name": "fox.jason.passthrough.pandoc", 40 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 41 | "keywords": [ 42 | "pandoc", 43 | "DocBook", 44 | "HTML", 45 | "markdown", 46 | "MS Word", 47 | "docx", 48 | "odt", 49 | "wiki", 50 | "rst", 51 | "epub", 52 | "latex" 53 | ], 54 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 55 | "vers": "1.2.0", 56 | "license": "Apache-2.0", 57 | "deps": [ 58 | { 59 | "name": "org.dita.base", 60 | "req": ">=3.0.0" 61 | }, 62 | { 63 | "name": "org.doctales.xmltask", 64 | "req": ">=1.16.1" 65 | }, 66 | { 67 | "name": "fox.jason.passthrough", 68 | "req": ">=2.1.0" 69 | } 70 | ], 71 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v1.2.0.zip", 72 | "cksum": "e6dd1259fea08b20edd9035889137cfe665cbd8a07ebf1203f0854d251a202aa" 73 | }, 74 | { 75 | "name": "fox.jason.passthrough.pandoc", 76 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 77 | "keywords": [ 78 | "pandoc", 79 | "DocBook", 80 | "HTML", 81 | "markdown", 82 | "MS Word", 83 | "docx", 84 | "odt", 85 | "wiki", 86 | "rst", 87 | "epub", 88 | "latex" 89 | ], 90 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 91 | "vers": "1.2.1", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.0.0" 97 | }, 98 | { 99 | "name": "org.doctales.xmltask", 100 | "req": ">=1.16.1" 101 | }, 102 | { 103 | "name": "fox.jason.passthrough", 104 | "req": ">=2.2.0" 105 | } 106 | ], 107 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v1.2.1.zip", 108 | "cksum": "02120ed1d516b14a4f1c86afc28ffcbb20e97f7488c845c2b81e3c3b2368aa22" 109 | }, 110 | { 111 | "name": "fox.jason.passthrough.pandoc", 112 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 113 | "keywords": [ 114 | "pandoc", 115 | "DocBook", 116 | "HTML", 117 | "markdown", 118 | "MS Word", 119 | "docx", 120 | "odt", 121 | "wiki", 122 | "rst", 123 | "epub", 124 | "latex" 125 | ], 126 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 127 | "vers": "1.3.0", 128 | "license": "Apache-2.0", 129 | "deps": [ 130 | { 131 | "name": "org.dita.base", 132 | "req": ">=3.0.0" 133 | }, 134 | { 135 | "name": "org.doctales.xmltask", 136 | "req": ">=1.16.1" 137 | }, 138 | { 139 | "name": "fox.jason.passthrough", 140 | "req": ">=3.0.0" 141 | } 142 | ], 143 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v1.3.0.zip", 144 | "cksum": "16af99a21eef96de195377225f2b12425f899be5f1efaece033eca62ebbbc395" 145 | }, 146 | { 147 | "name": "fox.jason.passthrough.pandoc", 148 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 149 | "keywords": [ 150 | "pandoc", 151 | "DocBook", 152 | "HTML", 153 | "markdown", 154 | "MS Word", 155 | "docx", 156 | "odt", 157 | "wiki", 158 | "rst", 159 | "epub", 160 | "latex" 161 | ], 162 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 163 | "vers": "2.0.0", 164 | "license": "Apache-2.0", 165 | "deps": [ 166 | { 167 | "name": "org.dita.base", 168 | "req": ">=3.0.0" 169 | }, 170 | { 171 | "name": "fox.jason.passthrough", 172 | "req": ">=4.0.0" 173 | } 174 | ], 175 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v2.0.0.zip", 176 | "cksum": "e644c8c9a1188ff837dc8820732b07d6b76bde31e221deee6667fdbd7f14e75f" 177 | }, 178 | { 179 | "name": "fox.jason.passthrough.pandoc", 180 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 181 | "keywords": [ 182 | "pandoc", 183 | "DocBook", 184 | "HTML", 185 | "markdown", 186 | "MS Word", 187 | "docx", 188 | "odt", 189 | "wiki", 190 | "rst", 191 | "epub", 192 | "latex" 193 | ], 194 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 195 | "vers": "2.0.1", 196 | "license": "Apache-2.0", 197 | "deps": [ 198 | { 199 | "name": "org.dita.base", 200 | "req": ">=3.0.0" 201 | }, 202 | { 203 | "name": "fox.jason.passthrough", 204 | "req": ">=4.0.0" 205 | } 206 | ], 207 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v2.0.1.zip", 208 | "cksum": "ab3a91c6fab79f597585392a8bf581f81fb8981c52d5bce19ea55cf71fa72c38" 209 | }, 210 | { 211 | "name": "fox.jason.passthrough.pandoc", 212 | "description": "Pandoc Plug-in for extending the available input formats for DITA-OT. Non DITA input sources can be pre-processed to create create valid DITA source.", 213 | "keywords": [ 214 | "pandoc", 215 | "DocBook", 216 | "HTML", 217 | "markdown", 218 | "MS Word", 219 | "docx", 220 | "odt", 221 | "wiki", 222 | "rst", 223 | "epub", 224 | "latex" 225 | ], 226 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.pandoc", 227 | "vers": "2.1.0", 228 | "license": "Apache-2.0", 229 | "deps": [ 230 | { 231 | "name": "org.dita.base", 232 | "req": ">=3.0.0" 233 | }, 234 | { 235 | "name": "fox.jason.passthrough", 236 | "req": ">=4.0.0" 237 | } 238 | ], 239 | "url": "https://github.com/jason-fox/fox.jason.passthrough.pandoc/archive/v2.1.0.zip", 240 | "cksum": "4db6f97780dd6ba6dce75ec16d069f86221d4db4f33de660c9dad40466cf93ae" 241 | } 242 | ] 243 | -------------------------------------------------------------------------------- /fox.jason.passthrough.postman.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.passthrough.postman", 4 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Postman Collection", 5 | "keywords": [ 6 | "postman", 7 | "REST", 8 | "auto-generated text" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.postman", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.0.0" 17 | }, 18 | { 19 | "name": "org.doctales.xmltask", 20 | "req": ">=1.16.1" 21 | }, 22 | { 23 | "name": "fox.jason.passthrough", 24 | "req": ">=1.0.0" 25 | }, 26 | { 27 | "name": "fox.jason.passthrough.pandoc", 28 | "req": ">=1.1.0" 29 | } 30 | ], 31 | "url": "https://github.com/jason-fox/fox.jason.passthrough.postman/archive/v1.0.0.zip", 32 | "cksum": "b1177a462706427af884c385eeba176c1e69b8313b277c9bee72b0b536f901e7" 33 | }, 34 | { 35 | "name": "fox.jason.passthrough.postman", 36 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Postman Collection", 37 | "keywords": [ 38 | "postman", 39 | "REST", 40 | "auto-generated text" 41 | ], 42 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.postman", 43 | "vers": "1.1.0", 44 | "license": "Apache-2.0", 45 | "deps": [ 46 | { 47 | "name": "org.dita.base", 48 | "req": ">=3.0.0" 49 | }, 50 | { 51 | "name": "org.doctales.xmltask", 52 | "req": ">=1.16.1" 53 | }, 54 | { 55 | "name": "fox.jason.extend.css", 56 | "req": ">=1.0.0" 57 | }, 58 | { 59 | "name": "fox.jason.passthrough", 60 | "req": ">=2.1.0" 61 | }, 62 | { 63 | "name": "fox.jason.passthrough.pandoc", 64 | "req": ">=1.2.0" 65 | }, 66 | { 67 | "name": "fox.jason.passthrough.swagger", 68 | "req": ">=1.1.0" 69 | } 70 | ], 71 | "url": "https://github.com/jason-fox/fox.jason.passthrough.postman/archive/v1.1.0.zip", 72 | "cksum": "af841454a6b7b885122c290c60e876d606a0bf3c67de7683912d1c80d59f00f5" 73 | }, 74 | { 75 | "name": "fox.jason.passthrough.postman", 76 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Postman Collection", 77 | "keywords": [ 78 | "postman", 79 | "REST", 80 | "auto-generated text" 81 | ], 82 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.postman", 83 | "vers": "1.1.1", 84 | "license": "Apache-2.0", 85 | "deps": [ 86 | { 87 | "name": "org.dita.base", 88 | "req": ">=3.0.0" 89 | }, 90 | { 91 | "name": "org.doctales.xmltask", 92 | "req": ">=1.16.1" 93 | }, 94 | { 95 | "name": "fox.jason.extend.css", 96 | "req": ">=1.0.0" 97 | }, 98 | { 99 | "name": "fox.jason.passthrough", 100 | "req": ">=2.2.0" 101 | }, 102 | { 103 | "name": "fox.jason.passthrough.pandoc", 104 | "req": ">=1.2.1" 105 | }, 106 | { 107 | "name": "fox.jason.passthrough.swagger", 108 | "req": ">=1.1.1" 109 | } 110 | ], 111 | "url": "https://github.com/jason-fox/fox.jason.passthrough.postman/archive/v1.1.1.zip", 112 | "cksum": "bbbd59d05c958c832f4c2058a5e3bdabeb6b7f296b73cf4c2de740bc0afa0bc6" 113 | }, 114 | { 115 | "name": "fox.jason.passthrough.postman", 116 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Postman Collection", 117 | "keywords": [ 118 | "postman", 119 | "REST", 120 | "auto-generated text" 121 | ], 122 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.postman", 123 | "vers": "1.2.0", 124 | "license": "Apache-2.0", 125 | "deps": [ 126 | { 127 | "name": "org.dita.base", 128 | "req": ">=3.0.0" 129 | }, 130 | { 131 | "name": "org.doctales.xmltask", 132 | "req": ">=1.16.1" 133 | }, 134 | { 135 | "name": "fox.jason.extend.css", 136 | "req": ">=1.0.1" 137 | }, 138 | { 139 | "name": "fox.jason.passthrough", 140 | "req": ">=3.0.0" 141 | }, 142 | { 143 | "name": "fox.jason.passthrough.pandoc", 144 | "req": ">=1.3.0" 145 | }, 146 | { 147 | "name": "fox.jason.passthrough.swagger", 148 | "req": ">=1.2.0" 149 | } 150 | ], 151 | "url": "https://github.com/jason-fox/fox.jason.passthrough.postman/archive/v1.2.0.zip", 152 | "cksum": "a6f788a7ae00ed396f7747451247d01d52825c4d014a634612fa739b8918be76" 153 | }, 154 | { 155 | "name": "fox.jason.passthrough.postman", 156 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Postman Collection", 157 | "keywords": [ 158 | "postman", 159 | "REST", 160 | "auto-generated text" 161 | ], 162 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.postman", 163 | "vers": "2.0.0", 164 | "license": "Apache-2.0", 165 | "deps": [ 166 | { 167 | "name": "org.dita.base", 168 | "req": ">=3.0.0" 169 | }, 170 | { 171 | "name": "fox.jason.extend.css", 172 | "req": ">=1.0.3" 173 | }, 174 | { 175 | "name": "fox.jason.passthrough", 176 | "req": ">=4.0.0" 177 | }, 178 | { 179 | "name": "fox.jason.passthrough.pandoc", 180 | "req": ">=2.0.0" 181 | }, 182 | { 183 | "name": "fox.jason.passthrough.swagger", 184 | "req": ">=2.0.0" 185 | } 186 | ], 187 | "url": "https://github.com/jason-fox/fox.jason.passthrough.postman/archive/v2.0.0.zip", 188 | "cksum": "5e2e5a9f350f2cffe30842c26d3009e7453749a37ff9b7f54d72b19b2bede36a" 189 | } 190 | ] 191 | -------------------------------------------------------------------------------- /fox.jason.passthrough.swagger.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.passthrough.swagger", 4 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 5 | "keywords": [ 6 | "swagger", 7 | "REST", 8 | "auto-generated text" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.0.0" 17 | }, 18 | { 19 | "name": "org.doctales.xmltask", 20 | "req": ">=1.16.1" 21 | }, 22 | { 23 | "name": "fox.jason.passthrough", 24 | "req": ">=1.0.0" 25 | }, 26 | { 27 | "name": "fox.jason.passthrough.pandoc", 28 | "req": ">=1.1.0" 29 | } 30 | ], 31 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v1.0.0.zip", 32 | "cksum": "22177754825c75f835077e434845ff608c5d4b88e10cc65cc01ed3ca168d7d9f" 33 | }, 34 | { 35 | "name": "fox.jason.passthrough.swagger", 36 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 37 | "keywords": [ 38 | "swagger", 39 | "REST", 40 | "auto-generated text" 41 | ], 42 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 43 | "vers": "1.1.0", 44 | "license": "Apache-2.0", 45 | "deps": [ 46 | { 47 | "name": "org.dita.base", 48 | "req": ">=3.0.0" 49 | }, 50 | { 51 | "name": "org.doctales.xmltask", 52 | "req": ">=1.16.1" 53 | }, 54 | { 55 | "name": "fox.jason.extend.css", 56 | "req": ">=1.0.0" 57 | }, 58 | { 59 | "name": "fox.jason.passthrough", 60 | "req": ">=2.1.0" 61 | }, 62 | { 63 | "name": "fox.jason.passthrough.pandoc", 64 | "req": ">=1.2.0" 65 | } 66 | ], 67 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v1.1.0.zip", 68 | "cksum": "88e8f17bf37526f80330e7155a94a7fc2f2c6bdd6d6837e90d27833d6ddea8ec" 69 | }, 70 | { 71 | "name": "fox.jason.passthrough.swagger", 72 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 73 | "keywords": [ 74 | "swagger", 75 | "REST", 76 | "auto-generated text" 77 | ], 78 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 79 | "vers": "1.1.1", 80 | "license": "Apache-2.0", 81 | "deps": [ 82 | { 83 | "name": "org.dita.base", 84 | "req": ">=3.0.0" 85 | }, 86 | { 87 | "name": "org.doctales.xmltask", 88 | "req": ">=1.16.1" 89 | }, 90 | { 91 | "name": "fox.jason.extend.css", 92 | "req": ">=1.0.0" 93 | }, 94 | { 95 | "name": "fox.jason.passthrough", 96 | "req": ">=2.2.0" 97 | }, 98 | { 99 | "name": "fox.jason.passthrough.pandoc", 100 | "req": ">=1.2.1" 101 | } 102 | ], 103 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v1.1.1.zip", 104 | "cksum": "2b3b36961a4db9c79447dd1e2059ba4f2e03990ad63875fe43d53e522e0f2488" 105 | }, 106 | { 107 | "name": "fox.jason.passthrough.swagger", 108 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 109 | "keywords": [ 110 | "swagger", 111 | "REST", 112 | "auto-generated text" 113 | ], 114 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 115 | "vers": "1.2.0", 116 | "license": "Apache-2.0", 117 | "deps": [ 118 | { 119 | "name": "org.dita.base", 120 | "req": ">=3.0.0" 121 | }, 122 | { 123 | "name": "org.doctales.xmltask", 124 | "req": ">=1.16.1" 125 | }, 126 | { 127 | "name": "fox.jason.extend.css", 128 | "req": ">=1.0.1" 129 | }, 130 | { 131 | "name": "fox.jason.passthrough", 132 | "req": ">=3.0.0" 133 | }, 134 | { 135 | "name": "fox.jason.passthrough.pandoc", 136 | "req": ">=1.3.0" 137 | } 138 | ], 139 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v1.2.0.zip", 140 | "cksum": "7daa42f6ae909b2b1a675f37a678e6693015d3d382e96a01bc9082e9262e46cc" 141 | }, 142 | { 143 | "name": "fox.jason.passthrough.swagger", 144 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 145 | "keywords": [ 146 | "swagger", 147 | "REST", 148 | "auto-generated text" 149 | ], 150 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 151 | "vers": "1.3.0", 152 | "license": "Apache-2.0", 153 | "deps": [ 154 | { 155 | "name": "org.dita.base", 156 | "req": ">=3.0.0" 157 | }, 158 | { 159 | "name": "org.doctales.xmltask", 160 | "req": ">=1.16.1" 161 | }, 162 | { 163 | "name": "fox.jason.extend.css", 164 | "req": ">=1.0.1" 165 | }, 166 | { 167 | "name": "fox.jason.passthrough", 168 | "req": ">=3.1.0" 169 | }, 170 | { 171 | "name": "fox.jason.passthrough.pandoc", 172 | "req": ">=1.3.0" 173 | } 174 | ], 175 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v1.3.0.zip", 176 | "cksum": "dcc8d99f2f3fe9585feccb1da4e6269e6782e097f4694ff2805a91fdd1f1cf33" 177 | }, 178 | { 179 | "name": "fox.jason.passthrough.swagger", 180 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 181 | "keywords": [ 182 | "swagger", 183 | "REST", 184 | "auto-generated text" 185 | ], 186 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 187 | "vers": "2.0.0", 188 | "license": "Apache-2.0", 189 | "deps": [ 190 | { 191 | "name": "org.dita.base", 192 | "req": ">=3.0.0" 193 | }, 194 | { 195 | "name": "fox.jason.extend.css", 196 | "req": ">=1.0.3" 197 | }, 198 | { 199 | "name": "fox.jason.passthrough", 200 | "req": ">=4.0.0" 201 | }, 202 | { 203 | "name": "fox.jason.passthrough.pandoc", 204 | "req": ">=2.0.0" 205 | } 206 | ], 207 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v2.0.0.zip", 208 | "cksum": "a1a0b390107f8d5f5bd952ee916deeb2996f8bb990515d20dbe700238e991600" 209 | }, 210 | { 211 | "name": "fox.jason.passthrough.swagger", 212 | "description": "DITA-OT Plug-in to automatically create REST API documentation from a Swagger definition", 213 | "keywords": [ 214 | "swagger", 215 | "REST", 216 | "auto-generated text" 217 | ], 218 | "homepage": "https://jason-fox.github.io/fox.jason.passthrough.swagger", 219 | "vers": "2.0.1", 220 | "license": "Apache-2.0", 221 | "deps": [ 222 | { 223 | "name": "org.dita.base", 224 | "req": ">=3.0.0" 225 | }, 226 | { 227 | "name": "fox.jason.extend.css", 228 | "req": ">=1.0.3" 229 | }, 230 | { 231 | "name": "fox.jason.passthrough", 232 | "req": ">=4.0.0" 233 | }, 234 | { 235 | "name": "fox.jason.passthrough.pandoc", 236 | "req": ">=2.0.0" 237 | } 238 | ], 239 | "url": "https://github.com/jason-fox/fox.jason.passthrough.swagger/archive/v2.0.1.zip", 240 | "cksum": "d2ed32be087204a2a9dd2c94611284641b7208c83b07bf4892e9d2e008ce5ec8" 241 | } 242 | ] 243 | -------------------------------------------------------------------------------- /fox.jason.pretty-dita.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.pretty-dita", 4 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 5 | "keywords": [ 6 | "pretty-print", 7 | "dita", 8 | "formatting" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.0.0" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.1.0.zip", 20 | "cksum": "ec39977619bb1c59f99dbedf7aa10ab739b76a6ae55edd292433a45d19c05f0f" 21 | }, 22 | { 23 | "name": "fox.jason.pretty-dita", 24 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 25 | "keywords": [ 26 | "pretty-print", 27 | "dita", 28 | "formatting" 29 | ], 30 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 31 | "vers": "1.2.0", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.0.0" 37 | } 38 | ], 39 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.2.0.zip", 40 | "cksum": "4239996840c977890ebc8f791223d74ded4b6a02e09965371376860b9993180d" 41 | }, 42 | { 43 | "name": "fox.jason.pretty-dita", 44 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 45 | "keywords": [ 46 | "pretty-print", 47 | "dita", 48 | "formatting" 49 | ], 50 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 51 | "vers": "1.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.0.0" 57 | } 58 | ], 59 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.3.0.zip", 60 | "cksum": "4614a8d87f978898a648541138f5517d1b462ebd6cf241770f7fa442e166113d" 61 | }, 62 | { 63 | "name": "fox.jason.pretty-dita", 64 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 65 | "keywords": [ 66 | "pretty-print", 67 | "dita", 68 | "formatting" 69 | ], 70 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 71 | "vers": "1.4.0", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.0.0" 77 | } 78 | ], 79 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.4.0.zip", 80 | "cksum": "268e0f8ed9e72b9afd67dd74d44cf3743a8c095c607e1963444ec038c5abb253" 81 | }, 82 | { 83 | "name": "fox.jason.pretty-dita", 84 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 85 | "keywords": [ 86 | "pretty-print", 87 | "dita", 88 | "formatting" 89 | ], 90 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 91 | "vers": "1.5.0", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.0.0" 97 | } 98 | ], 99 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.5.0.zip", 100 | "cksum": "5d96a70aaa1045f6e1216f768a5ba9801015897dcc1c0fd50b4d24f31d4d69c9" 101 | }, 102 | { 103 | "name": "fox.jason.pretty-dita", 104 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 105 | "keywords": [ 106 | "pretty-print", 107 | "dita", 108 | "formatting" 109 | ], 110 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 111 | "vers": "1.5.1", 112 | "license": "Apache-2.0", 113 | "deps": [ 114 | { 115 | "name": "org.dita.base", 116 | "req": ">=3.0.0" 117 | } 118 | ], 119 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.5.1.zip", 120 | "cksum": "62ad781c9e145e1dc3bd47f0f37a328ab0a94b930ab0a27904ff4e662fc1f365" 121 | }, 122 | { 123 | "name": "fox.jason.pretty-dita", 124 | "description": "A DITA prettifier DITA-OT Plug-in which formats DITA XML in an aesthetically pleasing manner.", 125 | "keywords": [ 126 | "pretty-print", 127 | "dita", 128 | "formatting" 129 | ], 130 | "homepage": "https://jason-fox.github.io/fox.jason.pretty-dita", 131 | "vers": "1.6.0", 132 | "license": "Apache-2.0", 133 | "deps": [ 134 | { 135 | "name": "org.dita.base", 136 | "req": ">=3.0.0" 137 | } 138 | ], 139 | "url": "https://github.com/jason-fox/fox.jason.pretty-dita/archive/v1.6.0.zip", 140 | "cksum": "ef5bc9ad5ec3395c126e4d998606498f0fa0f6eead553e13fa6e7d4baedf2894" 141 | } 142 | ] 143 | -------------------------------------------------------------------------------- /fox.jason.prismjs.dark-theme.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.prismjs.dark-theme", 4 | "description": "Extension of the DITA-OT Prism-JS plug-in to amend the look-and-feel of highlighted code. Offers the standard Dark Theme from Prism-JS.", 5 | "keywords": [ 6 | "prismjs", 7 | "code-highlighter", 8 | "syntax-highlighting", 9 | "css" 10 | ], 11 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs.dark-theme", 12 | "vers": "1.0.0", 13 | "license": "Apache-2.0", 14 | "deps": [ 15 | { 16 | "name": "org.dita.base", 17 | "req": ">=3.1.0" 18 | }, 19 | { 20 | "name": "fox.jason.extend.css", 21 | "req": ">=1.0.0" 22 | }, 23 | { 24 | "name": "fox.jason.prismjs", 25 | "req": ">=2.1.0" 26 | } 27 | ], 28 | "url": "https://github.com/jason-fox/fox.jason.prismjs.dark-theme/archive/v1.0.0.zip", 29 | "cksum": "1d1e68299db986aa91e41642126c55648aaaef7c39218fac3ebee74fc54626a0" 30 | }, 31 | { 32 | "name": "fox.jason.prismjs.dark-theme", 33 | "description": "Extension of the DITA-OT Prism-JS plug-in to amend the look-and-feel of highlighted code. Offers the standard Dark Theme from Prism-JS.", 34 | "keywords": [ 35 | "prismjs", 36 | "code-highlighter", 37 | "syntax-highlighting", 38 | "css" 39 | ], 40 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs.dark-theme", 41 | "vers": "1.0.0", 42 | "license": "Apache-2.0", 43 | "deps": [ 44 | { 45 | "name": "org.dita.base", 46 | "req": ">=3.1.0" 47 | }, 48 | { 49 | "name": "fox.jason.extend.css", 50 | "req": ">=1.0.3" 51 | }, 52 | { 53 | "name": "fox.jason.prismjs", 54 | "req": ">=3.0.0" 55 | } 56 | ], 57 | "url": "https://github.com/jason-fox/fox.jason.prismjs.dark-theme/archive/v1.0.1.zip", 58 | "cksum": "befe437159c1762c0dd36838fa7f8c8d5e8bb468f8864caf3ce9e6e5ed7acd87" 59 | }, 60 | { 61 | "name": "fox.jason.prismjs.dark-theme", 62 | "description": "Extension of the DITA-OT Prism-JS plug-in to amend the look-and-feel of highlighted code. Offers the standard Dark Theme from Prism-JS.", 63 | "keywords": [ 64 | "prismjs", 65 | "code-highlighter", 66 | "syntax-highlighting", 67 | "css" 68 | ], 69 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs.dark-theme", 70 | "vers": "1.0.2", 71 | "license": "Apache-2.0", 72 | "deps": [ 73 | { 74 | "name": "org.dita.base", 75 | "req": ">=3.1.0" 76 | }, 77 | { 78 | "name": "fox.jason.extend.css", 79 | "req": ">=1.0.3" 80 | }, 81 | { 82 | "name": "fox.jason.prismjs", 83 | "req": ">=3.0.0" 84 | } 85 | ], 86 | "url": "https://github.com/jason-fox/fox.jason.prismjs.dark-theme/archive/v1.0.2.zip", 87 | "cksum": "f35dd6e9ae5823348269141f9862e83c7f73bed9e81ded610a3f8d8f351640d8" 88 | } 89 | ] 90 | -------------------------------------------------------------------------------- /fox.jason.prismjs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.prismjs", 4 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 5 | "keywords": [ 6 | "prismjs", 7 | "code-highlighter", 8 | "syntax-highlighting" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.1.0" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v1.0.0.zip", 20 | "cksum": "4992de9982a016bc97e11bc939b9df8d57800526bd3c93a68d3c1ba96a80c93f" 21 | }, 22 | { 23 | "name": "fox.jason.prismjs", 24 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 25 | "keywords": [ 26 | "prismjs", 27 | "code-highlighter", 28 | "syntax-highlighting" 29 | ], 30 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 31 | "vers": "1.0.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.1.0" 37 | } 38 | ], 39 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v1.0.1.zip", 40 | "cksum": "574b149c8ed7fdb8d4ee2b3077adcfe2bdc8602fcce6033afb5b7e1375fb261a" 41 | }, 42 | { 43 | "name": "fox.jason.prismjs", 44 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 45 | "keywords": [ 46 | "prismjs", 47 | "code-highlighter", 48 | "syntax-highlighting" 49 | ], 50 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 51 | "vers": "1.0.2", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.1.0" 57 | } 58 | ], 59 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v1.0.2.zip", 60 | "cksum": "a9ee09f117f833dd15ab1d53ace2d5ebe0074a668551bd58c7e7515bc8e020cf" 61 | }, 62 | { 63 | "name": "fox.jason.prismjs", 64 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 65 | "keywords": [ 66 | "prismjs", 67 | "code-highlighter", 68 | "syntax-highlighting" 69 | ], 70 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 71 | "vers": "2.0.0", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.1.0" 77 | }, 78 | { 79 | "name": "org.doctales.xmltask", 80 | "req": ">=1.16.1" 81 | } 82 | ], 83 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v2.0.0.zip", 84 | "cksum": "c5ff76e57aab47885fed399a7911350202dfc1eaf9c7080f0eb11befe92e7ee0" 85 | }, 86 | { 87 | "name": "fox.jason.prismjs", 88 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 89 | "keywords": [ 90 | "prismjs", 91 | "code-highlighter", 92 | "syntax-highlighting" 93 | ], 94 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 95 | "vers": "2.1.0", 96 | "license": "Apache-2.0", 97 | "deps": [ 98 | { 99 | "name": "org.dita.base", 100 | "req": ">=3.1.0" 101 | }, 102 | { 103 | "name": "org.doctales.xmltask", 104 | "req": ">=1.16.1" 105 | }, 106 | { 107 | "name": "fox.jason.extend.css", 108 | "req": ">=1.0.0" 109 | } 110 | ], 111 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v2.1.0.zip", 112 | "cksum": "db7e29de9a2d4ee62b43e5c28ea76302cf3548343793f02bf32074ef86f28ee8" 113 | }, 114 | { 115 | "name": "fox.jason.prismjs", 116 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 117 | "keywords": [ 118 | "prismjs", 119 | "code-highlighter", 120 | "syntax-highlighting" 121 | ], 122 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 123 | "vers": "2.2.0", 124 | "license": "Apache-2.0", 125 | "deps": [ 126 | { 127 | "name": "org.dita.base", 128 | "req": ">=3.1.0" 129 | }, 130 | { 131 | "name": "org.doctales.xmltask", 132 | "req": ">=1.16.1" 133 | }, 134 | { 135 | "name": "fox.jason.extend.css", 136 | "req": ">=1.0.0" 137 | } 138 | ], 139 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v2.2.0.zip", 140 | "cksum": "721da4d2059d2f1839a16f9f048499cdb8d84c7a1d4a53d3a15779a1f8b3623a" 141 | }, 142 | { 143 | "name": "fox.jason.prismjs", 144 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 145 | "keywords": [ 146 | "prismjs", 147 | "code-highlighter", 148 | "syntax-highlighting" 149 | ], 150 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 151 | "vers": "3.0.0", 152 | "license": "Apache-2.0", 153 | "deps": [ 154 | { 155 | "name": "org.dita.base", 156 | "req": ">=3.1.0" 157 | }, 158 | { 159 | "name": "org.doctales.xmltask", 160 | "req": ">=1.16.1" 161 | }, 162 | { 163 | "name": "fox.jason.extend.css", 164 | "req": ">=1.0.1" 165 | } 166 | ], 167 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.0.0.zip", 168 | "cksum": "1715bd9534ff190f14c10bdf13024af27a7f0ad115acf2b2b1cf6d848a8f5d52" 169 | }, 170 | { 171 | "name": "fox.jason.prismjs", 172 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 173 | "keywords": [ 174 | "prismjs", 175 | "code-highlighter", 176 | "syntax-highlighting" 177 | ], 178 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 179 | "vers": "3.0.1", 180 | "license": "Apache-2.0", 181 | "deps": [ 182 | { 183 | "name": "org.dita.base", 184 | "req": ">=3.1.0" 185 | }, 186 | { 187 | "name": "org.doctales.xmltask", 188 | "req": ">=1.16.1" 189 | }, 190 | { 191 | "name": "fox.jason.extend.css", 192 | "req": ">=1.0.1" 193 | } 194 | ], 195 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.0.1.zip", 196 | "cksum": "860e3225fc5ae73fd7e23ce1e1c7b5571ec023fcb52faf58a8ba78226e347413" 197 | }, 198 | { 199 | "name": "fox.jason.prismjs", 200 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 201 | "keywords": [ 202 | "prismjs", 203 | "code-highlighter", 204 | "syntax-highlighting" 205 | ], 206 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 207 | "vers": "3.0.2", 208 | "license": "Apache-2.0", 209 | "deps": [ 210 | { 211 | "name": "org.dita.base", 212 | "req": ">=3.1.0" 213 | }, 214 | { 215 | "name": "org.doctales.xmltask", 216 | "req": ">=1.16.1" 217 | }, 218 | { 219 | "name": "fox.jason.extend.css", 220 | "req": ">=1.0.1" 221 | } 222 | ], 223 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.0.2.zip", 224 | "cksum": "c472d447bd07e9417865e2217d0f74952f131841c2ad687e7e567c1140d3138e" 225 | }, 226 | { 227 | "name": "fox.jason.prismjs", 228 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 229 | "keywords": [ 230 | "prismjs", 231 | "code-highlighter", 232 | "syntax-highlighting" 233 | ], 234 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 235 | "vers": "3.0.3", 236 | "license": "Apache-2.0", 237 | "deps": [ 238 | { 239 | "name": "org.dita.base", 240 | "req": ">=3.1.0" 241 | }, 242 | { 243 | "name": "org.doctales.xmltask", 244 | "req": ">=1.16.1" 245 | }, 246 | { 247 | "name": "fox.jason.extend.css", 248 | "req": ">=1.0.1" 249 | } 250 | ], 251 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.0.3.zip", 252 | "cksum": "b1f5e249afda563009916b255f28d1f0af19be2c169681254e1c95d5553b6f01" 253 | }, 254 | { 255 | "name": "fox.jason.prismjs", 256 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 257 | "keywords": [ 258 | "prismjs", 259 | "code-highlighter", 260 | "syntax-highlighting" 261 | ], 262 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 263 | "vers": "3.2.0", 264 | "license": "Apache-2.0", 265 | "deps": [ 266 | { 267 | "name": "org.dita.base", 268 | "req": ">=3.1.0" 269 | }, 270 | { 271 | "name": "fox.jason.extend.css", 272 | "req": ">=1.0.3" 273 | } 274 | ], 275 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.2.0.zip", 276 | "cksum": "54bdda7c1332363f08a4eeb73a374ab6780d1f1ddc6a82152dec2a9742ef8d2b" 277 | }, 278 | { 279 | "name": "fox.jason.prismjs", 280 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 281 | "keywords": [ 282 | "prismjs", 283 | "code-highlighter", 284 | "syntax-highlighting" 285 | ], 286 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 287 | "vers": "3.2.1", 288 | "license": "Apache-2.0", 289 | "deps": [ 290 | { 291 | "name": "org.dita.base", 292 | "req": ">=3.1.0" 293 | }, 294 | { 295 | "name": "fox.jason.extend.css", 296 | "req": ">=1.1.0" 297 | } 298 | ], 299 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.2.1.zip", 300 | "cksum": "6a82c7e4368a9f8945ec3f9711eb8b02847c07f92772ab30f0e887c9d752dd9e" 301 | }, 302 | { 303 | "name": "fox.jason.prismjs", 304 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 305 | "keywords": [ 306 | "prismjs", 307 | "code-highlighter", 308 | "syntax-highlighting" 309 | ], 310 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 311 | "vers": "3.2.2", 312 | "license": "Apache-2.0", 313 | "deps": [ 314 | { 315 | "name": "org.dita.base", 316 | "req": ">=3.1.0" 317 | }, 318 | { 319 | "name": "fox.jason.extend.css", 320 | "req": ">=1.1.0" 321 | } 322 | ], 323 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.2.2.zip", 324 | "cksum": "a8f7c18ea22c8d7a380f5c5b90a0d30799b32b7de1268b966810dac81635a3e7" 325 | }, 326 | { 327 | "name": "fox.jason.prismjs", 328 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 329 | "keywords": [ 330 | "prismjs", 331 | "code-highlighter", 332 | "syntax-highlighting" 333 | ], 334 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 335 | "vers": "3.2.3", 336 | "license": "Apache-2.0", 337 | "deps": [ 338 | { 339 | "name": "org.dita.base", 340 | "req": ">=3.1.0" 341 | }, 342 | { 343 | "name": "fox.jason.extend.css", 344 | "req": ">=1.1.0" 345 | } 346 | ], 347 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.2.3.zip", 348 | "cksum": "4699bb7db79313f3b233d0d5e658bf287ea65f10147ac93f4fec9f4cd5ed6cc0" 349 | }, 350 | { 351 | "name": "fox.jason.prismjs", 352 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 353 | "keywords": [ 354 | "prismjs", 355 | "code-highlighter", 356 | "syntax-highlighting" 357 | ], 358 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 359 | "vers": "3.3.0", 360 | "license": "Apache-2.0", 361 | "deps": [ 362 | { 363 | "name": "org.dita.base", 364 | "req": ">=3.1.0" 365 | }, 366 | { 367 | "name": "fox.jason.extend.css", 368 | "req": ">=1.1.0" 369 | } 370 | ], 371 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v3.3.0.zip", 372 | "cksum": "6b186d3001c21c0d3b8933f47142cbdb19c034fbb1b3768bb60f89f2a60878e1" 373 | }, 374 | { 375 | "name": "fox.jason.prismjs", 376 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 377 | "keywords": [ 378 | "prismjs", 379 | "code-highlighter", 380 | "syntax-highlighting" 381 | ], 382 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 383 | "vers": "4.0.0", 384 | "license": "Apache-2.0", 385 | "deps": [ 386 | { 387 | "name": "org.dita.base", 388 | "req": ">=4.0.0" 389 | }, 390 | { 391 | "name": "fox.jason.extend.css", 392 | "req": ">=1.2.1" 393 | } 394 | ], 395 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v4.0.0.zip", 396 | "cksum": "6ef34d276d05656c0373a69e33d724d0b0494d2f49c2a23b4be9f4ed762cc855" 397 | }, 398 | { 399 | "name": "fox.jason.prismjs", 400 | "description": "An integration of Prism-JS into the DITA Open Toolkit engine, enabling static HTML and PDF syntax highlighting.", 401 | "keywords": [ 402 | "prismjs", 403 | "code-highlighter", 404 | "syntax-highlighting" 405 | ], 406 | "homepage": "https://jason-fox.github.io/fox.jason.prismjs", 407 | "vers": "4.1.0", 408 | "license": "Apache-2.0", 409 | "deps": [ 410 | { 411 | "name": "org.dita.base", 412 | "req": ">=4.0.0" 413 | }, 414 | { 415 | "name": "fox.jason.extend.css", 416 | "req": ">=1.2.1" 417 | } 418 | ], 419 | "url": "https://github.com/jason-fox/fox.jason.prismjs/archive/v4.1.0.zip", 420 | "cksum": "9a3b4bd005928e7f38a5bfa2dfd1683aee2442cbb5b375c54270ee3af19e0e37" 421 | } 422 | ] 423 | -------------------------------------------------------------------------------- /fox.jason.readthedocs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.readthedocs", 4 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 5 | "keywords": [ 6 | "readthedocs", 7 | "markdown" 8 | ], 9 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 10 | "vers": "1.0.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.0.0" 16 | }, 17 | { 18 | "name": "org.lwdita", 19 | "req": ">=2.2.0" 20 | } 21 | ], 22 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v1.0.0.zip", 23 | "cksum": "fa55a3fc9f803c1ca659e13bb0e23bb84ad0c1f51bb9e214974977ef44a50a93" 24 | }, 25 | { 26 | "name": "fox.jason.readthedocs", 27 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 28 | "keywords": [ 29 | "readthedocs", 30 | "markdown", 31 | "mkdocs" 32 | ], 33 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 34 | "vers": "1.1.0", 35 | "license": "Apache-2.0", 36 | "deps": [ 37 | { 38 | "name": "org.dita.base", 39 | "req": ">=3.0.0" 40 | }, 41 | { 42 | "name": "org.lwdita", 43 | "req": ">=2.2.0" 44 | } 45 | ], 46 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v1.1.0.zip", 47 | "cksum": "0b072a661e31356d5f127b57990e3260422c39f71a18c6b25993551ae2dffa89" 48 | }, 49 | { 50 | "name": "fox.jason.readthedocs", 51 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 52 | "keywords": [ 53 | "readthedocs", 54 | "markdown", 55 | "mkdocs" 56 | ], 57 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 58 | "vers": "1.2.0", 59 | "license": "Apache-2.0", 60 | "deps": [ 61 | { 62 | "name": "org.dita.base", 63 | "req": ">=3.0.0" 64 | }, 65 | { 66 | "name": "org.lwdita", 67 | "req": ">=2.2.0" 68 | } 69 | ], 70 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v1.2.0.zip", 71 | "cksum": "8f938238dd6e8122159bf4d5f5bdc9d63bd034a3323187bc8b64b6a5471da468" 72 | }, 73 | { 74 | "name": "fox.jason.readthedocs", 75 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 76 | "keywords": [ 77 | "readthedocs", 78 | "markdown", 79 | "mkdocs" 80 | ], 81 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 82 | "vers": "1.3.0", 83 | "license": "Apache-2.0", 84 | "deps": [ 85 | { 86 | "name": "org.dita.base", 87 | "req": ">=3.0.0" 88 | }, 89 | { 90 | "name": "org.lwdita", 91 | "req": ">=2.2.0" 92 | } 93 | ], 94 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v1.3.0.zip", 95 | "cksum": "468a78d43b8885a252fcb65c4150153100266d6fdbb44a6e218e6ef560442e69" 96 | }, 97 | { 98 | "name": "fox.jason.readthedocs", 99 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 100 | "keywords": [ 101 | "readthedocs", 102 | "markdown", 103 | "mkdocs" 104 | ], 105 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 106 | "vers": "1.4.0", 107 | "license": "Apache-2.0", 108 | "deps": [ 109 | { 110 | "name": "org.dita.base", 111 | "req": ">=3.0.0" 112 | }, 113 | { 114 | "name": "org.lwdita", 115 | "req": ">=2.2.0" 116 | } 117 | ], 118 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v1.4.0.zip", 119 | "cksum": "b7e9954f824d8af6b8a511fdc1a3f8946fa7d697c30093a1b513e7929ce690aa" 120 | }, 121 | { 122 | "name": "fox.jason.readthedocs", 123 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 124 | "keywords": [ 125 | "readthedocs", 126 | "markdown", 127 | "mkdocs" 128 | ], 129 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 130 | "vers": "1.4.1", 131 | "license": "Apache-2.0", 132 | "deps": [ 133 | { 134 | "name": "org.dita.base", 135 | "req": ">=3.0.0" 136 | }, 137 | { 138 | "name": "org.lwdita", 139 | "req": ">=2.2.0" 140 | } 141 | ], 142 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v1.4.1.zip", 143 | "cksum": "087b6a5cee518128a76528111f2cf4d9db87cda824b16ad86a4e6392e337e55b" 144 | }, 145 | { 146 | "name": "fox.jason.readthedocs", 147 | "description": "Plug-in to create a set of output files suitable for a ReadTheDocs documentation project", 148 | "keywords": [ 149 | "readthedocs", 150 | "markdown", 151 | "mkdocs" 152 | ], 153 | "homepage": "https://jason-fox.github.io/fox.jason.readthedocs", 154 | "vers": "2.0.0", 155 | "license": "Apache-2.0", 156 | "deps": [ 157 | { 158 | "name": "org.dita.base", 159 | "req": ">=4.0.0" 160 | }, 161 | { 162 | "name": "org.lwdita", 163 | "req": ">=3.3.0" 164 | } 165 | ], 166 | "url": "https://github.com/jason-fox/fox.jason.readthedocs/archive/v2.0.0.zip", 167 | "cksum": "7cfe3d62fd1b93f9de6d1c6a8339f41d2bb50c051e0705ca93210a5e08c91746" 168 | } 169 | ] 170 | -------------------------------------------------------------------------------- /fox.jason.splash.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.splash", 4 | "description": "Splash Screen Plug-in for DITA-OT.", 5 | "keywords": [ 6 | "splash-screen", 7 | "xkcd", 8 | "cats" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.splash", 11 | "vers": "1.0.2", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=2.3.0" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/fox.jason.splash/archive/v1.0.2.zip", 20 | "cksum": "a20662ae3410dd4bd46e7bde8875e26c2826a7f4e7ad617c10847b8ce1bcffec" 21 | }, 22 | { 23 | "name": "fox.jason.splash", 24 | "description": "Splash Screen Plug-in for DITA-OT.", 25 | "keywords": [ 26 | "splash-screen", 27 | "xkcd", 28 | "cats" 29 | ], 30 | "homepage": "https://jason-fox.github.io/fox.jason.splash", 31 | "vers": "2.0.0", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.0.0" 37 | } 38 | ], 39 | "url": "https://github.com/jason-fox/fox.jason.splash/archive/v2.0.0.zip", 40 | "cksum": "4923022afc9703754782a9726ed1c85ca4319b71018c2c2eec7775f3f3b587c5" 41 | }, 42 | { 43 | "name": "fox.jason.splash", 44 | "description": "Splash Screen Plug-in for DITA-OT.", 45 | "keywords": [ 46 | "splash-screen", 47 | "xkcd", 48 | "cats" 49 | ], 50 | "homepage": "https://jason-fox.github.io/fox.jason.splash", 51 | "vers": "2.1.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.0.0" 57 | } 58 | ], 59 | "url": "https://github.com/jason-fox/fox.jason.splash/archive/v2.1.0.zip", 60 | "cksum": "661e051cf0520814bdf79be8a27a29fde149b22f63dc9036a60d273e711ad13d" 61 | }, 62 | { 63 | "name": "fox.jason.splash", 64 | "description": "Splash Screen Plug-in for DITA-OT.", 65 | "keywords": [ 66 | "splash-screen", 67 | "xkcd", 68 | "cats" 69 | ], 70 | "homepage": "https://jason-fox.github.io/fox.jason.splash", 71 | "vers": "2.2.0", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.0.0" 77 | } 78 | ], 79 | "url": "https://github.com/jason-fox/fox.jason.splash/archive/v2.2.0.zip", 80 | "cksum": "185cbe02ced86b7a2943cf0096d6f233aff491df28a89dc0213aea6b63a68a7e" 81 | }, 82 | { 83 | "name": "fox.jason.splash", 84 | "description": "Splash Screen Plug-in for DITA-OT.", 85 | "keywords": [ 86 | "splash-screen", 87 | "xkcd", 88 | "cats" 89 | ], 90 | "homepage": "https://jason-fox.github.io/fox.jason.splash", 91 | "vers": "2.2.1", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.0.0" 97 | } 98 | ], 99 | "url": "https://github.com/jason-fox/fox.jason.splash/archive/v2.2.1.zip", 100 | "cksum": "db9b5d4db559ea4a5af099ec3999bf700400484005f73afc3ee61f40b408003d" 101 | }, 102 | { 103 | "name": "fox.jason.splash", 104 | "description": "Splash Screen Plug-in for DITA-OT.", 105 | "keywords": [ 106 | "splash-screen", 107 | "xkcd", 108 | "cats", 109 | "anime", 110 | "picsum" 111 | ], 112 | "homepage": "https://jason-fox.github.io/fox.jason.splash", 113 | "vers": "3.0.0", 114 | "license": "Apache-2.0", 115 | "deps": [ 116 | { 117 | "name": "org.dita.base", 118 | "req": ">=3.0.0" 119 | } 120 | ], 121 | "url": "https://github.com/jason-fox/fox.jason.splash/archive/v3.0.0.zip", 122 | "cksum": "2465418ba3f5b97e20f2f2043852ea66d98249738169a0f45c4d15fa43c5b433" 123 | } 124 | ] 125 | -------------------------------------------------------------------------------- /fox.jason.tabs.css.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.tabs.css", 4 | "description": "CSS-only tabbed dialog within DITA HTML output", 5 | "keywords": [ 6 | "HTML", 7 | "HTML5", 8 | "tabs", 9 | "css" 10 | ], 11 | "homepage": "https://jason-fox.github.io/fox.jason.tabs.css", 12 | "vers": "1.0.0", 13 | "license": "Apache-2.0", 14 | "deps": [ 15 | { 16 | "name": "org.dita.base", 17 | "req": ">=3.0.0" 18 | }, 19 | { 20 | "name": "fox.jason.extend.css", 21 | "req": ">=1.1.0" 22 | } 23 | ], 24 | "url": "https://github.com/jason-fox/fox.jason.tabs.css/archive/v1.0.0.zip", 25 | "cksum": "fc7d3cfad967768e35be8ad0b8e76b3b217cee11d4ad1239a168bde806ca9f89" 26 | } 27 | ] 28 | -------------------------------------------------------------------------------- /fox.jason.translate.xliff.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.translate.xliff", 4 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 5 | "keywords": [ 6 | "xliff", 7 | "language-translation" 8 | ], 9 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 10 | "vers": "1.0.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.0.0" 16 | } 17 | ], 18 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v1.0.0.zip", 19 | "cksum": "9a45536092156bbdbc0ce43915c1096925b889bbaf6a3c95a2338306a142504c" 20 | }, 21 | { 22 | "name": "fox.jason.translate.xliff", 23 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 24 | "keywords": [ 25 | "xliff", 26 | "language-translation" 27 | ], 28 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 29 | "vers": "2.0.0", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.0.0" 35 | }, 36 | { 37 | "name": "org.doctales.xmltask", 38 | "req": ">=1.16.1" 39 | } 40 | ], 41 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v2.0.0.zip", 42 | "cksum": "f13f4a2cdc29b564946e1c35287d3b0231fb130649242a75d2d73ecb36b7a5e8" 43 | }, 44 | { 45 | "name": "fox.jason.translate.xliff", 46 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 47 | "keywords": [ 48 | "xliff", 49 | "language-translation" 50 | ], 51 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 52 | "vers": "2.1.0", 53 | "license": "Apache-2.0", 54 | "deps": [ 55 | { 56 | "name": "org.dita.base", 57 | "req": ">=3.0.0" 58 | }, 59 | { 60 | "name": "org.doctales.xmltask", 61 | "req": ">=1.16.1" 62 | } 63 | ], 64 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v2.1.0.zip", 65 | "cksum": "4c1705a7e43adf60fb0ca48ca3ce0725adeebd7ad05ad824c43fecd829a8fa5c" 66 | }, 67 | { 68 | "name": "fox.jason.translate.xliff", 69 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 70 | "keywords": [ 71 | "xliff", 72 | "language-translation" 73 | ], 74 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 75 | "vers": "3.0.0", 76 | "license": "Apache-2.0", 77 | "deps": [ 78 | { 79 | "name": "org.dita.base", 80 | "req": ">=3.0.0" 81 | }, 82 | { 83 | "name": "org.doctales.xmltask", 84 | "req": ">=1.16.1" 85 | } 86 | ], 87 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v3.0.0.zip", 88 | "cksum": "f2609598407ba2b3cec4317ae1a537df873c6e40f97466666c8a8102a42d151e" 89 | }, 90 | { 91 | "name": "fox.jason.translate.xliff", 92 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 93 | "keywords": [ 94 | "xliff", 95 | "language-translation" 96 | ], 97 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 98 | "vers": "3.1.0", 99 | "license": "Apache-2.0", 100 | "deps": [ 101 | { 102 | "name": "org.dita.base", 103 | "req": ">=3.0.0" 104 | }, 105 | { 106 | "name": "org.doctales.xmltask", 107 | "req": ">=1.16.1" 108 | } 109 | ], 110 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v3.1.0.zip", 111 | "cksum": "a9692ddb8260846ad0a0cdda5029979f1af50ade2dd70846b22be6de9a4c2654" 112 | }, 113 | { 114 | "name": "fox.jason.translate.xliff", 115 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 116 | "keywords": [ 117 | "xliff", 118 | "language-translation" 119 | ], 120 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 121 | "vers": "3.1.1", 122 | "license": "Apache-2.0", 123 | "deps": [ 124 | { 125 | "name": "org.dita.base", 126 | "req": ">=3.0.0" 127 | }, 128 | { 129 | "name": "org.doctales.xmltask", 130 | "req": ">=1.16.1" 131 | } 132 | ], 133 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v3.1.1.zip", 134 | "cksum": "3e0f9c506aba1b8292ef9466c85926d48bd4e5afb187a04bf5bfc9502fbe8631" 135 | }, 136 | { 137 | "name": "fox.jason.translate.xliff", 138 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 139 | "keywords": [ 140 | "xliff", 141 | "language-translation" 142 | ], 143 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 144 | "vers": "3.3.0", 145 | "license": "Apache-2.0", 146 | "deps": [ 147 | { 148 | "name": "org.dita.base", 149 | "req": ">=3.0.0" 150 | }, 151 | { 152 | "name": "org.doctales.xmltask", 153 | "req": ">=1.16.1" 154 | } 155 | ], 156 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v3.3.0.zip", 157 | "cksum": "093aefe9c78fd4f914b3aaea8a94b32046de593034e4e6f6ef5fb90a4f2fbe96" 158 | }, 159 | { 160 | "name": "fox.jason.translate.xliff", 161 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 162 | "keywords": [ 163 | "xliff", 164 | "language-translation" 165 | ], 166 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 167 | "vers": "3.4.0", 168 | "license": "Apache-2.0", 169 | "deps": [ 170 | { 171 | "name": "org.dita.base", 172 | "req": ">=3.0.0" 173 | }, 174 | { 175 | "name": "org.doctales.xmltask", 176 | "req": ">=1.16.1" 177 | } 178 | ], 179 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v3.4.0.zip", 180 | "cksum": "05f5fa760f7049191924f967ec5a23be957907596119c3f6bcf0d34c24cd941c" 181 | }, 182 | { 183 | "name": "fox.jason.translate.xliff", 184 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 185 | "keywords": [ 186 | "xliff", 187 | "language-translation" 188 | ], 189 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 190 | "vers": "3.5.0", 191 | "license": "Apache-2.0", 192 | "deps": [ 193 | { 194 | "name": "org.dita.base", 195 | "req": ">=3.0.0" 196 | }, 197 | { 198 | "name": "org.doctales.xmltask", 199 | "req": ">=1.16.1" 200 | } 201 | ], 202 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v3.5.0.zip", 203 | "cksum": "c5cc7e916849a2fa04dbc875f309091822d1dbebcdc8f48d100eb07f31eec7a2" 204 | }, 205 | { 206 | "name": "fox.jason.translate.xliff", 207 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 208 | "keywords": [ 209 | "xliff", 210 | "language-translation" 211 | ], 212 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 213 | "vers": "4.0.0", 214 | "license": "Apache-2.0", 215 | "deps": [ 216 | { 217 | "name": "org.dita.base", 218 | "req": ">=3.0.0" 219 | } 220 | ], 221 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v4.0.0.zip", 222 | "cksum": "262077e610642ebbf42309af4b067ad8de47e3054220a501a5077c9caf399ee2" 223 | }, 224 | { 225 | "name": "fox.jason.translate.xliff", 226 | "description": "Creates XLIFF from DITA, auto-translates and re-merges XLIFF files, generating translated documentation in a targeted foreign language.", 227 | "keywords": [ 228 | "xliff", 229 | "language-translation" 230 | ], 231 | "homepage": "https://jason-fox.github.io/fox.jason.translate.xliff", 232 | "vers": "4.1.0", 233 | "license": "Apache-2.0", 234 | "deps": [ 235 | { 236 | "name": "org.dita.base", 237 | "req": ">=3.0.0" 238 | } 239 | ], 240 | "url": "https://github.com/jason-fox/fox.jason.translate.xliff/archive/v4.1.0.zip", 241 | "cksum": "838397d46bac59efdcdf62a36054672979112e14cce248013bc70e0841b44e92" 242 | } 243 | ] 244 | -------------------------------------------------------------------------------- /fox.jason.unit-test.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.unit-test", 4 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 5 | "keywords": [ 6 | "unit-testing", 7 | "code-coverage", 8 | "profiling" 9 | ], 10 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 11 | "vers": "1.0.5", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=2.3.0" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v1.0.5.zip", 20 | "cksum": "dfa68d7db4d643a1f2a8542054f9ce755bbcb50c2bfd7d4d18f1730d96e10686" 21 | }, 22 | { 23 | "name": "fox.jason.unit-test", 24 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 25 | "keywords": [ 26 | "unit-testing", 27 | "code-coverage", 28 | "profiling" 29 | ], 30 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 31 | "vers": "1.0.7", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=2.3.0" 37 | } 38 | ], 39 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v1.0.7.zip", 40 | "cksum": "c3e7311a8e05257053ec214f2aad30fd3e7def80ad03d5f7efa2585229c483c1" 41 | }, 42 | { 43 | "name": "fox.jason.unit-test", 44 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 45 | "keywords": [ 46 | "unit-testing", 47 | "code-coverage", 48 | "profiling" 49 | ], 50 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 51 | "vers": "2.0.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.0.0" 57 | } 58 | ], 59 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v2.0.0.zip", 60 | "cksum": "f94633f1617cd572e4dcc6a5d32e68d887072af96ff49d629bc87a25d06ca631" 61 | }, 62 | { 63 | "name": "fox.jason.unit-test", 64 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 65 | "keywords": [ 66 | "unit-testing", 67 | "code-coverage", 68 | "profiling" 69 | ], 70 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 71 | "vers": "2.1.0", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.0.0" 77 | } 78 | ], 79 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v2.1.0.zip", 80 | "cksum": "e2d83113f1f3ad346aa16fca247c80df81b0928140c420a9c4567468ba78238c" 81 | }, 82 | { 83 | "name": "fox.jason.unit-test", 84 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 85 | "keywords": [ 86 | "unit-testing", 87 | "code-coverage", 88 | "profiling" 89 | ], 90 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 91 | "vers": "2.1.1", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.0.0" 97 | } 98 | ], 99 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v2.1.1.zip", 100 | "cksum": "868531937120c91a6e42d3f6589839b9ff3aba12e942cd71f912e21603168234" 101 | }, 102 | { 103 | "name": "fox.jason.unit-test", 104 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 105 | "keywords": [ 106 | "unit-testing", 107 | "code-coverage", 108 | "profiling" 109 | ], 110 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 111 | "vers": "2.2.0", 112 | "license": "Apache-2.0", 113 | "deps": [ 114 | { 115 | "name": "org.dita.base", 116 | "req": ">=3.0.0" 117 | } 118 | ], 119 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v2.2.0.zip", 120 | "cksum": "8addda2f20e61e4d0ef90f0f225048a5bdd5170e0575550c58c0b23b96ec6966" 121 | }, 122 | { 123 | "name": "fox.jason.unit-test", 124 | "description": "Unit Testing and Code Coverage Framework for DITA-OT.", 125 | "keywords": [ 126 | "unit-testing", 127 | "code-coverage", 128 | "profiling" 129 | ], 130 | "homepage": "https://jason-fox.github.io/fox.jason.unit-test", 131 | "vers": "2.2.1", 132 | "license": "Apache-2.0", 133 | "deps": [ 134 | { 135 | "name": "org.dita.base", 136 | "req": ">=3.0.0" 137 | } 138 | ], 139 | "url": "https://github.com/jason-fox/fox.jason.unit-test/archive/v2.2.1.zip", 140 | "cksum": "8eed95e6bb89400af9eca233ea73df0a427af1fa5046c59e8512945986d7792f" 141 | } 142 | ] 143 | -------------------------------------------------------------------------------- /fox.jason.watermark.auth.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.watermark.auth", 4 | "description": "Authorization of the watermarking of generated PDF files.", 5 | "keywords": ["watermark", "authorization", "pdf"], 6 | "homepage": "https://github.com/jason-fox/fox.jason.watermark.auth", 7 | "vers": "1.0.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.0.0" 13 | }, 14 | { 15 | "name": "fox.jason.watermark", 16 | "req": ">=1.0.1" 17 | } 18 | ], 19 | "url": "https://github.com/jason-fox/fox.jason.watermark.auth/archive/v1.0.0.zip", 20 | "cksum": "457edba202703c50bd14a976ede92a5da624e21685fd5fddeb5988c9bdaa103d" 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /fox.jason.watermark.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "fox.jason.watermark", 4 | "description": "Defaces draft PDFs with a watermark image", 5 | "keywords": [ 6 | "watermark", 7 | "pdf" 8 | ], 9 | "homepage": "https://jason-fox.github.io/fox.jason.watermark", 10 | "vers": "1.0.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.0.0" 16 | } 17 | ], 18 | "url": "https://github.com/jason-fox/fox.jason.watermark/archive/v1.0.0.zip", 19 | "cksum": "5584ede23a06e059405fc49327b8e6ae9e5eb3c10b1894b8ea8677bc824e34a8" 20 | }, 21 | { 22 | "name": "fox.jason.watermark", 23 | "description": "Defaces draft PDFs with a watermark image", 24 | "keywords": [ 25 | "watermark", 26 | "pdf" 27 | ], 28 | "homepage": "https://jason-fox.github.io/fox.jason.watermark", 29 | "vers": "1.0.1", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.0.0" 35 | } 36 | ], 37 | "url": "https://github.com/jason-fox/fox.jason.watermark/archive/v1.0.1.zip", 38 | "cksum": "5bf6819d20a67c376b620b3767a0ce094e5727c222282cb2a410e3aae84c7dd6" 39 | }, 40 | { 41 | "name": "fox.jason.watermark", 42 | "description": "Defaces draft PDFs with a watermark image", 43 | "keywords": [ 44 | "watermark", 45 | "pdf" 46 | ], 47 | "homepage": "https://jason-fox.github.io/fox.jason.watermark", 48 | "vers": "2.0.0", 49 | "license": "Apache-2.0", 50 | "deps": [ 51 | { 52 | "name": "org.dita.base", 53 | "req": ">=3.0.0" 54 | } 55 | ], 56 | "url": "https://github.com/jason-fox/fox.jason.watermark/archive/v2.0.0.zip", 57 | "cksum": "26d94e17eb57ae68d6dfb953df92d770f6c57f8c9db32ac5c4a68d46019a0950" 58 | } 59 | ] 60 | -------------------------------------------------------------------------------- /html5.json: -------------------------------------------------------------------------------- 1 | { 2 | "alias": "org.dita.html5" 3 | } 4 | -------------------------------------------------------------------------------- /net.infotexture.dita-bootstrap.extension.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "net.infotexture.dita-bootstrap.extension", 4 | "description": "Bootstrap extension 5.3.0 for DITA Bootstrap 5.3.4", 5 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Bootstrap extension"], 6 | "homepage": "https://infotexture.github.io/dita-bootstrap/search-box.html", 7 | "vers": "5.3.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.7.0" 13 | }, 14 | { 15 | "name": "net.infotexture.dita-bootstrap", 16 | "req": ">=5.3.4" 17 | } 18 | ], 19 | "url": "https://github.com/infotexture/dita-bootstrap.extension/archive/5.3.0.zip", 20 | "cksum": "18f299849bbe93ff342abefb41ea007395c451e9023f204eda486d73be02d67d" 21 | }, 22 | { 23 | "name": "net.infotexture.dita-bootstrap.extension", 24 | "description": "Bootstrap extension 5.3.1 for DITA Bootstrap 5.3.5", 25 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Bootstrap extension"], 26 | "homepage": "https://infotexture.github.io/dita-bootstrap/search-box.html", 27 | "vers": "5.3.1", 28 | "license": "Apache-2.0", 29 | "deps": [ 30 | { 31 | "name": "org.dita.base", 32 | "req": ">=3.7.0" 33 | }, 34 | { 35 | "name": "net.infotexture.dita-bootstrap", 36 | "req": ">=5.3.5" 37 | } 38 | ], 39 | "url": "https://github.com/infotexture/dita-bootstrap.extension/archive/5.3.1.zip", 40 | "cksum": "73cc3f218cc567c586660dcce59a784c68d2838508be500abb0a25c740c62cf0" 41 | } 42 | ] 43 | -------------------------------------------------------------------------------- /net.infotexture.dita-bootstrap.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "net.infotexture.dita-bootstrap", 4 | "description": "HTML5 output with a basic Bootstrap template", 5 | "keywords": ["HTML", "HTML5", "Bootstrap", "Responsive"], 6 | "homepage": "https://github.com/infotexture/dita-bootstrap", 7 | "vers": "3.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.1.0" 13 | } 14 | ], 15 | "url": "https://github.com/infotexture/dita-bootstrap/archive/3.1.zip", 16 | "cksum": "1d7f07f6e60f2557ecbc966d1cf3fa22aea260a1635347a57e445c588a53feda" 17 | }, 18 | { 19 | "name": "net.infotexture.dita-bootstrap", 20 | "description": "HTML5 output with a basic Bootstrap template", 21 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 4", "Responsive"], 22 | "homepage": "https://github.com/infotexture/dita-bootstrap", 23 | "vers": "3.2.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": "<=2.5.4" 29 | } 30 | ], 31 | "url": "https://github.com/infotexture/dita-bootstrap/archive/3.2.zip", 32 | "cksum": "9449f989fe23c25cea787ff1116db7aedacc4008a1f1427d1e7ff33a8b81ed13" 33 | }, 34 | { 35 | "name": "net.infotexture.dita-bootstrap", 36 | "description": "HTML5 output with a basic Bootstrap template", 37 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 4", "Responsive"], 38 | "homepage": "https://github.com/infotexture/dita-bootstrap", 39 | "vers": "3.3.0", 40 | "license": "Apache-2.0", 41 | "deps": [ 42 | { 43 | "name": "org.dita.base", 44 | "req": ">=3.3.0" 45 | } 46 | ], 47 | "url": "https://github.com/infotexture/dita-bootstrap/archive/3.3.zip", 48 | "cksum": "0803a0c152c5614bab5b2b7beaa9685b971fe234c367537b18fdd0ce0f0bb246" 49 | }, 50 | { 51 | "name": "net.infotexture.dita-bootstrap", 52 | "description": "HTML5 output with a basic Bootstrap template", 53 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 4", "Responsive"], 54 | "homepage": "https://github.com/infotexture/dita-bootstrap", 55 | "vers": "3.4.0", 56 | "license": "Apache-2.0", 57 | "deps": [ 58 | { 59 | "name": "org.dita.base", 60 | "req": ">=3.4.0" 61 | } 62 | ], 63 | "url": "https://github.com/infotexture/dita-bootstrap/archive/3.4.zip", 64 | "cksum": "d62b9d624474306945fbff310910bd9f142b1abfdba9684227b225db9c5b38e9" 65 | }, 66 | { 67 | "name": "net.infotexture.dita-bootstrap", 68 | "description": "HTML5 output with a basic Bootstrap template", 69 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 4", "Responsive"], 70 | "homepage": "https://github.com/infotexture/dita-bootstrap", 71 | "vers": "3.4.1", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.4.0" 77 | } 78 | ], 79 | "url": "https://github.com/infotexture/dita-bootstrap/archive/3.4.1.zip", 80 | "cksum": "24064609254ae9fc65ddd700742bf87616674a05ba7ee9a460b99b19a93d51a8" 81 | }, 82 | { 83 | "name": "net.infotexture.dita-bootstrap", 84 | "description": "HTML5 output with a basic Bootstrap template", 85 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 4", "Responsive"], 86 | "homepage": "https://github.com/infotexture/dita-bootstrap", 87 | "vers": "3.6.0", 88 | "license": "Apache-2.0", 89 | "deps": [ 90 | { 91 | "name": "org.dita.base", 92 | "req": ">=3.6.0" 93 | } 94 | ], 95 | "url": "https://github.com/infotexture/dita-bootstrap/archive/3.6.zip", 96 | "cksum": "394c57c2730df2972dc211ed034329e4c284e5d17e316ec4d8b5e57e8add734a" 97 | }, 98 | { 99 | "name": "net.infotexture.dita-bootstrap", 100 | "description": "HTML5 output with a basic Bootstrap template", 101 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive"], 102 | "homepage": "https://infotexture.github.io/dita-bootstrap", 103 | "vers": "5.3.0", 104 | "license": "Apache-2.0", 105 | "deps": [ 106 | { 107 | "name": "org.dita.base", 108 | "req": ">=3.6.0" 109 | }, 110 | { 111 | "name": "fox.jason.extend.css", 112 | "req": ">=1.0.0" 113 | } 114 | ], 115 | "url": "https://github.com/infotexture/dita-bootstrap/archive/5.3.zip", 116 | "cksum": "b3fae75957c1be8d55551f111763e038bec55252cb367089aeea8689d7cddf2d" 117 | }, 118 | { 119 | "name": "net.infotexture.dita-bootstrap", 120 | "description": "HTML5 output with a basic Bootstrap template", 121 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive"], 122 | "homepage": "https://infotexture.github.io/dita-bootstrap", 123 | "vers": "5.3.1", 124 | "license": "Apache-2.0", 125 | "deps": [ 126 | { 127 | "name": "org.dita.base", 128 | "req": ">=3.6.0" 129 | }, 130 | { 131 | "name": "fox.jason.extend.css", 132 | "req": ">=1.0.0" 133 | } 134 | ], 135 | "url": "https://github.com/infotexture/dita-bootstrap/archive/5.3.1.zip", 136 | "cksum": "b236c00e65a2895159f098318c96f7e042d2b64784587c1100d6c4f39df926b4" 137 | }, 138 | { 139 | "name": "net.infotexture.dita-bootstrap", 140 | "description": "HTML5 output with a basic Bootstrap template", 141 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive"], 142 | "homepage": "https://infotexture.github.io/dita-bootstrap", 143 | "vers": "5.3.2", 144 | "license": "Apache-2.0", 145 | "deps": [ 146 | { 147 | "name": "org.dita.base", 148 | "req": ">=3.7.0" 149 | }, 150 | { 151 | "name": "fox.jason.extend.css", 152 | "req": ">=1.0.0" 153 | } 154 | ], 155 | "url": "https://github.com/infotexture/dita-bootstrap/archive/5.3.2.zip", 156 | "cksum": "7d29ef6da445ebb0c7dcec84d191f2c118ad9fa15ea77c92b7f274550de5aca8" 157 | }, 158 | { 159 | "name": "net.infotexture.dita-bootstrap", 160 | "description": "Styled HTML5 output with an extensible Bootstrap template", 161 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive"], 162 | "homepage": "https://infotexture.github.io/dita-bootstrap", 163 | "vers": "5.3.3", 164 | "license": "Apache-2.0", 165 | "deps": [ 166 | { 167 | "name": "org.dita.base", 168 | "req": ">=3.7.0" 169 | }, 170 | { 171 | "name": "fox.jason.extend.css", 172 | "req": ">=1.2.2" 173 | } 174 | ], 175 | "url": "https://github.com/infotexture/dita-bootstrap/archive/5.3.3.zip", 176 | "cksum": "b322d1edbcf3dca97e594a889e2ec01f3b396d79b0109cf75448f899a65d0ab1" 177 | }, 178 | { 179 | "name": "net.infotexture.dita-bootstrap", 180 | "description": "Styled HTML5 output with an extensible Bootstrap template", 181 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive"], 182 | "homepage": "https://infotexture.github.io/dita-bootstrap", 183 | "vers": "5.3.4", 184 | "license": "Apache-2.0", 185 | "deps": [ 186 | { 187 | "name": "org.dita.base", 188 | "req": ">=3.7.0" 189 | }, 190 | { 191 | "name": "fox.jason.extend.css", 192 | "req": ">=1.3.0" 193 | } 194 | ], 195 | "url": "https://github.com/infotexture/dita-bootstrap/archive/5.3.4.zip", 196 | "cksum": "4cb32dae34d2ea28cf8b70c527078ef9a01d614466b4a4639384f79c39cc4a3e" 197 | }, 198 | { 199 | "name": "net.infotexture.dita-bootstrap", 200 | "description": "Styled HTML5 output with an extensible Bootstrap template", 201 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive"], 202 | "homepage": "https://infotexture.github.io/dita-bootstrap", 203 | "vers": "5.3.5", 204 | "license": "Apache-2.0", 205 | "deps": [ 206 | { 207 | "name": "org.dita.base", 208 | "req": ">=3.7.0" 209 | }, 210 | { 211 | "name": "fox.jason.extend.css", 212 | "req": ">=1.3.0" 213 | } 214 | ], 215 | "url": "https://github.com/infotexture/dita-bootstrap/archive/5.3.5.zip", 216 | "cksum": "83f4240662a439f32c2be9297591b55cb22490396a1dcb42dc6634e1c591d7c2" 217 | } 218 | ] 219 | -------------------------------------------------------------------------------- /net.infotexture.dita-bootstrap.lunr.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "net.infotexture.dita-bootstrap.lunr", 4 | "description": "Lunr.js search for DITA Bootstrap 5.3.3", 5 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive", "Lunr", "Search"], 6 | "homepage": "https://infotexture.github.io/dita-bootstrap/search-box.html", 7 | "vers": "5.3.3", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.7.0" 13 | }, 14 | { 15 | "name": "net.infotexture.dita-bootstrap", 16 | "req": ">=5.3.3" 17 | } 18 | ], 19 | "url": "https://github.com/infotexture/dita-bootstrap.lunr/archive/5.3.3.zip", 20 | "cksum": "42a820bcae1bf9f903028b928c9f2fea5c5243da07d72f75f4db076ac3f13ce0" 21 | }, 22 | { 23 | "name": "net.infotexture.dita-bootstrap.lunr", 24 | "description": "Lunr.js search for DITA Bootstrap 5.3.4", 25 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive", "Lunr", "Search"], 26 | "homepage": "https://infotexture.github.io/dita-bootstrap/search-box.html", 27 | "vers": "5.3.4", 28 | "license": "Apache-2.0", 29 | "deps": [ 30 | { 31 | "name": "org.dita.base", 32 | "req": ">=3.7.0" 33 | }, 34 | { 35 | "name": "net.infotexture.dita-bootstrap", 36 | "req": ">=5.3.4" 37 | } 38 | ], 39 | "url": "https://github.com/infotexture/dita-bootstrap.lunr/archive/5.3.4.zip", 40 | "cksum": "19123d8ceb5fdc2c87aadbc307e4c7e8ef19680b0d5119886977d98db8197e57" 41 | }, 42 | { 43 | "name": "net.infotexture.dita-bootstrap.lunr", 44 | "description": "Lunr.js search for DITA Bootstrap 5.3.5", 45 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive", "Lunr", "Search"], 46 | "homepage": "https://infotexture.github.io/dita-bootstrap/search-box.html", 47 | "vers": "5.3.5", 48 | "license": "Apache-2.0", 49 | "deps": [ 50 | { 51 | "name": "org.dita.base", 52 | "req": ">=3.7.0" 53 | }, 54 | { 55 | "name": "net.infotexture.dita-bootstrap", 56 | "req": ">=5.3.5" 57 | } 58 | ], 59 | "url": "https://github.com/infotexture/dita-bootstrap.lunr/archive/5.3.5.zip", 60 | "cksum": "dc7b910be77812a77e7467709c0c6e18d401d8158c18368b43eb1ce8d5e1b84a" 61 | } 62 | ] 63 | -------------------------------------------------------------------------------- /net.infotexture.dita-bootstrap.sass.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "net.infotexture.dita-bootstrap.sass", 4 | "description": "Sass theme customization for DITA Bootstrap 5.3.3", 5 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive", "Sass", "Themes"], 6 | "homepage": "https://infotexture.github.io/dita-bootstrap/sass.html", 7 | "vers": "5.3.3", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.7.0" 13 | }, 14 | { 15 | "name": "net.infotexture.dita-bootstrap", 16 | "req": ">=5.3.3" 17 | } 18 | ], 19 | "url": "https://github.com/infotexture/dita-bootstrap.sass/archive/5.3.3.zip", 20 | "cksum": "6331f354194e9ca66830a52413c1ccfa2de42f139db646ac4312834b2ecbc921" 21 | }, 22 | { 23 | "name": "net.infotexture.dita-bootstrap.sass", 24 | "description": "Sass theme customization for DITA Bootstrap 5.3.4", 25 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive", "Sass", "Themes"], 26 | "homepage": "https://infotexture.github.io/dita-bootstrap/sass.html", 27 | "vers": "5.3.4", 28 | "license": "Apache-2.0", 29 | "deps": [ 30 | { 31 | "name": "org.dita.base", 32 | "req": ">=3.7.0" 33 | }, 34 | { 35 | "name": "net.infotexture.dita-bootstrap", 36 | "req": ">=5.3.4" 37 | } 38 | ], 39 | "url": "https://github.com/infotexture/dita-bootstrap.sass/archive/5.3.4.zip", 40 | "cksum": "24b802fbb887a0bb5809e9d8e532d78462570baca88244cc9d3c770af89860cb" 41 | }, 42 | { 43 | "name": "net.infotexture.dita-bootstrap.sass", 44 | "description": "Sass theme customization for DITA Bootstrap 5.3.5", 45 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Responsive", "Sass", "Themes"], 46 | "homepage": "https://infotexture.github.io/dita-bootstrap/sass.html", 47 | "vers": "5.3.5", 48 | "license": "Apache-2.0", 49 | "deps": [ 50 | { 51 | "name": "org.dita.base", 52 | "req": ">=3.7.0" 53 | }, 54 | { 55 | "name": "net.infotexture.dita-bootstrap", 56 | "req": ">=5.3.5" 57 | } 58 | ], 59 | "url": "https://github.com/infotexture/dita-bootstrap.sass/archive/5.3.5.zip", 60 | "cksum": "70e34ab4d3178e75e2eae1522a39c0d162f0cf2ca8e82718d0e4cbffec54f229" 61 | } 62 | ] 63 | -------------------------------------------------------------------------------- /net.infotexture.dita-bootstrap.table.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "net.infotexture.dita-bootstrap.table", 4 | "description": "Bootstrap Table 1.22.4 for DITA Bootstrap 5.3.5", 5 | "keywords": ["HTML", "HTML5", "Bootstrap", "Bootstrap 5", "Bootstrap Table"], 6 | "homepage": "https://infotexture.github.io/dita-bootstrap/bootstrap-table.html", 7 | "vers": "1.22.4", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.7.0" 13 | }, 14 | { 15 | "name": "net.infotexture.dita-bootstrap", 16 | "req": ">=5.3.5" 17 | } 18 | ], 19 | "url": "https://github.com/infotexture/dita-bootstrap.table/archive/1.22.4.zip", 20 | "cksum": "da381179adae1859bb88324c5dbab152b9f37eef7dca2cf153d9cef7db5e2084" 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /org.dita-community.common.xslt.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-community.common.xslt", 4 | "description": "DITA Community common XSLT modules", 5 | "homepage": "https://github.com/dita-community/org.dita-community.common.xslt", 6 | "keywords": ["XSLT", "utilities"], 7 | "vers": "1.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.3" 13 | } 14 | ], 15 | "url": "https://github.com/dita-community/org.dita-community.common.xslt/releases/download/v1.1.0/org.dita-community.common.xslt.1.1.0.zip", 16 | "cksum": "4f3b757f074a49896f4188c3b44e3fe647c3b1cd4057d613634e533c8b4f38ab" 17 | }, 18 | { 19 | "name": "org.dita-community.common.xslt", 20 | "description": "DITA Community common XSLT modules", 21 | "homepage": "https://github.com/dita-community/org.dita-community.common.xslt", 22 | "keywords": ["XSLT", "utilities"], 23 | "vers": "1.0.27", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=1.8.5" 29 | } 30 | ], 31 | "url": "https://github.com/dita-community/org.dita-community.common.xslt/archive/1.0.0RC27.zip", 32 | "cksum": "9f1223ff14a0f4230ad39202c143b0b82cc46e47487910c4ca45ca561dd46c94" 33 | } 34 | ] 35 | -------------------------------------------------------------------------------- /org.dita-community.glossary.preprocess.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-community.glossary.preprocess", 4 | "description": "DITA Community glossary preprocessing extensions", 5 | "homepage": "https://github.com/dita-community/org.dita-community.glossary.preprocess", 6 | "keywords": ["glossary", "glossentry", "glossarylist", "glossgroup", "glossref"], 7 | "vers": "0.9.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.3" 13 | }, 14 | { 15 | "name": "org.dita-community.common.xslt", 16 | "req": "1.1.0" 17 | }, 18 | { 19 | "name": "org.dita-community.i18n", 20 | "req": "2.0.1" 21 | } 22 | ], 23 | "url": "https://github.com/dita-community/org.dita-community.glossary.preprocess/releases/download/v0.9.0/org.dita-community.glossary.preprocess.0.9.0.zip", 24 | "cksum": "9bebeac38854dfbe871d9b786cb2cf98d1529c8e227608019d873aae1849700f" 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /org.dita-community.i18n.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-community.i18n", 4 | "description": "Locale-aware sorting, grouping, line and word breaking, and text size estimation", 5 | "keywords": ["i18n", "sorting", "grouping", "line breaking", "word breaking", "text size", "ICU4J", "Simplified Chinese"], 6 | "homepage": "https://github.com/dita-community/org.dita-community.i18n", 7 | "vers": "2.0.1", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-community/org.dita-community.i18n/releases/download/version-2.0.1/org_dita-community_i18n_plugin_2.0.1.zip", 16 | "cksum": "905ee9cfda2b44a2b9f3592b2d88a4155e524e0cdc3b210c35cfbec914d29d95" 17 | }, 18 | { 19 | "name": "org.dita-community.i18n", 20 | "description": "Locale-aware sorting, grouping, line and word breaking, and text size estimation", 21 | "keywords": ["i18n", "sorting", "grouping", "line breaking", "word breaking", "text size", "ICU4J", "Simplified Chinese"], 22 | "homepage": "https://github.com/dita-community/org.dita-community.i18n", 23 | "vers": "1.0.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=2.5.4" 29 | } 30 | ], 31 | "url": "https://github.com/dita-community/org.dita-community.i18n/releases/download/version-1.0.0/org_dita-community_i18n_plugin_1.0.0.zip", 32 | "cksum": "a89ca0d79a4d891785a768729d6b76dd2c6632c5d38901b0cd536e55491d8ed0" 33 | } 34 | ] -------------------------------------------------------------------------------- /org.dita-community.pdf-page-break.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-community.pdf-page-break", 4 | "description": "PDF Page Break Plugin — Adds support for an XML processing instruction that can be used to insert manual page breaks in PDF output.", 5 | "keywords": ["PDF", "page-break"], 6 | "homepage": "https://github.com/dita-community/org.dita-community.pdf-page-break", 7 | "vers": "1.0.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=1.8.5" 13 | }, 14 | { 15 | "name": "org.dita.pdf2", 16 | "req": ">=1.8.5" 17 | } 18 | ], 19 | "url": "https://github.com/dita-community/org.dita-community.pdf-page-break/archive/v1.0.0.zip", 20 | "cksum": "5ce90d7e127356587f845353171b0bed299c20388a7bf1df393b91b67afbf263" 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /org.dita-semia.diff.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-semia.diff", 4 | "description": "Create a diff of a DITA document with a previous version of the same document with highlighted changes.", 5 | "keywords": ["Diff", "Compare"], 6 | "homepage": "https://github.com/dita-semia/org.dita-semia.diff", 7 | "vers": "0.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": "2.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-semia/org.dita-semia.diff/archive/0.1.zip", 16 | "cksum": "f51365bbc3cc3a3ef615629aba7e7d55fa5b7593b31231c42b44218604091db8" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita-semia.image-convert.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-semia.image-convert", 4 | "description": "Convert SVG images for HTML-based output.", 5 | "keywords": ["HTML", "image convert", "rasterize"], 6 | "homepage": "https://github.com/dita-semia/org.dita-semia.image-convert", 7 | "vers": "1.0.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-semia/org.dita-semia.image-convert/archive/v1.0.zip", 16 | "cksum": "188c8344f2fea13b3a373938110639b6310fbad683312316c585eaac8bf06949" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita-semia.pdf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-semia.pdf", 4 | "description": "Yet another transtype for PDF output. Special Features: hyphenation for identifiers, @status markers, dl-outputclasses.", 5 | "keywords": ["PDF"], 6 | "homepage": "https://github.com/dita-semia/org.dita-semia.pdf", 7 | "vers": "0.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-semia/org.dita-semia.pdf/archive/0.1.zip", 16 | "cksum": "7a14c7023fcfaa8062112f91e9389d719cacd230d2c2890131403726c25afbb0" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita-semia.postprocessing.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-semia.postprocessing", 4 | "description": "Set pdf filename depending on content (e.g. metadata) and zipping the result.", 5 | "keywords": ["zip", "filename"], 6 | "homepage": "https://github.com/dita-semia/org.dita-semia.postprocessing", 7 | "vers": "0.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-semia/org.dita-semia.postprocessing/archive/0.1.zip", 16 | "cksum": "2e30b18ed29caa784ad614fd8107001589b1602e7216de02f274cef0f2df71cb" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita-semia.resolver.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-semia.resolver", 4 | "description": "Resolve special attributes to standard DITA content during preprocessing. Supporting XSLT-Conref, Conbat and Advanced Key-based References.", 5 | "keywords": ["custom XML", "XSLT-conref", "conbat", "advanced key-ref", "implicit key definition"], 6 | "homepage": "https://github.com/dita-semia/dita-semia-resolver", 7 | "vers": "0.1.2", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": "2.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-semia/dita-semia-resolver/archive/v0.1.2.zip", 16 | "cksum": "098991d8b24f0ce90732567bd4d1a758eb9ab883047bad9c4de3b2d4c3ebe718" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita-semia.topic-num.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita-semia.topic-num", 4 | "description": "Preprocessing step to add numbering cross-topic numbering for various elements intended for HTML output.", 5 | "keywords": ["HTML", "numbering", "cross-topic"], 6 | "homepage": "https://github.com/dita-semia/org.dita-semia.topic-num", 7 | "vers": "2.4.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-semia/org.dita-semia.topic-num/archive/0.1.zip", 16 | "cksum": "de39431e85249ac4a4514b7a065d1158a07e5253c06fd31b1b7d3ae1084d01be" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.docbook.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.docbook", 4 | "description": "Convert DITA to DocBook.", 5 | "keywords": ["DocBook"], 6 | "homepage": "https://github.com/dita-ot/org.dita.docbook/", 7 | "vers": "2.3.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.docbook/archive/2.3.zip", 16 | "cksum": "eaf06b0dca8d942bd4152615e39ee8cfb73a624b96d70e10ab269ed6f8a13e21" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.eclipsecontent.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.eclipsecontent", 4 | "description": "The Eclipse Content transformation generates normalized DITA files and Eclipse control files.", 5 | "keywords": ["Eclipse"], 6 | "homepage": "https://github.com/dita-ot/org.dita.eclipsecontent/", 7 | "vers": "2.3.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.eclipsecontent/archive/2.3.zip", 16 | "cksum": "8e3bfc6405adee87871de4585384216e937515799fd2f95b2ef044a8c283d708" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.eclipsehelp.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.eclipsehelp", 4 | "description": "XHTML output, CSS files, and the control files that are needed for Eclipse help", 5 | "keywords": [ 6 | "Eclipse", 7 | "EclipseHelp", 8 | "default" 9 | ], 10 | "homepage": "https://github.com/dita-ot/dita-ot/", 11 | "vers": "3.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.2.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.eclipsehelp-3.2.zip", 20 | "cksum": "2df3e4e380c15c32dc05498cb0e9bbbaab7c8fb9c897e5f19d390ec5fbd4f5ff" 21 | }, 22 | { 23 | "name": "org.dita.eclipsehelp", 24 | "description": "XHTML output, CSS files, and the control files that are needed for Eclipse help", 25 | "keywords": [ 26 | "Eclipse", 27 | "EclipseHelp", 28 | "default" 29 | ], 30 | "homepage": "https://github.com/dita-ot/dita-ot/", 31 | "vers": "3.2.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.2.0" 37 | } 38 | ], 39 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.eclipsehelp-3.2.1.zip", 40 | "cksum": "3b4d007ee60d03d54c9cb2321d217f38d3dfe01ea8c2c2c5ddda32bcffcaac15" 41 | }, 42 | { 43 | "name": "org.dita.eclipsehelp", 44 | "description": "XHTML output, CSS files, and the control files that are needed for Eclipse help", 45 | "keywords": [ 46 | "Eclipse", 47 | "EclipseHelp", 48 | "default" 49 | ], 50 | "homepage": "https://github.com/dita-ot/dita-ot/", 51 | "vers": "3.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.3.0" 57 | } 58 | ], 59 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.eclipsehelp-3.3.0.zip", 60 | "cksum": "dbf58f35e11fa31fe0730f6520f9d48018a4a9d7ce7a713605ba5c434e40dc05" 61 | }, 62 | { 63 | "name": "org.dita.eclipsehelp", 64 | "description": "XHTML output, CSS files, and the control files that are needed for Eclipse help", 65 | "keywords": [ 66 | "Eclipse", 67 | "EclipseHelp", 68 | "default" 69 | ], 70 | "homepage": "https://github.com/dita-ot/dita-ot/", 71 | "vers": "3.3.3", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.3" 77 | } 78 | ], 79 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.eclipsehelp-3.3.3.zip", 80 | "cksum": "ffb37abb46ffbb4733bc97ac46cd029c545f831bc77ca8b7e763f4ec758688ad" 81 | }, 82 | { 83 | "name": "org.dita.eclipsehelp", 84 | "description": "XHTML output, CSS files, and the control files that are needed for Eclipse help", 85 | "keywords": [ 86 | "Eclipse", 87 | "EclipseHelp", 88 | "default" 89 | ], 90 | "homepage": "https://github.com/dita-ot/dita-ot/", 91 | "vers": "3.3.4", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.3" 97 | } 98 | ], 99 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.eclipsehelp-3.3.4.zip", 100 | "cksum": "5b755e82f281822a554a6e483f347337addc2bb5223893f1e5120569d5ab1737" 101 | }, 102 | { 103 | "name": "org.dita.eclipsehelp", 104 | "description": "XHTML output, CSS files, and the control files that are needed for Eclipse help", 105 | "keywords": [ 106 | "Eclipse", 107 | "EclipseHelp", 108 | "default" 109 | ], 110 | "homepage": "https://github.com/dita-ot/org.dita.eclipsehelp/", 111 | "vers": "3.4.0", 112 | "license": "Apache-2.0", 113 | "deps": [ 114 | { 115 | "name": "org.dita.base", 116 | "req": ">=3.4" 117 | } 118 | ], 119 | "url": "https://github.com/dita-ot/org.dita.eclipsehelp/releases/download/3.4/org.dita.eclipsehelp-3.4.0.zip", 120 | "cksum": "1d94ff6d6130868000b5e06ca856cce1b8a5069c14ff88b1cc59e980cc04ea7e" 121 | } 122 | ] 123 | -------------------------------------------------------------------------------- /org.dita.html5.dublin-core.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.html5.dublin-core", 4 | "description": "Dublin Core output for HTML5", 5 | "keywords": [ 6 | "metadata", 7 | "HTML5", 8 | "dublin-core" 9 | ], 10 | "homepage": "https://github.com/dita-ot/org.dita.html5.dublin-core/", 11 | "vers": "3.6.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.html5", 16 | "req": ">=3.6.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/org.dita.html5.dublin-core/archive/3.6.0.zip", 20 | "cksum": "945743dc6b8f2e8ac63aeb00c9308f2735607642884551330c30d4c938969e8c" 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /org.dita.html5.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.html5", 4 | "description": "HTML5 output and a table of contents (TOC) file", 5 | "keywords": [ 6 | "HTML", 7 | "HTML5", 8 | "default" 9 | ], 10 | "homepage": "https://github.com/dita-ot/dita-ot/", 11 | "vers": "3.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.2.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.html5-3.2.zip", 20 | "cksum": "56c15bd8f769be4c107bcdf1a2320bcab349a753da92d4f5f1cc1a8153d0a12e" 21 | }, 22 | { 23 | "name": "org.dita.html5", 24 | "description": "HTML5 output and a table of contents (TOC) file", 25 | "keywords": [ 26 | "HTML", 27 | "HTML5", 28 | "default" 29 | ], 30 | "homepage": "https://github.com/dita-ot/dita-ot/", 31 | "vers": "3.2.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.2.0" 37 | } 38 | ], 39 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.html5-3.2.1.zip", 40 | "cksum": "a3901c1bd791bb618d2b4b041ea024fc874522d67f9286b769a9b25d3f453b3d" 41 | }, 42 | { 43 | "name": "org.dita.html5", 44 | "description": "HTML5 output and a table of contents (TOC) file", 45 | "keywords": [ 46 | "HTML", 47 | "HTML5", 48 | "default" 49 | ], 50 | "homepage": "https://github.com/dita-ot/dita-ot/", 51 | "vers": "3.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.3.0" 57 | } 58 | ], 59 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.html5-3.3.0.zip", 60 | "cksum": "e6675d00c03d64b108ee19d8becc944a085073c9a2ef48a1d29030adaf5fa80e" 61 | }, 62 | { 63 | "name": "org.dita.html5", 64 | "description": "HTML5 output and a table of contents (TOC) file", 65 | "keywords": [ 66 | "HTML", 67 | "HTML5", 68 | "default" 69 | ], 70 | "homepage": "https://github.com/dita-ot/dita-ot/", 71 | "vers": "3.3.3", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.3" 77 | } 78 | ], 79 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.html5-3.3.3.zip", 80 | "cksum": "f5731dd54a534b65308a429b54b08e8343f49df6b56621a6532da727e708edd4" 81 | }, 82 | { 83 | "name": "org.dita.html5", 84 | "description": "HTML5 output and a table of contents (TOC) file", 85 | "keywords": [ 86 | "HTML", 87 | "HTML5", 88 | "default" 89 | ], 90 | "homepage": "https://github.com/dita-ot/dita-ot/", 91 | "vers": "3.3.4", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.3" 97 | } 98 | ], 99 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.html5-3.3.4.zip", 100 | "cksum": "17a0ac782c54da00018179d70ab65a430c9d37919fffea0ea621f2b2f40992f9" 101 | } 102 | ] -------------------------------------------------------------------------------- /org.dita.htmlhelp.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.htmlhelp", 4 | "description": "HTML output, CSS files, and the control files that are needed to produce a Microsoft Compiled HTML Help (.chm) file", 5 | "keywords": [ 6 | "HTML", 7 | "HTMLhelp", 8 | "default" 9 | ], 10 | "homepage": "https://github.com/dita-ot/dita-ot/", 11 | "vers": "3.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.2.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.htmlhelp-3.2.zip", 20 | "cksum": "74b1abbe80bd4fb8b87de094f02dbf43df51812f3c49ed4aa29e4a0f8f0bf3c6" 21 | }, 22 | { 23 | "name": "org.dita.htmlhelp", 24 | "description": "HTML output, CSS files, and the control files that are needed to produce a Microsoft Compiled HTML Help (.chm) file", 25 | "keywords": [ 26 | "HTML", 27 | "HTMLhelp", 28 | "default" 29 | ], 30 | "homepage": "https://github.com/dita-ot/dita-ot/", 31 | "vers": "3.2.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.2.0" 37 | } 38 | ], 39 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.htmlhelp-3.2.1.zip", 40 | "cksum": "26e9cdf3551b72879a3593fc1c90a26eb7729871c17776025279c7c1158d61ff" 41 | }, 42 | { 43 | "name": "org.dita.htmlhelp", 44 | "description": "HTML output, CSS files, and the control files that are needed to produce a Microsoft Compiled HTML Help (.chm) file", 45 | "keywords": [ 46 | "HTML", 47 | "HTMLhelp", 48 | "default" 49 | ], 50 | "homepage": "https://github.com/dita-ot/dita-ot/", 51 | "vers": "3.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.3.0" 57 | } 58 | ], 59 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.htmlhelp-3.3.0.zip", 60 | "cksum": "2a8621e35b82d3db894d1ceac73f0c96135e83721dd2f70ece781b2033513a47" 61 | }, 62 | { 63 | "name": "org.dita.htmlhelp", 64 | "description": "HTML output, CSS files, and the control files that are needed to produce a Microsoft Compiled HTML Help (.chm) file", 65 | "keywords": [ 66 | "HTML", 67 | "HTMLhelp", 68 | "default" 69 | ], 70 | "homepage": "https://github.com/dita-ot/dita-ot/", 71 | "vers": "3.3.3", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.3" 77 | } 78 | ], 79 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.htmlhelp-3.3.3.zip", 80 | "cksum": "acd359919881b82e898659f16dc26e787a085a9a7bdbc67d02708d80f47ff7b0" 81 | }, 82 | { 83 | "name": "org.dita.htmlhelp", 84 | "description": "HTML output, CSS files, and the control files that are needed to produce a Microsoft Compiled HTML Help (.chm) file", 85 | "keywords": [ 86 | "HTML", 87 | "HTMLhelp", 88 | "default" 89 | ], 90 | "homepage": "https://github.com/dita-ot/dita-ot/", 91 | "vers": "3.3.4", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.3" 97 | } 98 | ], 99 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.htmlhelp-3.3.4.zip", 100 | "cksum": "08e9aa8725ec4419642da07f69a81a68ccd3e1f7d52a370433b141c957178b67" 101 | } 102 | ] -------------------------------------------------------------------------------- /org.dita.index.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.index", 4 | "description": "Index processor for DITA-OT", 5 | "keywords": [ 6 | "index", 7 | "pdf", 8 | "default" 9 | ], 10 | "homepage": "https://github.com/dita-ot/org.dita.index/", 11 | "vers": "1.0.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.4.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/org.dita.index/releases/download/1.0.0/org.dita.index-1.0.0.zip", 20 | "cksum": "f9daed35ac70e2bc9f06e0d28a2d0d628077fc352cd3fad29289607f5ae87f69" 21 | }, 22 | { 23 | "name": "org.dita.index", 24 | "description": "Index processor for DITA-OT", 25 | "keywords": ["index", "pdf", "default"], 26 | "homepage": "https://github.com/dita-ot/org.dita.index/", 27 | "vers": "2.0.0", 28 | "license": "Apache-2.0", 29 | "deps": [ 30 | { 31 | "name": "org.dita.base", 32 | "req": ">=4.0.0" 33 | } 34 | ], 35 | "url": "https://github.com/dita-ot/org.dita.index/releases/download/2.0.0/org.dita.index-2.0.0.zip", 36 | "cksum": "2249215e9e887ca1578917baa5e01e350d0665c371a192a5aa1d84af5d0cf05e" 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /org.dita.javahelp.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.javahelp", 4 | "description": "DITA-OT plug-in to generate JavaHelp output.", 5 | "keywords": ["JavaHelp"], 6 | "homepage": "https://github.com/dita-ot/org.dita.javahelp/", 7 | "vers": "2.5.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.5.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.javahelp/archive/2.5.zip", 16 | "cksum": "10489845f9373ca596267614811bee4f6179e6b55a083ddb967e0fd078922a14" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.normalize.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.normalize", 4 | "description": "The org.dita.normalize plugin extends DITA Open Toolkit with a dita transformation type that generates normalized topics and maps from DITA input.", 5 | "keywords": ["DITA", "default"], 6 | "homepage": "https://github.com/dita-ot/org.dita.normalize/", 7 | "vers": "1.0.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.5.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.normalize/archive/1.0.zip", 16 | "cksum": "1765fd3637e7bfa0684b979106773d272c9ed8a474eb2b2fc3150d4bc7254896" 17 | }, 18 | { 19 | "name": "org.dita.normalize", 20 | "description": "The org.dita.normalize plugin extends DITA Open Toolkit with a dita transformation type that generates normalized topics and maps from DITA input.", 21 | "keywords": ["DITA", "default"], 22 | "homepage": "https://github.com/dita-ot/org.dita.normalize/", 23 | "vers": "1.1.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=2.5.0" 29 | } 30 | ], 31 | "url": "https://github.com/dita-ot/org.dita.normalize/archive/refs/tags/1.1.0.zip", 32 | "cksum": "ae6d6855cdf3771fe76e6b85870214ee0c7e9c447ef87ab52e1e76b9b4f1d47e" 33 | }, 34 | { 35 | "name": "org.dita.normalize", 36 | "description": "The org.dita.normalize plugin extends DITA Open Toolkit with a dita transformation type that generates normalized topics and maps from DITA input.", 37 | "keywords": ["DITA", "default"], 38 | "homepage": "https://github.com/dita-ot/org.dita.normalize/", 39 | "vers": "2.0.0", 40 | "license": "Apache-2.0", 41 | "deps": [ 42 | { 43 | "name": "org.dita.base", 44 | "req": ">=4.2.0" 45 | } 46 | ], 47 | "url": "https://github.com/dita-ot/org.dita.normalize/archive/refs/tags/2.0.zip", 48 | "cksum": "24a5c9bbd4da1095541133ab36e2d946fcef403eafd45567ce4d1a53717050b7" 49 | } 50 | ] 51 | -------------------------------------------------------------------------------- /org.dita.pdf2.axf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.pdf2.axf", 4 | "description": "PDF output extended for rendering with Antenna House Formatter", 5 | "keywords": [ 6 | "AntennaHouse", 7 | "default", 8 | "PDF" 9 | ], 10 | "homepage": "https://github.com/dita-ot/dita-ot/", 11 | "vers": "3.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.2.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.pdf2.axf-3.2.zip", 20 | "cksum": "081785f3f2c70d0e425206a010e7ce6bb0e5da2b185b95e40c025e2d86718982" 21 | }, 22 | { 23 | "name": "org.dita.pdf2.axf", 24 | "description": "PDF output extended for rendering with Antenna House Formatter", 25 | "keywords": [ 26 | "AntennaHouse", 27 | "default", 28 | "PDF" 29 | ], 30 | "homepage": "https://github.com/dita-ot/dita-ot/", 31 | "vers": "3.2.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.2.0" 37 | } 38 | ], 39 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.pdf2.axf-3.2.1.zip", 40 | "cksum": "ce3ef96d0673568eb2725d19034cbc1e31901fec12c4554365202a5984d74247" 41 | }, 42 | { 43 | "name": "org.dita.pdf2.axf", 44 | "description": "PDF output extended for rendering with Antenna House Formatter", 45 | "keywords": [ 46 | "AntennaHouse", 47 | "default", 48 | "PDF" 49 | ], 50 | "homepage": "https://github.com/dita-ot/dita-ot/", 51 | "vers": "3.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.3.0" 57 | } 58 | ], 59 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.pdf2.axf-3.3.0.zip", 60 | "cksum": "f751301526677c1350e40cf5d4cc76da8b4b9e889c27c3a618ff38f95f6b8126" 61 | }, 62 | { 63 | "name": "org.dita.pdf2.axf", 64 | "description": "PDF output extended for rendering with Antenna House Formatter", 65 | "keywords": [ 66 | "AntennaHouse", 67 | "default", 68 | "PDF" 69 | ], 70 | "homepage": "https://github.com/dita-ot/dita-ot/", 71 | "vers": "3.3.3", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.3" 77 | } 78 | ], 79 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.pdf2.axf-3.3.3.zip", 80 | "cksum": "12807c7d0c98473df39ee6c805b5f8c1ed5ae76a2bf7d50e330e7a3d983708d0" 81 | }, 82 | { 83 | "name": "org.dita.pdf2.axf", 84 | "description": "PDF output extended for rendering with Antenna House Formatter", 85 | "keywords": [ 86 | "AntennaHouse", 87 | "default", 88 | "PDF" 89 | ], 90 | "homepage": "https://github.com/dita-ot/dita-ot/", 91 | "vers": "3.3.4", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.3" 97 | } 98 | ], 99 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.pdf2.axf-3.3.4.zip", 100 | "cksum": "f7fa29ed4ad84c909b771f42abb91675fac24ec5d92b460424cc8c6358aff9f1" 101 | }, 102 | { 103 | "name": "org.dita.pdf2.axf", 104 | "description": "PDF output extended for rendering with Antenna House Formatter", 105 | "keywords": [ 106 | "AntennaHouse", 107 | "default", 108 | "PDF" 109 | ], 110 | "homepage": "https://github.com/dita-ot/org.dita.pdf2.axf", 111 | "vers": "3.6.1", 112 | "license": "Apache-2.0", 113 | "deps": [ 114 | { 115 | "name": "org.dita.base", 116 | "req": ">=3.6" 117 | } 118 | ], 119 | "url": "https://github.com/dita-ot/org.dita.pdf2.axf/releases/download/3.6.1/org.dita.pdf2.axf-3.6.1.zip", 120 | "cksum": "354ff8427497722d552474c3bf0d2c5b9be16870b4c8d0152af38e5191b869f7" 121 | } 122 | ] -------------------------------------------------------------------------------- /org.dita.pdf2.fop.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.pdf2.fop", 4 | "description": "PDF output extended for rendering with Apache FOP", 5 | "keywords": [ 6 | "FOP", 7 | "default", 8 | "PDF" 9 | ], 10 | "homepage": "https://github.com/dita-ot/dita-ot/", 11 | "vers": "3.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.2.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.pdf2.fop-3.2.zip", 20 | "cksum": "3b44859910a6c24750c932edfef761c821fb4473e3e49f72a9edfc6d515577df" 21 | }, 22 | { 23 | "name": "org.dita.pdf2.fop", 24 | "description": "PDF output extended for rendering with Apache FOP", 25 | "keywords": [ 26 | "FOP", 27 | "default", 28 | "PDF" 29 | ], 30 | "homepage": "https://github.com/dita-ot/dita-ot/", 31 | "vers": "3.2.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.2.0" 37 | } 38 | ], 39 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.pdf2.fop-3.2.1.zip", 40 | "cksum": "717c9a344e87c493ca6b1a1b844653ea0c6fc3c4ba6821b6ab1cd31164251b02" 41 | }, 42 | { 43 | "name": "org.dita.pdf2.fop", 44 | "description": "PDF output extended for rendering with Apache FOP", 45 | "keywords": [ 46 | "FOP", 47 | "default", 48 | "PDF" 49 | ], 50 | "homepage": "https://github.com/dita-ot/dita-ot/", 51 | "vers": "3.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.3.0" 57 | } 58 | ], 59 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.pdf2.fop-3.3.0.zip", 60 | "cksum": "32a966ed8a28a3328f263f562e6796c4f78fd7a961b002a1d2aeaba0092a6249" 61 | }, 62 | { 63 | "name": "org.dita.pdf2.fop", 64 | "description": "PDF output extended for rendering with Apache FOP", 65 | "keywords": [ 66 | "FOP", 67 | "default", 68 | "PDF" 69 | ], 70 | "homepage": "https://github.com/dita-ot/dita-ot/", 71 | "vers": "3.3.3", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.3" 77 | } 78 | ], 79 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.pdf2.fop-3.3.3.zip", 80 | "cksum": "cb6544ff1acf3787f1427530326c488ef17efe269ab22a09c725c9dc6db3306d" 81 | }, 82 | { 83 | "name": "org.dita.pdf2.fop", 84 | "description": "PDF output extended for rendering with Apache FOP", 85 | "keywords": [ 86 | "FOP", 87 | "default", 88 | "PDF" 89 | ], 90 | "homepage": "https://github.com/dita-ot/dita-ot/", 91 | "vers": "3.3.4", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.3" 97 | } 98 | ], 99 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.pdf2.fop-3.3.4.zip", 100 | "cksum": "50b4657a8a49552266a761d9543b280c908a9603ea24d8efe4095ae3fa1056a6" 101 | } 102 | ] -------------------------------------------------------------------------------- /org.dita.pdf2.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.pdf2", 4 | "description": "Generates output in Portable Document Format", 5 | "keywords": [ 6 | "PDF", 7 | "default" 8 | ], 9 | "homepage": "https://github.com/dita-ot/dita-ot/", 10 | "vers": "3.2.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.2.0" 16 | } 17 | ], 18 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.pdf2-3.2.zip", 19 | "cksum": "447a2f6bf127282cd0d554e57f643156e54d0981693231af5768e774289fa3ae" 20 | }, 21 | { 22 | "name": "org.dita.pdf2", 23 | "description": "Generates output in Portable Document Format", 24 | "keywords": [ 25 | "PDF", 26 | "default" 27 | ], 28 | "homepage": "https://github.com/dita-ot/dita-ot/", 29 | "vers": "3.2.1", 30 | "license": "Apache-2.0", 31 | "deps": [ 32 | { 33 | "name": "org.dita.base", 34 | "req": ">=3.2.0" 35 | } 36 | ], 37 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.pdf2-3.2.1.zip", 38 | "cksum": "48899be6391f7d1478fbae5b04c8496da921e134b6cd3e23e1b85ff9386c2ae7" 39 | }, 40 | { 41 | "name": "org.dita.pdf2", 42 | "description": "Generates output in Portable Document Format", 43 | "keywords": [ 44 | "PDF", 45 | "default" 46 | ], 47 | "homepage": "https://github.com/dita-ot/dita-ot/", 48 | "vers": "3.3.0", 49 | "license": "Apache-2.0", 50 | "deps": [ 51 | { 52 | "name": "org.dita.base", 53 | "req": ">=3.3.0" 54 | } 55 | ], 56 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.pdf2-3.3.0.zip", 57 | "cksum": "0b0723ce0b9921f897cc6e802a0a01ab449840f45f9c4d0ab8ef3df286efc349" 58 | }, 59 | { 60 | "name": "org.dita.pdf2", 61 | "description": "Generates output in Portable Document Format", 62 | "keywords": [ 63 | "PDF", 64 | "default" 65 | ], 66 | "homepage": "https://github.com/dita-ot/dita-ot/", 67 | "vers": "3.3.3", 68 | "license": "Apache-2.0", 69 | "deps": [ 70 | { 71 | "name": "org.dita.base", 72 | "req": ">=3.3" 73 | } 74 | ], 75 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.pdf2-3.3.3.zip", 76 | "cksum": "c9f799e750d397e267ee1536ce806323334f8bd510eeca01ce26d01441a1abac" 77 | }, 78 | { 79 | "name": "org.dita.pdf2", 80 | "description": "Generates output in Portable Document Format", 81 | "keywords": [ 82 | "PDF", 83 | "default" 84 | ], 85 | "homepage": "https://github.com/dita-ot/dita-ot/", 86 | "vers": "3.3.4", 87 | "license": "Apache-2.0", 88 | "deps": [ 89 | { 90 | "name": "org.dita.base", 91 | "req": ">=3.3" 92 | } 93 | ], 94 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.pdf2-3.3.4.zip", 95 | "cksum": "ef8b8984dc1f491d34aaea8f949e8a3923b1d98111defb1d7fb061d30e950e8e" 96 | } 97 | ] -------------------------------------------------------------------------------- /org.dita.pdf2.legacy.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.pdf2.legacy", 4 | "description": "DITA-OT plug-in to configure PDF2 legacy layout that was the default in DITA-OT before 2.5.", 5 | "keywords": ["PDF", "legacy"], 6 | "homepage": "https://github.com/dita-ot/org.dita.pdf2.legacy/", 7 | "vers": "2.5.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.5.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.pdf2.legacy/archive/2.5.zip", 16 | "cksum": "a192e6112e5c1e2013a5b57b20867de9e42d148a6fdcbe2652debd127b36c9b4" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.pdf2.xep.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.pdf2.xep", 4 | "description": "PDF output extended for rendering with RenderX XEP", 5 | "keywords": [ 6 | "PDF", 7 | "default", 8 | "RenderX", 9 | "XEP" 10 | ], 11 | "homepage": "https://github.com/dita-ot/dita-ot/", 12 | "vers": "3.2.0", 13 | "license": "Apache-2.0", 14 | "deps": [ 15 | { 16 | "name": "org.dita.base", 17 | "req": ">=3.2.0" 18 | } 19 | ], 20 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.pdf2.xep-3.2.zip", 21 | "cksum": "f826150ea2de3df6f1096f6c4f21f28c9c745d3a90398caa60370d3d44a4841b" 22 | }, 23 | { 24 | "name": "org.dita.pdf2.xep", 25 | "description": "PDF output extended for rendering with RenderX XEP", 26 | "keywords": [ 27 | "PDF", 28 | "default", 29 | "RenderX", 30 | "XEP" 31 | ], 32 | "homepage": "https://github.com/dita-ot/dita-ot/", 33 | "vers": "3.2.1", 34 | "license": "Apache-2.0", 35 | "deps": [ 36 | { 37 | "name": "org.dita.base", 38 | "req": ">=3.2.0" 39 | } 40 | ], 41 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.pdf2.xep-3.2.1.zip", 42 | "cksum": "26223b0d3af03a43a6ab5a8cf17888f0af92343bfd1082ddd47669fb5b7c84c9" 43 | }, 44 | { 45 | "name": "org.dita.pdf2.xep", 46 | "description": "PDF output extended for rendering with RenderX XEP", 47 | "keywords": [ 48 | "PDF", 49 | "default", 50 | "RenderX", 51 | "XEP" 52 | ], 53 | "homepage": "https://github.com/dita-ot/dita-ot/", 54 | "vers": "3.3.0", 55 | "license": "Apache-2.0", 56 | "deps": [ 57 | { 58 | "name": "org.dita.base", 59 | "req": ">=3.3.0" 60 | } 61 | ], 62 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.pdf2.xep-3.3.0.zip", 63 | "cksum": "c1130a790f1d1bcfb12e6f09acfdda4bec85009a8fae56e85e8e75706d160727" 64 | }, 65 | { 66 | "name": "org.dita.pdf2.xep", 67 | "description": "PDF output extended for rendering with RenderX XEP", 68 | "keywords": [ 69 | "PDF", 70 | "default", 71 | "RenderX", 72 | "XEP" 73 | ], 74 | "homepage": "https://github.com/dita-ot/dita-ot/", 75 | "vers": "3.3.3", 76 | "license": "Apache-2.0", 77 | "deps": [ 78 | { 79 | "name": "org.dita.base", 80 | "req": ">=3.3" 81 | } 82 | ], 83 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.pdf2.xep-3.3.3.zip", 84 | "cksum": "a7f646f0bfe6450ffbf7021c43d12145a7931a5ae18717b4cdf69e0545ce053c" 85 | }, 86 | { 87 | "name": "org.dita.pdf2.xep", 88 | "description": "PDF output extended for rendering with RenderX XEP", 89 | "keywords": [ 90 | "PDF", 91 | "default", 92 | "RenderX", 93 | "XEP" 94 | ], 95 | "homepage": "https://github.com/dita-ot/dita-ot/", 96 | "vers": "3.3.4", 97 | "license": "Apache-2.0", 98 | "deps": [ 99 | { 100 | "name": "org.dita.base", 101 | "req": ">=3.3" 102 | } 103 | ], 104 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.pdf2.xep-3.3.4.zip", 105 | "cksum": "1c98068548bfeec0258fbba1e531b7ebcba4f69899a50bc32bbd46bbaf4a8cb5" 106 | }, 107 | { 108 | "name": "org.dita.pdf2.xep", 109 | "description": "PDF output extended for rendering with RenderX XEP", 110 | "keywords": [ 111 | "PDF", 112 | "default", 113 | "RenderX", 114 | "XEP" 115 | ], 116 | "homepage": "https://github.com/dita-ot/org.dita.pdf2.xep", 117 | "vers": "3.6.1", 118 | "license": "Apache-2.0", 119 | "deps": [ 120 | { 121 | "name": "org.dita.base", 122 | "req": ">=3.6" 123 | } 124 | ], 125 | "url": "https://github.com/dita-ot/org.dita.pdf2.xep/releases/download/3.6.1/org.dita.pdf2.xep-3.6.1.zip", 126 | "cksum": "5a29f9c79459c04b7a6cc9ee4d5b67c9a6e46411f8243a14f81bf4110b05e485" 127 | }, 128 | { 129 | "name": "org.dita.pdf2.xep", 130 | "description": "PDF output extended for rendering with RenderX XEP", 131 | "keywords": [ 132 | "PDF", 133 | "default", 134 | "RenderX", 135 | "XEP" 136 | ], 137 | "homepage": "https://github.com/dita-ot/org.dita.pdf2.xep", 138 | "vers": "3.6.2", 139 | "license": "Apache-2.0", 140 | "deps": [ 141 | { 142 | "name": "org.dita.base", 143 | "req": ">=3.6" 144 | } 145 | ], 146 | "url": "https://github.com/dita-ot/org.dita.pdf2.xep/releases/download/3.6.2/org.dita.pdf2.xep-3.6.2.zip", 147 | "cksum": "9e365525f720fd69d5f3128f959e2bc922a6e79ad00d6bfc8302752e49f4365d" 148 | } 149 | ] -------------------------------------------------------------------------------- /org.dita.specialization.dita11.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.specialization.dita11", 4 | "description": "DITA 1.1 schema plug-in for DITA-OT.", 5 | "keywords": ["DITA", "OASIS", "default"], 6 | "homepage": "https://github.com/oasis-tcs/dita-lwdita/", 7 | "vers": "1.1.0", 8 | "license": "SEE LICENSE IN LICENSE", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.specialization.dita11/archive/1.1.1.zip", 16 | "cksum": "66ee347019e350955fd5f16119afff53cbbf795fcf76334cfd357291a111e5b6" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.specialization.dita132.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.specialization.dita132", 4 | "description": "IBM DITA schemas.", 5 | "homepage": "https://github.com/dita-ot/org.dita.specialization.dita132/", 6 | "vers": "1.1.4", 7 | "license": "Apache-2.0", 8 | "deps": [ 9 | { 10 | "name": "org.dita.base", 11 | "req": ">=1.6.3" 12 | } 13 | ], 14 | "url": "https://github.com/dita-ot/org.dita.specialization.dita132/archive/1.1.4.zip", 15 | "cksum": "94fe01a6375ba8ec5fdae9e95672ad6ccff594dc68f9b2fa12f3f982ecd7e25d" 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /org.dita.specialization.eclipsemap.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.specialization.eclipsemap", 4 | "description": "Eclipse DITA map specialization schemas.", 5 | "keywords": ["Eclipse"], 6 | "homepage": "https://github.com/dita-ot/org.dita.specialization.eclipsemap/", 7 | "vers": "2.3.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.specialization.eclipsemap/archive/2.3.zip", 16 | "cksum": "978ca2d85646ad09d9873cdcd06344c426857ab6ea9db38117dff16ddc9b7b38" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.troff.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.troff", 4 | "description": "The troff transformation produces output for use with the troff viewer on Unix-style platforms, particularly for programs such as the man page viewer.", 5 | "keywords": ["troff", "default"], 6 | "homepage": "https://github.com/dita-ot/org.dita.troff/", 7 | "vers": "3.1.1", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.1.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.troff/archive/3.1.1.zip", 16 | "cksum": "20ba674c505d38b9cfb315d9d327a07f021fb12a663ccdb75271241b92f04e1e" 17 | }, 18 | { 19 | "name": "org.dita.troff", 20 | "description": "The troff transformation produces output for use with the troff viewer on Unix-style platforms, particularly for programs such as the man page viewer.", 21 | "keywords": ["troff"], 22 | "homepage": "https://github.com/dita-ot/org.dita.troff/", 23 | "vers": "2.5.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=2.5.0" 29 | } 30 | ], 31 | "url": "https://github.com/dita-ot/org.dita.troff/archive/2.5.zip", 32 | "cksum": "11f341edd94ab4d291ade9869466ccd27472b6e63b683ba2ea1164ed7362b14c" 33 | } 34 | ] 35 | -------------------------------------------------------------------------------- /org.dita.wordrtf.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.wordrtf", 4 | "description": "The Word RTF transformation produces an RTF file for use by Microsoft Word.", 5 | "keywords": ["RTF"], 6 | "homepage": "https://github.com/dita-ot/org.dita.wordrtf/", 7 | "vers": "2.3.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.dita.wordrtf/archive/2.3.zip", 16 | "cksum": "8b7add96600e75c1a9b7eb5813c15d08a2498ecb2cd35fe487bb82ffa00bb846" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.dita.xhtml.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.dita.xhtml", 4 | "description": "XHTML output and a table of contents (TOC) file", 5 | "keywords": [ 6 | "HTML", 7 | "XHTML", 8 | "default" 9 | ], 10 | "homepage": "https://github.com/dita-ot/dita-ot/", 11 | "vers": "3.2.0", 12 | "license": "Apache-2.0", 13 | "deps": [ 14 | { 15 | "name": "org.dita.base", 16 | "req": ">=3.2.0" 17 | } 18 | ], 19 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2/org.dita.xhtml-3.2.zip", 20 | "cksum": "0e8ea2f6c5f1d4f03b092aec33ad3f1064deb18ca1557dfdb71615d3905f79bc" 21 | }, 22 | { 23 | "name": "org.dita.xhtml", 24 | "description": "XHTML output and a table of contents (TOC) file", 25 | "keywords": [ 26 | "HTML", 27 | "XHTML", 28 | "default" 29 | ], 30 | "homepage": "https://github.com/dita-ot/dita-ot/", 31 | "vers": "3.2.1", 32 | "license": "Apache-2.0", 33 | "deps": [ 34 | { 35 | "name": "org.dita.base", 36 | "req": ">=3.2.0" 37 | } 38 | ], 39 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.2.1/org.dita.xhtml-3.2.1.zip", 40 | "cksum": "2ef7574a3b2585e9a8ac5a4b18e1215d027ffd1ae4517214bf16284beed482d5" 41 | }, 42 | { 43 | "name": "org.dita.xhtml", 44 | "description": "XHTML output and a table of contents (TOC) file", 45 | "keywords": [ 46 | "HTML", 47 | "XHTML", 48 | "default" 49 | ], 50 | "homepage": "https://github.com/dita-ot/dita-ot/", 51 | "vers": "3.3.0", 52 | "license": "Apache-2.0", 53 | "deps": [ 54 | { 55 | "name": "org.dita.base", 56 | "req": ">=3.3.0" 57 | } 58 | ], 59 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3/org.dita.xhtml-3.3.0.zip", 60 | "cksum": "a34d1d8ade1b5650e20c94759dc3162ce2903c09b4fab3e54107840e8895dfa3" 61 | }, 62 | { 63 | "name": "org.dita.xhtml", 64 | "description": "XHTML output and a table of contents (TOC) file", 65 | "keywords": [ 66 | "HTML", 67 | "XHTML", 68 | "default" 69 | ], 70 | "homepage": "https://github.com/dita-ot/dita-ot/", 71 | "vers": "3.3.3", 72 | "license": "Apache-2.0", 73 | "deps": [ 74 | { 75 | "name": "org.dita.base", 76 | "req": ">=3.3" 77 | } 78 | ], 79 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.3/org.dita.xhtml-3.3.3.zip", 80 | "cksum": "9859faf6988eef4d3cfc9bed4d8442933f5e02dc6c8c376aead60534f23fcabf" 81 | }, 82 | { 83 | "name": "org.dita.xhtml", 84 | "description": "XHTML output and a table of contents (TOC) file", 85 | "keywords": [ 86 | "HTML", 87 | "XHTML", 88 | "default" 89 | ], 90 | "homepage": "https://github.com/dita-ot/dita-ot/", 91 | "vers": "3.3.4", 92 | "license": "Apache-2.0", 93 | "deps": [ 94 | { 95 | "name": "org.dita.base", 96 | "req": ">=3.3" 97 | } 98 | ], 99 | "url": "https://github.com/dita-ot/dita-ot/releases/download/3.3.4/org.dita.xhtml-3.3.4.zip", 100 | "cksum": "af28d0d7a5d24f34d70aaac1f633b4c4b02b0be959ec76b58f0eea263606bd4d" 101 | } 102 | ] -------------------------------------------------------------------------------- /org.doctales.ant-contrib.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.doctales.ant-contrib", 4 | "description": "Utility plugin which provides the ant-contrib library.", 5 | "keywords": ["Ant"], 6 | "homepage": "https://github.com/doctales/org.doctales.ant-contrib/", 7 | "vers": "1.0.0-beta3", 8 | "license": "Apache-1.1", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=1.0.0" 13 | } 14 | ], 15 | "url": "https://github.com/doctales/org.doctales.ant-contrib/archive/1.0.beta3.zip", 16 | "cksum": "cbfeafdbb2edd7d1d349cfd1cfcf8f6b66a7fb88808e159ff5a3cec233a17949" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.doctales.schematron.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.doctales.schematron", 4 | "description": "Adds Schematron validation support to the DITA-OT.", 5 | "keywords": ["Schematron"], 6 | "homepage": "https://github.com/doctales/org.doctales.schematron/", 7 | "vers": "0.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/doctales/org.doctales.schematron/archive/0.1.zip", 16 | "cksum": "47038392f4a7d81e0e6ba27876c16d2f67318f386ea032f220a041abeb9ffe4c" 17 | }, 18 | { 19 | "name": "org.doctales.schematron", 20 | "description": "Adds Schematron validation support to the DITA-OT.", 21 | "keywords": ["Schematron"], 22 | "homepage": "https://github.com/doctales/org.doctales.schematron/", 23 | "vers": "0.2.0", 24 | "license": "Apache-2.0", 25 | "deps": [ 26 | { 27 | "name": "org.dita.base", 28 | "req": ">=3.0.0" 29 | } 30 | ], 31 | "url": "https://github.com/doctales/org.doctales.schematron/archive/0.2.zip", 32 | "cksum": "c389fe83cc84bcbc103b193e3ee0abcc67b0425d319bd402f05f4c0b800e490e" 33 | }, 34 | { 35 | "name": "org.doctales.schematron", 36 | "description": "Adds Schematron validation support to the DITA-OT.", 37 | "keywords": ["Schematron"], 38 | "homepage": "https://github.com/doctales/org.doctales.schematron/", 39 | "vers": "0.3.0", 40 | "license": "Apache-2.0", 41 | "deps": [ 42 | { 43 | "name": "org.dita.base", 44 | "req": ">=3.0.0" 45 | } 46 | ], 47 | "url": "https://github.com/doctales/org.doctales.schematron/archive/0.3.zip", 48 | "cksum": "bc47ec0eaf9d7fc36ee16ff3e64d055790209a77fbd83ceee3ed2a060216e3e6" 49 | }, 50 | { 51 | "name": "org.doctales.schematron", 52 | "description": "Adds Schematron validation support to the DITA-OT.", 53 | "keywords": ["Schematron"], 54 | "homepage": "https://github.com/doctales/org.doctales.schematron/", 55 | "vers": "0.4.0", 56 | "license": "Apache-2.0", 57 | "deps": [ 58 | { 59 | "name": "org.dita.base", 60 | "req": ">=3.0.0" 61 | } 62 | ], 63 | "url": "https://github.com/doctales/org.doctales.schematron/archive/0.4.zip", 64 | "cksum": "efefc81a7ea270f59002c853e6572a51bc518f45e8e03c2fa660b4867c643f4e" 65 | } 66 | ] 67 | -------------------------------------------------------------------------------- /org.doctales.terminology.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.doctales.terminology", 4 | "description": "DITA-OT plugin for managing terminology with DITA.", 5 | "keywords": ["Terminology"], 6 | "homepage": "https://github.com/doctales/org.doctales.terminology/", 7 | "vers": "1.1.5", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/doctales/org.doctales.terminology/archive/1.1.5.zip", 16 | "cksum": "e70d807f503024e47dba6843bbc9d41edde1e0553d7c8df1ccc9fd7f2fc071bb" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.iirds.dita.package.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.iirds.dita.package", 4 | "description": "Generates iiRDS packages with HTML content", 5 | "keywords": [ 6 | "iiRDS", 7 | "intelligent information Request and Delivery Standard" 8 | ], 9 | "homepage": "https://www.iirds.org/tools/dita-plugin/", 10 | "vers": "1.0.0", 11 | "license": "Apache-2.0", 12 | "deps": [ 13 | { 14 | "name": "org.dita.base", 15 | "req": ">=3.7.3" 16 | }, 17 | { 18 | "name": "org.dita.html5", 19 | "req": ">=3.7.3" 20 | } 21 | 22 | ], 23 | "url": "https://www.iirds.org/fileadmin/downloads/DITA/org.iirds.dita.package-1.0.0.zip", 24 | "cksum": "567574EE8BBF7471511BBCC3E73940477D9BD914ECA0FE0E39F8651E5CDD7938" 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /org.jung.graal.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.jung.graal", 4 | "description": "Utility plugin which provides the Graal VM. The Graal VM is needed to execute JavaScript in Apache Ant.", 5 | "keywords": ["Ant"], 6 | "homepage": "https://github.com/stefan-jung/org.jung.graal/", 7 | "vers": "23.0.2", 8 | "license": "GPL2", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=1.0.0" 13 | } 14 | ], 15 | "url": "https://github.com/stefan-jung/org.jung.graal/archive/refs/tags/23.0.2.zip", 16 | "cksum": "129b1b6c37d3377c787477f5fe712c39a0aa7441649512805cc54a59c140b6ea" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.jung.release-notes.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.jung.release-notes", 4 | "description": "DITA-OT plugin for generating release notes from DITA topics.", 5 | "keywords": ["Release Notes"], 6 | "homepage": "https://github.com/stefan-jung/org.jung.release-notes/", 7 | "vers": "1.1.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/stefan-jung/org.jung.release-notes/archive/refs/tags/1.2.zip", 16 | "cksum": "41EF0A804F576B0D93D6C55CC929B08E01A4C672BE26742E125A4613347E86A4" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.jung.reveal.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.jung.reveal", 4 | "description": "DITA-OT plugin for transforming DITA to reveal.js based web presentations.", 5 | "keywords": ["reveal.js"], 6 | "homepage": "https://github.com/stefan-jung/org.jung.reveal/", 7 | "vers": "4.5.0", 8 | "license": "Apache-2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.0.0" 13 | } 14 | ], 15 | "url": "https://github.com/stefan-jung/org.jung.reveal/archive/refs/tags/4.5.0.zip", 16 | "cksum": "CFC61E3C6E5F80B656B26AA329804E408945F7462B79C22990BBDBDAD470C3DA" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.jung.xmltask.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.jung.xmltask", 4 | "description": "Utility plugin which provides the OOPS Consultancy xmltask library.", 5 | "keywords": ["Ant"], 6 | "homepage": "https://github.com/stefan-jung/org.jung.xmltask/", 7 | "vers": "1.16.1", 8 | "license": "Apache-1.1", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=2.3.0" 13 | } 14 | ], 15 | "url": "https://github.com/stefan-jung/org.jung.xmltask/archive/1.16.1.zip", 16 | "cksum": "97B632928B74C37C6B55A45D9D26A636FFB355371286A66DE54923FEA134F866" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.metadita.deprecated.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.metadita.deprecated", 4 | "description": "Report markup deprecated for DITA 2.0", 5 | "keywords": ["deprecated", "validation", "OASIS"], 6 | "homepage": "https://github.com/robander/deprecated-dita/", 7 | "vers": "1.0.0", 8 | "license": "Apache 2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.0.3" 13 | } 14 | ], 15 | "url": "https://github.com/robander/deprecated-dita/releases/download/1.0/org.metadita.deprecated-1.0.zip", 16 | "cksum": "5C2119D4360B234CE91F4AC7739313BCB4104E1AF12EE2542831BCC02B515B72" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.metadita.morse.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.metadita.morse", 4 | "description": "Morse code output (simple transtype demo)", 5 | "keywords": ["Morse code"], 6 | "homepage": "https://github.com/robander/metadita.tutorial.plugins/tree/master/org.metadita.morse", 7 | "vers": "1.1.0", 8 | "license": "Apache 2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.1.0" 13 | } 14 | ], 15 | "url": "https://github.com/robander/metadita.tutorial.plugins/releases/download/v1.1/org.metadita.morse.zip", 16 | "cksum": "C084B99B53ECFC83B75C8545ADCD39F69169EC3D73424AF70869C5DF88EA85E6" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.metadita.pdf.examplelist.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.metadita.pdf.examplelist", 4 | "description": "Generate list of examples in PDF front matter", 5 | "keywords": ["examplelist", "pdf", "pdf2"], 6 | "homepage": "https://github.com/robander/org.metadita.pdf.examplelist/", 7 | "vers": "1.0.0", 8 | "license": "Apache 2.0", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.3.1" 13 | } 14 | ], 15 | "url": "https://github.com/robander/org.metadita.pdf.examplelist/releases/download/v1.0/org.metadita.pdf.examplelist.zip", 16 | "cksum": "756E6755DBE5A444FDED9128E436550F262D64A09C692FA0A282036370D4B658" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.oasis-open.dita.techcomm.v2_0.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.oasis-open.dita.techcomm.v2_0", 4 | "description": "DITA 2.0 Technical Communication grammar plug-in for DITA-OT.", 5 | "keywords": ["DITA", "OASIS", "beta"], 6 | "homepage": "https://github.com/oasis-tcs/dita-techcomm/", 7 | "vers": "2.0.0-20211007", 8 | "license": "SEE LICENSE IN https://github.com/oasis-tcs/dita-techcomm/blob/DITA-2.0/LICENSE.md", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.0.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/dita-techcomm/releases/download/2.0.0-20211007/org.oasis-open.dita.techcomm.v2_0.zip", 16 | "cksum": "493c81c912c85e745d66cc2c76429234b2102050c1f663eb108a224d6feead9b" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.oasis-open.dita.v1_2.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.oasis-open.dita.v1_2", 4 | "description": "DITA 1.2 schema plug-in for DITA-OT.", 5 | "keywords": ["DITA", "OASIS", "default"], 6 | "homepage": "https://github.com/oasis-tcs/dita-lwdita/", 7 | "vers": "1.2.0", 8 | "license": "SEE LICENSE IN LICENSE", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.4.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/org.oasis-open.dita.v1_2/archive/1.2.1.zip", 16 | "cksum": "12b903cadc0b2b9660948d4ae1b8da3367e57533e8c56f0a0c2a321ea4243142" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.oasis-open.dita.v2_0.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.oasis-open.dita.v2_0", 4 | "description": "DITA 2.0 base grammar plug-in for DITA-OT.", 5 | "keywords": ["DITA", "OASIS", "beta"], 6 | "homepage": "https://github.com/oasis-tcs/dita/", 7 | "vers": "2.0.0-20211007", 8 | "license": "SEE LICENSE IN https://github.com/oasis-tcs/dita/blob/master/LICENSE.md", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.0.0" 13 | } 14 | ], 15 | "url": "https://github.com/dita-ot/dita/releases/download/2.0.0-20211007/org.oasis-open.dita.v2_0.zip", 16 | "cksum": "83a7ef733de9f86fc2988471af040583cba672a7fd3033e577209d89074c2990" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /org.oasis-open.xdita.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "org.oasis-open.xdita", 4 | "description": "Lightweight DITA XDITA DTD support and samples.", 5 | "keywords": ["XDITA", "OASIS", "default"], 6 | "homepage": "https://github.com/oasis-tcs/dita-lwdita/", 7 | "vers": "0.2.2", 8 | "license": "SEE LICENSE IN license.txt", 9 | "deps": [ 10 | { 11 | "name": "org.dita.base", 12 | "req": ">=3.1.0" 13 | } 14 | ], 15 | "url": "https://github.com/oasis-tcs/dita-lwdita/releases/download/v0.2.2/org.oasis-open.xdita.v0_2_2.zip", 16 | "cksum": "D8E1CE9A3C6B5B98AC3775BF3DBD212ED0C53AD53A49C31FBD3DA5992DD6B702" 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /pdf.json: -------------------------------------------------------------------------------- 1 | { 2 | "alias": "org.dita.pdf2" 3 | } 4 | -------------------------------------------------------------------------------- /pdf2.json: -------------------------------------------------------------------------------- 1 | { 2 | "alias": "org.dita.pdf2" 3 | } 4 | -------------------------------------------------------------------------------- /troff.json: -------------------------------------------------------------------------------- 1 | { 2 | "alias": "org.dita.troff" 3 | } 4 | --------------------------------------------------------------------------------