Missing supported format list near sdbdump
------------------------------------------

                 Key: JENA-176
                 URL: https://issues.apache.org/jira/browse/JENA-176
             Project: Jena
          Issue Type: Bug
          Components: Web site
         Environment: http://openjena.org/wiki/SDB/Commands#Other
            Reporter: Marek Ĺ abo
            Priority: Minor


I think somewhere around http://openjena.org/wiki/SDB/Commands#Other should be 
a list of supported output formats/syntax.

I dumped these from source code of RDFWriterImpl.java:

protected static final String LANGS[] =
        { "RDF/XML",
          "RDF/XML-ABBREV",
          "N-TRIPLE",
          "N-TRIPLES",
          "N3",
          N3JenaWriter.n3WriterPrettyPrinter,
          N3JenaWriter.n3WriterPlain,
          N3JenaWriter.n3WriterTriples,
          N3JenaWriter.n3WriterTriplesAlt,
          N3JenaWriter.turtleWriter,
          N3JenaWriter.turtleWriterAlt1, 
          N3JenaWriter.turtleWriterAlt2 
        };

and subsequently from N3JenaWriter.java:

    static public final String n3Writer              = "N3" ;
    static public final String n3WriterPrettyPrinter = "N3-PP" ;
    static public final String n3WriterPlain         = "N3-PLAIN" ;
    static public final String n3WriterTriples       = "N3-TRIPLES" ;
    static public final String n3WriterTriplesAlt    = "N3-TRIPLE" ;
    static public final String turtleWriter          = "TURTLE" ;
    static public final String turtleWriterAlt1      = "Turtle" ;
    static public final String turtleWriterAlt2      = "TTL" ;

It would be also worth mentioning that RDF/XML is the default option.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira


Reply via email to