XSLT 1.0 Stylesheets for DocBook
Find a file
Tom Schraitle efd62655c1 Fix #254: Pass structure/@xml:lang to result doc
Pass xml:lang attribute on <structure> (without @resourceref)
to the root element of the result document.

Without this fix, an author cannot set the language of
the result document.
2023-06-30 11:17:21 -07:00
.travis Updated travis scripts to publish snapshots 2019-10-03 09:34:15 -05:00
anttools Make error spotting easier for us who do not perceive big difference between red and green 2010-07-06 14:43:19 +00:00
buildtools Norm's Dockerfile used to build the release locally 2019-10-03 09:33:59 -05:00
contrib Fix http://cdn... to https://cdn... 2019-10-03 15:45:25 -05:00
gentext Implement and activate Nothern Sami (se) locale 2021-07-30 08:58:38 -07:00
imageco Clean up build and revision control logic. 2016-05-22 17:36:12 -04:00
jrefentry Clean up build and revision control logic. 2016-05-22 17:36:12 -04:00
litprog Fix http://cdn... to https://cdn... 2019-10-03 15:45:25 -05:00
maven Bump Lucene version to avoid remote code execution exploit 2018-10-31 20:59:53 -05:00
releasetools Merge pull request #160 from ndw/https-cdn 2019-10-05 08:45:16 -05:00
slides Merge pull request #7 from ndw/fixlicense 2016-05-23 14:19:08 -04:00
testdocs Fix http://cdn... to https://cdn... 2019-10-03 15:45:25 -05:00
website Merge pull request #7 from ndw/fixlicense 2016-05-23 14:19:08 -04:00
xsl Fix #254: Pass structure/@xml:lang to result doc 2023-06-30 11:17:21 -07:00
xsl-libxslt/python Clean up build and revision control logic. 2016-05-22 17:36:12 -04:00
xsl-saxon Fix http://cdn... to https://cdn... 2019-10-03 15:45:25 -05:00
xsl-webhelpindexer Clean up build and revision control logic. 2016-05-22 17:36:12 -04:00
xsl-xalan Merge pull request #7 from ndw/fixlicense 2016-05-23 14:19:08 -04:00
.gitignore Convert svn:ignore properties to .gitignore. 2015-09-16 17:29:33 -04:00
.travis.yml Updated travis scripts to publish snapshots 2019-10-03 09:34:15 -05:00
building.md Fix typo. 2018-06-09 09:03:10 -07:00
Makefile Report and use release version. 2016-12-09 17:37:17 -05:00
README.md add instructions for keeping fork in synch with main 2019-11-04 10:28:07 -08:00
SVN2GIT Initial checkin 2015-09-20 18:16:36 +01:00

DocBook XSLT 1.0 Stylesheets

Build Status

This repository contains the DocBook XSLT 1.0 Stylesheets, now migrated away from SourceForge.

There are still some rough edges here as the build system and various other things are being ported.

Nevertheless, this is now the intended repository of record.

The latest stable release is available at https://github.com/docbook/xslt10-stylesheets/releases/download/release/1.79.2/docbook-xsl-1.79.2.zip

For build instructions please refer to the DocBook XSL Release Build Process.

Working in this repo

Here is the procedure for making changes to this repo.

Initial setup

  1. Create your own fork. Go to https://github.com/docbook/xslt10-stylesheets and click on the Fork button to create your own fork.

  2. Clone your fork to your local filesystem.

  3. In your clone of the repo, set up the remote:

git remote add upstream https://github.com/docbook/xslt10-stylesheets
git remote -v

Repo procedure

  1. In your local fork, update your fork from the main repo (upstream): git fetch upstream

  2. Make sure you are on your master branch: git checkout master

  3. Merge upstream into your local fork: git rebase upstream/master

  4. Push these changes to your github fork to put that fork in synch with the main repo: git push origin master

  5. Create a branch: git checkout -b bugfix_branch

  6. Make your changes on this branch, and compare your changes using git diff.

  7. Commit the changes:

git add filename
git commit -m "message"
  1. Push your commits: git push -u origin bugfix_branch

  2. On github, go to your fork or the main repo and create a new pull request, adding a comment and hitting submit.

  3. The github repo will run the check routine which takes about 10 minutes. When complete, you can Merge to docbook.

  4. The repo will rebuild the stock snapshot, which after about ten minutes you can view at: https://cdn.docbook.org/release/xsl/snapshot

  5. To immediately resynch your fork and delete the branch:

git checkout master
git fetch upstream
git rebase upstream/master
git push
git branch -d bugfix_branch

Creating snapshot zip files

  1. Create a tag like this: git tag -m "Snapshot release" snapshot/2019-10-01

  2. Push the tag: git push -u upstream snapshot/2019-10-01

  3. This will trigger the build of the zip files, which will eventually appear in https://github.com/docbook/xslt10-stylesheets/releases