diff options
author | randomdan <randomdan@localhost> | 2011-02-02 10:49:10 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-02-02 10:49:10 +0000 |
commit | fba4cf7bb5516fd451929ee09874b8470ee547be (patch) | |
tree | d1922ac4acd312fd3a44e0e2cb0e5f2b1dbfecf9 | |
parent | Remove hacks in bug import XSLT that made it work with a buggy version of fil... (diff) | |
download | gentoobrowse-fba4cf7bb5516fd451929ee09874b8470ee547be.tar.bz2 gentoobrowse-fba4cf7bb5516fd451929ee09874b8470ee547be.tar.xz gentoobrowse-fba4cf7bb5516fd451929ee09874b8470ee547be.zip |
Remove compose functions on column data and add a handle function for type safe data passing
Use new handle function to get type safe data from ODBC
Add a datetime option to variables
-rw-r--r-- | gentoobrowse/package.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoobrowse/package.xslt b/gentoobrowse/package.xslt index 0546bb7..4f85498 100644 --- a/gentoobrowse/package.xslt +++ b/gentoobrowse/package.xslt @@ -185,7 +185,7 @@ <xsl:if test="count(/gentoo/summary/package/changelog/entry) > 0"> <ul class="tabhidden" id="changelog"> <xsl:for-each select="entry"> - <li><xsl:value-of select="substring-before(date, ' ')" /></li> + <li><xsl:value-of select="substring-before(date, 'T')" /></li> <li> <ul> <li><xsl:value-of select="person" /> <<xsl:value-of select="email" />></li> |