00001 <?php 00002 /* 00003 This file is part of WikiConverter. WikiConverter is a program 00004 that converts text/wiki into other formats (like html or 00005 xml/docbook). 00006 00007 Copyright (c) 2005 Dashamir Hoxha, dhoxha@inima.al 00008 00009 WikiConverter is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU General Public License as 00011 published by the Free Software Foundation; either version 2 of the 00012 License, or (at your option) any later version. 00013 00014 WikiConverter is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with WikiConverter; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00022 USA 00023 */ 00024 00030 $path = dirname(__FILE__).'/'; 00031 include_once $path.'class.Info.php'; 00032 include_once $path.'class.Tpl.php'; 00033 include_once $path.'class.Text.php'; 00034 include_once $path.'class.Paragraph.php'; 00035 include_once $path.'class.Block.php'; 00036 include_once $path.'class.Listing.php'; 00037 include_once $path.'class.ListItem.php'; 00038 include_once $path.'class.WikiParser.php'; 00039 include_once $path.'fun.regex_replace.php'; 00040 00042 $tpl_collection = array(); 00043 ?>