diff -r 1a70b4045a19 -r 8d34f2020884 šablona/funkce/src/cz/frantovo/xmlWebGenerator/makra/Wiki.java
--- a/šablona/funkce/src/cz/frantovo/xmlWebGenerator/makra/Wiki.java Wed Feb 08 17:58:17 2012 +0100
+++ b/šablona/funkce/src/cz/frantovo/xmlWebGenerator/makra/Wiki.java Thu Feb 09 12:54:49 2012 +0100
@@ -1,46 +1,75 @@
/**
* XML Web generátor – program na generování webových stránek
* Copyright © 2012 František Kučera (frantovo.cz)
- *
+ *
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
+ * along with this program. If not, see .
*/
package cz.frantovo.xmlWebGenerator.makra;
import java.io.IOException;
import java.io.PrintStream;
import static cz.frantovo.xmlWebGenerator.NástrojeCLI.*;
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+import java.io.OutputStreamWriter;
+import java.net.URL;
+import java.net.URLConnection;
+import java.net.URLEncoder;
/**
* Wiki syntaxe
- *
+ *
* @author František Kučera (frantovo.cz)
*/
public class Wiki {
+ public enum SYNTAXE {
+
+ markdown,
+ texy
+ }
private static final String PŘÍKAZ_MARKDOWN = "markdown";
+ /**
+ * Zde číhá tento PHP skript:
+ * https://hg.frantovo.cz/nekurak.net/file/tip/php/texy/http/index.php
+ */
+ private static final String URL_TEXY = "http://nekurak.net/texy/http/";
/**
* Převede text ve wiki syntaxi do XHTML.
+ *
* @param wiki vstupní text v dané wiki syntaxi
* @param syntaxe null nebo volitelně syntaxe (markdown, texy)
* @return naformátované XHTML
- * TODO:
- * - vracet místo textu instanci com.icl.saxon.om.NodeInfo http://saxon.sourceforge.net/saxon6.5.3/extensibility.html
- * - nebo kontrolovat validitu vygenerovaného kódu (v současnosti se spoléháme na bezchybnost markdownu)
-
+ * TODO:
+ * - vracet místo textu instanci com.icl.saxon.om.NodeInfo
+ * http://saxon.sourceforge.net/saxon6.5.3/extensibility.html
+ * - nebo kontrolovat validitu vygenerovaného kódu (v současnosti se spoléháme na bezchybnost
+ * markdownu případně texy)
+ *
*/
public static String formátujWiki(String wiki, String syntaxe) throws IOException {
+ if (syntaxe == null || SYNTAXE.valueOf(syntaxe) == SYNTAXE.markdown) {
+ return formátujMarkdown(wiki);
+ } else if (SYNTAXE.valueOf(syntaxe) == SYNTAXE.texy) {
+ return formátujTexy(wiki);
+ } else {
+ throw new IllegalArgumentException("Syntaxe není podporovaná: " + syntaxe);
+ }
+ }
+
+ private static String formátujMarkdown(String wiki) throws IOException {
if (isPříkazDostupný(PŘÍKAZ_MARKDOWN)) {
Runtime r = Runtime.getRuntime();
Process p = r.exec(new String[]{PŘÍKAZ_MARKDOWN});
@@ -70,5 +99,63 @@
return null;
}
}
+
+ /**
+ * Texy! syntaxe je experimentální a oficiálně nepodporovaná.
+ *
+ * TODO: až bude balíček texy pro GNU/Linuxové distribuce:
+ * http://forum.texy.info/cs/873-balicek-pro-linuxove-distribuce
+ * řešit stejně jako Markdown.
+ */
+ private static String formátujTexy(String wiki) throws IOException {
+ System.out.println("Pozor: Texy! wiki syntaxe je experimentální a oficiálně nepodporovaná.");
+ System.out.println("Pozor: používáte na vlastní nebezpečí!");
+ System.out.println("Pozor: text k interpretování bude odeslán na vzdálené URL: " + URL_TEXY);
+ System.out.println("Pokračovat? [a/N]");
+ int pokračovat = System.in.read();
+
+ if (pokračovat == 'a') {
+ OutputStreamWriter požadavek = null;
+ BufferedReader odpověď = null;
+ final String kódování = "UTF-8";
+ try {
+ URL url = new URL(URL_TEXY);
+ URLConnection spojeni = url.openConnection();
+ spojeni.setDoOutput(true);
+
+ /** Odešleme data */
+ požadavek = new OutputStreamWriter(spojeni.getOutputStream());
+ požadavek.write(URLEncoder.encode(wiki, kódování));
+ požadavek.flush();
+
+ /** Přijmeme odpověď */
+ odpověď = new BufferedReader(new InputStreamReader(spojeni.getInputStream(), kódování));
+ StringBuilder vysledek = new StringBuilder();
+ String radka;
+ while ((radka = odpověď.readLine()) != null) {
+ vysledek.append(radka);
+ vysledek.append("\n");
+ }
+
+ return vysledek.toString();
+ } catch (Exception e) {
+ throw new RuntimeException("Chyba při zpracovávání Texy! syntaxe: " + wiki, e);
+ } finally {
+ try {
+ požadavek.close();
+ } catch (IOException e) {
+ e.printStackTrace(System.err);
+ }
+ try {
+ odpověď.close();
+ } catch (IOException e) {
+ e.printStackTrace(System.err);
+ }
+ }
+ } else {
+ String hláška = "Texy! wiki syntaxe nebyla interpretována. Zdrojový text nebyl nikam odeslán.";
+ System.out.println(hláška);
+ return "";
+ }
+ }
}
-