Sorry, can't diagnose further given the minimal information you've
provided. Consider posting a 20-line stylesheet and 10-line input
document which demonstrate the problem.
Here you go and THANKS!!!!
******************** stylesheet ********************
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="
http://www.w3.org/1999/XSL/
Transform" xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect"
extension-element-prefixes="redirect">
<xsl

utput method="html" media-type="text/html" version="4.0"
indent="yes" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
encoding="ISO-8859-1"/>
<!--
======================================================================
-->
<!-- ====== This stylesheet creates a page with the html ==========
-->
<!-- =============== to be entered into pluto pages for onePlace
========== -->
<!--
======================================================================
-->
<xsl:template match="design-solutions">
<redirect:write file="pattern-html-for-1P.html">
<html lang="en-us">
<body bgcolor="#FFFFFF">
<xsl:for-each select="ui-design-patterns/ui-design-pattern">
<xsl:text> ================== </xsl:text>
PLUTO: <xsl:value-of select="@pluto-id"/>
TITLE: <xsl:value-of select="title"/>
GOAL
<xsl:apply-templates select="goal"/>
<div>
<span style="font-color:gray">Aliases:</span>
<xsl:if test="not(alias)">None</xsl:if>
<xsl:for-each select="alias">
<xsl:sort/>
<xsl:value-of select="."/>
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</div><xsl:text>
</xsl:text>
</xsl:for-each>
</body>
</html>
</redirect:write>
</xsl:template>
<!--
================================================================= -->
<!-- ========================== Other templates
========================= -->
<!--
================================================================= -->
<xsl:template match="goal">
<div>
<xsl:apply-templates/>
</div><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="description">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="para">
<p><xsl:apply-templates/></p>
</xsl:template>
<xsl:template match="bullet">
<li><xsl:apply-templates/></li>
</xsl:template>
<xsl:template match="bullet-para">
<p><xsl:apply-templates/></p>
</xsl:template>
</xsl:stylesheet>
******************** XML data snippet ********************
<?xml version='1.0' encoding='UTF-8'?>
<design-solutions xmlns:xsi="
http://www.w3.org/2001/XMLSchema-
instance" project-name="IBM Design Leadership UI Design Patterns
Initiative" last-updated="07.05.09 10:40 PST"
xsi:noNamespaceSchemaLocation="design-solution.xsd">
<ui-design-patterns>
<ui-design-pattern id="des-pat-001" version="0.0.01" pluto-
id="1011">
<title>Auto-complete</title>
<goal>
<description>
<para>The user wants to enter text into an entry field
quickly and accurately.</para>
</description>
</goal>
<use-when>
<description>
<unordered-bullets>
<bullet>
<bullet-para>The likely text value is already known and
the currently entered value can be matched to the known values.</
bullet-para>
</bullet>
<bullet>
<bullet-para>The user would benefit from or appreciate
having the system provide suggested values.</bullet-para>
</bullet>
<bullet>
<bullet-para>The possible values are either constrained
or unconstrained.</bullet-para>
</bullet>
</unordered-bullets>
</description>
</use-when>
***************** Sample of current output ********************
================= Wizard ==================
PLUTO: 1016
TITLE: Wizard
GOAL
The designer wants to simplify a complex and/or infrequent
task that is necessary for the user to acheive their goal.
The user doesn't want to have to know too much about the
application to accomplish their goal.
Aliases:None
Clients:None specified
Lifecycle phase:None specified
================= Path ==================
PLUTO: 1274
TITLE: Path
GOAL
The user wants to easily navigate to pages above the current
page in the site hierarchy.
The developer wants to orient the user regarding the
position of the current page within the site hierarchy.
Aliases:None
Clients:None specified
Lifecycle phase:None specified