Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. <courses>
  2. <course>
  3. <course_desc>
  4. <![CDATA[
  5. This course structure contains information about the units which comprise the course as well as the credit points required to successfully complete it.
  6.  
  7. Students must complete the programme outlined below. All semester enrolments are subject to unit availability and students must consult the Course Coordinator prior to enrolling.
  8.  
  9. WORK INTEGRATED LEARNING
  10.  
  11. Students in this course have the opportunity to seek a Work Integrated Learning placement with an industry partner equivalent to one semester of fulltime study. Such placements are available to students who have:
  12.  
  13. Successfully completed any prerequisite units,
  14.  
  15. Successfully completed at least two thirds of the requirements towards the degree and,
  16.  
  17. Have a Weighted Average Mark (WAM) of 65% or higher across their course, or
  18.  
  19. Have a WAM of 70% or higher for the two semesters preceding their application.
  20.  
  21. Students who meet these criteria and who wish to participate in Work Integrated Learning must apply in writing to their Course Coordinator by the end of the first year of the course (or PRIOR to enrolling in Project Preparation). Students should seek the advice of the Course Coordinator as to the appropriateness of pursuing the work placement option within their course structure and also as to their eligibility to be considered. Selection will be based on academic performance, the application and a formal interview process.
  22.  
  23. Successful applicants for work placement must enroll in and complete the requirements for the unit Work Experience Project (in place of Project Preparation, Project 1 and Project 2). This is a 60 credit point unit and represents a full semester’s study load. Students are advised NOT to enroll in any additional units while taking the Work Experience Project unit. Students should also note that failure to successfully complete Work Experience Project could necessitate completing Project Preparation/Project 1/Project 2 instead, which could add two extra semesters to the course duration.
  24. ]]>
  25.  
  26. </course_desc>
  27. </course>
  28. </courses>
  29.  
  30. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  31. <xsl:template match="/">
  32. <html>
  33. <body>
  34. <h2>Course information</h2>
  35. <xsl:apply-templates select="courses/course" />
  36.  
  37. </body>
  38. </html>
  39. </xsl:template>
  40.  
  41. <xsl:template match="course">
  42. <strong>Course: <xsl:text> </xsl:text></strong> <xsl:value-of select="text()" /><br />
  43. <strong>Coordinator Name: <xsl:text> </xsl:text></strong><xsl:value-of select="course_coordinator/fname"/><xsl:text> </xsl:text><xsl:value-of select="course_coordinator/sname"/><br /><br />
  44.  
  45. <xsl:variable name="link" select="course_coordinator/image" />
  46. <xsl:variable name="cname" select="course_corrdinator/image" />
  47. <img src="{$link}" alt="{$cname}"/><br /><br />
  48.  
  49.  
  50. <!-- <xsl:vaule-of select="course_desc"/> among some alternatives I tried here -->
  51.  
  52. <strong>Elective List: <xsl:text> </xsl:text></strong>
  53. <xsl:for-each select="electives/elective">
  54.  
  55. <li><a><xsl:attribute name="href"><xsl:value-of select="elective_link" /></xsl:attribute><xsl:value-of select="elective_code" /></a><xsl:text> </xsl:text><xsl:value-of select="elective_title" /></li>
  56.  
  57. <br />
  58. </xsl:for-each>
  59. <br />
  60.  
  61. <xsl:apply-templates select="year" />
  62.  
  63. </xsl:template>
  64.  
  65. <xsl:template match="year">
  66. <xsl:apply-templates select="semester" />
  67. </xsl:template>
  68.  
  69.  
  70.  
  71. <xsl:template match="semester">
  72. <strong>Year: <xsl:text> </xsl:text></strong><xsl:value-of select="../@ynum"/><br />
  73. <strong>Semester: <xsl:text> </xsl:text></strong><xsl:value-of select="@snum"/><br />
  74. <table border="0">
  75.  
  76. <tr bgcolor="#B0C4DE">
  77.  
  78. <th>Unit</th>
  79. <th>Description</th>
  80. <th>Credit Points</th>
  81.  
  82. </tr>
  83. <xsl:apply-templates select="units/unit" />
  84. </table>
  85. <br/><br/><br/>
  86. </xsl:template>
  87.  
  88. <xsl:template match="unit">
  89. <tr>
  90. <td><a><xsl:attribute name="href"><xsl:value-of select="unit_link" /></xsl:attribute><xsl:value-of select="unit_code" /></a></td>
  91. <td><xsl:value-of select="unit_title"/></td>
  92. <td><xsl:value-of select="cp"/></td>
  93. </tr>
  94. </xsl:template>
  95. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement