The current Compass Magazine, Issue 6, offers a number of articles featuring our scientists and their research on afforestation, Pondberry, Cerulean Warblers, black bears, and aquatics. Also included is a profile of our Project Leader, Dr. Ted Leininger.
View the issue on-line
Download the entire issue in PDF format
Jump to CBHR-related articles...
MM_XSLTransform error.
Transformation Error.
XSLTProcessor::transformToDoc() [
xsltprocessor.transformtodoc]: runtime error: file /u2/www/srs/cbhr/news/2006/ line 28 element if
XSLTProcessor::transformToDoc() [
xsltprocessor.transformtodoc]: Variable 'indx' has not been declared. in file ../../local-resources/xsltfrags/CBHRPubTitles_10.xsl
<?xml version="1.0" encoding="iso-8859-1"?><!-- DWXMLSource="http://www.srs.fs.usda.gov/cbhr/pubs/srs4155_2006.xml" -->
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY reg "®">
<!ENTITY trade "™">
<!ENTITY mdash "—">
<!ENTITY ldquo "“">
<!ENTITY rdquo "”">
<!ENTITY pound "£">
<!ENTITY yen "¥">
<!ENTITY euro "€">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="iso-8859-1"/>
<xsl:template match="/">
<p class="topic">Recent CBHR Publications</p>
<xsl:call-template name="loop">
<xsl:with-param name="indx" select="1"/>
<xsl:with-param name="count" select="20"/>
</xsl:call-template>
<p class="more"><a href="/cbhr/pubs/srs4155_2006.xml" target="cbhrpubs">More 2006 pubs...</a></p>
</xsl:template>
<xsl:template name="loop">
<xsl:if test="$indx < $count">
<xsl:for-each select="XML/RECORDS/RECORD[$indx]">
<xsl:variable name="TitleRef"><xsl:value-of select="./URL"/></xsl:variable>
<xsl:choose>
<!-- <xsl:when test="string-length($TitleRef)=0"><p class="qptext"><xsl:value-of select="./TITLE"/></p></xsl:when> -->
<xsl:when test="string-length($TitleRef)=0"></xsl:when>
<xsl:when test="string-length($TitleRef)>0">
<p class="qptext">
<a href="{$TitleRef}" target="cbhrpubs">
<xsl:value-of select="./TITLE"/>
</a>
</p>
</xsl:when>
</xsl:choose>
<!-- <p class="qptext"><a href="{URL}" target="cbhrpubs"><xsl:value-of select="./TITLE"/></a></p> -->
</xsl:for-each>
<xsl:call-template name="loop">
<xsl:with-param name="count" select="$count"/>
<xsl:with-param name="indx" select="$indx+1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>