Web Editor´Â webeditor.xsl ÆÄÀÏÀ» ±âº» XSL ½ºÅ¸ÀÏ ½ÃÆ®·Î »ç¿ëÇÕ´Ï´Ù. ÆÄÀÏÀº ´ÙÀ½ µð·ºÅ丮¿¡ ÀÖ½À´Ï´Ù.
drive:\WebSphere\CommerceServer\xml\wcwebeditor\xsl
drive:\Program Files\WebSphere\CommerceServer\xml\wcwebeditor\xsl
/usr/WebSphere/CommerceServer/xml/wcwebeditor/xml
/opt/WebSphere/Commerce
/instroot/xml/wcwebeditor/xsl
¿î¿µÀÚ´Â webeditor.xsl ÆÄÀÏÀ» ÆíÁýÇÏ¿© Web Editor Ãâ·ÂÀÇ Æ÷¸ËÀ» º¯°æÇÒ ¼ö ÀÖ½À´Ï´Ù.
´ÙÀ½Àº webeditor.xsl ÆÄÀÏ ÄÁÅÙÃ÷ °ßº»ÀÔ´Ï´Ù.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html"/> <!-- Largest single line entry field value for fields larger than this a TEXTAREA is created --> <xsl:variable name="maxEntryFieldSize" select="80"/> <xsl:template match ="/"> <xsl:apply-templates/> </xsl:template> <!-- Read Only field --> <xsl:template match="readOnly" name="readOnly"> <xsl:element name="input"> <xsl:attribute name="name"><xsl:value-of select="@name"/></xsl:attribute> <xsl:attribute name="type">hidden</xsl:attribute> <xsl:attribute name="value"><xsl:value-of select="@defaultValue"/></xsl:attribute> <!-- <xsl:attribute name="onFocus">this.blur()</xsl:attribute> <xsl:attribute name="style">border-style:groove</xsl:attribute> --> </xsl:element> <table border="1" cellpadding="0" cellspacing="0" width="155" bgcolor="#C0C0C0"> <tr> <td> <img border="0" src="/webeditor/image/space.gif" width="1" height="17"/><xsl:value-of select="@defaultValue"/> </td> </tr> </table> </xsl:template> </xsl:stylesheet>
![]() |