• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

possible methods for the xsl:output method="?" tag ?

 
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what possible methods are there for the <xsl utput method="..."/> tag ?
is there a list of the possible methods ? and if where.
Thanks


//Rille
 
Rikard Qvarforth
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
humm found this ..
<xsl utput
name = qname
method = "xml" | "html" | "xhtml" | "text" | qname-but-not-ncname
cdata-section-elements = qnames
doctype-public = string
doctype-system = string
encoding = string
escape-uri-attributes = "yes" | "no"
include-content-type = "yes" | "no"
indent = "yes" | "no"
media-type = string
normalize-unicode = "yes" | "no"
omit-xml-declaration = "yes" | "no"
standalone = "yes" | "no"
undeclare-namespaces = "yes" | "no"
use-character-maps = qnames
version = nmtoken />
but where did i see that one could transform into a pdf file humm
 
Ranch Hand
Posts: 237
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Rikard Qvarforth:
... but where did i see that one could transform into a pdf file humm


According to Michael Kay, page 54 of "XSLT programmers reference" 2nd ed. ...
the text output method is designed to allow output in other text-based formas including... CSV, RTF, PDF, SQL or JavaScript.
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
PDF? Not likely. Although you can use XSL-FO.
 
Rikard Qvarforth
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
holy cow that was alot of reading but thanks

//Rille
 
reply
    Bookmark Topic Watch Topic
  • New Topic