Changes between Version 2 and Version 3 of S3/S3XML/Transformation


Ignore:
Timestamp:
10/27/10 08:39:26 (14 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/S3XML/Transformation

    v2 v3  
    33= S3XML On-the-fly Transformation =
    44
    5   * coming soon...
     5== At a glance ==
     6
     7S3XRC can perform XSLT transformation of XML/JSON sources on-the-fly upon data export and import.
     8
     9[[Image(s3xml.png)]]
     10
     11The XSLT stylesheets to use for this transformation can be either:
     12
     13  - integrated in Eden (folder static/xslt)
     14  - in a static file elsewhere on the server
     15  - anywhere on the web
     16  - attached to the request (at import)
     17
     18== Integrated Stylesheets ==
     19
     20These will automatically used if no other stylesheet is specified. The integrated stylesheets reside in:
     21
     22  - static/xslt/export for export transformation (S3XML into other format)
     23  - static/xslt/import for import transformation (other format into S3XML)
     24
     25The name of the respective stylesheet must be <extension>.xsl, where <extension> is the file extension of the respective format, e.g.:
     26
     27  - pfif.xsl transforms from/to *.pfif from *.xml
     28
     29Formats *.xml and *.json will not be transformed.
     30
     31== XSLT Stylesheets on the Server ==
     32
     33  - ''coming soon...''
     34
     35== XSLT Stylesheets on the Web ==
     36
     37  - ''coming soon...''
     38
     39== Attached XSLT Stylesheets ==
     40
     41  - ''coming soon...''
    642
    743----