<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://en.contaowiki.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://en.contaowiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Toflar</id>
		<title>Contao Community Documentation - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://en.contaowiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Toflar"/>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Special:Contributions/Toflar"/>
		<updated>2026-04-21T23:43:47Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.22.6</generator>

	<entry>
		<id>https://en.contaowiki.org/MultiSelectWizard</id>
		<title>MultiSelectWizard</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/MultiSelectWizard"/>
				<updated>2011-03-21T13:56:34Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[de:MultiSelectWizard]]&lt;br /&gt;
[[Category:Extensions]]&lt;br /&gt;
{{ExtInfo&lt;br /&gt;
| Dev=Yanick Witschi&lt;br /&gt;
| DevSite=http://www.certo-net.ch&lt;br /&gt;
| ExtVersion=1.1.0&lt;br /&gt;
| Version=2.9.0 - 2.9.3&lt;br /&gt;
| TLVersion=2.7.0 - 2.8.4&lt;br /&gt;
| ERLink=http://www.contao.org/extension-list/view/MultiSelectWizard.html&lt;br /&gt;
| TrackerLink=http://contao-forge.org/projects/multiselectwizard&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This widget is meant to define one or more select input fields side by side and as many rows as you want.&lt;br /&gt;
&lt;br /&gt;
=Look=&lt;br /&gt;
The widget looks exactly the same like the ModuleWizard of the Contao core. The problem with this wizard is that the sources (SELECT * FROM tl_module etc.) are all hardcoded and it's therefore useless for third party developers.&lt;br /&gt;
[[File:MultiSelectWizard.png|MultiSelectWizard|frame|center]]&lt;br /&gt;
&lt;br /&gt;
=Usage=&lt;br /&gt;
There are two different ways of using the widget. Either by providing the data directly using &amp;quot;columnsData&amp;quot; in the &amp;quot;eval&amp;quot; array or with a callback.&lt;br /&gt;
&lt;br /&gt;
==Providing columnsData==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
	'label'          =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
	'exclude'	 =&amp;gt; true,&lt;br /&gt;
	'inputType'	 =&amp;gt; 'multiSelectWizard',&lt;br /&gt;
	'eval'		 =&amp;gt; array&lt;br /&gt;
				   (&lt;br /&gt;
				   		'mandatory'=&amp;gt;true,&lt;br /&gt;
				   		'columnsData'=&amp;gt; array&lt;br /&gt;
						(&lt;br /&gt;
							'columns' =&amp;gt; array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'language',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['mylanguagelabel'],&lt;br /&gt;
								'source' =&amp;gt; $this-&amp;gt;getLanguages(),&lt;br /&gt;
								'style' =&amp;gt; 'width:200px'&lt;br /&gt;
							),&lt;br /&gt;
							array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'secondcolumn',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['secondcolumn'],&lt;br /&gt;
								'source' =&amp;gt; array&lt;br /&gt;
								(&lt;br /&gt;
									'option1'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option1'],&lt;br /&gt;
									'option2'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option2'],&lt;br /&gt;
									'option3'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option3']&lt;br /&gt;
								),&lt;br /&gt;
								'style' =&amp;gt; 'width:100px'&lt;br /&gt;
							),&lt;br /&gt;
							array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'columnwithforeignkey',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['columnwithforeignkey'],&lt;br /&gt;
								'source' =&amp;gt; 'tl_table.column'&lt;br /&gt;
							)&lt;br /&gt;
						)&lt;br /&gt;
					)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Providing data using the callback==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
		'label'                 =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
		'exclude'		=&amp;gt; true,&lt;br /&gt;
		'inputType'		=&amp;gt; 'multiSelectWizard',&lt;br /&gt;
		'eval'			=&amp;gt; array('mandatory'=&amp;gt;true,'columnsCallback'=&amp;gt;array('Class', 'Method'))&lt;br /&gt;
										&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where obviously the return value of your method should be the same array as with the &amp;quot;columnsData&amp;quot; variant.&lt;br /&gt;
