forked from elasticsearch-cn/elasticsearch-definitive-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding callouts and updating oneoff files
- Loading branch information
vagrant
committed
Oct 23, 2014
1 parent
872b1b1
commit 736fdcc
Showing
24 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<xsl:stylesheet version="1.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:h="http://www.w3.org/1999/xhtml" | ||
xmlns="http://www.w3.org/1999/xhtml" | ||
exclude-result-prefixes="h"> | ||
|
||
<!-- Do add border div for figure images in animal series --> | ||
<xsl:param name="figure.border.div" select="1"/> | ||
|
||
<xsl:template name="string-replace-all"> | ||
<xsl:param name="text"/> | ||
<xsl:param name="replace"/> | ||
<xsl:param name="by"/> | ||
<xsl:choose> | ||
<xsl:when test="contains($text, $replace)"> | ||
<xsl:value-of select="substring-before($text,$replace)"/> | ||
<xsl:value-of select="$by"/> | ||
<xsl:call-template name="string-replace-all"> | ||
<xsl:with-param name="text" select="substring-after($text,$replace)"/> | ||
<xsl:with-param name="replace" select="$replace"/> | ||
<xsl:with-param name="by" select="$by"/> | ||
</xsl:call-template> | ||
</xsl:when> | ||
<xsl:otherwise> | ||
<xsl:value-of select="$text"/> | ||
</xsl:otherwise> | ||
</xsl:choose> | ||
</xsl:template> | ||
|
||
<xsl:template match="h:img/@src"> | ||
<xsl:choose> | ||
<xsl:when test="contains(., 'callouts/')"> | ||
<xsl:variable name="newtext"> | ||
<xsl:call-template name="string-replace-all"> | ||
<xsl:with-param name="text" select="."/> | ||
<xsl:with-param name="replace" select="'png'"/> | ||
<xsl:with-param name="by" select="'pdf'"/> | ||
</xsl:call-template> | ||
</xsl:variable> | ||
<xsl:attribute name="src"> | ||
<xsl:value-of select="$newtext"/> | ||
</xsl:attribute> | ||
</xsl:when> | ||
<xsl:otherwise> | ||
<xsl:copy> | ||
<xsl:apply-templates select="@*|node()"/> | ||
</xsl:copy> | ||
</xsl:otherwise> | ||
</xsl:choose> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> |