I\'ve been trying to test-link my XML document with my XSL stylesheet, however it all it does is display the XML doc\'s information and ignores my templates, and I have no clue
Your xml file has a default namespace. You need to declare this namespace in the xsl file and use it.
Also you have a typo: ref instead of rel.
ref
rel
After modifying the xsl file should look like this:
Movies
Other files remain unchanged.