Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<?xml version='1.0' encoding='iso-8859-1' ?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version   = "1.0">
    
   ...     

   <xsl:template match="/scheduler_event">
      ...
      <xsl:copy-of select="mail/body/file[ not(contains(@path, '.log')) ]" />
      ...
   </xsl:template>  <

</xsl:stylesheet>

In this example files with the extension .log are excluded from mail delivery.

...