Changeset 1404 for WAeUP_SRP/trunk/profiles
- Timestamp:
- 10 Feb 2007, 17:02:32 (18 years ago)
- Location:
- WAeUP_SRP/trunk/profiles/default
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/profiles/default/layouts/certificate.xml
r1158 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="certificate" meta_type="CPS Layout"> 3 4 <property name="layout_create_method"></property> -
WAeUP_SRP/trunk/profiles/default/layouts/certificate_course.xml
r556 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="certificate_course" meta_type="CPS Layout"> 3 4 <property name="layout_create_method"></property> -
WAeUP_SRP/trunk/profiles/default/layouts/department.xml
r853 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="department" meta_type="CPS Layout"> 3 4 <property name="layout_create_method"></property> -
WAeUP_SRP/trunk/profiles/default/layouts/faculty.xml
r853 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="faculty" meta_type="CPS Layout"> 3 4 <property name="layout_create_method"></property> -
WAeUP_SRP/trunk/profiles/default/layouts/student_study_course.xml
r1403 r1404 46 46 <table> 47 47 <row> 48 <cell name="study_course"/>49 </row>50 <row>51 48 <cell name="current_verdict"/> 52 49 </row> -
WAeUP_SRP/trunk/profiles/default/schemas/schema.xsl
r1403 r1404 22 22 <xsl:sort select="@name" 23 23 order="ascending" /> 24 <tr> 24 <xsl:variable name="color"> 25 <xsl:choose> 26 <xsl:when test="position() mod 2 = 0"> 27 <xsl:text>#ffffff</xsl:text> 28 </xsl:when> 29 <xsl:otherwise> 30 <xsl:text>#eeeeee</xsl:text> 31 </xsl:otherwise> 32 </xsl:choose> 33 </xsl:variable> 34 <tr style="background-color:{$color}"> 25 35 <td colspan=""> 26 36 <xsl:value-of select="@name"/> -
WAeUP_SRP/trunk/profiles/default/types/CertificateCourse.xml
r873 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="CertificateCourse" meta_type="CPS Flexible Type Information" 3 4 xmlns:i18n="http://xml.zope.org/namespaces/i18n"> -
WAeUP_SRP/trunk/profiles/default/types/Course.xml
r873 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="Course" meta_type="CPS Flexible Type Information" 3 4 xmlns:i18n="http://xml.zope.org/namespaces/i18n"> -
WAeUP_SRP/trunk/profiles/default/types/Department.xml
r873 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="Department" meta_type="CPS Flexible Type Information" 3 4 xmlns:i18n="http://xml.zope.org/namespaces/i18n"> -
WAeUP_SRP/trunk/profiles/default/types/Faculty.xml
r873 r1404 1 1 <?xml version="1.0"?> 2 <?xml-stylesheet type="text/xsl" href="types.xsl"?> 2 3 <object name="Faculty" meta_type="CPS Flexible Type Information" 3 4 xmlns:i18n="http://xml.zope.org/namespaces/i18n"> -
WAeUP_SRP/trunk/profiles/default/types/types.xsl
r1403 r1404 10 10 </xsl:for-each> 11 11 </title> 12 <link rel="stylesheet" type="text/css" media="all" 13 href="../xsl.css" /> 12 14 </head> 13 15 <body> … … 20 22 <table> 21 23 <xsl:for-each select="object/property"> 22 <tr> 24 <xsl:variable name="color"> 25 <xsl:choose> 26 <xsl:when test="position() mod 2 = 0"> 27 <xsl:text>#ffffff</xsl:text> 28 </xsl:when> 29 <xsl:otherwise> 30 <xsl:text>#eeeeee</xsl:text> 31 </xsl:otherwise> 32 </xsl:choose> 33 </xsl:variable> 34 <tr style="background-color:{$color}"> 23 35 <td colspan=""> 24 <xsl:value-of select="@name"/> : <xsl:value-of select="text()"/>36 <xsl:value-of select="@name"/> 25 37 </td> 26 <xsl:for-each select="element"> 27 <td> 28 <xsl:value-of select="@value"/> 29 </td> 30 </xsl:for-each> 38 <td colspan=""> 39 <xsl:value-of select="text()"/> 40 </td> 41 <td> 42 <xsl:for-each select="element"> 43 <xsl:value-of select="@value"/><br /> 44 </xsl:for-each> 45 </td> 31 46 </tr> 32 47 </xsl:for-each> … … 34 49 <h1>Alias</h1> 35 50 <table> 51 <th>From</th><th>To</th> 36 52 <xsl:for-each select="object/alias"> 37 <tr> 53 <xsl:variable name="color"> 54 <xsl:choose> 55 <xsl:when test="position() mod 2 = 0"> 56 <xsl:text>#ffffff</xsl:text> 57 </xsl:when> 58 <xsl:otherwise> 59 <xsl:text>#eeeeee</xsl:text> 60 </xsl:otherwise> 61 </xsl:choose> 62 </xsl:variable> 63 <tr style="background-color:{$color}"> 38 64 <td colspan=""> 39 <xsl:value-of select="@from"/> : <xsl:value-of select="@to"/> 65 <xsl:value-of select="@from"/> 66 </td> 67 <td colspan=""> 68 <xsl:value-of select="@to"/> 40 69 </td> 41 70 </tr> … … 54 83 <xsl:sort select="@action_id" 55 84 order="ascending" /> 56 <tr> 85 <xsl:variable name="color"> 86 <xsl:choose> 87 <xsl:when test="position() mod 2 = 0"> 88 <xsl:text>#ffffff</xsl:text> 89 </xsl:when> 90 <xsl:otherwise> 91 <xsl:text>#eeeeee</xsl:text> 92 </xsl:otherwise> 93 </xsl:choose> 94 </xsl:variable> 95 <tr style="background-color:{$color}"> 57 96 <td> 58 97 <xsl:value-of select="@action_id"/> … … 60 99 <td> 61 100 <xsl:value-of select="@title"/> 62 </td>63 <td>64 <xsl:value-of select=""/>65 101 </td> 66 102 <td> … … 76 112 </xsl:for-each> 77 113 </tr> 114 <tr style="background-color:{$color}"> 115 <th>url_expression</th> 116 <td colspan="4"> 117 <xsl:value-of select="@url_expr"/> 118 </td> 119 </tr> 120 <tr style="background-color:{$color}"> 121 <th>condition_expression</th> 122 <td colspan="4"> 123 <xsl:value-of select="@condition_expr"/> 124 </td> 125 </tr> 78 126 </xsl:for-each> 79 127 </table>
Note: See TracChangeset for help on using the changeset viewer.