Lab 13: Get RSS Feed for each Student's AlmaMater

In this folder is an XML file called class-roster.xml
It contains a list of students and a URL to an RSS feed
for their AlmaMater.


You are to iterate through each <Student> element, get the
URL to the RSS feed, go out on the Web and get that feed,
style it, and save it to a file.

In this folder is Create-AlmaMater-Request.xsl
This stylesheet will generate the <c:request> element needed
for a student.

In this folder is RSS.xsl
This stylesheet will transform an RSS feed into HTML

Save the HTML to a file. The filename should be the result
of concatenating the Student's name with '.html' Here's the XPath
to do that:

     concat($Name, '.html')

$Name is a variable. XProc gives you the ability to create a
variable and assign it a value. You will need to have this in your pipeline:

    <p:variable name="Name" select="Student/Name" />


Name your pipeline file: show-students-alma-mater.xpl

Run show-students-alma-mater.xpl

You will not be able to run it from Oxygen. You need to run it
from the DOS command line. Are you behind a firewall? If so,
you need to open run-calabash.bat and use the correct line
to run java.

Open the resulting file in a browser. 

See lab13-pipeline.gif for an image of the pipeline you are to create.
(open the gif image in a browser)

