| 15 | | <xsl:variable name="topic_approved" select="mgd:parameter[mgd:domain='midcom.helper.metadata' and mgd:name='approved']/mgd:value"/> |
|---|
| 16 | | <xsl:if test="$topic_approved != ''"> |
|---|
| 17 | | <xsl:if test="java:DateFunctions.timestampFromDate($topic_approved) >= java:DateFunctions.timestampFromDate(mgd:revised)"> |
|---|
| 18 | | <xsl:copy><xsl:apply-templates/></xsl:copy> |
|---|
| 19 | | </xsl:if> |
|---|
| | 15 | <!-- Exorcist bug, metadata_revised is in LMT --> |
|---|
| | 16 | <xsl:if test="java:DateFunctions.timestampFromDate(mgd:metadata_approved, 'GMT') >= java:DateFunctions.timestampFromDate(mgd:metadata_revised, 'EET')"> |
|---|
| | 17 | <xsl:copy><xsl:apply-templates/></xsl:copy> |
|---|
| 24 | | <xsl:variable name="article_approved" select="mgd:parameter[mgd:domain='midcom.helper.metadata' and mgd:name='approved']/mgd:value"/> |
|---|
| 25 | | <xsl:if test="$article_approved != ''"> |
|---|
| 26 | | <xsl:if test="java:DateFunctions.timestampFromDate($article_approved) >= java:DateFunctions.timestampFromDate(mgd:revised)"> |
|---|
| 27 | | <xsl:copy><xsl:apply-templates/></xsl:copy> |
|---|
| 28 | | </xsl:if> |
|---|
| | 22 | <!-- Exorcist bug, metadata_revised is in LMT --> |
|---|
| | 23 | <xsl:if test="java:DateFunctions.timestampFromDate(mgd:metadata_approved, 'GMT') >= java:DateFunctions.timestampFromDate(mgd:metadata_revised, 'EET')"> |
|---|
| | 24 | <xsl:copy><xsl:apply-templates/></xsl:copy> |
|---|