Function Reference

GenerationHash

Returns an 8-character hash unique to this generation run.

Syntax:

wwenv:GenerationHash()

Returns:

string: Hash string for cache-busting URL query parameters.

Example:


<xsl:variable name="VarCacheBuster" select="wwenv:GenerationHash()" />
<link rel="stylesheet" href="styles.css?v={$VarCacheBuster}" />

RequestedPipeline

Determine if 'pipelineName' has been scheduled for processing.

Syntax:

wwenv:RequestedPipeline($pipelineName)

Parameters:

Name

Type

Description

pipelineName

string

Name of the pipeline.

Returns:

bool: True if scheduled for processing, false otherwise.

Example:

<xsl:variable name="VarGenerateReportSetting" select="wwprojext:GetFormatSetting('report-filenames-generate', 'true') = 'true'" />
<xsl:variable name = "VarRequestedPipeline" select="wwenv:RequestedPipeline($GlobalPipelineName)" />
<xsl:variable name = "VarGenerateReport" select="($VarGenerateReportSetting) or ($VarRequestedPipeline)" />

Last modified date: 08/12/2026