&lt;br /&gt;
==Javascript-Fallback==&lt;br /&gt;
In case there is no Javascript, the modifications (add, delete etc.) will be executed manually. A lot of widgets execute database operations which is in 99.9% of all cases correct although there are exceptions such as the storage in the localconfig.php.&lt;br /&gt;
The MultiSelectWizard supports both, storage in the localconfig.php and any routine that can be defined using a callback.&lt;br /&gt;
&lt;br /&gt;
===localconfig.php===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
'eval'	=&amp;gt; array('storeInLocalConfig'=&amp;gt;true)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Any routine===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
'eval'	=&amp;gt; array('storeCallback'=&amp;gt;array('MyClass','MyMethod'))&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
class MyClass extends Backend&lt;br /&gt;
{&lt;br /&gt;
   public function MyMethod($objWidget)&lt;br /&gt;
   {&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Helper methods==&lt;br /&gt;
&lt;br /&gt;
The extension also provides helper methods every developer can make use of.&lt;br /&gt;
&lt;br /&gt;
===getByKey===&lt;br /&gt;
The easier method is using '''&amp;lt;code&amp;gt;MultiSelectWizard::getByKey($strSerialized, $strKey)&amp;lt;/code&amp;gt;'''. Just provide the serialized value from the database and the desired key of the column (in the example above e.g. &amp;quot;language&amp;quot;) and you get an array of all values of this column.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguages = MultiSelectWizard::getByKey($obj-&amp;gt;myField, 'language');&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===getFilteredByKey (AND condition)===&lt;br /&gt;
The rather more sophisticated method is '''&amp;lt;code&amp;gt;MultiSelectWizard::getFilteredByKey($strSerialized, $strKey, $arrAnotherKey)&amp;lt;/code&amp;gt;'''. The two first parameters are the same. You provide the serialized value and the key of the column you want the values of. Then there's a third parameter where you can filter your return values.&lt;br /&gt;
Assuming you want to have all languages that use have the value &amp;quot;option2&amp;quot; in the column &amp;quot;secondcolumn&amp;quot; you can use this method as follows:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguagesOption2 = MultiSelectWizard::getFilteredByKey($obj-&amp;gt;myField, 'language', array('secondcolumn'=&amp;gt;'option2'));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can use multiple filter conditions. Just extend the $arrAnotherkey accordingly. You will get only the data that matches '''all''' of the provided filter conditions!&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/MultiSelectWizard</id>
		<title>MultiSelectWizard</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/MultiSelectWizard"/>
				<updated>2011-02-25T07:57:25Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[de:MultiSelectWizard]]&lt;br /&gt;
[[Category:Extensions]]&lt;br /&gt;
{{ExtInfo&lt;br /&gt;
| Dev=Yanick Witschi&lt;br /&gt;
| DevSite=http://www.certo-net.ch&lt;br /&gt;
| ExtVersion=1.0.0&lt;br /&gt;
| Version=2.9.0 - 2.9.3&lt;br /&gt;
| TLVersion=2.7.0 - 2.8.4&lt;br /&gt;
| ERLink=http://www.contao.org/extension-list/view/MultiSelectWizard.html&lt;br /&gt;
| TrackerLink=http://contao-forge.org/projects/multiselectwizard&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This widget is meant to define one or more select input fields side by side and as many rows as you want.&lt;br /&gt;
&lt;br /&gt;
=Look=&lt;br /&gt;
The widget looks exactly the same like the ModuleWizard of the Contao core. The problem with this wizard is that the sources (SELECT * FROM tl_module etc.) are all hardcoded and it's therefore useless for third party developers.&lt;br /&gt;
[[File:MultiSelectWizard.png|MultiSelectWizard|frame|center]]&lt;br /&gt;
&lt;br /&gt;
=Usage=&lt;br /&gt;
There are two different ways of using the widget. Either by providing the data directly using &amp;quot;columnsData&amp;quot; in the &amp;quot;eval&amp;quot; array or with a callback.&lt;br /&gt;
&lt;br /&gt;
==Providing columnsData==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
	'label'          =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
	'exclude'	 =&amp;gt; true,&lt;br /&gt;
	'inputType'	 =&amp;gt; 'multiSelectWizard',&lt;br /&gt;
	'eval'		 =&amp;gt; array&lt;br /&gt;
				   (&lt;br /&gt;
				   		'mandatory'=&amp;gt;true,&lt;br /&gt;
				   		'columnsData'=&amp;gt; array&lt;br /&gt;
						(&lt;br /&gt;
							'columns' =&amp;gt; array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'language',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['mylanguagelabel'],&lt;br /&gt;
								'source' =&amp;gt; $this-&amp;gt;getLanguages(),&lt;br /&gt;
								'style' =&amp;gt; 'width:200px'&lt;br /&gt;
							),&lt;br /&gt;
							array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'secondcolumn',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['secondcolumn'],&lt;br /&gt;
								'source' =&amp;gt; array&lt;br /&gt;
								(&lt;br /&gt;
									'option1'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option1'],&lt;br /&gt;
									'option2'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option2'],&lt;br /&gt;
									'option3'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option3']&lt;br /&gt;
								),&lt;br /&gt;
								'style' =&amp;gt; 'width:100px'&lt;br /&gt;
							)&lt;br /&gt;
						)&lt;br /&gt;
					)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Providing data using the callback==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
		'label'                 =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
		'exclude'		=&amp;gt; true,&lt;br /&gt;
		'inputType'		=&amp;gt; 'multiSelectWizard',&lt;br /&gt;
		'eval'			=&amp;gt; array('mandatory'=&amp;gt;true,'columnsCallback'=&amp;gt;array('Class', 'Method'))&lt;br /&gt;
										&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where obviously the return value of your method should be the same array as with the &amp;quot;columnsData&amp;quot; variant.&lt;br /&gt;
&lt;br /&gt;
==Helper methods==&lt;br /&gt;
&lt;br /&gt;
The extension also provides helper methods every developer can make use of.&lt;br /&gt;
&lt;br /&gt;
===getByKey===&lt;br /&gt;
The easier method is using '''&amp;lt;code&amp;gt;MultiSelectWizard::getByKey($strSerialized, $strKey)&amp;lt;/code&amp;gt;'''. Just provide the serialized value from the database and the desired key of the column (in the example above e.g. &amp;quot;language&amp;quot;) and you get an array of all values of this column.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguages = MultiSelectWizard::getByKey($obj-&amp;gt;myField, 'language');&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===getFilteredByKey===&lt;br /&gt;
The rather more sophisticated method is '''&amp;lt;code&amp;gt;MultiSelectWizard::getFilteredByKey($strSerialized, $strKey, $arrAnotherKey)&amp;lt;/code&amp;gt;'''. The two first parameters are the same. You provide the serialized value and the key of the column you want the values of. Then there's a third parameter where you can filter your return values.&lt;br /&gt;
Assuming you want to have all languages that use have the value &amp;quot;option2&amp;quot; in the column &amp;quot;secondcolumn&amp;quot; you can use this method as follows:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguagesOption2 = MultiSelectWizard::getFilteredByKey($obj-&amp;gt;myField, 'language', array('secondcolumn'=&amp;gt;'option2'));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can use multiple filter conditions. Just extend the $arrAnotherkey accordingly.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/File:MultiSelectWizard.png</id>
		<title>File:MultiSelectWizard.png</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/File:MultiSelectWizard.png"/>
				<updated>2011-02-25T07:46:55Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: uploaded a new version of &amp;quot;File:MultiSelectWizard.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MultiSelectWizard&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/File:MultiSelectWizard.png</id>
		<title>File:MultiSelectWizard.png</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/File:MultiSelectWizard.png"/>
				<updated>2011-02-25T07:34:51Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: MultiSelectWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MultiSelectWizard&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/MultiSelectWizard</id>
		<title>MultiSelectWizard</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/MultiSelectWizard"/>
				<updated>2011-02-25T07:33:35Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Look */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[de:MultiSelectWizard]]&lt;br /&gt;
