XSL Resource Loader
Lets you define resources to load directly in your XSL
Description
This extension allows you to add Data Sources and Events to your pages without having to use the Page editor in Symphony but with your texteditor.
For example the following code loads the Data Source articles
and the Event comments
:
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:res="http://www.getsymphony.com/schemas/resources/1.0" exclude-result-prefixes="res"> <res:data-source name="articles" /> <res:event name="comments" /> ... </xsl:stylesheet>
The advantage? You can now track the attachment of resources to your pages in version control, to name just one.