You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/03/26 21:26:59 UTC

[Bug 1117] New - value-of formatting

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1117

*** shadow/1117	Mon Mar 26 11:26:58 2001
--- shadow/1117.tmp.14220	Mon Mar 26 11:26:59 2001
***************
*** 0 ****
--- 1,31 ----
+ +============================================================================+
+ | value-of formatting                                                        |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 1117                        Product: XalanJ2                 |
+ |       Status: UNCONFIRMED                 Version: 2.0.x                   |
+ |   Resolution:                            Platform: PC                      |
+ |     Severity: Minor                    OS/Version: Windows NT/2K           |
+ |     Priority: Low                       Component: Xalan                   |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: xalan-dev@xml.apache.org                                     |
+ |  Reported By: lors.ben@principal.com                                       |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ The text below is from a recent discussion on XSL-List.  Not a big deal, but 
+ per Mike's suggestion, thought I'd throw it out.
+ 
+ -------
+ > I'm using a Xalan processor and am slightly annoyed at one 
+ > specific behavior.  When I use, for example, <xsl:value-of 
+ > select="40000"/>, the result I see is "40,000" (with the 
+ > comma).  Is there a way to get it to output without the 
+ > comma? 
+ 
+ This behavior is incorrect, I would submit a bug report.
+ 
+ You could try converting to a string first, select="string(40000)"
+ 
+ Mike Kay