XML pipeline: Difference between revisions

Content deleted Content added
fix broken link
Everyking (talk | contribs)
mNo edit summary
Line 1:
In [[computer science]], an '''XML Pipeline''' is formed when [[XML]] (Extensible Markup Language) processes, sometimes called [[XML transformation language|XML transformations]], are connected together.
 
For instance, given a two transformations T<sub>1</sub> andTand T<sub>2</sub>, the two can be connected together so that an input XML document is transformed by T<sub>1</sub> and then the output of T<sub>1</sub> is fed as input document to T<sub>2</sub>. Simple pipeline like this one are called ''linear'', as a single input document always goes through the same sequence of transformation to produce a single output document. ''Non-linear'' pipelines can include:
 
* '''Conditionals''' &mdash; where a given transformation is executed if a condition is met while another transformation is executed otherwise