<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gorgonz</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gorgonz"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Gorgonz"/>
	<updated>2026-08-31T06:39:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x_talk:Adding_JavaScript_and_CSS_to_the_page&amp;diff=478292</id>
		<title>J3.x talk:Adding JavaScript and CSS to the page</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x_talk:Adding_JavaScript_and_CSS_to_the_page&amp;diff=478292"/>
		<updated>2018-02-14T13:31:56Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Replace the example script ==&lt;br /&gt;
The script ist written with mootools and should be replaced with a version in JQuery&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hello there.. I was about to pitch in and add on a whole other section on basically doing the exact same thing you did with $document.. except using the JHTML class.  I wasn&#039;t exactly sure why you&#039;d use one over the other and thought I&#039;d ask if you knew why this redunacy exists and if one is in some way more helpful.  Any ideas?  &lt;br /&gt;
[[User:Haelix|Haelix]] 23:45, 8 November 2008 (EST)&lt;br /&gt;
&lt;br /&gt;
Haelix, I agree.  It appears that the JHTML classes wrap the $document methods, and take care of anything else you might need (like mootools).  I have updated the article to reflect this.[[User:Mike dowler|Mike]] 21:24, 17 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
what page should we keep ?&lt;br /&gt;
this one&lt;br /&gt;
http://docs.joomla.org/Adding_JavaScript&lt;br /&gt;
or this one&lt;br /&gt;
http://docs.joomla.org/Adding_JavaScript_and_CSS_to_the_page&lt;br /&gt;
?&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Using the class loader method is the common way:&lt;br /&gt;
&lt;br /&gt;
 JHTML::_(&#039;script&#039;, $filename, $path);&lt;br /&gt;
 JHTML::_(&#039;stylesheet&#039;, $filename, $path);&lt;br /&gt;
&lt;br /&gt;
[[User:Bembelimen|Bembelimen]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== A comment on xhtml validity &amp;amp; well-formedness ==&lt;br /&gt;
&lt;br /&gt;
A few pointers on the current start of the article: &lt;br /&gt;
&lt;br /&gt;
-well-formedness refers to balancing tags and nesting elements correctly, making it valid XML&lt;br /&gt;
&lt;br /&gt;
-validity, i.e. conforming to (one of) the XHTML DTD(s),  is what you are talking about with style- and script-elements and where they are allowed. Further, script-elements _are_ allowed inside the document&#039;s body-element, whether as external files with the src-attribute or inline inside script-tags. Style-elements on the other hand are only allowed inside the head-element, as you write.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Adding_JavaScript_and_CSS_to_the_page&amp;diff=478291</id>
		<title>J3.x:Adding JavaScript and CSS to the page</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Adding_JavaScript_and_CSS_to_the_page&amp;diff=478291"/>
		<updated>2018-02-14T13:30:27Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
== Inserting from a File == &amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
To have a well-formed HTML document, you must put all references to Javascript and CSS files within the &amp;lt;code&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/code&amp;gt; portion. Since Joomla! generates all the HTML that makes up a page before output, it is possible to add these references within the &amp;lt;tt&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/tt&amp;gt; tags from your extension. The simplest way to do this is to make use of the functionality built in to Joomla.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
===JDocument=== &amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
First, get a reference to the current document object:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document = JFactory::getDocument();&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
Then for a stylesheet, use this code:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document-&amp;gt;addStyleSheet($url);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
To add a Javascript file, use this code:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document-&amp;gt;addScript($url);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
where &amp;lt;code&amp;gt;$url&amp;lt;/code&amp;gt; is the variable containing the full path to the javascript or CSS file for example:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;JUri::base() . &#039;templates/custom/js/sample.js&#039;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
Note this will **NOT** include Mootools or jQuery. If your script requires Mootools or jQuery see [[S:MyLanguage/Javascript_Frameworks|Javascript Frameworks]] for full details on how to include them (note jQuery can only be included natively on Joomla! 3.0+).&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
It used to be possible to do this with JHTML, however, this was deprecated in Joomla 2.5 and removed in Joomla 3.x.&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Adding the options to your JavaScript code == &amp;lt;!--T:42--&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
{{Joomla version|version=3.7|time=and after|comment=&amp;lt;translate&amp;gt;&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
Only available in Joomla! 3.7 and higher&amp;lt;/translate&amp;gt;|align=left}}&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
Beside adding inline scripts, Joomla! provide mechanism to store the options in the &amp;quot;optionsStorage&amp;quot;.&lt;br /&gt;
This is allowed to nicely manage an existing options on the server side and on the client side. And allow to place all JavaScript logic to the JavaScript file, that will be cached by browser.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
Joomla! use special mechanism for &amp;quot;lazy loading&amp;quot; the options on the client side. It doesn&#039;t use inline JavaScript, that is good for page rendering speed, and make your site more friendly for the Speed Tester (eg Google).&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
Thus use &amp;quot;optionsStorage&amp;quot; preferred, than use inline JavaScript to add the script options.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:46--&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example of use&#039;&#039;&#039;&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
Add the script options to your module:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document = JFactory::getDocument();&lt;br /&gt;
$document-&amp;gt;addScriptOptions(&#039;mod_example&#039;, array(&lt;br /&gt;
    &#039;colors&#039; =&amp;gt; array(&#039;selector&#039; =&amp;gt; &#039;body&#039;, &#039;color&#039; =&amp;gt; &#039;orange&#039;),&lt;br /&gt;
    &#039;sliderOptions&#039; =&amp;gt; array(&#039;selector&#039; =&amp;gt; &#039;.my-slider&#039;, &#039;timeout&#039; =&amp;gt; 300, &#039;fx&#039; =&amp;gt; &#039;fade&#039;)&lt;br /&gt;
));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:48--&amp;gt;&lt;br /&gt;
Access to your options on the client side:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
var myOptions = Joomla.getOptions(&#039;mod_example&#039;);&lt;br /&gt;
console.log(myOptions.colors); // Print in the browser console your options&lt;br /&gt;
console.log(myOptions.sliderOptions);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
Override the options on server side (possible until the head rendering):&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document  = JFactory::getDocument();&lt;br /&gt;
// Get existing options&lt;br /&gt;
$myOptions = $document-&amp;gt;getScriptOptions(&#039;mod_example&#039;);&lt;br /&gt;
// Change the value&lt;br /&gt;
$myOptions[&#039;colors&#039;] = array(&#039;selector&#039; =&amp;gt; &#039;body&#039;, &#039;color&#039; =&amp;gt; &#039;green&#039;);&lt;br /&gt;
// Set new options&lt;br /&gt;
$document-&amp;gt;addScriptOptions(&#039;mod_example&#039;, $myOptions);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Inserting inline scripts from within a PHP file == &amp;lt;!--T:32--&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:33--&amp;gt;&lt;br /&gt;
If your Javascript or CSS are generated using PHP, you can add the script or stylesheet directly into the head of your document:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document = JFactory::getDocument();&lt;br /&gt;
&lt;br /&gt;
// Add Javascript&lt;br /&gt;
$document-&amp;gt;addScriptDeclaration(&#039;&lt;br /&gt;
    window.event(&amp;quot;domready&amp;quot;, function() {&lt;br /&gt;
        alert(&amp;quot;An inline JavaScript Declaration&amp;quot;);&lt;br /&gt;
    });&lt;br /&gt;
&#039;);&lt;br /&gt;
&lt;br /&gt;
// Add styles&lt;br /&gt;
$style = &#039;body {&#039;&lt;br /&gt;
        . &#039;background: #00ff00;&#039;&lt;br /&gt;
        . &#039;color: rgb(0,0,255);&#039;&lt;br /&gt;
        . &#039;}&#039;; &lt;br /&gt;
$document-&amp;gt;addStyleDeclaration($style);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
=== Javascript Example === &amp;lt;!--T:34--&amp;gt;&lt;br /&gt;
For example, the following code is used to define a custom tool tip that takes advantage of mootools.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
function getToolTipJS($toolTipVarName, $toolTipClassName){&lt;br /&gt;
    $javascript = &#039;window.addEvent(\&amp;quot;domready\&amp;quot;, function(){&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t&amp;quot;  .&#039;var $toolTipVarName = new Tips($$(&amp;quot;&#039; . $toolTipVarName .&#039;&amp;quot;), {&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;className: &amp;quot;&#039; .$toolTipClassName .&#039;&amp;quot;,&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;initialize: function(){&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t\t&amp;quot;    .&#039;this.fx = new Fx.Style(this.toolTip, &amp;quot;opacity&amp;quot;, {duration: 500, wait: false}).set(0);&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;},&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;onShow: function(toolTip){&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t\t&amp;quot;    .&#039;this.fx.start(1);&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;},&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;onHide: function(toolTip) {&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t\t&amp;quot;    .&#039;this.fx.start(0);&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t\t&amp;quot;   .&#039;}&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &amp;quot;\t&amp;quot;  .&#039;});&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
    $javascript .= &#039;});&#039; .&amp;quot;\n\n&amp;quot;;&lt;br /&gt;
    return $javascript;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$document = JFactory::getDocument();&lt;br /&gt;
$document-&amp;gt;addStyleSheet(&amp;quot;/joomla/components/com_mycustomcomponent/css/mytooltip.css&amp;quot;,&#039;text/css&#039;,&amp;quot;screen&amp;quot;);&lt;br /&gt;
$document-&amp;gt;addScriptDeclaration(getToolTipJS(&amp;quot;mytool&amp;quot;,&amp;quot;MyToolTip&amp;quot;));&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:35--&amp;gt;&lt;br /&gt;
Note that in order for this Javascript to be functionally useful, it would be necessary to include the appropriate class name in the HTML, as well as providing the &amp;lt;code&amp;gt;mytooltip.css&amp;lt;/code&amp;gt; file. Both are outside the scope of this article.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
=== CSS Examples === &amp;lt;!--T:36--&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:37--&amp;gt;&lt;br /&gt;
This is also useful if your inserting a form field of CSS into your code. For example in a module, you might want a user to choose to call the colour of the border. After calling the form fields value and assigning it a variable $bordercolor in mod_example.php. Then in tmpl/default.php you can include the following:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$document = JFactory::getDocument();&lt;br /&gt;
$document-&amp;gt;addStyleSheet(&#039;mod_example/mod_example.css&#039;);&lt;br /&gt;
$style = &#039;#example {&lt;br /&gt;
	border-color:#&#039; . $bordercolor . &#039;;&lt;br /&gt;
	}&#039;;&lt;br /&gt;
$document-&amp;gt;addStyleDeclaration( $style );&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:38--&amp;gt;&lt;br /&gt;
Here mod_example.css contains the CSS file of any non-parameter based styles. Then the bordercolor parameter/form field is added in separately.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Add Custom Tag== &amp;lt;!--T:39--&amp;gt;&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:40--&amp;gt;&lt;br /&gt;
There will be some occasions where even these functions are not flexible enough, as they are limited to writing the contents of &amp;lt;code&amp;gt;&amp;lt;script /&amp;gt;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;style /&amp;gt;&amp;lt;/code&amp;gt; tags, and cannot add anything outside those tags. One example would be the inclusion of a stylesheet link within conditional comments, so that it is picked up only by Internet Explorer 6 and earlier. To do this, use &amp;lt;code&amp;gt;$document-&amp;gt;addCustomTag&amp;lt;/code&amp;gt;:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$stylelink = &#039;&amp;lt;!--[if lte IE 6]&amp;gt;&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
$stylelink .= &#039;&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;../css/IEonly.css&amp;quot; /&amp;gt;&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
$stylelink .= &#039;&amp;lt;![endif]--&amp;gt;&#039; .&amp;quot;\n&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
$document = JFactory::getDocument();&lt;br /&gt;
$document-&amp;gt;addCustomTag($stylelink);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
If it was necessary to include other conditional CSS, always include the &amp;quot;addCustomTag&amp;quot; method after declare it.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
[[Category:Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Component Development]]&lt;br /&gt;
[[Category:Module Development]]&lt;br /&gt;
[[Category:JavaScript]]&lt;br /&gt;
[[Category:CSS]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x_talk:Adding_JavaScript_and_CSS_to_the_page&amp;diff=478290</id>
		<title>J3.x talk:Adding JavaScript and CSS to the page</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x_talk:Adding_JavaScript_and_CSS_to_the_page&amp;diff=478290"/>
		<updated>2018-02-14T13:27:11Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Hint for replacing example script and bug&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Replace the example script ==&lt;br /&gt;
The script ist written with mootools and should be replaced with a version in JQuery&lt;br /&gt;
&lt;br /&gt;
== Little Bug ==&lt;br /&gt;
the text &amp;quot;It do not use inline JavaScript&amp;quot; should be replaced with &amp;quot;It doesn&#039;t use inline JavaScript&amp;quot;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hello there.. I was about to pitch in and add on a whole other section on basically doing the exact same thing you did with $document.. except using the JHTML class.  I wasn&#039;t exactly sure why you&#039;d use one over the other and thought I&#039;d ask if you knew why this redunacy exists and if one is in some way more helpful.  Any ideas?  &lt;br /&gt;
[[User:Haelix|Haelix]] 23:45, 8 November 2008 (EST)&lt;br /&gt;
&lt;br /&gt;
Haelix, I agree.  It appears that the JHTML classes wrap the $document methods, and take care of anything else you might need (like mootools).  I have updated the article to reflect this.[[User:Mike dowler|Mike]] 21:24, 17 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
what page should we keep ?&lt;br /&gt;
this one&lt;br /&gt;
http://docs.joomla.org/Adding_JavaScript&lt;br /&gt;
or this one&lt;br /&gt;
http://docs.joomla.org/Adding_JavaScript_and_CSS_to_the_page&lt;br /&gt;
?&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Using the class loader method is the common way:&lt;br /&gt;
&lt;br /&gt;
 JHTML::_(&#039;script&#039;, $filename, $path);&lt;br /&gt;
 JHTML::_(&#039;stylesheet&#039;, $filename, $path);&lt;br /&gt;
&lt;br /&gt;
[[User:Bembelimen|Bembelimen]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== A comment on xhtml validity &amp;amp; well-formedness ==&lt;br /&gt;
&lt;br /&gt;
A few pointers on the current start of the article: &lt;br /&gt;
&lt;br /&gt;
-well-formedness refers to balancing tags and nesting elements correctly, making it valid XML&lt;br /&gt;
&lt;br /&gt;
-validity, i.e. conforming to (one of) the XHTML DTD(s),  is what you are talking about with style- and script-elements and where they are allowed. Further, script-elements _are_ allowed inside the document&#039;s body-element, whether as external files with the src-attribute or inline inside script-tags. Style-elements on the other hand are only allowed inside the head-element, as you write.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=File:Joomla_github-de.png&amp;diff=370326</id>
		<title>File:Joomla github-de.png</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=File:Joomla_github-de.png&amp;diff=370326"/>
		<updated>2017-03-07T12:04:39Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Gorgonz uploaded a new version of &amp;amp;quot;File:Joomla github-de.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Licensing ==&lt;br /&gt;
{{JEDL}}&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Article/de&amp;diff=165030</id>
		<title>Chunk:Article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Article/de&amp;diff=165030"/>
		<updated>2015-03-21T16:19:56Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In Joomla! ist ein Beitrag ein Stück Inhalt, der aus Text besteht ([[wikipedia:HTML|HTML]]) und manchmal mit Links zu anderen Ressourcen (z.B. Bilder) versehen ist. Beiträge sind die elementaren Informationseinheiten im [[S:MyLanguage/Content|Content-System]] und bilden die unterste Ebene in der Hierarchie von Inhalten. Seit Joomla! {{JVer|2.5}} gehört jeder Beitrag zu genau einer [[S:MyLanguage/Category|Kategorie]]. Eine Kategorie kann in einer anderen Kategorie enthalten sein und dadurch zu einer Unterkategorie werden. Ebenso ist es ist möglich, nicht kategorisierte Beiträge zu verwenden. Diese Beiträge sind dann vorhanden, ohne dass sie zu einer Kategorie gehören.&lt;br /&gt;
&lt;br /&gt;
Vor Joomla! 2.5 bzw. noch früheren Versionen waren Beiträge die dritte Ebene in der Hierarchie {{rarr|[[S:MyLanguage/J1.5:Section|Abschnitte]],[[S:MyLanguage/Category|Kategorien]],Beitrag}}. Jetzt sind es nur noch mindestens zwei Ebenen und durch die Unterkategorien ist die Anzahl der Ebenen nicht mehr begrenzt.&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;br /&gt;
&lt;br /&gt;
Die Beiträge werden in der Beitragsverwaltung gepflegt (siehe  [[{{ns|Help{{CurrentSTSVer|minor}}}}:Content Article Manager|Beitragsverwaltung]] für {{JVer|{{CurrentSTSVer|minor}}}} oder die [[{{ns|Help{{CurrentLTSVer|minor}}}}:Content Article Manager|Beitragsverwaltung]] {{JVer|{{CurrentLTSVer|minor}}}}), die über das [[Administrator (Application)|Administrator (Back-end)]]  durch Klick  auf einen der Menüpunkte im Menü Inhalte erreicht werden kann.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&#039;Siehe auch&amp;quot;&#039;: [[S:MyLanguage/Category|Kategorie]]&amp;lt;noinclude&amp;gt;[[S:MyLanguage/Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Article/2/de&amp;diff=165029</id>
		<title>Translations:Chunk:Article/2/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Article/2/de&amp;diff=165029"/>
		<updated>2015-03-21T16:19:55Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vor Joomla! 2.5 bzw. noch früheren Versionen waren Beiträge die dritte Ebene in der Hierarchie {{rarr|[[S:MyLanguage/J1.5:Section|Abschnitte]],[[S:MyLanguage/Category|Kategorien]],Beitrag}}. Jetzt sind es nur noch mindestens zwei Ebenen und durch die Unterkategorien ist die Anzahl der Ebenen nicht mehr begrenzt.&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Article/de&amp;diff=163295</id>
		<title>Chunk:Article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Article/de&amp;diff=163295"/>
		<updated>2015-03-13T17:22:18Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In Joomla! ist ein Beitrag ein Stück Inhalt, der aus Text besteht ([[wikipedia:HTML|HTML]]) und manchmal mit Links zu anderen Ressourcen (z.B. Bilder) versehen ist. Beiträge sind die elementaren Informationseinheiten im [[S:MyLanguage/Content|Content-System]] und bilden die unterste Ebene in der Hierarchie von Inhalten. Seit Joomla! {{JVer|2.5}} gehört jeder Beitrag zu genau einer [[S:MyLanguage/Category|Kategorie]]. Eine Kategorie kann in einer anderen Kategorie enthalten sein und dadurch zu einer Unterkategorie werden. Ebenso ist es ist möglich, nicht kategorisierte Beiträge zu verwenden. Diese Beiträge sind dann vorhanden, ohne dass sie zu einer Kategorie gehören.&lt;br /&gt;
&lt;br /&gt;
Vor Joomla! 2.5 bzw. noch früheren Versionen waren Beiträge die dritte Ebene in der Hierarchie {{rarr|[[S:MyLanguage/J1.5:Section|Abschnitte]],[[S:MyLanguage/Category|Kategorien]],Beitrag}}. Jetzt ist ein Beitrag eine Ebene tiefer und wird immer auf zweiter Ebene oder höher in der Hierarchie sein.&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;br /&gt;
&lt;br /&gt;
Die Beiträge werden in der Beitragsverwaltung gepflegt (siehe  [[{{ns|Help{{CurrentSTSVer|minor}}}}:Content Article Manager|Beitragsverwaltung]] für {{JVer|{{CurrentSTSVer|minor}}}} oder die [[{{ns|Help{{CurrentLTSVer|minor}}}}:Content Article Manager|Beitragsverwaltung]] {{JVer|{{CurrentLTSVer|minor}}}}), die über das [[Administrator (Application)|Administrator (Back-end)]]  durch Klick  auf einen der Menüpunkte im Menü Inhalte erreicht werden kann.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&#039;Siehe auch&amp;quot;&#039;: [[S:MyLanguage/Category|Kategorie]]&amp;lt;noinclude&amp;gt;[[S:MyLanguage/Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Article/2/de&amp;diff=163294</id>
		<title>Translations:Chunk:Article/2/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Article/2/de&amp;diff=163294"/>
		<updated>2015-03-13T17:22:17Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vor Joomla! 2.5 bzw. noch früheren Versionen waren Beiträge die dritte Ebene in der Hierarchie {{rarr|[[S:MyLanguage/J1.5:Section|Abschnitte]],[[S:MyLanguage/Category|Kategorien]],Beitrag}}. Jetzt ist ein Beitrag eine Ebene tiefer und wird immer auf zweiter Ebene oder höher in der Hierarchie sein.&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],[[S:MyLanguage/Category|Unterkategorie]],Beitrag}}&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Article/de&amp;diff=163293</id>
		<title>Chunk:Article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Article/de&amp;diff=163293"/>
		<updated>2015-03-13T17:17:17Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In Joomla! ist ein Beitrag ein Stück Inhalt, der aus Text besteht ([[wikipedia:HTML|HTML]]) und manchmal mit Links zu anderen Ressourcen (z.B. Bilder) versehen ist. Beiträge sind die elementaren Informationseinheiten im [[S:MyLanguage/Content|Content-System]] und bilden die unterste Ebene in der Hierarchie von Inhalten. Seit Joomla! {{JVer|2.5}} gehört jeder Beitrag zu genau einer [[S:MyLanguage/Category|Kategorie]]. Eine Kategorie kann in einer anderen Kategorie enthalten sein und dadurch zu einer Unterkategorie werden. Ebenso ist es ist möglich, nicht kategorisierte Beiträge zu verwenden. Diese Beiträge sind dann vorhanden, ohne dass sie zu einer Kategorie gehören.&lt;br /&gt;
&lt;br /&gt;
Vor Joomla! 2.5 bzw. noch früheren Versionen waren Artikel die dritte Ebene in der Hierarchie {{rarr|[[S:MyLanguage/J1.5:Section|Abschnitte]],[[S:MyLanguage/Category|Kategorien]],Artikel}}. Jetzt ist ein Artikel eine tiefere Ebene und wird immer auf zweiter Ebene oder höher in der Hierarchie sein.&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],Artikel}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],Artikel}}&lt;br /&gt;
*{{rarr|[[S:MyLanguage/Category|Kategorie]],[[S:MyLanguage/Category|Unterkategorie]],[[S:MyLanguage/Category|Unterkategorie]],Artikel}}&lt;br /&gt;
&lt;br /&gt;
Die Beiträge werden in der Beitragsverwaltung gepflegt (siehe  [[{{ns|Help{{CurrentSTSVer|minor}}}}:Content Article Manager|Beitragsverwaltung]] für {{JVer|{{CurrentSTSVer|minor}}}} oder die [[{{ns|Help{{CurrentLTSVer|minor}}}}:Content Article Manager|Beitragsverwaltung]] {{JVer|{{CurrentLTSVer|minor}}}}), die über das [[Administrator (Application)|Administrator (Back-end)]]  durch Klick  auf einen der Menüpunkte im Menü Inhalte erreicht werden kann.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&#039;Siehe auch&amp;quot;&#039;: [[S:MyLanguage/Category|Kategorie]]&amp;lt;noinclude&amp;gt;[[S:MyLanguage/Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Article/1/de&amp;diff=163292</id>
		<title>Translations:Chunk:Article/1/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Article/1/de&amp;diff=163292"/>
		<updated>2015-03-13T17:17:17Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In Joomla! ist ein Beitrag ein Stück Inhalt, der aus Text besteht ([[wikipedia:HTML|HTML]]) und manchmal mit Links zu anderen Ressourcen (z.B. Bilder) versehen ist. Beiträge sind die elementaren Informationseinheiten im [[S:MyLanguage/Content|Content-System]] und bilden die unterste Ebene in der Hierarchie von Inhalten. Seit Joomla! {{JVer|2.5}} gehört jeder Beitrag zu genau einer [[S:MyLanguage/Category|Kategorie]]. Eine Kategorie kann in einer anderen Kategorie enthalten sein und dadurch zu einer Unterkategorie werden. Ebenso ist es ist möglich, nicht kategorisierte Beiträge zu verwenden. Diese Beiträge sind dann vorhanden, ohne dass sie zu einer Kategorie gehören.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163291</id>
		<title>Chunk:Category/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163291"/>
		<updated>2015-03-13T17:09:37Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeder Teil einer Webseite, der durch Joomla! oder auch ein anderes CMS verwaltet wird, erfordert einen Weg, diese Inhalte in einer geordneten Art anzuzeigen und zu speichern. Die übliche Methode dafür ist es, nach Kategorien und Unterkategorien zu sortieren. Joomla! erlaubt mehrere Möglichkeiten, um über Kategorien auf Inhalte zuzugreifen und diese anzuzeigen bzw. zu verwenden. Beispiele für Inhaltsarten, die eine Kategorisierung verwenden, sind [[S:MyLanguage/article|Beiträge]] (Der Hauptinhalt von Webseiten), [[S:MyLanguage/banner|Banner]], [[S:MyLanguage/contact|Kontakte]] und [[S:MyLanguage/web link|Weblinks]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Uncategorised&amp;quot; ist die Standardkategorie von Joomla!, die jeder Art  von Inhalt beim Erstellen zugewiesen wird. Die Kategorie &amp;quot;Uncategorised&amp;quot; ist nicht aussagekräftig und kann bei solchen Inhalten verwendet werden, die zu keiner bestimmten Kategorie gehören. &lt;br /&gt;
&lt;br /&gt;
Bei der Erstellung und Zuordnung von Kategorien sollte eine klare Vorstellung über die geplante Struktur vorliegen. Nehmen wir als Beispiel mehrere Joomla - [[S:MyLanguage/Article|Beiträge]] über Vögel. Erstellen Sie zwei Haupt-Kategorien für Beiträge, genannt &amp;quot;Tiere&amp;quot; und &amp;quot;Pflanzen&amp;quot;. Unterhalb der &amp;quot;Tiere&amp;quot; - Kategorie könnten Sie jetzt Unterkategorien wie &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; einrichten. Unter der &amp;quot;Vögel&amp;quot; Kategorie könnten jetzt 3 Artikel namens &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot; angelegt werden. &lt;br /&gt;
&lt;br /&gt;
*Tiere &lt;br /&gt;
**Vögel&lt;br /&gt;
***Falken&lt;br /&gt;
***Papageien&lt;br /&gt;
***Spatzen&lt;br /&gt;
**Säugetiere&lt;br /&gt;
&lt;br /&gt;
Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie oben gezeigt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogelarten bezeichnen können.&lt;br /&gt;
&lt;br /&gt;
Kategorien bzw. ihre Unterkategorien werden mit der Kategorienverwaltung gepflegt. Diese kann über das Administrator-Backend im Menü &amp;quot;Inhalt&amp;quot;  und darin über den Menüpunkt &amp;quot;Kategorien&amp;quot; erreicht werden.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&#039;Siehe auch&amp;quot;&#039;: [[S:MyLanguage/Article|Beitrag]]&amp;lt;noinclude&amp;gt;[[S:MyLanguage/Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/2/de&amp;diff=163290</id>
		<title>Translations:Chunk:Category/2/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/2/de&amp;diff=163290"/>
		<updated>2015-03-13T17:09:36Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie oben gezeigt.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Access_Control_List/Page_display_title/de&amp;diff=163289</id>
		<title>Translations:Chunk:Access Control List/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Access_Control_List/Page_display_title/de&amp;diff=163289"/>
		<updated>2015-03-13T16:59:36Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Zugriffskontrollliste&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/de&amp;diff=163288</id>
		<title>Chunk:Patch/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Patch/de&amp;diff=163288"/>
		<updated>2015-03-13T16:48:09Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Der Begriff patch-Datei wird für zwei verschiedene Datei-Typen verwendet. Der Begriff patch-Datei wird manchmal verwendet, um mit Hilfe von Archiv-Dateien ein Upgrade von ein...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Der Begriff patch-Datei wird für zwei verschiedene Datei-Typen verwendet. Der Begriff patch-Datei wird manchmal verwendet, um mit Hilfe von Archiv-Dateien ein Upgrade von einer Joomla! version auf eine andere (z.B. von version 3.0.0 version 3.0.7). Diese Upgrade-Dateien werden auch  als [[Begriff:Upgrade-Paket - |Upgrade-Paket]] bezeichnet.&lt;br /&gt;
&lt;br /&gt;
The other meaning for a patch file is a file created by source code [[wp:Revision_control|version control software]] -- for example, Subversion or SVN, which is used for the Joomla! source code. This type of patch file contains instructions for changing the contents of one or more source code files. The SVN software reads the patch file and then can automatically change the source code of the files being patched.&lt;br /&gt;
&lt;br /&gt;
Patch files are used by the [[Bug Squad]] to test proposed bug fixes. They can also be used to contribute proposed new features to the version under development. For more information about the structure of SVN patch files, read [[Learn more about patch files]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/1/de&amp;diff=163287</id>
		<title>Translations:Chunk:Patch/1/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Patch/1/de&amp;diff=163287"/>
		<updated>2015-03-13T16:48:08Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Der Begriff patch-Datei wird für zwei verschiedene Datei-Typen verwendet. Der Begriff patch-Datei wird manchmal verwendet, um mit Hilfe von Archiv-Dateien ein Upgrade von ein...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Der Begriff patch-Datei wird für zwei verschiedene Datei-Typen verwendet. Der Begriff patch-Datei wird manchmal verwendet, um mit Hilfe von Archiv-Dateien ein Upgrade von einer Joomla! version auf eine andere (z.B. von version 3.0.0 version 3.0.7). Diese Upgrade-Dateien werden auch  als [[Begriff:Upgrade-Paket - |Upgrade-Paket]] bezeichnet.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163286</id>
		<title>Chunk:Category/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163286"/>
		<updated>2015-03-13T16:43:45Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;&amp;quot;&amp;#039;Siehe auch&amp;quot;&amp;#039;: Beitrag&amp;lt;noinclude&amp;gt;{{PAGENAME}}&amp;lt;/noinclude&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeder Teil einer Webseite, der durch Joomla! oder auch ein anderes CMS verwaltet wird, erfordert einen Weg, diese Inhalte in einer geordneten Art anzuzeigen und zu speichern. Die übliche Methode dafür ist es, nach Kategorien und Unterkategorien zu sortieren. Joomla! erlaubt mehrere Möglichkeiten, um über Kategorien auf Inhalte zuzugreifen und diese anzuzeigen bzw. zu verwenden. Beispiele für Inhaltsarten, die eine Kategorisierung verwenden, sind [[S:MyLanguage/article|Beiträge]] (Der Hauptinhalt von Webseiten), [[S:MyLanguage/banner|Banner]], [[S:MyLanguage/contact|Kontakte]] und [[S:MyLanguage/web link|Weblinks]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Uncategorised&amp;quot; ist die Standardkategorie von Joomla!, die jeder Art  von Inhalt beim Erstellen zugewiesen wird. Die Kategorie &amp;quot;Uncategorised&amp;quot; ist nicht aussagekräftig und kann bei solchen Inhalten verwendet werden, die zu keiner bestimmten Kategorie gehören. &lt;br /&gt;
&lt;br /&gt;
Bei der Erstellung und Zuordnung von Kategorien sollte eine klare Vorstellung über die geplante Struktur vorliegen. Nehmen wir als Beispiel mehrere Joomla - [[S:MyLanguage/Article|Beiträge]] über Vögel. Erstellen Sie zwei Haupt-Kategorien für Beiträge, genannt &amp;quot;Tiere&amp;quot; und &amp;quot;Pflanzen&amp;quot;. Unterhalb der &amp;quot;Tiere&amp;quot; - Kategorie könnten Sie jetzt Unterkategorien wie &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; einrichten. Unter der &amp;quot;Vögel&amp;quot; Kategorie könnten jetzt 3 Artikel namens &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot; angelegt werden. &lt;br /&gt;
&lt;br /&gt;
*Tiere &lt;br /&gt;
**Vögel&lt;br /&gt;
***Falken&lt;br /&gt;
***Papageien&lt;br /&gt;
***Spatzen&lt;br /&gt;
**Säugetiere&lt;br /&gt;
&lt;br /&gt;
Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie unten gezeigt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogelarten bezeichnen können.&lt;br /&gt;
&lt;br /&gt;
Kategorien bzw. ihre Unterkategorien werden mit der Kategorienverwaltung gepflegt. Diese kann über das Administrator-Backend im Menü &amp;quot;Inhalt&amp;quot;  und darin über den Menüpunkt &amp;quot;Kategorien&amp;quot; erreicht werden.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&#039;Siehe auch&amp;quot;&#039;: [[S:MyLanguage/Article|Beitrag]]&amp;lt;noinclude&amp;gt;[[S:MyLanguage/Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/5/de&amp;diff=163285</id>
		<title>Translations:Chunk:Category/5/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/5/de&amp;diff=163285"/>
		<updated>2015-03-13T16:43:45Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;&amp;quot;&amp;#039;Siehe auch&amp;quot;&amp;#039;: Beitrag&amp;lt;noinclude&amp;gt;{{PAGENAME}}&amp;lt;/noinclude&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;&#039;Siehe auch&amp;quot;&#039;: [[S:MyLanguage/Article|Beitrag]]&amp;lt;noinclude&amp;gt;[[S:MyLanguage/Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163284</id>
		<title>Chunk:Category/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163284"/>
		<updated>2015-03-13T16:42:45Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Kategorien bzw. ihre Unterkategorien werden mit der Kategorienverwaltung gepflegt. Diese kann über das Administrator-Backend im Menü &amp;quot;Inhalt&amp;quot;  und darin über den Menüpunkt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeder Teil einer Webseite, der durch Joomla! oder auch ein anderes CMS verwaltet wird, erfordert einen Weg, diese Inhalte in einer geordneten Art anzuzeigen und zu speichern. Die übliche Methode dafür ist es, nach Kategorien und Unterkategorien zu sortieren. Joomla! erlaubt mehrere Möglichkeiten, um über Kategorien auf Inhalte zuzugreifen und diese anzuzeigen bzw. zu verwenden. Beispiele für Inhaltsarten, die eine Kategorisierung verwenden, sind [[S:MyLanguage/article|Beiträge]] (Der Hauptinhalt von Webseiten), [[S:MyLanguage/banner|Banner]], [[S:MyLanguage/contact|Kontakte]] und [[S:MyLanguage/web link|Weblinks]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Uncategorised&amp;quot; ist die Standardkategorie von Joomla!, die jeder Art  von Inhalt beim Erstellen zugewiesen wird. Die Kategorie &amp;quot;Uncategorised&amp;quot; ist nicht aussagekräftig und kann bei solchen Inhalten verwendet werden, die zu keiner bestimmten Kategorie gehören. &lt;br /&gt;
&lt;br /&gt;
Bei der Erstellung und Zuordnung von Kategorien sollte eine klare Vorstellung über die geplante Struktur vorliegen. Nehmen wir als Beispiel mehrere Joomla - [[S:MyLanguage/Article|Beiträge]] über Vögel. Erstellen Sie zwei Haupt-Kategorien für Beiträge, genannt &amp;quot;Tiere&amp;quot; und &amp;quot;Pflanzen&amp;quot;. Unterhalb der &amp;quot;Tiere&amp;quot; - Kategorie könnten Sie jetzt Unterkategorien wie &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; einrichten. Unter der &amp;quot;Vögel&amp;quot; Kategorie könnten jetzt 3 Artikel namens &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot; angelegt werden. &lt;br /&gt;
&lt;br /&gt;
*Tiere &lt;br /&gt;
**Vögel&lt;br /&gt;
***Falken&lt;br /&gt;
***Papageien&lt;br /&gt;
***Spatzen&lt;br /&gt;
**Säugetiere&lt;br /&gt;
&lt;br /&gt;
Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie unten gezeigt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogelarten bezeichnen können.&lt;br /&gt;
&lt;br /&gt;
Kategorien bzw. ihre Unterkategorien werden mit der Kategorienverwaltung gepflegt. Diese kann über das Administrator-Backend im Menü &amp;quot;Inhalt&amp;quot;  und darin über den Menüpunkt &amp;quot;Kategorien&amp;quot; erreicht werden.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also&#039;&#039;&#039;: [[Article]]&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/4/de&amp;diff=163283</id>
		<title>Translations:Chunk:Category/4/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/4/de&amp;diff=163283"/>
		<updated>2015-03-13T16:42:44Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Kategorien bzw. ihre Unterkategorien werden mit der Kategorienverwaltung gepflegt. Diese kann über das Administrator-Backend im Menü &amp;quot;Inhalt&amp;quot;  und darin über den Menüpunkt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kategorien bzw. ihre Unterkategorien werden mit der Kategorienverwaltung gepflegt. Diese kann über das Administrator-Backend im Menü &amp;quot;Inhalt&amp;quot;  und darin über den Menüpunkt &amp;quot;Kategorien&amp;quot; erreicht werden.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163282</id>
		<title>Chunk:Category/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163282"/>
		<updated>2015-03-13T16:36:13Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogela...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeder Teil einer Webseite, der durch Joomla! oder auch ein anderes CMS verwaltet wird, erfordert einen Weg, diese Inhalte in einer geordneten Art anzuzeigen und zu speichern. Die übliche Methode dafür ist es, nach Kategorien und Unterkategorien zu sortieren. Joomla! erlaubt mehrere Möglichkeiten, um über Kategorien auf Inhalte zuzugreifen und diese anzuzeigen bzw. zu verwenden. Beispiele für Inhaltsarten, die eine Kategorisierung verwenden, sind [[S:MyLanguage/article|Beiträge]] (Der Hauptinhalt von Webseiten), [[S:MyLanguage/banner|Banner]], [[S:MyLanguage/contact|Kontakte]] und [[S:MyLanguage/web link|Weblinks]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Uncategorised&amp;quot; ist die Standardkategorie von Joomla!, die jeder Art  von Inhalt beim Erstellen zugewiesen wird. Die Kategorie &amp;quot;Uncategorised&amp;quot; ist nicht aussagekräftig und kann bei solchen Inhalten verwendet werden, die zu keiner bestimmten Kategorie gehören. &lt;br /&gt;
&lt;br /&gt;
Bei der Erstellung und Zuordnung von Kategorien sollte eine klare Vorstellung über die geplante Struktur vorliegen. Nehmen wir als Beispiel mehrere Joomla - [[S:MyLanguage/Article|Beiträge]] über Vögel. Erstellen Sie zwei Haupt-Kategorien für Beiträge, genannt &amp;quot;Tiere&amp;quot; und &amp;quot;Pflanzen&amp;quot;. Unterhalb der &amp;quot;Tiere&amp;quot; - Kategorie könnten Sie jetzt Unterkategorien wie &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; einrichten. Unter der &amp;quot;Vögel&amp;quot; Kategorie könnten jetzt 3 Artikel namens &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot; angelegt werden. &lt;br /&gt;
&lt;br /&gt;
*Tiere &lt;br /&gt;
**Vögel&lt;br /&gt;
***Falken&lt;br /&gt;
***Papageien&lt;br /&gt;
***Spatzen&lt;br /&gt;
**Säugetiere&lt;br /&gt;
&lt;br /&gt;
Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie unten gezeigt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogelarten bezeichnen können.&lt;br /&gt;
&lt;br /&gt;
Categories and their sub categories are maintained using the &amp;quot;Category Manager&amp;quot; which can be reached in the administrator back-end interface by clicking on the &amp;quot;Content&amp;quot; menu type, then the &amp;quot;Category Manager&amp;quot; menu item for the type.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also&#039;&#039;&#039;: [[Article]]&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/3/de&amp;diff=163281</id>
		<title>Translations:Chunk:Category/3/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/3/de&amp;diff=163281"/>
		<updated>2015-03-13T16:36:13Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogela...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jetzt können Sie mehrere Artikel in den Falken, Papageien und Sparrow Unterkategorien anlegen, die sie mit der unterschiedlichen Gattung oder gebräuchlichen Namen der Vogelarten bezeichnen können.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163280</id>
		<title>Chunk:Category/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Category/de&amp;diff=163280"/>
		<updated>2015-03-13T16:31:53Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie dar...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeder Teil einer Webseite, der durch Joomla! oder auch ein anderes CMS verwaltet wird, erfordert einen Weg, diese Inhalte in einer geordneten Art anzuzeigen und zu speichern. Die übliche Methode dafür ist es, nach Kategorien und Unterkategorien zu sortieren. Joomla! erlaubt mehrere Möglichkeiten, um über Kategorien auf Inhalte zuzugreifen und diese anzuzeigen bzw. zu verwenden. Beispiele für Inhaltsarten, die eine Kategorisierung verwenden, sind [[S:MyLanguage/article|Beiträge]] (Der Hauptinhalt von Webseiten), [[S:MyLanguage/banner|Banner]], [[S:MyLanguage/contact|Kontakte]] und [[S:MyLanguage/web link|Weblinks]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Uncategorised&amp;quot; ist die Standardkategorie von Joomla!, die jeder Art  von Inhalt beim Erstellen zugewiesen wird. Die Kategorie &amp;quot;Uncategorised&amp;quot; ist nicht aussagekräftig und kann bei solchen Inhalten verwendet werden, die zu keiner bestimmten Kategorie gehören. &lt;br /&gt;
&lt;br /&gt;
Bei der Erstellung und Zuordnung von Kategorien sollte eine klare Vorstellung über die geplante Struktur vorliegen. Nehmen wir als Beispiel mehrere Joomla - [[S:MyLanguage/Article|Beiträge]] über Vögel. Erstellen Sie zwei Haupt-Kategorien für Beiträge, genannt &amp;quot;Tiere&amp;quot; und &amp;quot;Pflanzen&amp;quot;. Unterhalb der &amp;quot;Tiere&amp;quot; - Kategorie könnten Sie jetzt Unterkategorien wie &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; einrichten. Unter der &amp;quot;Vögel&amp;quot; Kategorie könnten jetzt 3 Artikel namens &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot; angelegt werden. &lt;br /&gt;
&lt;br /&gt;
*Tiere &lt;br /&gt;
**Vögel&lt;br /&gt;
***Falken&lt;br /&gt;
***Papageien&lt;br /&gt;
***Spatzen&lt;br /&gt;
**Säugetiere&lt;br /&gt;
&lt;br /&gt;
Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie unten gezeigt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now you can create multiple articles in the Hawk, Parrot and Sparrow sub categories using the different genus or common names of the specific types of these 3 birds.&lt;br /&gt;
&lt;br /&gt;
Categories and their sub categories are maintained using the &amp;quot;Category Manager&amp;quot; which can be reached in the administrator back-end interface by clicking on the &amp;quot;Content&amp;quot; menu type, then the &amp;quot;Category Manager&amp;quot; menu item for the type.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also&#039;&#039;&#039;: [[Article]]&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/2/de&amp;diff=163279</id>
		<title>Translations:Chunk:Category/2/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Category/2/de&amp;diff=163279"/>
		<updated>2015-03-13T16:31:53Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie dar...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Das obige Beispiel könnte sogar noch um bestimmte Beiträge über Falken, Papageien und Spatzen erweitert werden. Starten Sie mit der Hauptkategorie &amp;quot;Tiere&amp;quot; und legen Sie darunter die Unterkategorien &amp;quot;Vögel&amp;quot; und &amp;quot;Säugetiere&amp;quot; an &amp;quot; und dann unter der Kategorie &amp;quot;Vögel&amp;quot; die Unterkategorien &amp;quot;Falken&amp;quot;, &amp;quot;Papageien&amp;quot; und &amp;quot;Spatzen&amp;quot;, so wie unten gezeigt.&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Chrome/Page_display_title/de&amp;diff=163278</id>
		<title>Translations:Chunk:Chrome/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Chrome/Page_display_title/de&amp;diff=163278"/>
		<updated>2015-03-13T16:23:49Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Chromleisten&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Core/de&amp;diff=163277</id>
		<title>Chunk:Core/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Core/de&amp;diff=163277"/>
		<updated>2015-03-13T16:23:11Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Core&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The word &amp;quot;core&amp;quot; in Joomla! pertains to the distributed files which are needed to create and administrate a Joomla CMS powered web site.  These files can be downloaded from the Joomla website at [http://www.joomla.org/download.html http://www.joomla.org/download.html].  The Joomla &amp;quot;core&amp;quot; also contains some basic functionality to get new Joomla installations working quickly and easily. Included are the user manager, article manager, weblink manager, category manager, contact manager, and menu manager. There is also a [[template]] manager with a few basic templates to power the front-end (website/user) view, a [[module]] manager with basic modules, [[plugin]] manager with basic plugins, and a few other &amp;quot;out of the box&amp;quot; [[extension]]s to extend the functionality of a basic Joomla installation. These core&#039;s extensions should not be confused with extensions which are available for downloading from the JED (Joomla! Extension Directory).  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also:&#039;&#039;&#039; [http://extensions.joomla.org/ Joomla Extension Directory].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Core/Page_display_title/de&amp;diff=163276</id>
		<title>Translations:Chunk:Core/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Core/Page_display_title/de&amp;diff=163276"/>
		<updated>2015-03-13T16:23:11Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Core&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Core&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Access_Control_List/de&amp;diff=163275</id>
		<title>Chunk:Access Control List/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Access_Control_List/de&amp;diff=163275"/>
		<updated>2015-03-13T16:19:20Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Access Control List&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Access Control List or ACL is according to the [[wikipedia:Access_control_list|Wikipedia definition]], “...ACL specifies which users or system processes are granted access to objects, as well as what operations are allowed to be performed on given objects.”  In the case of Joomla there are two separate aspects to its Access Control List which site administrators can control:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Which users can gain access to what parts of the website?&#039;&#039;&#039; For example, will a given menu choice be visible for a given user? A registered user can view, but the public at large cannot. Perhaps the menu choice is hidden from all except an Editor user and higher.&lt;br /&gt;
* &#039;&#039;&#039;What operations (or actions) can a user perform on any given object?&#039;&#039;&#039; For example, can a user listed as an &amp;quot;Editor&amp;quot; submit an article or only edit an existing article. The ACL settings could allow submitting and editing, or allow a change an article&#039;s category, add tags or any combination.&lt;br /&gt;
&lt;br /&gt;
The implementation of ACL in Joomla was substantially changed in the Joomla! 2.5 series which allowed for more flexibility in groups and permissions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages ==&lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Access_Control_List/Page_display_title/de&amp;diff=163274</id>
		<title>Translations:Chunk:Access Control List/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Access_Control_List/Page_display_title/de&amp;diff=163274"/>
		<updated>2015-03-13T16:19:20Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Access Control List&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Access Control List&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Alias/de&amp;diff=163273</id>
		<title>Chunk:Alias/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Alias/de&amp;diff=163273"/>
		<updated>2015-03-13T16:18:58Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Alias&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Aliases are short pieces of text that represent the title of certain items (Menu items, [[Article|Articles]] and [[Category|Categories]]) in a machine-friendly format. This format allows only lowercase letters and dashes (-).&lt;br /&gt;
&lt;br /&gt;
Aliases are used by Joomla to make [[Search Engine Friendly URLs]]. There are technical limitations to the types of characters that can be included in URLs, so Joomla prevents problems with invalid characters by allowing you to specify an alias.&lt;br /&gt;
&lt;br /&gt;
You can fill in an alias yourself. &#039;&#039;&#039;If you leave the alias field empty&#039;&#039;&#039;, Joomla will automatically create an alias from the Title field of an item when it is saved. &#039;&#039;&#039;This means that if you edit the title of an item, but you leave the old alias in its field, the alias (and the URL that is created from it) will not change.&#039;&#039;&#039; Empty the alias field if you want generate a new alias.&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages ==&lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Alias/Page_display_title/de&amp;diff=163272</id>
		<title>Translations:Chunk:Alias/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Alias/Page_display_title/de&amp;diff=163272"/>
		<updated>2015-03-13T16:18:58Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Alias&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Alias&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Module_chrome/de&amp;diff=163271</id>
		<title>Chunk:Module chrome/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Module_chrome/de&amp;diff=163271"/>
		<updated>2015-03-13T16:18:47Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Modul Chromleisten&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Module chrome allows template designers to have a certain amount of control over the way the output from a Module is displayed in their template.  Essentially, it consists of a small amount of predefined HTML which is inserted before, after, or around the output from each module, and which can then be styled using CSS.  Module chrome is commonly used to provide borders around modules, especially with rounded corners, but it can be used for much more than that.&lt;br /&gt;
&lt;br /&gt;
Module chrome is determined by using the &#039;&amp;lt;tt&amp;gt;style&amp;lt;/tt&amp;gt;&#039; attribute in the statement calling the module.  For example, the following statement may be used in the &amp;lt;tt&amp;gt;index.php&amp;lt;/tt&amp;gt; file of the currently assigned as main template to insert the Modules in the &#039;&amp;lt;tt&amp;gt;user1&amp;lt;/tt&amp;gt;&#039; position and apply the &#039;&amp;lt;tt&amp;gt;custom&amp;lt;/tt&amp;gt;&#039; Module chrome:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;jdoc:include type=&amp;quot;modules&amp;quot; name=&amp;quot;user1&amp;quot; style=&amp;quot;custom&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
It can be seen that the same Module chrome is applied to every Module in that position - in other words, if you want to have two Modules in a column, but want them to have different Module chrome, then they would need to be set up as two different &#039;positions&#039; (e.g. &#039;&amp;lt;tt&amp;gt;user1&amp;lt;/tt&amp;gt;&#039; and &#039;&amp;lt;tt&amp;gt;user2&amp;lt;/tt&amp;gt;&#039;).&lt;br /&gt;
&lt;br /&gt;
The standard Joomla! 1.5+ package includes six default Module chrome styles.  However, the flexibility of the template system means that you are not limited to these styles - it&#039;s very easy to create as many new styles as you want!&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Module_chrome/Page_display_title/de&amp;diff=163270</id>
		<title>Translations:Chunk:Module chrome/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Module_chrome/Page_display_title/de&amp;diff=163270"/>
		<updated>2015-03-13T16:18:47Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Modul Chromleisten&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Modul Chromleisten&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Template_style/de&amp;diff=163269</id>
		<title>Chunk:Template style/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Template_style/de&amp;diff=163269"/>
		<updated>2015-03-13T16:17:09Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Template-Stil&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Template style&#039;&#039;&#039; is a feature introduced in {{JVer|2.5}} that allows users to assign different template styles to individual menu items. By default, Joomla! assigns a template style to all menu items upon installation. A yellow star indicates the default template style in use. A default template style can be partially or completely overridden by assigning different template styles to the desired menu items in order to obtain a different look for their respective pages.&lt;br /&gt;
&lt;br /&gt;
A template style can be assigned to menu items one of two ways. &lt;br /&gt;
*Template manager {{rarr|Extensions,Template Manager}} &lt;br /&gt;
*Editing a menu item under {{rarr|Menus,Menu Name,Menu item}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Template_style/Page_display_title/de&amp;diff=163268</id>
		<title>Translations:Chunk:Template style/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Template_style/Page_display_title/de&amp;diff=163268"/>
		<updated>2015-03-13T16:17:08Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Template-Stil&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Template-Stil&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Menu/de&amp;diff=163267</id>
		<title>Chunk:Menu/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Menu/de&amp;diff=163267"/>
		<updated>2015-03-13T16:16:53Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Menü&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In Joomla!, a &#039;&#039;&#039;Menu&#039;&#039;&#039; is a set of &#039;&#039;&#039;menu items&#039;&#039;&#039; used for website navigation. Each menu item defines an URL to a page on your site, and holds settings that control the contents (articles, category(ies) lists, tagged items, etc) and style (module(s), layout) of that page.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[[S:MyLanguage/Adding a new menu|Creating menus]]&#039;&#039;&#039; is rather simple. From the Admin Menu, in the backend of your Joomla! site, you choose: {{rarr|Menus &amp;gt; Menu Manager &amp;gt; Add New Menu}}. On the opened to you {{rarr|Menu Manager: Add Menu}} page enter your menu title into the &amp;quot;Title *&amp;quot; field (mandatory), your menu type into the &amp;quot;Menu type *&amp;quot; field (mandatory) and, if you wish, your menu brief description into the &amp;quot;Description&amp;quot; field (optional). After that you can start &#039;&#039;&#039;[[S:MyLanguage/Adding a new menu item|adding new menu items]]&#039;&#039;&#039; to this new menu. &lt;br /&gt;
&lt;br /&gt;
Any website can have more than one menu.&lt;br /&gt;
&lt;br /&gt;
== Showing a menu ==&lt;br /&gt;
A &#039;&#039;&#039;Menu&#039;&#039;&#039; isn&#039;t automatically shown on the site&#039;s front-end. You need to create a &#039;&#039;&#039;Menu Module&#039;&#039;&#039; using the &#039;&#039;&#039;[[S:MyLanguage/Help33:Extensions Module Manager|Module Manager]]&#039;&#039;&#039; and instruct the module which &#039;&#039;&#039;Menu&#039;&#039;&#039; to show. Subsequently, you can select where the module should appear on the site, by choosing one of the available &#039;&#039;&#039;[[S:MyLanguage/Module Position|Module Positions]]&#039;&#039;&#039; of the active &#039;&#039;&#039;[[S:MyLanguage/Getting Started with Templates|Template]]&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
There is even more control on when the menu should appear, by adjusting the settings of the menu module. So, you can set it to appear in all or just a few pages of your choice (assigning the module on menu items), or make it visible to all, or only specific user-groups (e.g. registered users).&lt;br /&gt;
&lt;br /&gt;
It is also possible to create [[S:MyLanguage/Split menus|Split menus]].&lt;br /&gt;
&lt;br /&gt;
== Hidden Menus ==&lt;br /&gt;
A Menu that isn&#039;t shown by any module is commonly called a &#039;&#039;&#039;hidden menu&#039;&#039;&#039;. Hidden menus can be used to create URLs that are not visible on any page, within menus. &lt;br /&gt;
For example, this can be very useful, if we want to create a single article page, with a custom URL, and specific content settings (layout, modules), that could be accessible through another page (article, blog category, module, etc), but we don&#039;t want to display a Menu Item for it, anywhere on our Menus.&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Menu/Page_display_title/de&amp;diff=163266</id>
		<title>Translations:Chunk:Menu/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Menu/Page_display_title/de&amp;diff=163266"/>
		<updated>2015-03-13T16:16:53Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Menü&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Menü&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Language/de&amp;diff=163265</id>
		<title>Chunk:Language/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Language/de&amp;diff=163265"/>
		<updated>2015-03-13T16:16:41Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Sprache&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Languages are perhaps the most basic and critical [[Extensions|extension]] type. Languages are packaged as either a core language pack or an extension language pack. These packages consist of INI files which contain key/value pairs. These key/value pairs provide the translation of static text strings within Joomla! source code. This allows both the Joomla! core and third party components and modules to be internationalised. Core language packs also include an XML meta file describing the language and providing information about the fonts to use for PDF content generation.&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Language/Page_display_title/de&amp;diff=163264</id>
		<title>Translations:Chunk:Language/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Language/Page_display_title/de&amp;diff=163264"/>
		<updated>2015-03-13T16:16:41Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Sprache&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Sprache&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Upgrade_Package/de&amp;diff=163263</id>
		<title>Chunk:Upgrade Package/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Upgrade_Package/de&amp;diff=163263"/>
		<updated>2015-03-13T16:16:29Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Upgrade-Paket&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An Upgrade Package in Joomla! is an archive of files that contain the files that have changed between Joomla! versions. When this archive is unpacked, it replaces the old version of the modified files with the new version. For example, if fifty files were changed between version 3.x.1 and 3.x.2, the upgrade package from 3.x.1 to 3.x.2 would contain these fifty files and, when unpacked, would replace these fifty files and upgrade the installed version from 3.x.1 to 3.x.2. &lt;br /&gt;
&lt;br /&gt;
Upgrade Packages are also sometimes referred to as [[Patch|patch files]]. Before installing an Upgrade Package, read the [[Joomla_1.5_version_history|release notes]] and the [[Upgrade Instructions]] relating to the Upgrade Package.&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Upgrade_Package/Page_display_title/de&amp;diff=163262</id>
		<title>Translations:Chunk:Upgrade Package/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Upgrade_Package/Page_display_title/de&amp;diff=163262"/>
		<updated>2015-03-13T16:16:29Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Upgrade-Paket&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Upgrade-Paket&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Module_Position/de&amp;diff=163261</id>
		<title>Chunk:Module Position/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Module_Position/de&amp;diff=163261"/>
		<updated>2015-03-13T16:16:08Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Modulposition&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A module position is a placeholder in a [[template]]. Placeholders identify one or several positions within the template and tell the Joomla! application where to place output from modules assigned to a particular position. The template designer has complete control over module positions, creating variations between templates and the respective Joomla! default positions assigned to modules in the installation sample data.&lt;br /&gt;
&lt;br /&gt;
For example, the module position &#039;&#039;&#039;Left&#039;&#039;&#039; could be defined to be on the left side of the template to display a site navigation menu. So if a module is assigned the &#039;&#039;&#039;Left&#039;&#039;&#039; position, it will be displayed wherever the designer puts that &#039;&#039;&#039;Left&#039;&#039;&#039; module position - not necessarily the left side of the page.&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Module_Position/Page_display_title/de&amp;diff=163260</id>
		<title>Translations:Chunk:Module Position/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Module_Position/Page_display_title/de&amp;diff=163260"/>
		<updated>2015-03-13T16:16:08Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Modulposition&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Modulposition&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Anchor/de&amp;diff=163259</id>
		<title>Chunk:Anchor/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Anchor/de&amp;diff=163259"/>
		<updated>2015-03-13T16:15:48Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Anker&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An anchor is created using the &amp;lt;a&amp;gt; tag in HTML. An anchor allows you to place a bookmark inside an HTML page. In Joomla!, you can place an anchor inside an article (for example, using the [[Content_editors#TinyMCE editor | TinyMCE]] editor). This lets you create a link that will go directly to that point in the article. &lt;br /&gt;
&lt;br /&gt;
The HTML source code for an anchor looks like the following: &amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;a name=&amp;quot;my_anchor&amp;quot; title=&amp;quot;My Anchor&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/source&amp;gt;You can link to an anchor from within the same page using the HTML code &amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#my_anchor&amp;quot; &amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/source&amp;gt;Clicking that link will take you directly to the location of the anchor tag. &lt;br /&gt;
&lt;br /&gt;
You can link to an anchor in a different page by appending &amp;quot;#&amp;quot; plus the anchor name to the end of the URL. In the example above, if the URL for the article was &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/my_article.html&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, then you could link directly to the anchor in that page with the URL &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://www.mysite.com/my_article.html#my_anchor&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Anchor/Page_display_title/de&amp;diff=163258</id>
		<title>Translations:Chunk:Anchor/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Anchor/Page_display_title/de&amp;diff=163258"/>
		<updated>2015-03-13T16:15:47Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Anker&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Anker&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Model-View-Controller/de&amp;diff=163257</id>
		<title>Chunk:Model-View-Controller/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Model-View-Controller/de&amp;diff=163257"/>
		<updated>2015-03-13T16:15:30Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Model-View-Controller&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Joomla makes extensive use of the [http://en.wikipedia.org/wiki/Model-view-controller Model-View-Controller] design pattern.&lt;br /&gt;
&lt;br /&gt;
When Joomla is started to process a request from a user, such as a GET for a particular page, or a POST containing form data, one of the first things that Joomla does is to analyse the URL to determine which component will be responsible for processing the request, and hand control over to that component.&lt;br /&gt;
&lt;br /&gt;
If the component has been designed according to the MVC pattern, it will pass control to the controller.  The controller is responsible for analysing the request and determining which model(s) will be needed to satisfy the request, and which view should be used to return the results back to the user.&lt;br /&gt;
&lt;br /&gt;
The model encapsulates the data used by the component.  In most cases this data will come from a database, either the Joomla database, or some external database, but it is also possible for the model to obtain data from other sources, such as via a web services API running on another server.  The model is also responsible for updating the database where appropriate.  The purpose of the model is to isolate the controller and view from the details of how data is obtained or amended.&lt;br /&gt;
&lt;br /&gt;
The view is responsible for generating the output that gets sent to the browser by the component.  It calls on the model for any information it needs and formats it appropriately.  For example, a list of data items pulled from the model could be wrapped into an HTML table by the view.&lt;br /&gt;
&lt;br /&gt;
Since Joomla is designed to be highly modular, the output from the component is generally only part of the complete web page that the user will ultimately see.  Once the view has generated the output, the component hands control back to the Joomla framework which then loads and executes the template.  The template combines the output from the component, and any modules that are active on the current page, so that it can be delivered to the browser as a single page.&lt;br /&gt;
&lt;br /&gt;
To provide additional power and flexibility to web designers, who may only be concerned with creating new designs rather than manipulating the underlying code, Joomla splits the traditional view into a separate view and layout. The view pulls data from the model, as in a traditional MVC pattern, but then simply makes that data available to the layout, which is responsible for formatting the data for presentation to the user. The advantage of having this split is that the Joomla template system provides a simple mechanism for layouts to be overridden in the template.  These layout overrides (often called &amp;quot;template overrides&amp;quot; because they form part of the template, although actually it is the layout that is being overridden) are bundled with the template and give the template designer complete control over all the output from the Joomla core and any installed third-party extensions that comply with the MVC design pattern.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Model-View-Controller/Page_display_title/de&amp;diff=163256</id>
		<title>Translations:Chunk:Model-View-Controller/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Model-View-Controller/Page_display_title/de&amp;diff=163256"/>
		<updated>2015-03-13T16:15:30Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Model-View-Controller&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Model-View-Controller&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Split_menus/de&amp;diff=163255</id>
		<title>Chunk:Split menus/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Split_menus/de&amp;diff=163255"/>
		<updated>2015-03-13T16:15:14Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Geteilte Menüs&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A [[split menus|split menu]] is where different levels of a single menu are displayed in two or more locations on a single web page.&lt;br /&gt;
&lt;br /&gt;
For example, a common requirement is for a menu of top-level items to appear at the top of the page.  When one of the items is clicked the user is taken to a page where a secondary menu, say on the left of the page, shows second-level items within the scope of the top-level item.&lt;br /&gt;
&lt;br /&gt;
The menus appear in separate locations on the page, but are related because one shows only top-level items while the other shows second-level items.  This idea can be extended to include menus for third-level items and beyond.&lt;br /&gt;
&lt;br /&gt;
This can be implemented in Joomla using a single multi-level menu then creating more than one menu module each referring to a different level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also&#039;&#039;&#039;: [[Menu]]&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Split_menus/Page_display_title/de&amp;diff=163254</id>
		<title>Translations:Chunk:Split menus/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Split_menus/Page_display_title/de&amp;diff=163254"/>
		<updated>2015-03-13T16:15:14Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Begriff:Geteilte Menüs&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Begriff:Geteilte Menüs&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk:Module_Class_Suffix/de&amp;diff=163253</id>
		<title>Chunk:Module Class Suffix/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk:Module_Class_Suffix/de&amp;diff=163253"/>
		<updated>2015-03-13T16:14:32Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Stück:Modul-Klassen-Suffix&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Module Class Suffix is a parameter in Joomla! modules. It is set Module: [Edit] screen under Advanced Parameters. Setting this parameter causes Joomla! to either add a new CSS class or modify the existing CSS class for the &amp;lt;code&amp;gt;div&amp;lt;/code&amp;gt; element for this specific module.&lt;br /&gt;
&lt;br /&gt;
When Joomla! generates a module, it automatically create a CSS class called &amp;quot;moduletable&amp;quot; to allow styling of the module -- for example, &amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;moduletable&amp;quot;&amp;gt;&amp;lt;/source&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To create a new class, enter the parameter with a leading space. For example, entering a space plus &amp;quot;myNewClass&amp;quot; will create a new CSS class called &amp;quot;myNewClass&amp;quot;. The HTML will be changed to &amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;moduletable myNewClass&amp;quot;&amp;gt;&amp;lt;/source&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To change the name of the existing class, enter in the parameter without a leading space. For example, entering &amp;quot;_mySuffix&amp;quot; (no leading space) will cause the HTML to changed to &amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;moduletable_mySuffix&amp;quot;&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Generally, it is recommended to use a leading space to create a new class. This way, CSS styling for this module that uses the standard class names will continue to work. You can use the new class name to add any desired styling to the module without needing to re-create all of the existing CSS code. Note that, if you create a new class name, make sure it has a unique name and doesn&#039;t conflict with any existing class names.&lt;br /&gt;
&lt;br /&gt;
See [[Using Class Suffixes]] for more information.&amp;lt;noinclude&amp;gt;[[Category:Glossary definitions|{{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Languages == &lt;br /&gt;
&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Module_Class_Suffix/Page_display_title/de&amp;diff=163252</id>
		<title>Translations:Chunk:Module Class Suffix/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk:Module_Class_Suffix/Page_display_title/de&amp;diff=163252"/>
		<updated>2015-03-13T16:14:32Z</updated>

		<summary type="html">&lt;p&gt;Gorgonz: Created page with &amp;quot;Stück:Modul-Klassen-Suffix&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stück:Modul-Klassen-Suffix&lt;/div&gt;</summary>
		<author><name>Gorgonz</name></author>
	</entry>
</feed>