franta-hg@76: /** franta-hg@76: * XML Web generátor – program na generování webových stránek franta-hg@76: * Copyright © 2012 František Kučera (frantovo.cz) franta-hg@76: * franta-hg@76: * This program is free software: you can redistribute it and/or modify franta-hg@76: * it under the terms of the GNU General Public License as published by franta-hg@76: * the Free Software Foundation, either version 3 of the License, or franta-hg@76: * (at your option) any later version. franta-hg@76: * franta-hg@76: * This program is distributed in the hope that it will be useful, franta-hg@76: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@76: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@76: * GNU General Public License for more details. franta-hg@76: * franta-hg@76: * You should have received a copy of the GNU General Public License franta-hg@76: * along with this program. If not, see . franta-hg@76: */ franta-hg@76: package cz.frantovo.xmlWebGenerator.makra; franta-hg@76: franta-hg@76: import java.io.IOException; franta-hg@76: import java.io.PrintStream; franta-hg@76: import static cz.frantovo.xmlWebGenerator.NástrojeCLI.*; franta-hg@76: franta-hg@76: /** franta-hg@76: * Wiki syntaxe franta-hg@76: * franta-hg@76: * @author František Kučera (frantovo.cz) franta-hg@76: */ franta-hg@76: public class Wiki { franta-hg@76: franta-hg@76: private static final String PŘÍKAZ_MARKDOWN = "markdown"; franta-hg@76: franta-hg@76: /** franta-hg@76: * Převede text ve wiki syntaxi do XHTML. franta-hg@76: * @param wiki vstupní text v dané wiki syntaxi franta-hg@76: * @param syntaxe null nebo volitelně syntaxe (markdown, texy) franta-hg@76: * @return naformátované XHTML franta-hg@76: * TODO: franta-hg@76: * - vracet místo textu instanci com.icl.saxon.om.NodeInfo http://saxon.sourceforge.net/saxon6.5.3/extensibility.html franta-hg@76: * - nebo kontrolovat validitu vygenerovaného kódu (v současnosti se spoléháme na bezchybnost markdownu) franta-hg@76: franta-hg@76: */ franta-hg@76: public static String formátujWiki(String wiki, String syntaxe) throws IOException { franta-hg@76: if (isPříkazDostupný(PŘÍKAZ_MARKDOWN)) { franta-hg@76: Runtime r = Runtime.getRuntime(); franta-hg@76: Process p = r.exec(new String[]{PŘÍKAZ_MARKDOWN}); franta-hg@76: franta-hg@76: /** franta-hg@76: * TODO: oříznout mezery na začátcích řádků, pokud je jich všude stejně? franta-hg@76: * (odsazení v XML) franta-hg@76: */ franta-hg@76: PrintStream vstupProcesu = new PrintStream(p.getOutputStream()); franta-hg@76: vstupProcesu.print(wiki); franta-hg@76: vstupProcesu.close(); franta-hg@76: franta-hg@76: String chyby = načtiProud(p.getErrorStream()); franta-hg@76: String xhtml = načtiProud(p.getInputStream()); franta-hg@76: franta-hg@76: if (chyby.length() == 0) { franta-hg@76: return xhtml; franta-hg@76: } else { franta-hg@76: System.err.print("Při zpracování wiki syntaxe došlo k chybě: " + chyby); franta-hg@76: return null; franta-hg@76: } franta-hg@76: } else { franta-hg@76: System.err.println("Příkaz " + PŘÍKAZ_MARKDOWN + " není na vašem systému dostupný → nelze formátovat texty ve wiki syntaxi."); franta-hg@76: System.err.println("Můžete ho nainstalovat pomocí:"); franta-hg@76: System.err.println("\t$ aptitude install markdown # (Debian/Ubuntu)"); franta-hg@76: System.err.println("\t$ yum install perl-Text-Markdown # (Fedora/RedHat)"); franta-hg@76: return null; franta-hg@76: } franta-hg@76: } franta-hg@76: } franta-hg@87: