Changeset da28cc3


Ignore:
Timestamp:
02/26/11 21:23:17 (2 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
('master', '5ea4e55860c61746fb61f12cd3c83d270ee17451')('clfs-1.2', '0d1a577466382847256b44170acecbd2e8cdc0c5')('simp', '271d1f963630b9cb390baf1ee2d8bdfe7d14e340')('systemd', 'ec008670fee2dc8086a6ce805d4831378d59895d')
Children:
ec008670fee2dc8086a6ce805d4831378d59895dfe990042841c98c26355c5432f2cc6831631fd36eef46e9fe86bfd88455fdbc22d0d5b1116dc6729
Parents:
879785b301d55636dce86b7a66bc8b96cd74ede3
git-author:
Joe Ciccone <jciccone@gmail.com>2011-02-26 16:23:17-05:00
git-committer:
Joe Ciccone <jciccone@gmail.com>2011-02-26 16:23:17-05:00
Message:

Validate the book against relax-ng instead of the
standard DTD.

Location:
BOOK
Files:
12 added
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/Makefile

    r879785b rda28cc3  
    6464        @echo "Validating $(arch) book..." 
    6565        $(Q)mkdir -p $(VALIDATEDIR) 
    66         $(Q)xmllint --nonet --noent --xinclude --postvalid \ 
     66        $(Q)xmllint --nonet --noent --xinclude \ 
     67          --relaxng $(TOP)/schema/docbook/4.5/rng/docbook.rng \ 
    6768          -o $(VALIDATEDIR)/$(arch)-full.xml \ 
    6869          $(PWD)/$(arch)-index.xml 
     
    153154$(ARCHS_VALIDATE): 
    154155        @echo "Validating $(arch)..." 
    155         $(Q)xmllint --xinclude --noout \ 
    156           --nonet --postvalid \ 
     156        $(Q)xmllint --xinclude --noout --nonet \ 
     157          --relaxng $(TOP)/schema/docbook/4.5/rng/docbook.rng \ 
    157158          $(PWD)/$(arch)-index.xml 
    158159 
     
    164165        @echo "Troubleshooting $(arch)..." 
    165166        @mkdir -p $(TROUBLEDIR) 
    166         $(Q)xmllint --xinclude --nonet --postvalid \ 
     167        $(Q)xmllint --xinclude --nonet \ 
     168          --relaxng $(TOP)/schema/docbook/4.5/rng/docbook.rng \ 
    167169          -o $(TROUBLEDIR)/dump-$(arch) \ 
    168170          $(PWD)/$(arch)-index.xml 
    169         $(Q)xmllint --xinclude --noout --nonet --valid \ 
     171        $(Q)xmllint --xinclude --noout --nonet \ 
     172          --relaxng $(TOP)/schema/docbook/4.5/rng/docbook.rng \ 
    170173          $(TROUBLEDIR)/dump-$(arch) 
    171174        @echo "You can now look at $(TROUBLEDIR)/dump-$(arch) to see the errors" 
Note: See TracChangeset for help on using the changeset viewer.