Skip to content

Commit

Permalink
git subrepo pull utils/build-utils
Browse files Browse the repository at this point in the history
subrepo:
  subdir:   "utils/build-utils"
  merged:   "6ad14de89f"
upstream:
  origin:   "[email protected]:daisy/pipeline-build-utils.git"
  branch:   "master"
  commit:   "1a94a0e431"
git-subrepo:
  version:  "0.3.1"
  origin:   "???"
  commit:   "???"
  • Loading branch information
bertfrees committed Oct 17, 2023
1 parent 7209f2e commit 148fead
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion utils/build-utils/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
remote = [email protected]:daisy/pipeline-build-utils.git
branch = master
commit = 1a94a0e4313ffa28292b66a78d19aa0f817c75d3
parent = 215163678ec2e2d13abcecb7d0a9342143400098
parent = cb705a340b12641693b3c383f20b19f08a6f8f5b
cmdver = 0.3.1
2 changes: 1 addition & 1 deletion utils/build-utils/modules-build-helper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>org.daisy.pipeline.build</groupId>
<artifactId>modules-build-helper</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>2.7.2-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>DAISY Pipeline 2 :: Modules Build Helper</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:pf="http://www.daisy.org/ns/pipeline/functions"
xmlns:cat="urn:oasis:names:tc:entity:xmlns:xml:catalog"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
xmlns:px="http://www.daisy.org/ns/pipeline"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="#all"
Expand Down Expand Up @@ -77,6 +78,10 @@
</xsl:if>
</xsl:template>

<xsl:template mode="serialize" match="a:documentation[not(@xml:space='preserve')]/text()">
<xsl:value-of select="normalize-space(.)"/>
</xsl:template>

<xsl:template mode="attribute-value" match="cat:uri/@name">
<a href="../{parent::*/@uri}" class="apidoc">
<span rel="alias" resource="{.}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
xmlns:px="http://www.daisy.org/ns/pipeline"
xmlns:pxd="http://www.daisy.org/ns/pipeline/xproc"
xmlns:cat="urn:oasis:names:tc:entity:xmlns:xml:catalog"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
exclude-result-prefixes="#all"
version="2.0">

Expand Down Expand Up @@ -95,6 +96,11 @@
</xsl:choose>
</xsl:template>

<xsl:template mode="serialize"
match="/*/p:option/p:pipeinfo/pxd:type//a:documentation[not(@xml:space='preserve')]/text()">
<xsl:value-of select="normalize-space(.)"/>
</xsl:template>

<xsl:template name="set-rel">
<xsl:param name="rel" required="yes"/>
<span rel="{$rel}">
Expand Down
6 changes: 1 addition & 5 deletions utils/build-utils/modules-test-helper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>org.daisy.pipeline.build</groupId>
<artifactId>modules-test-helper</artifactId>
<version>2.2.3</version>
<version>2.2.4-SNAPSHOT</version>
<packaging>bundle</packaging>

<name>DAISY Pipeline 2 :: Modules Test Helper</name>
Expand Down Expand Up @@ -134,8 +134,4 @@
</plugin>
</plugins>
</build>

<scm>
<tag>modules-test-helper-2.2.3</tag>
</scm>
</project>

0 comments on commit 148fead

Please sign in to comment.