view src/kryshen/tema/Functions.java @ 1:548a93c24e55

Tema 0.1jk - Javakonkurs edition (imported from CVS).
author Mikhail Kryshen <mikhail@kryshen.net>
date Thu, 14 Dec 2006 23:22:05 +0300
parents 1d2fe61a3a62
children
line source
1 /*
2 * Copyright (C) 2005, 2006 Mikhail A. Kryshen
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * $Id: Functions.java,v 1.11 2006/12/14 19:44:31 mikhail Exp $
19 */
21 package kryshen.tema;
23 import java.io.*;
24 import java.util.*;
26 import kryshen.tema.functions.*;
28 /**
29 * Standard TEMA functions.
30 *
31 * @author Mikhail A. Kryshen
32 */
33 public class Functions {
34 // TODO: arithmetics, conditions
36 /**
37 * Register all standard functions.
38 *
39 * @param p TemplateParser to register functions in.
40 */
41 static void registerAllFunctions(TemplateParser p) {
42 p.registerFunction("!", Standard.NULL_OUTPUT);
43 p.registerFunction("set", Standard.SET);
44 p.registerFunction("load", Standard.LOAD);
45 p.registerFunction("query", Standard.QUERY);
46 p.registerFunction("prepare", Standard.PREPARE);
47 p.registerFunction("replace", Standard.REPLACE);
48 p.registerFunction("xml_escape", Standard.XML_ESCAPE);
49 p.registerFunction("xml_cdata", Standard.XML_CDATA);
51 p.registerFunction("define", Define.DEFINE);
53 p.registerFunction("write", IO.WRITE);
54 p.registerFunction("read", IO.READ);
55 p.registerFunction("include", IO.INCLUDE);
56 p.registerFunction("copy", IO.COPY);
58 p.registerFunction("false", Logics.FALSE);
59 p.registerFunction("true", Logics.TRUE);
60 p.registerFunction("optional", Logics.OPTIONAL);
62 p.registerFunction("image", ImageConverter.IMAGE);
64 /*
65 Other functuons:
66 db - defined in Tema.query().
67 nextarg, data - defined in Define.invoke().
68 */
69 }
70 }