} // END - if
// Include ctracker, recommended place!
-//require_once('ctracker.php');
-//require_once('ipfilter.php');
+require_once('/usr/share/php/ctracker/ctracker.php');
+require_once('/usr/share/php/ipfilter.php');
/**
* Function to secure input strings
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 10/10/2003 *
+ * =============== Last change: 01/16/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : action-main.php *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : Hauptmenue: Anmeldung, Login, Willkommen usw. *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880 $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: quix0r $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf('inc/modules/guest/what-%s.php', getWhat());
+if (isIncludeReadable($INC)) {
+ // Ok, we finally load the guest action module
+ loadIncludeOnce($INC);
+} else {
+ addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL Start: 01/27/2004 *
+ * =================== Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : action- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 5960M $ *
+ * $Date:: 2013-06-22 05:22:23 +0200 (Sat, 22 Jun 2013) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: (local) $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team *
+ * For more information visit: http://mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ exit();
+} elseif (isBlockModeEnabled()) {
+ // Block mode detected
+ return;
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
+if (isIncludeReadable($inc)) {
+ // Ok, we finally load the guest action module
+ loadIncludeOnce($inc);
+} else {
+ addFatalMessage(__FILE__, __LINE__, '{--GUEST_WHAT_404--}');
+}
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 10/10/2003 *
+ * =============== Last change: 01/16/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : action-main.php *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : Hauptmenue: Anmeldung, Login, Willkommen usw. *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880 $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: quix0r $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+ require($INC);
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf('inc/modules/guest/what-%s.php', getWhat());
+if (isIncludeReadable($INC)) {
+ // Ok, we finally load the guest action module
+ loadIncludeOnce($INC);
+} else {
+ addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 10/10/2003 *
+ * =============== Last change: 01/16/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : action-main.php *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : Hauptmenue: Anmeldung, Login, Willkommen usw. *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880 $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: quix0r $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+ require($INC);
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf('inc/modules/guest/what-%s.php', getWhat());
+if (isIncludeReadable($INC)) {
+ // Ok, we finally load the guest action module
+ loadIncludeOnce($INC);
+} else {
+ addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 10/10/2003 *
+ * =============== Last change: 01/16/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : action-main.php *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : Hauptmenue: Anmeldung, Login, Willkommen usw. *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880 $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: quix0r $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+ require($INC);
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf('inc/modules/guest/what-%s.php', getWhat());
+if (isIncludeReadable($INC)) {
+ // Ok, we finally load the guest action module
+ loadIncludeOnce($INC);
+} else {
+ addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL Start: 01/27/2004 *
+ * =================== Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : action- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 5960M $ *
+ * $Date:: 2013-06-22 05:22:28 +0200 (Sat, 22 Jun 2013) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: (local) $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team *
+ * For more information visit: http://mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ exit();
+} elseif (isBlockModeEnabled()) {
+ // Block mode detected
+ return;
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
+if (isIncludeReadable($inc)) {
+ // Ok, we finally load the guest action module
+ loadIncludeOnce($inc);
+} else {
+ addFatalMessage(__FILE__, __LINE__, '{--GUEST_WHAT_404--}');
+}
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Special file
+loadIncludeOnce('inc/classes/rdf.class.php');
+
+// Load template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+outputHtml('<div style="padding-left: 10px; padding-right: 10px">');
+$rdf = new fase4_rdf();
+$rdf->_use_nl2br = FALSE;
+$rdf->_finishCallback = 'compactContent';
+$rdf->use_dynamic_display(FALSE);
+$rdf->set_CacheDir(getConfig('PATH').'inc/cache/');
+$rdf->set_salt(md5(getConfig('SITE_KEY')));
+$rdf->set_Options(
+ array(
+ 'textinput' => 'hidden',
+ 'sitelink' => 'http://status.mxchange.org'
+ )
+);
+$rdf->set_max_item(10);
+$rdf->parse_RDF('http://status.mxchange.org/index.php/api/statuses/public_timeline.rss');
+outputHtml($rdf->finish(TRUE));
+outputHtml('</div>');
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 856 $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: stelzi $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Special file
+loadIncludeOnce('inc/classes/rdf.class.php');
+
+// Load default template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+outputHtml('<div style="padding-left: 10px; padding-right: 10px">');
+$rdf = new fase4_rdf();
+$rdf->_use_nl2br = FALSE;
+$rdf->use_dynamic_display(FALSE);
+$rdf->_finishCallback = 'compactContent';
+$rdf->set_CacheDir(getConfig('PATH').'inc/cache/');
+$rdf->set_salt(md5(getConfig('SITE_KEY')));
+$rdf->set_Options(
+ array(
+ 'textinput' => 'hidden',
+ 'sitelink' => 'http://bugs.mxchange.org'
+ )
+);
+$rdf->set_max_item(10);
+$rdf->parse_RDF('http://bugs.mxchange.org/issues_rss.php?project_id=0');
+outputHtml($rdf->finish(TRUE));
+outputHtml('</div>');
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003, 2004, 2005 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 10/19/2003 *
+ * ================ Last change: 10/19/2003 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 by Roland Haeder *
+ * For more information visit: http://www.autoinstaller.de *
+ * *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Redirect to wiki
+redirectToUrl('https://wiki.mxchange.org');
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load template
+loadTemplate('downloads');
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+define('_MYSQL_PREFIX', getConfig('_MYSQL_PREFIX'));
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Special file
+loadIncludeOnce('inc/classes/rdf.class.php');
+
+// Load template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+outputHtml('<div style="padding-left: 10px; padding-right: 10px">');
+$rdf = new fase4_rdf();
+$rdf->_use_nl2br = FALSE;
+$rdf->_finishCallback = 'compactContent';
+$rdf->use_dynamic_display(FALSE);
+$rdf->set_CacheDir(getConfig('PATH').'inc/cache/');
+$rdf->set_salt(md5(getConfig('SITE_KEY')));
+$rdf->set_Options(
+ array(
+ 'textinput' => 'hidden',
+ 'sitelink' => 'http://forum.mxchange.org'
+ )
+);
+$rdf->set_max_item(10);
+$rdf->parse_RDF('http://forum.mxchange.org/rss.xml');
+$out = trim($rdf->finish(TRUE));
+if (!empty($out)) {
+ outputHtml($out);
+} // END - if
+outputHtml('</div>');
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+// @DEPRECATED
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL Start: 10/19/2003 *
+ * =================== Last change: 03/26/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what-infos.php *
+ * -------------------------------------------------------------------- *
+ * Short description : General informations *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : Allgemeine Informationen *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 5960M $ *
+ * $Date:: 2013-01-12 15:43:27 +0100 (Sat, 12 Jan 2013) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: (local) $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team *
+ * For more information visit: http://mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ exit();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load default template
+loadTemplate('network_webmaster_infos');
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load warning
+loadTemplate('news_archive_warning');
+
+// Load main template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 07/13/2004 *
+ * ================ Last change: 07/13/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what-powered.php *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+define('__CONTENT_BASIC' , loadTemplate('order-basic' , true));
+define('__CONTENT_COMPLETE', loadTemplate('order-complete' , true));
+define('__CONTENT_MAX' , loadTemplate('order-max' , true));
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 02/11/2005 *
+ * ================ Last change: 02/11/2005 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what-rettet_das_internet.php *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * M-XChange v0.1.0 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003, 2004, 2005 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 of the License. *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************/
+/* M-XChange v0.1.0 Start: 10/19/2003 */
+/* ================ Last change: 10/19/2003 */
+/* */
+/* -------------------------------------------------------------------- */
+/* File : what- */
+/* -------------------------------------------------------------------- */
+/* Short description : */
+/* -------------------------------------------------------------------- */
+/* Kurzbeschreibung : */
+/* -------------------------------------------------------------------- */
+/* */
+/* -------------------------------------------------------------------- */
+/* Copyright (c) 2003 by Roland Haeder */
+/* For more information visit: http://www.autoinstaller.de */
+/* */
+/************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
+?>
--- /dev/null
+<?php
+/************************************************************************
+ * MXChange v0.2.1 Start: 01/27/2004 *
+ * ================ Last change: 01/27/2004 *
+ * *
+ * -------------------------------------------------------------------- *
+ * File : what- *
+ * -------------------------------------------------------------------- *
+ * Short description : *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung : *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 856 $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ *
+ * $Tag:: 0.2.1-FINAL $ *
+ * $Author:: stelzi $ *
+ * Needs to be in all Files and every File needs "svn propset *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder *
+ * For more information visit: http://www.mxchange.org *
+ * *
+ * 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 2 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 *
+ * 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, write to the Free Software *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
+ * MA 02110-1301 USA *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+ die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Special file
+loadIncludeOnce('inc/classes/rdf.class.php');
+
+// Load default template
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+outputHtml('<div style="padding-left: 10px; padding-right: 10px">');
+$rdf = new fase4_rdf();
+$rdf->_use_nl2br = FALSE;
+$rdf->_finishCallback = 'compactContent';
+$rdf->use_dynamic_display(FALSE);
+$rdf->set_CacheDir(getConfig('PATH').'inc/cache/');
+$rdf->set_salt(md5(getConfig('SITE_KEY')));
+$rdf->set_Options(
+ array(
+ 'textinput' => 'hidden',
+ 'sitelink' => 'https://wiki.mxchange.org'
+ )
+);
+$rdf->set_max_item(10);
+$rdf->parse_RDF('https://wiki.mxchange.org/feed.php');
+outputHtml($rdf->finish(TRUE));
+outputHtml('</div>');
+
+//
+?>