Contains xslt transformation functionality to be used with django models
The xslt transformation resulted in an error
Transform xslt using any of the 2 supported xslt engines:
Parameters: |
|
---|
Prepare a string for passing as a parameter to the xslt processor.
Parameters: | string – The string you want to pass to the xslt. |
---|
Defines a render_to_response() function that resembles django.utils’s render_to_response() helper. Only this time the template is an xslt and the object passed as the second argument must have a __xml__ method. (See toxml())
object will be converted to xml using easymode.tree.xml(). The resulting xml will be transformed using template. The result will be a HttpResponse object, containing the transformed xml as the body.
Parameters: |
|
---|---|
Return type: |
object will be converted to xml using easymode.tree.xml(). The resulting xml will be transformed using template. The result is a unicode string containing the transformed xml.
Parameters: |
|
---|---|
Return type: | unicode |
Transforms input using template, which should be an xslt.
Parameters: |
|
---|---|
Return type: | unicode |