Advertisement
Advertisement
| 04.09.2008 at 02:56PM PDT, ID: 23309883 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: |
<?xml version='1.0' encoding='ISO-8859-1'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="transaction">
<xsl:text>STARTTXN,</xsl:text>
<xsl:value-of select="translate(@name, 'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="*"/>
<xsl:text>ENDTXN,</xsl:text>
<xsl:value-of select="translate(@name, 'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="starttime | endtime">
<xsl:text>SUBTXN,</xsl:text>
<xsl:value-of select="@sec"/>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="startscript">
<xsl:text>STARTSCRIPT,</xsl:text>
<xsl:value-of select="@file"/>
<xsl:text> </xsl:text>
<xsl:apply-templates/>
<xsl:text>ENDSCRIPT,</xsl:text>
<xsl:value-of select="@file"/>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="*">
<xsl:text>SUBTXN,<</xsl:text>
<xsl:value-of select="name()"/>
<xsl:for-each select="@*">
<xsl:text> </xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>="</xsl:text>
<xsl:value-of select="."/>
<xsl:text>"</xsl:text>
</xsl:for-each>
<xsl:choose>
<xsl:when test="*">
<xsl:text>> </xsl:text>
<xsl:apply-templates select="*"/>
<xsl:text>SUBTXN,</</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>> </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>/> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<startscript file="C:\temp">
<transaction name="build">
<WizardInitialize templateName="PlPre"/>
<GetNextWizardDialog templateName="PlPre" forward="true"/>
<SelectPositions templateName="PlPre" currentDialog="wiz_PlPreScgp" hierarchy="PROD" dimension="SCGP">
<position dimension="SCGP" name="SCGP0010"/>
<position dimension="SCGP" name="SCGP0011"/>
<position dimension="SCGP" name="SCGP0012"/>
</SelectPositions>
<SelectPositions templateName="PlPre" currentDialog="wiz_PLclss" hierarchy="CLND" dimension="YEAR">
<position dimension="YEAR" name="YEAR2008"/>
</SelectPositions>
<WizardFinish templateName="PlPre"/>
</transaction>
<transaction name="sleep">
<starttime sec="0"/>
<endtime sec="300"/>
</transaction>
</startscript>
STARTSCRIPT,C:\temp
STARTTXN,BUILD
SUBTXN,<WizardInitialize templateName="PlPre"/>
SUBTXN,<GetNextWizardDialog templateName="PlPre" forward="true"/>
SUBTXN,<SelectPositions templateName="PlPre" currentDialog="wiz_PlPreScgp" hierarchy="PROD" dimension="SCGP">
SUBTXN,<position dimension="SCGP" name="SCGP0010"/>
SUBTXN,<position dimension="SCGP" name="SCGP0011"/>
SUBTXN,<position dimension="SCGP" name="SCGP0012"/>
SUBTXN,</SelectPositions>
SUBTXN,<SelectPositions templateName="PlPre" currentDialog="wiz_PLclss" hierarchy="CLND" dimension="YEAR">
SUBTXN,<position dimension="YEAR" name="YEAR2008"/>
SUBTXN,</SelectPositions>
SUBTXN,<WizardFinish templateName="PlPre"/>
ENDTXN,BUILD
STARTTXN,SLEEP
SUBTXN,0
SUBTXN,300
ENDTXN,SLEEP
ENDSCRIPT,C:\temp
|