[[Category:Extensions]]&lt;br /&gt;
{{ExtInfo&lt;br /&gt;
| Dev=Yanick Witschi&lt;br /&gt;
| DevSite=http://www.certo-net.ch&lt;br /&gt;
| ExtVersion=1.0.0&lt;br /&gt;
| Version=2.9.0 - 2.9.3&lt;br /&gt;
| TLVersion=2.7.0 - 2.8.4&lt;br /&gt;
| ERLink=http://www.contao.org/extension-list/view/MultiSelectWizard.html&lt;br /&gt;
| TrackerLink=http://contao-forge.org/projects/multiselectwizard&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This widget is meant to define one or more select input fields side by side and as many rows as you want.&lt;br /&gt;
&lt;br /&gt;
=Look=&lt;br /&gt;
The widget looks exactly the same like the ModuleWizard of the Contao core. The problem with this wizard is that the sources (SELECT * FROM tl_module etc.) are all hardcoded and it's therefore useless for third party developers.&lt;br /&gt;
[[File:MultiSelectWizard.png|MultiSelectWizard|frame|center]]&lt;br /&gt;
&lt;br /&gt;
=Usage=&lt;br /&gt;
There are two different ways of using the widget. Either by providing the data directly using &amp;quot;columnsData&amp;quot; in the &amp;quot;eval&amp;quot; array or with a callback.&lt;br /&gt;
&lt;br /&gt;
==Providing columnsData==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
	'label'          =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
	'exclude'	 =&amp;gt; true,&lt;br /&gt;
	'inputType'	 =&amp;gt; 'multiSelectWizard',&lt;br /&gt;
	'eval'		 =&amp;gt; array&lt;br /&gt;
				   (&lt;br /&gt;
				   		'mandatory'=&amp;gt;true,&lt;br /&gt;
				   		'columnsData'=&amp;gt; array&lt;br /&gt;
						(&lt;br /&gt;
							'columns' =&amp;gt; array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'language',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['mylanguagelabel'],&lt;br /&gt;
								'source' =&amp;gt; $this-&amp;gt;getLanguages(),&lt;br /&gt;
								'style' =&amp;gt; 'width:200px'&lt;br /&gt;
							),&lt;br /&gt;
							array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'secondcolumn',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['secondcolumn'],&lt;br /&gt;
								'source' =&amp;gt; array&lt;br /&gt;
								(&lt;br /&gt;
									'option1'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option1'],&lt;br /&gt;
									'option2'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option2'],&lt;br /&gt;
									'option3'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option3']&lt;br /&gt;
								),&lt;br /&gt;
								'style' =&amp;gt; 'width:100px'&lt;br /&gt;
							)&lt;br /&gt;
						)&lt;br /&gt;
					)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Providing data using the callback==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
		'label'                 =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
		'exclude'		=&amp;gt; true,&lt;br /&gt;
		'inputType'		=&amp;gt; 'multiSelectWizard',&lt;br /&gt;
		'eval'			=&amp;gt; array('mandatory'=&amp;gt;true,'columnsCallback'=&amp;gt;array('Class', 'Method'))&lt;br /&gt;
										&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where obviously the return value of your method should be the same array as with the &amp;quot;columnsData&amp;quot; variant.&lt;br /&gt;
&lt;br /&gt;
==Helper methods==&lt;br /&gt;
&lt;br /&gt;
In der Erweiterung wurden auch Helper-Methoden eingebaut, die man verwenden kann.&lt;br /&gt;
&lt;br /&gt;
===getByKey===&lt;br /&gt;
Die einfachere Methode ist mittels '''&amp;lt;code&amp;gt;MultiSelectWizard::getByKey($strSerialized, $strKey)&amp;lt;/code&amp;gt;'''. Einfach den serialisierten Wert aus der Datenbank plus den gewünschten Key mitgeben (im obigen Beispiel z.B. &amp;quot;language&amp;quot;) und man bekommt ein aggregiertes Array mit allen Werten von dieser Spalte.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguages = MultiSelectWizard::getByKey($obj-&amp;gt;myField, 'language');&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===getFilteredByKey===&lt;br /&gt;
Die etwas kompliziertere Methode ist mit '''&amp;lt;code&amp;gt;MultiSelectWizard::getFilteredByKey($strSerialized, $strKey, $arrAnotherKey)&amp;lt;/code&amp;gt;'''. Der Anfang ist genau gleich: Man übergibt einen serialisierter Wert und Key. Dann kommt ein Array, mit dessen Hilfe man Return-Werte filtern kann.&lt;br /&gt;
Wenn man also alle Sprachen möchte, die in der &amp;quot;secondcolumn&amp;quot; den Wert &amp;quot;option2&amp;quot; haben, nutzt man die Methode wie folgt:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguagesOption2 = MultiSelectWizard::getFilteredByKey($obj-&amp;gt;myField, 'language', array('secondcolumn'=&amp;gt;'option2'));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Selbstverständlich kann man auch mehrere Filterangaben mitgeben. Einfach immer im Stil von &amp;quot;column_key&amp;quot; =&amp;gt; &amp;quot;source_value&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/MultiSelectWizard</id>
		<title>MultiSelectWizard</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/MultiSelectWizard"/>
				<updated>2011-02-25T07:30:42Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[de:MultiSelectWizard]]&lt;br /&gt;
