Center for Bottomland Hardwoods Research Logo
[Images] Photos illustrating the types of work we do

Quick Picks

CBHR... Publications | Presentations | Photos | Posters

CBHR Teams...
Regeneration & Reproductive Biology
Stand Management & Forest Health
Ecology of Aquatic & Terrestrial Fauna
Ecological Processes & Restoration

Subjects... Aquatic Ecology | Dendrochronology | Entomology | Forestry | Hydrology | Plant Ecology | Plant Pathology | Wildlife Ecology

Staff Contact Info

Copyright logo for el Grupo Ceruleoel Grupo Cerúleo

CBHR News

CBHR Scientists Receive Director's Awards

Post-Doc's Re-join CBHR

More CBHR news...

rss

Forest Service News

USDA Announces $477 Million in Funding for Schools, Roads

Energy Corridors in the Eleven Western States Designated

More Forest Service news...

MM_XSLTransform error.
Transformation Error.
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: runtime error: file /u2/www/srs/cbhr/ line 28 element if
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: Variable 'indx' has not been declared. in file local-resources/xsltfrags/CBHREvents.xsl
<?xml version="1.0" encoding="iso-8859-1"?><!-- DWXMLSource="/cbhr/feeds/cbhrevents.xml" -->
<!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<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">Events</p>
    <xsl:call-template name="loop">
	  <xsl:with-param name="indx" select="1"/>
	  <xsl:with-param name="count" select="3"/>
	</xsl:call-template>
	<p class="more"><a href="/cbhr/events/events.php">More events...</a></p>
</xsl:template>

<xsl:template name="loop">

	<xsl:if test="$indx &lt; $count">
	   <xsl:for-each select="events/event[$indx]">
	   		<xsl:variable name="myurl">
	   			<xsl:text>http://www.srs.fs.usda.gov/cbhr/events/ShowEventDetails.php?ETitle=</xsl:text>
				<xsl:value-of select="./title"/>
	   		</xsl:variable>
	   		<p class="qptext"><a href="{$myurl}"><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>

Logos for USDA, FS, SRS

Notice

Web Server Problem

The server that hosts our site is currently experiencing problems that prevent our xml-based content from displaying correctly. Please check back later. We apologize for any inconvenience this may cause. -Webmaster, 01/12/2009

CBHR's Dr. Wendell Haag Announced as 2007 Presidential Early Career Scientist Award Winner

White House News Release

Southern Research Station News Release

Learn more about Dr. Haag's research.

Learn more about Dr. Haag's technique for aging mussel shells.

MM_XSLTransform error.
Transformation Error.
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: runtime error: file /u2/www/srs/cbhr/ line 26 element value-of
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: Variable 'indx' has not been declared.
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: xmlXPathCompiledEval: evaluation failed
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: runtime error: file /u2/www/srs/cbhr/ line 26 element value-of
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: XPath evaluation returned no result. in file local-resources/xsltfrags/CBHRSpotlights.xsl
<?xml version="1.0" encoding="iso-8859-1"?><!-- DWXMLSource="/cbhr/feeds/cbhrspotlights.xml" -->
<!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<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">Spotlights</p>
    <xsl:call-template name="loop">
	  <xsl:with-param name="indx" select="1"></xsl:with-param>
	  <xsl:with-param name="count" select="6"></xsl:with-param>
	</xsl:call-template>
	<p class="more"><a href="/cbhr/spotlights/spotlights.php">More spotlights...</a></p>
</xsl:template>

<xsl:template name="loop">
    <xsl:value-of select="$indx"/>
	<xsl:if test="$indx &lt; $count">
	   <xsl:for-each select="spotlights/spotlight[$indx]"> 	
		<p class="qptext"><a href="{link}"><xsl:value-of select="./title"/></a></p>
		<xsl:choose>
		  <xsl:when test="boolean(./img)">
		  		<table class="spotlight">
				   <tr>
				    <td>
					<xsl:element name="img">
						<xsl:attribute name="alt"><xsl:value-of select="img/@alt"/></xsl:attribute>
						<xsl:attribute name="src"><xsl:value-of select="img/@src"/></xsl:attribute>
						<xsl:attribute name="height">75</xsl:attribute>
					</xsl:element>
					</td>
					<td><p class="topictext"><xsl:value-of select="./description"/></p></td>
				  </tr>	
				</table>
		  </xsl:when>
		  	<xsl:otherwise>
		  		<p class="topictext"><xsl:value-of select="./description"/></p>
			</xsl:otherwise>
		</xsl:choose>
		</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>

RSS Feeds

Feeds Library

What is a RSS feed?

MM_XSLTransform error.
Transformation Error.
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: runtime error: file /u2/www/srs/cbhr/ line 34 element if
XSLTProcessor::transformToDoc() [xsltprocessor.transformtodoc]: Variable 'indx' has not been declared. in file local-resources/xsltfrags/CBHRPubTitles.xsl
<?xml version="1.0" encoding="iso-8859-1"?><!-- DWXMLSource="/cbhr/pubs/srs4155_2008.xml" -->
<!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<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="5"/>
	</xsl:call-template>


<!--	<xsl:for-each select="xml/records/record[1]">
		<p class="qptext"><a href="{URL}" target="cbhrpubs"><xsl:value-of select="titles/title"/></a></p>
	</xsl:for-each>
	<xsl:for-each select="xml/records/record[2]">
		<p class="qptext"><a href="{URL}" target="cbhrpubs"><xsl:value-of select="titles/title"/></a></p>
	</xsl:for-each>-->
		<p class="more"><a href="http://www.srs.fs.usda.gov/cbhr/pubs/srs4155_2008.xml" target="cbhrpubs">More 2008 CBHR publications...</a></p>
</xsl:template>
<xsl:template name="loop">
<!-- <xsl:for-each select="xml/records/record"><xsl:value-of select="./titles/title"/></xsl:for-each> -->
	<xsl:if test="$indx &lt; $count">
	   <xsl:for-each select="xml/records/record[$indx]">
	   	  <xsl:variable name="TitleRef"><xsl:value-of select="./urls/pdf-urls/url/style"/></xsl:variable>
				  <xsl:choose>
				  		<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="./titles/title"/>
								</a>
							</p>
						</xsl:when>
				  </xsl:choose>
       </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>

Publication Search*





* Treesearch (peer-reviewed publications only)

For other publication options, see CBHR Publications.