Accepting request 830238 from home:MMuschner:branches:Publishing
- Fix XML catalog to allow both www.docbook.org and docbook.org as URIs.- Changes in version 5.2b10a2 - Added a transform attribute to the resource element (as an alternative to grammar). - Removed the grammar attribute from output. - Added a danger admonition. - Added a legalsection sectioning element. Allow legalsection in legalnotice. - Added an otherclass attribute to article as an alternative to the enumerated class values. - Added a formalgroup element to contain several formal objects (for example, subfigures in a figure). - Relaxed the content model of abstract to include non-paragraph block elements. - Added multimediaparams to imagedata. - Added a buildtarget inline. - Allow funcdef to contain an explicit void. - Allow paramdef to contain modifiers. - Allow fieldsynopsis, methodsynopsis, and methodparam to contain more than one type. - Extended the content model of type so that it can represent union and intersection types. Added a class attribute to type. - Allow numbered sections (sect1, sect2, etc.) to contain refentry. - Added interface to the enumerated values in the class attribute of systemitem.- OBS-URL: https://build.opensuse.org/request/show/830238 OBS-URL: https://build.opensuse.org/package/show/Publishing/docbook_5?expand=0&rev=27
This commit is contained in:
24
Makefile
24
Makefile
@@ -11,8 +11,8 @@ endif
|
||||
|
||||
SHELL := /bin/bash
|
||||
PACKAGE := docbook_5
|
||||
VERSION := 5.1
|
||||
DB_VERSIONS := 5.0 5.1
|
||||
VERSION := 5.2b10a2
|
||||
DB_VERSIONS := 5.0 5.1 5.2b10a2
|
||||
LAST_VER := $(lastword $(DB_VERSIONS))
|
||||
CDIR := $(shell pwd)
|
||||
#
|
||||
@@ -101,6 +101,10 @@ $(RNG_PATH)/5.0/%: docbook-5.0/rng/% | $(DB_RNG_PATHS)
|
||||
$(RNG_PATH)/5.1/%: docbook-5.1/rng/% | $(DB_RNG_PATHS)
|
||||
@echo "### Installing RNG 5.1 $<"
|
||||
install -m644 $< $@
|
||||
|
||||
$(RNG_PATH)/5.2b10a2/%: docbook-$(LAST_VER)/rng/% | $(DB_RNG_PATHS)
|
||||
@echo "### Installing RNG 5.2b10a2 $<"
|
||||
install -m644 $< $@
|
||||
|
||||
$(SCH_PATH)/5.0/%: docbook-5.0/sch/% | $(DB_SCH_PATHS)
|
||||
@echo "### Installing Schematron 5.0 $<"
|
||||
@@ -108,6 +112,10 @@ $(SCH_PATH)/5.0/%: docbook-5.0/sch/% | $(DB_SCH_PATHS)
|
||||
$(SCH_PATH)/5.1/%: docbook-5.1/sch/% | $(DB_SCH_PATHS)
|
||||
@echo "### Installing Schematron 5.1 $<"
|
||||
install -m644 $< $@
|
||||
|
||||
$(SCH_PATH)/5.2b10a2/%: docbook-$(LAST_VER)/sch/%| $(DB_SCH_PATHS)
|
||||
@echo "### Installing Schematron 5.2b10a2 $<"
|
||||
install -m644 $< $@
|
||||
|
||||
$(NVDL_PATH)/5.0/%: docbook-5.0/% | $(DB_NVDL_PATHS)
|
||||
@echo "### Installing NVDL 5.0 $<"
|
||||
@@ -115,6 +123,10 @@ $(NVDL_PATH)/5.0/%: docbook-5.0/% | $(DB_NVDL_PATHS)
|
||||
$(NVDL_PATH)/5.1/%: docbook-5.1/% | $(DB_NVDL_PATHS)
|
||||
@echo "### Installing NVDL 5.1 $<"
|
||||
install -m644 $< $@
|
||||
|
||||
$(NVDL_PATH)/5.2b10a2/%: docbook-$(LAST_VER)/% | $(DB_NVDL_PATHS)
|
||||
@echo "### Installing NVDL 5.2b10a2 $<"
|
||||
install -m644 $< $@
|
||||
|
||||
define NVDL_LINK_tmpl =
|
||||
$(NVDL_PATH)/$(1)/docbook.$(3): $(2)/$(1)/docbook.$(3)
|
||||
@@ -129,16 +141,16 @@ $(DB_CATALOG): $(DB_CATALOG_SRC) | $(XML_CATALOG_DIR)
|
||||
@echo "### Installing XML Catalog..."
|
||||
install -m644 $< $@
|
||||
|
||||
|
||||
$(BINDIR)/db4-entities.pl: docbook-$(LAST_VER)/tools/db4-entities.pl | $(BINDIR)
|
||||
$(BINDIR)/db4-entities.pl: docbook-5.1/tools/db4-entities.pl | $(BINDIR)
|
||||
@echo "### Installing script db4-entities.pl"
|
||||
install -m755 $< $@
|
||||
|
||||
$(XSLT_PATH)/db4-upgrade.xsl: docbook-$(LAST_VER)/tools/db4-upgrade.xsl | $(XSLT_PATH)
|
||||
|
||||
$(XSLT_PATH)/db4-upgrade.xsl: docbook-5.1/tools/db4-upgrade.xsl | $(XSLT_PATH)
|
||||
@echo "### Installing upgrade stylesheet..."
|
||||
install -m644 $< $@
|
||||
|
||||
|
||||
|
||||
# create needed directories
|
||||
#
|
||||
$(INST_DIRECTORIES):
|
||||
|
Reference in New Issue
Block a user