You can modify your fo:static-content when you output it in your fo:page-sequence. By using fo:marker and fo:retrieve-marker, you can have the static-content set based on info contained on a particular page. For example, anytime you encountered a revdate attribute you could output an fo:marker. You would retrieve the value of that marker in your fo:static-content.
Example of fo:marker:
<fo:marker marker-class-name="footerRevdate">
<xsl:value-of select="@revdate"/>
</fo:marker>
Example of fo:retrieve-marker:
<fo:static-content flow-name="some_flow">
<fo:block>
<fo:retrieve-marker retrieve-class-name="footerRevdate" retrieve-boundary="page-sequence" retrieve-position="last-starting-within-page"/>
</fo:block>
</fo:static-content>
You can also set static-content directly. This content would apply to all pages in that page-sequence. (The content would/could change for each page-sequence.) For example, you could output a prefix before the page-number if the attribute chapnbr was equal to 0.
<xsl:template match="chapter">
<xsl:variable name="page-prefix">
<xsl:choose>
<xsl:when test="number(@chapnbr)=0">INTRO-</xsl:when>
<xsl:otherwise/>
</xsl:choose>
</xsl:variable>
<fo:page-sequence master-reference="Body" font-family="Arial" font-size="10pt" force-page-count="even">
<fo:static-content flow-name="Even_Page_regionafter">
<fo:block>
<xsl:value-of select="concat('Page ',$page-prefix)"/><fo:page-number/>
</fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block>
<xsl:apply-templates/>
</fo:block>
</fo:flow>
</fo:page-sequence>
</xsl:template>