[[Category:Extensions]]&lt;br /&gt;
{{ExtInfo&lt;br /&gt;
| Dev=Yanick Witschi&lt;br /&gt;
| DevSite=http://www.certo-net.ch&lt;br /&gt;
| ExtVersion=1.0.0&lt;br /&gt;
| Version=2.9.0 - 2.9.3&lt;br /&gt;
| TLVersion=2.7.0 - 2.8.4&lt;br /&gt;
| ERLink=http://www.contao.org/extension-list/view/MultiSelectWizard.html&lt;br /&gt;
| TrackerLink=http://contao-forge.org/projects/multiselectwizard&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This widget is meant to define one or more select input fields side by side and as many rows as you want.&lt;br /&gt;
&lt;br /&gt;
=Look=&lt;br /&gt;
The widget looks exactly the same like the ModuleWizard of the Contao core. The problem with this wizard is that the sources (SELECT * FROM tl_module etc.) are all hardcoded and it's therefore useless for third party developers.&lt;br /&gt;
[[Datei:MultiSelectWizard.png|MultiSelectWizard|frame|center]]&lt;br /&gt;
&lt;br /&gt;
=Usage=&lt;br /&gt;
There are two different ways of using the widget. Either by providing the data directly using &amp;quot;columnsData&amp;quot; in the &amp;quot;eval&amp;quot; array or with a callback.&lt;br /&gt;
&lt;br /&gt;
==Providing columnsData==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
	'label'          =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
	'exclude'	 =&amp;gt; true,&lt;br /&gt;
	'inputType'	 =&amp;gt; 'multiSelectWizard',&lt;br /&gt;
	'eval'		 =&amp;gt; array&lt;br /&gt;
				   (&lt;br /&gt;
				   		'mandatory'=&amp;gt;true,&lt;br /&gt;
				   		'columnsData'=&amp;gt; array&lt;br /&gt;
						(&lt;br /&gt;
							'columns' =&amp;gt; array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'language',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['mylanguagelabel'],&lt;br /&gt;
								'source' =&amp;gt; $this-&amp;gt;getLanguages(),&lt;br /&gt;
								'style' =&amp;gt; 'width:200px'&lt;br /&gt;
							),&lt;br /&gt;
							array&lt;br /&gt;
							(&lt;br /&gt;
								'key'	=&amp;gt; 'secondcolumn',&lt;br /&gt;
								'label' =&amp;gt; $GLOBALS['TL_LANG']['MSC']['secondcolumn'],&lt;br /&gt;
								'source' =&amp;gt; array&lt;br /&gt;
								(&lt;br /&gt;
									'option1'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option1'],&lt;br /&gt;
									'option2'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option2'],&lt;br /&gt;
									'option3'	=&amp;gt; $GLOBALS['TL_LANG']['MSC']['option3']&lt;br /&gt;
								),&lt;br /&gt;
								'style' =&amp;gt; 'width:100px'&lt;br /&gt;
							)&lt;br /&gt;
						)&lt;br /&gt;
					)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Providing data using the callback==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array&lt;br /&gt;
(&lt;br /&gt;
		'label'                 =&amp;gt; &amp;amp;$GLOBALS['TL_LANG']['tl_table']['anything'],&lt;br /&gt;
		'exclude'		=&amp;gt; true,&lt;br /&gt;
		'inputType'		=&amp;gt; 'multiSelectWizard',&lt;br /&gt;
		'eval'			=&amp;gt; array('mandatory'=&amp;gt;true,'columnsCallback'=&amp;gt;array('Class', 'Method'))&lt;br /&gt;
										&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where obviously the return value of your method should be the same array as with the &amp;quot;columnsData&amp;quot; variant.&lt;br /&gt;
&lt;br /&gt;
==Helper methods==&lt;br /&gt;
&lt;br /&gt;
In der Erweiterung wurden auch Helper-Methoden eingebaut, die man verwenden kann.&lt;br /&gt;
&lt;br /&gt;
===getByKey===&lt;br /&gt;
Die einfachere Methode ist mittels '''&amp;lt;code&amp;gt;MultiSelectWizard::getByKey($strSerialized, $strKey)&amp;lt;/code&amp;gt;'''. Einfach den serialisierten Wert aus der Datenbank plus den gewünschten Key mitgeben (im obigen Beispiel z.B. &amp;quot;language&amp;quot;) und man bekommt ein aggregiertes Array mit allen Werten von dieser Spalte.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguages = MultiSelectWizard::getByKey($obj-&amp;gt;myField, 'language');&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===getFilteredByKey===&lt;br /&gt;
Die etwas kompliziertere Methode ist mit '''&amp;lt;code&amp;gt;MultiSelectWizard::getFilteredByKey($strSerialized, $strKey, $arrAnotherKey)&amp;lt;/code&amp;gt;'''. Der Anfang ist genau gleich: Man übergibt einen serialisierter Wert und Key. Dann kommt ein Array, mit dessen Hilfe man Return-Werte filtern kann.&lt;br /&gt;
Wenn man also alle Sprachen möchte, die in der &amp;quot;secondcolumn&amp;quot; den Wert &amp;quot;option2&amp;quot; haben, nutzt man die Methode wie folgt:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$arrLanguagesOption2 = MultiSelectWizard::getFilteredByKey($obj-&amp;gt;myField, 'language', array('secondcolumn'=&amp;gt;'option2'));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Selbstverständlich kann man auch mehrere Filterangaben mitgeben. Einfach immer im Stil von &amp;quot;column_key&amp;quot; =&amp;gt; &amp;quot;source_value&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/MultiSelectWizard</id>
		<title>MultiSelectWizard</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/MultiSelectWizard"/>
				<updated>2011-02-25T07:23:45Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[de:MultiSelectWizard]]&lt;br /&gt;
[[Category:Extensions]]&lt;br /&gt;
{{ExtInfo&lt;br /&gt;
| Dev=Yanick Witschi&lt;br /&gt;
| DevSite=http://www.certo-net.ch&lt;br /&gt;
| ExtVersion=1.0.0&lt;br /&gt;
| Version=2.9.0 - 2.9.3&lt;br /&gt;
| TLVersion=2.7.0 - 2.8.4&lt;br /&gt;
| ERLink=http://www.contao.org/erweiterungsliste/view/MultiSelectWizard.html&lt;br /&gt;
| TrackerLink=http://contao-forge.org/projects/multiselectwizard&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/MultiSelectWizard</id>
		<title>MultiSelectWizard</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/MultiSelectWizard"/>
				<updated>2011-02-25T07:21:58Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: Created page with 'de:MultiSelectWizard'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[de:MultiSelectWizard]]&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T08:22:48Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Please note!! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-04.png|Start up Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla is launched via Tools --&amp;gt; Chatzilla.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-05.png|Chatzilla welcome screen]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla has saved some IRC networks by default. To connect to a server of the Freenode network, we click on the link 'Freenode' or type the following command in the textfield:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Note|If you have a firewall installed you have to make sure that port 6667 is opened}}&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-06.png|server window]]&lt;br /&gt;
