Advertisement
Advertisement
| 08.27.2008 at 03:07AM PDT, ID: 23681355 |
|
[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: |
Seperate CSS XSLT Example:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/css" href="global.css" ?>
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<body style="font: .80em Verdana, Tahoma, Helvetica, sans-serif;">
<xsl:for-each select="response/body/record">
<div id="dynamicxml">
<ul class="joblist">
<li class="first">
<strong><xsl:value-of select="vacancyId"/></strong>
</li>
<li class="last">
<strong>Title: </strong> <xsl:value-of select="description"/>
</li>
</ul>
<br />
<ul class="joblist">
<li class="first">
<strong>Location: </strong> <xsl:value-of select="location"/>
</li>
<li class="last">
<strong>Salary: </strong>€<xsl:value-of select="salary"/>
</li>
</ul>
<br />
</div>
</xsl:for-each>
</body>
</html>
Embedded CSS XSLT Example:
<?xml version="1.0" encoding="ISO-8859-1"?>
<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<body style="font: .80em Verdana, Tahoma, Helvetica, sans-serif;">
<xsl:for-each select="response/body/record">
<div style="padding-bottom: 5px;">
<ul style="margin-left: 0; padding-left: 0; display: inline;">
<li style="margin-left: 0; border-left: none; display: inline;">
<strong><xsl:value-of select="vacancyId"/></strong>
</li>
<li style="margin-left: 0; padding: 0px 25px; display: inline;">
<strong>Title: </strong> <xsl:value-of select="description"/>
</li>
</ul>
<br />
<ul style="margin-left: 20px; padding-left: 0; display: inline;">
<li style="margin-left: 0; padding: 0px 0px; display: inline;">
<strong>Location: </strong> <xsl:value-of select="location"/>
</li>
<li style="margin-left: 0; padding: 0px 25px; display: inline;">
<strong>Salary: </strong>€<xsl:value-of select="salary"/>
</li>
</ul>
<br />
</div>
</xsl:for-each>
</body>
</html>
|