<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<?xml-stylesheet type="text/xsl" href="1.2.0/modx.prosilver.en.xsl"?>
<!--For security purposes, please check: http
://www.phpbb.com/mods/ for the latest version of this MOD. Although MODs are checked before being allowed in the MODs Database there is no guarantee that there are no security problems within the MOD. No support will be given for MODs not found within the MODs Database which can be found at http://www.phpbb.com/mods/-->
<mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.2.0.xsd">
	<header>
		<license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license>
		
		<title lang="en">Hello World</title>
		<title lang="nl">Hallo Wereld</title>
		
		<description lang="en">Quick Start Tutorial sample</description>
		<description lang="nl">Snel start tutorial voorbeeld</description>
		
		<author-notes lang="en">This is a tutorial, do not install this MOD</author-notes>
		<author-notes lang="nl">Dit is een tutorial, installeer deze mod niet</author-notes>
		
		<author-group>
			<author>
				<realname>David Smith</realname>
				<username>smithy_dll</username>
				<homepage>http://www.phpbb.com/mods/modx/</homepage>
			</author>
			<author>
				<realname>Eric Faerber</realname>
				<username>wGEric</username>
			</author>
			<author>
			    <username>Paul</username>
			</author>
		</author-group>
		
		<mod-version>1.2.0</mod-version>
		
		<installation>
			<level>easy</level>
			<time>60</time>
			<target-version>3.0.2</target-version>
		</installation>

		<history>
			<entry>
				<date>2006-03-19</date>
				<rev-version>1.0.0a</rev-version>
				<changelog lang="en">
					<change>Completed MODX Quick Start Tutorial</change>
				</changelog>
				<changelog lang="nl">
					<change>MODX snel start tutorial afgemaakt</change>
				</changelog>
			</entry>
			<entry>
				<date>2007-04-25</date>
				<rev-version>1.0.0b</rev-version>
				<changelog lang="en">
					<change>Updated MODX XSLT to prosilver</change>
					<change>Updated MODX Quick Start Tutorial to include dutch example</change>
				</changelog>
				<changelog lang="nl">
					<change>MODX XSLT geupdated naar prosilver</change>
					<change>MODX snel start tutorial aangepast om Nederlands voorbeeld in te voegen</change>
				</changelog>        
			</entry>
			<entry>
				<date>2008-06-01</date>
				<rev-version>1.2.0</rev-version>
				<changelog lang="en">
				    <change>Updated the sample MODX file for the new MODX 1.2.0 release</change>
				</changelog>
				<changelog lang="nl">
				    <change>De voorbeeld MODX MODX geupdated voor de nieuwe MODX 1.2.0 release</change>
				</changelog>
			</entry>
		</history>
		<link-group>
			<link type="template" href="subsilver2.xml" lang="en">subsilver2</link>
		</link-group>
	</header>
	
	<action-group>
		<sql><![CDATA[CREATE TABLE phpbb_sessions_keys (
	key_id varchar(32) DEFAULT '0' NOT NULL,
	user_id mediumint(8) DEFAULT '0' NOT NULL,
	last_ip varchar(8) DEFAULT '0' NOT NULL,
	last_login int(11) DEFAULT '0' NOT NULL,
	PRIMARY KEY (key_id, user_id),
	KEY last_login (last_login)
); ]]></sql>

		<copy>
			<file from="root/index.php" to="index.php" />
			<file from="root/common.php" to="common.php" />
		</copy>
		
		<open src="index.php">
			<edit>
				<comment lang="en">Here is a comment</comment>
				<comment lang="nl">Hier is een stukje commentaar</comment>
				<find>text to find</find>
				<action type="replace-with">text to be replaced with</action>
			</edit>
			<edit>
				<find>text to find</find>
				<action type="after-add">text to be added on the line after</action>
			</edit>
			<edit>
				<find>text to find</find>
				<action type="before-add">text to be added on the line before</action>
			</edit>
			<edit>
				<find><![CDATA[Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> &copy; 2001, {%:1} phpBB Group<br />{TRANSLATION_INFO}</span></div>]]></find>
				<action type="operation">%:1 +10</action>
			</edit>
			<edit>
				<find>text to find</find>
				<inline-edit>
					<inline-find>find</inline-find>
					<inline-action type="replace-with"> be replaced with</inline-action>
				</inline-edit>
			</edit>
			<edit>
				<find>text to find</find>
				<inline-edit>
					<inline-find>find</inline-find>
					<inline-action type="after-add">, err have a string appended to</inline-action>
				</inline-edit>
			</edit>
			<edit>
				<find>text to find</find>
				<inline-edit>
					<inline-find>find</inline-find>
					<inline-action type="before-add">have a sting pre-pended to on the line to </inline-action>
				</inline-edit>
			</edit>
			<edit>
				<find><![CDATA[Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> &copy; 2001, {%:1} phpBB Group<br />{TRANSLATION_INFO}</span></div>]]></find>
				<inline-edit>
					<inline-find>2001, {%:1} phpBB</inline-find>
					<inline-action type="operation">%:1 +10</inline-action>
				</inline-edit>
			</edit>
		</open>
		
		<diy-instructions lang="en">CHMOD foo.php and bar.php to 777
Open in your web browser and follow the instructions in db_install.php</diy-instructions>
		
		<diy-instructions lang="nl">CHMOD foo.php en bar.php naar 777
Open je browser en volg de instructies in db_install.php</diy-instructions>
	</action-group>
</mod>