&lt;br /&gt;
Now there is a new tab entitled 'Freenode' and the dial-up starts. The dial-up can take several seconds and is indicated by an orange 'Connecting'.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-07.png|dial-up]]&lt;br /&gt;
&lt;br /&gt;
As soon as the connection to the server is established, Chatzilla confirms this with a green 'Connected'.&lt;br /&gt;
The last step is to join the chatroom (also called 'channel'). To join the channel '''#contao''' we need to type in the following command and confirm with 'Enter'.&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-08.png|Chatroom window]]&lt;br /&gt;
&lt;br /&gt;
The chatroom window opens in another tab and is divided as follows:&lt;br /&gt;
# Tab for the room #contao&lt;br /&gt;
# Textfield: type in text and press 'Enter'&lt;br /&gt;
# List of all the users in the chatroom&lt;br /&gt;
# Chatroom window: Here you will see all the messages&lt;br /&gt;
&lt;br /&gt;
=Please note!!=&lt;br /&gt;
It does not necessarily mean that a user is really in front of the computer, if his or her nickname appears in the nicklist.&lt;br /&gt;
Maybe they are doing something else in the background, are busy in some other way or even not in front of the computer. Some users also rely on bots ([[w:en:Eggdrop|Eggdrop]]) or bouncers ([[w:en:Bouncer|Bouncer]]) that remain connected even if the user has turned off the computer.&lt;br /&gt;
&lt;br /&gt;
--[[User:Toflar|Toflar]] 08:22, 28 May 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T08:22:37Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-04.png|Start up Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla is launched via Tools --&amp;gt; Chatzilla.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-05.png|Chatzilla welcome screen]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla has saved some IRC networks by default. To connect to a server of the Freenode network, we click on the link 'Freenode' or type the following command in the textfield:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Note|If you have a firewall installed you have to make sure that port 6667 is opened}}&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-06.png|server window]]&lt;br /&gt;
&lt;br /&gt;
Now there is a new tab entitled 'Freenode' and the dial-up starts. The dial-up can take several seconds and is indicated by an orange 'Connecting'.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-07.png|dial-up]]&lt;br /&gt;
&lt;br /&gt;
As soon as the connection to the server is established, Chatzilla confirms this with a green 'Connected'.&lt;br /&gt;
The last step is to join the chatroom (also called 'channel'). To join the channel '''#contao''' we need to type in the following command and confirm with 'Enter'.&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-08.png|Chatroom window]]&lt;br /&gt;
&lt;br /&gt;
The chatroom window opens in another tab and is divided as follows:&lt;br /&gt;
# Tab for the room #contao&lt;br /&gt;
# Textfield: type in text and press 'Enter'&lt;br /&gt;
# List of all the users in the chatroom&lt;br /&gt;
# Chatroom window: Here you will see all the messages&lt;br /&gt;
&lt;br /&gt;
=Please note!!=&lt;br /&gt;
It does not necessarily mean that a user is really in front of the computer, if his or her nickname appears in the nicklist.&lt;br /&gt;
Maybe they are doing something else in the background, are busy in some other way or even not in front of the computer. Some users also rely on bots ([[w:en:Eggdrop|Eggdrop]]) or bouncers ([[w:en:Bouncer|Bouncer]]) that remain connected even if the user has turned off the computer.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T08:22:00Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Please note!! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-04.png|Start up Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla is launched via Tools --&amp;gt; Chatzilla.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-05.png|Chatzilla welcome screen]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla has saved some IRC networks by default. To connect to a server of the Freenode network, we click on the link 'Freenode' or type the following command in the textfield:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Note|If you have a firewall installed you have to make sure that port 6667 is opened}}&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-06.png|server window]]&lt;br /&gt;
&lt;br /&gt;
Now there is a new tab entitled 'Freenode' and the dial-up starts. The dial-up can take several seconds and is indicated by an orange 'Connecting'.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-07.png|dial-up]]&lt;br /&gt;
&lt;br /&gt;
As soon as the connection to the server is established, Chatzilla confirms this with a green 'Connected'.&lt;br /&gt;
The last step is to join the chatroom (also called 'channel'). To join the channel '''#contao''' we need to type in the following command and confirm with 'Enter'.&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-08.png|Chatroom window]]&lt;br /&gt;
&lt;br /&gt;
The chatroom window opens in another tab and is divided as follows:&lt;br /&gt;
# Tab for the room #contao&lt;br /&gt;
# Textfield: type in text and press 'Enter'&lt;br /&gt;
# List of all the users in the chatroom&lt;br /&gt;
# Chatroom window: Here you will see all the messages&lt;br /&gt;
&lt;br /&gt;
=Please note!!=&lt;br /&gt;
It does not necessarily mean that a user is really in front of the computer, if his or her nickname appears in the nicklist.&lt;br /&gt;
Maybe they are doing something else in the background, are busy in some other way or even not in front of the computer. Some users also rely on bots ([[w:en:Eggdrop|Eggdrop]]) or bouncers ([[w:en:Bouncer|Bouncer]]) that remain connected even if the user has turned off the computer.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T08:14:14Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Use Chatzilla */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-04.png|Start up Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla is launched via Tools --&amp;gt; Chatzilla.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-05.png|Chatzilla welcome screen]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla has saved some IRC networks by default. To connect to a server of the Freenode network, we click on the link 'Freenode' or type the following command in the textfield:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Note|If you have a firewall installed you have to make sure that port 6667 is opened}}&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-06.png|server window]]&lt;br /&gt;
&lt;br /&gt;
Now there is a new tab entitled 'Freenode' and the dial-up starts. The dial-up can take several seconds and is indicated by an orange 'Connecting'.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-07.png|dial-up]]&lt;br /&gt;
&lt;br /&gt;
As soon as the connection to the server is established, Chatzilla confirms this with a green 'Connected'.&lt;br /&gt;
The last step is to join the chatroom (also called 'channel'). To join the channel '''#contao''' we need to type in the following command and confirm with 'Enter'.&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-08.png|Chatroom window]]&lt;br /&gt;
&lt;br /&gt;
The chatroom window opens in another tab and is divided as follows:&lt;br /&gt;
# Tab for the room #contao&lt;br /&gt;
# Textfield: type in text and press 'Enter'&lt;br /&gt;
# List of all the users in the chatroom&lt;br /&gt;
# Chatroom window: Here you will see all the messages&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/File:Stub.png</id>
		<title>File:Stub.png</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/File:Stub.png"/>
				<updated>2010-05-28T07:58:19Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: From [http://wefunction.com/2008/07/function-free-icon-set/]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;From [http://wefunction.com/2008/07/function-free-icon-set/]&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:56:29Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:50:55Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Configure Chatzilla */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:47:58Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Install Chatzilla */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click 'Add to Firefox'. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:47:45Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Configure Chatzilla */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click &amp;lt;nowiki&amp;gt;'Add to Firefox'&amp;lt;/nowiki&amp;gt;. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin 'Chatzilla' within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab 'General' you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:47:20Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Firefox with Chatzilla */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox with Chatzilla=&lt;br /&gt;
&lt;br /&gt;
This Howto limits itself to the Firefox add-on Chatzilla. [http://www.getfirefox.com Firefox] is a widely known browser and available for the lion's share of all operating systems.&lt;br /&gt;
If you are an advanced IRC user and join the channel with another software: Please feel free to add your tutorial and share your knowledge with the world!&lt;br /&gt;
&lt;br /&gt;
==Install Chatzilla==&lt;br /&gt;
Firefox provides a built-in installer for add-ons to enhance itself. Go to https://addons.mozilla.org/en-US/firefox/addon/16/ and click &amp;lt;nowiki&amp;gt;'Add to Firefox'&amp;lt;/nowiki&amp;gt;. After the installation you need to reboot Firefox.&lt;br /&gt;
&lt;br /&gt;
==Configure Chatzilla==&lt;br /&gt;
After the installation and the reboot of Firefox we need to configure some basic settings to connect to the Freenode network and get the chatroom started.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox add-on manager]]&lt;br /&gt;
&lt;br /&gt;
The add-ons can be found in the add-on manager (Navigation bar Tools --&amp;gt; Add-ons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla settings]]&lt;br /&gt;
&lt;br /&gt;
Choose the plugin &amp;lt;nowiki&amp;gt;'Chatzilla'&amp;lt;/nowiki&amp;gt; within the add-on manager and click on &amp;lt;nowiki&amp;gt;'settings'&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Configure Chatzilla]]&lt;br /&gt;
&lt;br /&gt;
After clicking on the tab &amp;lt;nowiki&amp;gt;'General'&amp;lt;/nowiki&amp;gt; you will find the fields 'Description', 'Nickname' and 'Username'.&lt;br /&gt;
Add your username to both, the Nickname and Username. Description is optional and up to you what you want to write there.&lt;br /&gt;
Then confirm all the windows.&lt;br /&gt;
&lt;br /&gt;
==Use Chatzilla==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:31:30Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* àim of the chat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=The aim of this chatroom=&lt;br /&gt;
The chat provides a possibility to get together with other users and exchange opinions/views, ask for help or just chit and chat about this and that. However, it is '''NOT''' an alternative to not reading the manuals or not using the search engine on the [http://www.typolight-community.org board] !&lt;br /&gt;
&lt;br /&gt;
=Firefox mit Chatzilla=&lt;br /&gt;
Das hier verfasste Howto bezieht sich auf das Firefox-Addon Chatzilla, da [http://www.mozilla-europe.org/de/firefox/ Firefox] ein weit verbreiteter Browser ist und für verschiedenste Betriebssysteme erhältlich ist.&lt;br /&gt;
==Chatzilla installieren==&lt;br /&gt;
Firefox bietet die Möglichkeit, seine Funktionen mittels Addons zu erweitern. Um das Addon Chatzilla zu installieren, öffnet man Firefox und folgt [https://addons.mozilla.org/de/firefox/addon/16/ diesen Link] und klickt auf den Button &amp;quot;Jetzt Herunterladen&amp;quot;. Nach der Installation muss Firefox neu gestartet werden.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla einrichten==&lt;br /&gt;
Nach der Installation und dem Neustart des Browsers müssen noch ein paar Grundeinstellungen gemacht werden, um zum Freenode-Netzwerk verbinden zu können.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox Addonmanager]]&lt;br /&gt;
&lt;br /&gt;
Das Addons findet man über den Addon-Manager (Menüleiste Extras --&amp;gt; Addons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla Einstellungen]]&lt;br /&gt;
&lt;br /&gt;
Im Addon-Manager das Plugin &amp;quot;Chatzilla&amp;quot; auswählen und auf &amp;quot;Einstellungen&amp;quot; klicken.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Chatzilla einrichten]]&lt;br /&gt;
&lt;br /&gt;
Auf der Registrierkarte &amp;quot;General&amp;quot; findet man die Felder &amp;quot;Description&amp;quot; (Beschreibung), Nickname und Username.Description ist frei wählbar, unter Nickname und Username gibt man seinen Nicknamen ein. Im Anschluss werden alle Fenster mit OK bestätigt.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla verwenden==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:23:20Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Einleitung */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
To join an [[w:en:Internet_Relay_Chat|IRC network]] chatroom there are various programs for nearly every operating system.&lt;br /&gt;
The (inofficial) chatroom for the Content Management System Contao is called '''#contao''' and can be found on the [http://www.freenode.net Freenode] network.&lt;br /&gt;
&lt;br /&gt;
=Zweck dieses Chats=&lt;br /&gt;
Der Chat dient zum Austausch mit anderen Usern, um Hilfe zu erfragen, zum Fachsimpeln oder einfach zum Smalltalk über das Tagesgeschehen. Er dient NICHT dazu, um sich bei Problemen Anleitungen vorlesen zu lassen oder sich die Forensuche zu ersparen!&lt;br /&gt;
&lt;br /&gt;
=Firefox mit Chatzilla=&lt;br /&gt;
Das hier verfasste Howto bezieht sich auf das Firefox-Addon Chatzilla, da [http://www.mozilla-europe.org/de/firefox/ Firefox] ein weit verbreiteter Browser ist und für verschiedenste Betriebssysteme erhältlich ist.&lt;br /&gt;
==Chatzilla installieren==&lt;br /&gt;
Firefox bietet die Möglichkeit, seine Funktionen mittels Addons zu erweitern. Um das Addon Chatzilla zu installieren, öffnet man Firefox und folgt [https://addons.mozilla.org/de/firefox/addon/16/ diesen Link] und klickt auf den Button &amp;quot;Jetzt Herunterladen&amp;quot;. Nach der Installation muss Firefox neu gestartet werden.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla einrichten==&lt;br /&gt;
Nach der Installation und dem Neustart des Browsers müssen noch ein paar Grundeinstellungen gemacht werden, um zum Freenode-Netzwerk verbinden zu können.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox Addonmanager]]&lt;br /&gt;
&lt;br /&gt;
Das Addons findet man über den Addon-Manager (Menüleiste Extras --&amp;gt; Addons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla Einstellungen]]&lt;br /&gt;
&lt;br /&gt;
Im Addon-Manager das Plugin &amp;quot;Chatzilla&amp;quot; auswählen und auf &amp;quot;Einstellungen&amp;quot; klicken.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Chatzilla einrichten]]&lt;br /&gt;
&lt;br /&gt;
Auf der Registrierkarte &amp;quot;General&amp;quot; findet man die Felder &amp;quot;Description&amp;quot; (Beschreibung), Nickname und Username.Description ist frei wählbar, unter Nickname und Username gibt man seinen Nicknamen ein. Im Anschluss werden alle Fenster mit OK bestätigt.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla verwenden==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:18:11Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: /* Opera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Einleitung=&lt;br /&gt;
Um an einem Chat in einem [[w:de:Internet_Relay_Chat|IRC-Netzwerk]] teilnehmen zu können, gibt es verschiedenste Programme für fast alle Betriebssysteme. Der (inoffizielle) Chatraum für das Content Management System Contao heist #contao (englischsprachig) bzw. #contao.de (deutschsprachig) und befindet sich im [http://www.freenode.net Freenode] Netzwerk.&lt;br /&gt;
&lt;br /&gt;
=Zweck dieses Chats=&lt;br /&gt;
Der Chat dient zum Austausch mit anderen Usern, um Hilfe zu erfragen, zum Fachsimpeln oder einfach zum Smalltalk über das Tagesgeschehen. Er dient NICHT dazu, um sich bei Problemen Anleitungen vorlesen zu lassen oder sich die Forensuche zu ersparen!&lt;br /&gt;
&lt;br /&gt;
=Firefox mit Chatzilla=&lt;br /&gt;
Das hier verfasste Howto bezieht sich auf das Firefox-Addon Chatzilla, da [http://www.mozilla-europe.org/de/firefox/ Firefox] ein weit verbreiteter Browser ist und für verschiedenste Betriebssysteme erhältlich ist.&lt;br /&gt;
==Chatzilla installieren==&lt;br /&gt;
Firefox bietet die Möglichkeit, seine Funktionen mittels Addons zu erweitern. Um das Addon Chatzilla zu installieren, öffnet man Firefox und folgt [https://addons.mozilla.org/de/firefox/addon/16/ diesen Link] und klickt auf den Button &amp;quot;Jetzt Herunterladen&amp;quot;. Nach der Installation muss Firefox neu gestartet werden.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla einrichten==&lt;br /&gt;
Nach der Installation und dem Neustart des Browsers müssen noch ein paar Grundeinstellungen gemacht werden, um zum Freenode-Netzwerk verbinden zu können.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox Addonmanager]]&lt;br /&gt;
&lt;br /&gt;
Das Addons findet man über den Addon-Manager (Menüleiste Extras --&amp;gt; Addons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla Einstellungen]]&lt;br /&gt;
&lt;br /&gt;
Im Addon-Manager das Plugin &amp;quot;Chatzilla&amp;quot; auswählen und auf &amp;quot;Einstellungen&amp;quot; klicken.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Chatzilla einrichten]]&lt;br /&gt;
&lt;br /&gt;
Auf der Registrierkarte &amp;quot;General&amp;quot; findet man die Felder &amp;quot;Description&amp;quot; (Beschreibung), Nickname und Username.Description ist frei wählbar, unter Nickname und Username gibt man seinen Nicknamen ein. Im Anschluss werden alle Fenster mit OK bestätigt.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla verwenden==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	<entry>
		<id>https://en.contaowiki.org/Chat_HowTo</id>
		<title>Chat HowTo</title>
		<link rel="alternate" type="text/html" href="https://en.contaowiki.org/Chat_HowTo"/>
				<updated>2010-05-28T07:17:28Z</updated>
		
		<summary type="html">&lt;p&gt;Toflar: Created page with ''''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''THIS IS GOING TO BE THE ENGLISH IRC CHAT HOWTO AND IS BEING TRANSLATED STEPWISE. DON'T GET CONFUSED BY GERMAN PARAGRAPHS AND GERMAN SCREENSHOTS. ANY HELP (TEXT AND SCREENSHOTS) IS HIGHLY APPRECIATED!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Einleitung=&lt;br /&gt;
Um an einem Chat in einem [[w:de:Internet_Relay_Chat|IRC-Netzwerk]] teilnehmen zu können, gibt es verschiedenste Programme für fast alle Betriebssysteme. Der (inoffizielle) Chatraum für das Content Management System Contao heist #contao (englischsprachig) bzw. #contao.de (deutschsprachig) und befindet sich im [http://www.freenode.net Freenode] Netzwerk.&lt;br /&gt;
&lt;br /&gt;
=Zweck dieses Chats=&lt;br /&gt;
Der Chat dient zum Austausch mit anderen Usern, um Hilfe zu erfragen, zum Fachsimpeln oder einfach zum Smalltalk über das Tagesgeschehen. Er dient NICHT dazu, um sich bei Problemen Anleitungen vorlesen zu lassen oder sich die Forensuche zu ersparen!&lt;br /&gt;
&lt;br /&gt;
=Firefox mit Chatzilla=&lt;br /&gt;
Das hier verfasste Howto bezieht sich auf das Firefox-Addon Chatzilla, da [http://www.mozilla-europe.org/de/firefox/ Firefox] ein weit verbreiteter Browser ist und für verschiedenste Betriebssysteme erhältlich ist.&lt;br /&gt;
==Chatzilla installieren==&lt;br /&gt;
Firefox bietet die Möglichkeit, seine Funktionen mittels Addons zu erweitern. Um das Addon Chatzilla zu installieren, öffnet man Firefox und folgt [https://addons.mozilla.org/de/firefox/addon/16/ diesen Link] und klickt auf den Button &amp;quot;Jetzt Herunterladen&amp;quot;. Nach der Installation muss Firefox neu gestartet werden.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla einrichten==&lt;br /&gt;
Nach der Installation und dem Neustart des Browsers müssen noch ein paar Grundeinstellungen gemacht werden, um zum Freenode-Netzwerk verbinden zu können.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-01.png|Firefox Addonmanager]]&lt;br /&gt;
&lt;br /&gt;
Das Addons findet man über den Addon-Manager (Menüleiste Extras --&amp;gt; Addons).&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-02.png|Chatzilla Einstellungen]]&lt;br /&gt;
&lt;br /&gt;
Im Addon-Manager das Plugin &amp;quot;Chatzilla&amp;quot; auswählen und auf &amp;quot;Einstellungen&amp;quot; klicken.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-03.png|Chatzilla einrichten]]&lt;br /&gt;
&lt;br /&gt;
Auf der Registrierkarte &amp;quot;General&amp;quot; findet man die Felder &amp;quot;Description&amp;quot; (Beschreibung), Nickname und Username.Description ist frei wählbar, unter Nickname und Username gibt man seinen Nicknamen ein. Im Anschluss werden alle Fenster mit OK bestätigt.&lt;br /&gt;
&lt;br /&gt;
==Chatzilla verwenden==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-04.png|Chatzilla starten]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla wird über die Menüleiste Extras --&amp;gt; Chatzilla gestartet.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-05.png|Chatzilla Startfenster]]&lt;br /&gt;
&lt;br /&gt;
Chatzilla hat von Haus aus verschiedene Netzwerke gespeichert. Um mit einem Server des Freenode-Netzwerkes zu verbinden, klickt man entweder mit der Maus auf den Link &amp;quot;Freenode&amp;quot; oder gibt in der Texteingabeleiste folgenden Befehl ein und klickt Enter:&lt;br /&gt;
&amp;lt;pre&amp;gt;/server irc.freenode.net&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{Anmerkung|Vor dem Verbinden muss bei vorhandenen Firewalls der Port 6667 geöffnet werden}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-06.png|Serverfenster]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich ein neuer Tab namens &amp;quot;Freenode&amp;quot; und der Verbindungsaufbau beginnt. Der Verbindungsaufbau kann mehrere Sekunden dauern und wird durch ein oranges &amp;quot;Connecting&amp;quot; angezeigt.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-07.png|Verbindungsaufbau]]&lt;br /&gt;
&lt;br /&gt;
Wenn die Verbindung zum Server hergestellt wurde, zeigt Chatzilla dies mit einem grünen &amp;quot;Connecting&amp;quot;. Als letzter Schritt muss der Chatraum betreten werden. Um den Raum #contao bzw. #contao.de zu betreten, gibt man folgenden Befehl in die Texteingabeleiste ein und bestätigt mit &amp;quot;Enter&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;/join #contao&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-08.png|Raumfenster]]&lt;br /&gt;
&lt;br /&gt;
Das Chatfenster öffnet sich in einem neuen Tab und ist wie folgt eingeteilt.&lt;br /&gt;
# Tab für den Raum #contao (bzw. #contao.de)&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschrieben Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
=Opera=&lt;br /&gt;
Anders als Firefox hat Opera schon ein Chat-Programm integriert. Die Installation einer Drittanbieter-Software entfällt somit.&lt;br /&gt;
==Opera einrichten==&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-10.png|Opera Chat-Konto einrichten]]&lt;br /&gt;
&lt;br /&gt;
Bevor man mit Opera loschatten kann, müssen auch hier ein paar Einstellungen gesetzt werden. Zum Einrichten eines Chat-Kontos klickt man mit der Maus auf das Opera-Logo links oben in der Ecke und wählt anschließend den Punkt &amp;quot;E-Mail- und Chat-Konten...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-11.png|Opera Assistent]]&lt;br /&gt;
&lt;br /&gt;
Die anschließende Frage zum Erstellen eines Kontos bestätigt man mit &amp;quot;Ja&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-12.png|Opera Kontotyp]]&lt;br /&gt;
&lt;br /&gt;
Beim folgenden Fenster wird als Typ des Kontos &amp;quot;Chat (IRC)&amp;quot; gewählt und bestätigt anschließend mit &amp;quot;Weiter&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-13.png|Opera Absendername]]&lt;br /&gt;
[[Datei:chat-howto-14.png|Opera Nickname]]&lt;br /&gt;
&lt;br /&gt;
In den nächsten beiden Fenstern wird im Feld &amp;quot;Von (Absendername)&amp;quot; und &amp;quot;Nickname&amp;quot; der Nickname eingegeben. Eine Email-Adresse ist nicht zwingend erforderlich.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-15.png|Opera Serverauswahl]]&lt;br /&gt;
&lt;br /&gt;
Als nächstes muss der Server gewählt werden, auf den verbunden werden soll. Hier wählt man &amp;quot;FreeNode, Europa&amp;quot; und bestätigt die Eingabe mit einem Klick auf den Button &amp;quot;Fertig&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-16.png|Opera Chanlist Options]]&lt;br /&gt;
&lt;br /&gt;
Die Einstellarbeiten sind nun fast abgeschlossen. Es wird eine Liste aller verfügbaren Räume angezeigt. Die vollständige Auflistung alles Räume kann einige Sekunden dauern. Ist die Auflistung abgeschlossen, klickt man mit der rechten Maustaste auf der linken Seite unter Konto auf den Eintrag &amp;quot;FreeNode, Europa&amp;quot; und wählt &amp;quot;Eigenschaften...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-17.png|Opera Konto-Eigenschaften]]&lt;br /&gt;
&lt;br /&gt;
Im darauffolgenden Fenster &amp;quot;Konto-Eigenschaften wählt man im letzten Tab &amp;quot;Postausgang&amp;quot; unter Standardcodierung &amp;quot;utf-8&amp;quot; und bestätigt mit OK.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-18.png|Opera Chanlist]]&lt;br /&gt;
&lt;br /&gt;
Wieder zurück bei der Raumliste klickt man auf &amp;quot;Eintreten&amp;quot;....&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-19.png|Opera Chatraum betreten]]&lt;br /&gt;
&lt;br /&gt;
... und gibt im Feld: Raum &amp;quot;contao&amp;quot; (bzw. contao.de) ein.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-20.png|Opera Chatraum]]&lt;br /&gt;
&lt;br /&gt;
Es öffnet sich der Chatraum. Dieser ist wie folgt eingeteilt:&lt;br /&gt;
# Texteingabeleiste: Text eingeben und Enter drücken&lt;br /&gt;
# Liste der im Raum befindlichen User&lt;br /&gt;
# Chatfenster: Hier werden die geschriebenen Texte angezeigt&lt;br /&gt;
&lt;br /&gt;
==Opera verwenden==&lt;br /&gt;
&lt;br /&gt;
Ist der Chat einmal eingerichtet, ist im Paneele das Chatsymbol sichtbar.&lt;br /&gt;
&lt;br /&gt;
[[Datei:chat-howto-21.png|Opera Sidebar]]&lt;br /&gt;
&lt;br /&gt;
Ein Klick auf dieses öffnet die Sidebar des Chats. Nun genügt ein Klick auf den Raum &amp;quot;contao&amp;quot;, um diesen zu betreten.&lt;br /&gt;
&lt;br /&gt;
=Bitte Beachten!!=&lt;br /&gt;
Nur, weil ein Nickname in der Nickliste erscheint, bedeutet das nicht, dass der jeweilige Nutzer gerade verfügbar ist. Es kann sein, dass das User gerade im Hintergrund arbeitet, anderweitig beschäftigt oder gar nicht vor dem PC sitzt. Manche User benutzen auch einen Bot ([[w:de:Eggdrop|Eggdrop]]) oder Bouncer ([[w:de:Bouncer|Bouncer]]), der online bleibt, wenn der Benutzer den Computer abschaltet.&lt;/div&gt;</summary>
		<author><name>Toflar</name></author>	</entry>

	</feed>