| | 52 | <!-- Current Yale Bedework Navigation Parameters --> |
|---|
| | 53 | <xsl:variable name="ybViewMode" select="translate(/bedework/periodname, 'DWMY', 'dwmy')" /> |
|---|
| | 54 | <xsl:variable name="ybFocusDate"> |
|---|
| | 55 | <xsl:choose> |
|---|
| | 56 | <xsl:when test="/bedework/appvar[key='focusDate']/value != ''"> |
|---|
| | 57 | <xsl:value-of select="/bedework/appvar[key='focusDate']/value" /> |
|---|
| | 58 | </xsl:when> |
|---|
| | 59 | <xsl:otherwise> |
|---|
| | 60 | <xsl:value-of select="$curdate" /> |
|---|
| | 61 | </xsl:otherwise> |
|---|
| | 62 | </xsl:choose> |
|---|
| | 63 | </xsl:variable> |
|---|
| | 64 | <xsl:variable name="ybViewName" select="/bedework/selectionState/view/name/text()" /> |
|---|
| | 65 | <xsl:variable name="ybSummaryMode" select="/bedework/appvar[key='summaryMode']/value" /> |
|---|
| | 66 | <xsl:variable name="ybSummaryAppend"> |
|---|
| | 67 | <xsl:if test="$ybSummaryMode = 'details'"> |
|---|
| | 68 | <xsl:text>?showDetails=yes</xsl:text> |
|---|
| | 69 | </xsl:if> |
|---|
| | 70 | </xsl:variable> |
|---|
| | 71 | <xsl:variable name="ybShowDetails"> |
|---|
| | 72 | <xsl:choose> |
|---|
| | 73 | <xsl:when test="$ybSummaryMode = 'details'">yes</xsl:when> |
|---|
| | 74 | <xsl:otherwise>no</xsl:otherwise> |
|---|
| | 75 | </xsl:choose> |
|---|
| | 76 | </xsl:variable> |
|---|
| | 77 | <xsl:variable name="resetView" select="concat('/cal/', $suiteName, '/')" /> |
|---|
| | 78 | |
|---|