<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://marrowproductions.com//DCAM/wiki/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://marrowproductions.com//DCAM/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kghbln</id>
		<title>DCAM Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://marrowproductions.com//DCAM/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kghbln"/>
		<link rel="alternate" type="text/html" href="http://marrowproductions.com//DCAM/wiki/index.php/Special:Contributions/Kghbln"/>
		<updated>2026-07-26T03:46:25Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.21.1</generator>

	<entry>
		<id>http://marrowproductions.com//DCAM/wiki/index.php/Help:Tables</id>
		<title>Help:Tables</title>
		<link rel="alternate" type="text/html" href="http://marrowproductions.com//DCAM/wiki/index.php/Help:Tables"/>
				<updated>2012-02-08T12:53:51Z</updated>
		
		<summary type="html">&lt;p&gt;Kghbln: Rejected the last text change (by 62.218.164.126) and restored revision 480312 by 61.8.152.146&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PD Help Page}}&lt;br /&gt;
'''Tables''' may be authored in wiki pages using either XHTML table elements directly, or using wikicode formatting to define the table. XHTML table elements and their use are well described on various web pages and will not be discussed here. The benefit of wikicode is that the table is constructed of character symbols which tend to make it easier to perceive the table structure in the article editing view compared to XHTML table elements.&lt;br /&gt;
 &lt;br /&gt;
As a general rule, it is best to avoid using a table unless you need one. Table markup often complicates page editing.&lt;br /&gt;
&lt;br /&gt;
== Wiki table markup summary ==&lt;br /&gt;
{|cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot; width=&amp;quot;60%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{|&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| '''table start'''&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;|+&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| table '''caption,''' ''optional;'' only between '''table start''' and first '''table row'''&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;|-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| '''table row,''' ''optional on first row'' -- wiki engine assumes the first row&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;!&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
| '''table header''' cell, ''optional.'' Consecutive '''table header''' cells may be added on same line separated by double marks (&amp;lt;code&amp;gt;!!&amp;lt;/code&amp;gt;) or start on new lines, each with its own single mark (&amp;lt;code&amp;gt;!&amp;lt;/code&amp;gt;).&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| '''table data''' cell, ''required!'' Consecutive '''table data''' cells may be added on same line separated by double marks (&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;||&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;) or start on new lines, each with its own single mark (&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;|}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| '''table end''' &lt;br /&gt;
|}&lt;br /&gt;
*The above marks must '''start on a new line''' except the double &amp;lt;code&amp;gt;||&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;!!&amp;lt;/code&amp;gt; for optionally adding consecutive cells to a line. However, blank spaces at the beginning of a line are ignored.&lt;br /&gt;
*'''XHTML attributes.''' Each mark, except table end, optionally accepts one or more XHTML attributes. Attributes must be on the same line as the mark. Separate attributes from each other with a single space. &lt;br /&gt;
**Cells and caption (&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;||&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;!&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;!!&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;|+&amp;lt;/code&amp;gt;) hold content. So separate any attributes from content with a single pipe (&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;). Cell content may follow on same line or on following lines.&lt;br /&gt;
**Table and row marks (&amp;lt;code&amp;gt;{|&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;|-&amp;lt;/code&amp;gt;) do not directly hold content. Do ''not'' add pipe (&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;) after their optional attributes. If you erroneously add a pipe after attributes for the table mark or row mark the parser will delete it ''and'' your final attribute if it was touching the erroneous pipe!&lt;br /&gt;
*'''Content''' may (a) follow its cell mark on the same line after any optional XHTML attributes or (b) on lines below the cell mark. Content that uses wiki markup that itself needs to start on a new line, such as lists, headings, or nested tables, must be on its own new line.&lt;br /&gt;
**'''Pipe character as content.''' To insert a pipe (&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;) character into a table use the &amp;amp;lt;nowiki&amp;amp;gt;&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;&amp;amp;lt;/nowiki&amp;amp;gt; escaping markup&lt;br /&gt;
&lt;br /&gt;
==Basics==&lt;br /&gt;
The following table lacks borders and good spacing but shows the simplest wiki markup table structure.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The cells in the same row can be listed on one line separated by &amp;lt;code&amp;gt;||&amp;lt;/code&amp;gt; (two pipe symbols). If the text in the cell contains a line break, use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; instead.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|Orange||Apple||more&lt;br /&gt;
|-&lt;br /&gt;
|Bread||Pie||more&lt;br /&gt;
|-&lt;br /&gt;
|Butter||Ice&amp;lt;br /&amp;gt;cream||and&amp;lt;br /&amp;gt;more&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|&lt;br /&gt;
|Orange||Apple||more&lt;br /&gt;
|-&lt;br /&gt;
|Bread||Pie||more&lt;br /&gt;
|-&lt;br /&gt;
|Butter||Ice&amp;lt;br /&amp;gt;cream||and&amp;lt;br /&amp;gt;more&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Extra spaces within cells in the wiki markup, as in the wiki markup below, do not affect the actual table rendering.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|  Orange    ||   Apple   ||   more&lt;br /&gt;
|-&lt;br /&gt;
|   Bread    ||   Pie     ||   more&lt;br /&gt;
|-&lt;br /&gt;
|   Butter   || Ice cream ||  and more&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|&lt;br /&gt;
|  Orange    ||   Apple   ||   more&lt;br /&gt;
|-&lt;br /&gt;
|   Bread    ||   Pie     ||   more&lt;br /&gt;
|-&lt;br /&gt;
|   Butter   || Ice cream ||  and more&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You can have longer text or more complex wiki syntax inside table cells, too:&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|Lorem ipsum dolor sit amet, &lt;br /&gt;
consetetur sadipscing elitr, &lt;br /&gt;
sed diam nonumy eirmod tempor invidunt&lt;br /&gt;
ut labore et dolore magna aliquyam erat, &lt;br /&gt;
sed diam voluptua. &lt;br /&gt;
&lt;br /&gt;
At vero eos et accusam et justo duo dolores&lt;br /&gt;
et ea rebum. Stet clita kasd gubergren,&lt;br /&gt;
no sea takimata sanctus est Lorem ipsum&lt;br /&gt;
dolor sit amet. &lt;br /&gt;
|&lt;br /&gt;
* Lorem ipsum dolor sit amet&lt;br /&gt;
* consetetur sadipscing elitr&lt;br /&gt;
* sed diam nonumy eirmod tempor invidunt&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|&lt;br /&gt;
|Lorem ipsum dolor sit amet, &lt;br /&gt;
consetetur sadipscing elitr, &lt;br /&gt;
sed diam nonumy eirmod tempor invidunt&lt;br /&gt;
ut labore et dolore magna aliquyam erat, &lt;br /&gt;
sed diam voluptua. &lt;br /&gt;
&lt;br /&gt;
At vero eos et accusam et justo duo dolores&lt;br /&gt;
et ea rebum. Stet clita kasd gubergren,&lt;br /&gt;
no sea takimata sanctus est Lorem ipsum&lt;br /&gt;
dolor sit amet. &lt;br /&gt;
|&lt;br /&gt;
* Lorem ipsum dolor sit amet&lt;br /&gt;
* consetetur sadipscing elitr&lt;br /&gt;
* sed diam nonumy eirmod tempor invidunt&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Table headers ===&lt;br /&gt;
Table headers can be created by using &amp;quot;&amp;lt;code&amp;gt;!&amp;lt;/code&amp;gt;&amp;quot; (exclamation mark) instead of &amp;quot;&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;&amp;quot; (pipe symbol). Headers usually show up bold and centered by default.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|Item&lt;br /&gt;
! Amount&lt;br /&gt;
! Cost&lt;br /&gt;
|-&lt;br /&gt;
|Orange&lt;br /&gt;
|10&lt;br /&gt;
|7.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|4&lt;br /&gt;
|3.00&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|1&lt;br /&gt;
|5.00&lt;br /&gt;
|-&lt;br /&gt;
!Total&lt;br /&gt;
|&lt;br /&gt;
|15.00&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|&lt;br /&gt;
! align=&amp;quot;left&amp;quot;| Item&lt;br /&gt;
! Amount&lt;br /&gt;
! Cost&lt;br /&gt;
|-&lt;br /&gt;
|Orange&lt;br /&gt;
|10&lt;br /&gt;
|7.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|4&lt;br /&gt;
|3.00&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|1&lt;br /&gt;
|5.00&lt;br /&gt;
|-&lt;br /&gt;
!Total&lt;br /&gt;
|&lt;br /&gt;
|15.00&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Note:''' When using attributes as in the heading 'Item' a vertical bar '|' is used for separation. Not an exclamation character '!'.&lt;br /&gt;
&lt;br /&gt;
===Caption===&lt;br /&gt;
A '''table caption''' can be added to the top of any table as follows.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|+Food complements&lt;br /&gt;
|-&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|&lt;br /&gt;
|+ Food complements&lt;br /&gt;
|-&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== XHTML attributes ==&lt;br /&gt;
You can add XHTML attributes to tables. For the authoritative source on these, see [http://www.w3.org/TR/REC-html40/struct/tables.html the W3C's HTML 4.01 Specification page on tables].&lt;br /&gt;
&lt;br /&gt;
=== Attributes on tables ===&lt;br /&gt;
Placing attributes after the table start tag (&amp;lt;code&amp;gt;{|&amp;lt;/code&amp;gt;) applies attributes to the entire table.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;text-align:center;&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|12,333.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|500.00&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream&lt;br /&gt;
|1.00&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;text-align:center;&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|12,333.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|500.00&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream&lt;br /&gt;
|1.00&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Attributes on cells ===&lt;br /&gt;
You can put attributes on individual '''cells'''. For example, numbers may look better aligned right.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|align=&amp;quot;right&amp;quot; | 12,333.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|align=&amp;quot;right&amp;quot; | 500.00&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream&lt;br /&gt;
|align=&amp;quot;right&amp;quot; | 1.00&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|12,333.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|500.00&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|1.00&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You can also use '''cell''' attributes when you are listing multiple '''cells''' on a single line. Note that the '''cells''' are separated by &amp;lt;code&amp;gt;||&amp;lt;/code&amp;gt;, and within each '''cell''' the attribute(s) and value are separated by &amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| Orange || Apple     || align=&amp;quot;right&amp;quot; | 12,333.00&lt;br /&gt;
|-&lt;br /&gt;
| Bread  || Pie       || align=&amp;quot;right&amp;quot; | 500.00&lt;br /&gt;
|-&lt;br /&gt;
| Butter || Ice cream || align=&amp;quot;right&amp;quot; | 1.00&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
| Orange || Apple     || align=&amp;quot;right&amp;quot; | 12,333.00&lt;br /&gt;
|-&lt;br /&gt;
| Bread  || Pie       || align=&amp;quot;right&amp;quot; | 500.00&lt;br /&gt;
|-&lt;br /&gt;
| Butter || Ice cream || align=&amp;quot;right&amp;quot; | 1.00&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Attributes on rows===&lt;br /&gt;
You can put attributes on individual '''rows''', too.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|12,333.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|500.00&lt;br /&gt;
|- style=&amp;quot;font-style:italic; color:green;&amp;quot;&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|1.00&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|12,333.00&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|500.00&lt;br /&gt;
|- style=&amp;quot;font-style:italic; color:green;&amp;quot;&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream&lt;br /&gt;
|align=&amp;quot;right&amp;quot;|1.00&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Simple one-pixel table border====&lt;br /&gt;
The default table formatting uses the &amp;quot;border-collapse: separate&amp;quot; model, which adds table cell spacing (which also separates the table outer border from its content cells). Even with a zero cellspacing, the borders of consecutive cells (and of the overall table container) will add up, so to get a one-pixel separation between cells, you need to selectively remove one or more of the four borders of cells.&lt;br /&gt;
&lt;br /&gt;
Such tables may be formatted more simply, using the &amp;quot;border-collapse: collapse&amp;quot; CSS property; in this table formatting model, the cellspacing attribute (or the CSS &amp;quot;border-spacing:&amp;quot; property) and the table's &amp;quot;padding:&amp;quot; CSS property is ignored and only the larger border of adjacent inner cells (or the table border for outer cells) will be used.&lt;br /&gt;
&lt;br /&gt;
An example of the above for one-pixel table border, using each model (without need for external extensions):&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!|You type&lt;br /&gt;
!width=&amp;quot;200&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre style=&amp;quot;font-size: 80%&amp;quot;&amp;gt;&lt;br /&gt;
{|style=&amp;quot;border-collapse: separate; border-spacing: 0; border-width: 1px; border-style: solid; border-color: #000; padding: 0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 0 1px 1px 0&amp;quot;| Orange&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 0 0 1px 0&amp;quot;| Apple&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 0 1px 0 0&amp;quot;| Bread&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 0&amp;quot;| Pie&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|style=&amp;quot;margin: 0; border-collapse: separate; border-spacing: 0; border-width: 1px; border-style: solid; border-color: #000; padding: 0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 0 1px 1px 0&amp;quot;| Orange&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 0 0 1px 0&amp;quot;| Apple&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 0 1px 0 0&amp;quot;| Bread&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 0&amp;quot;| Pie&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre style=&amp;quot;font-size: 80%&amp;quot;&amp;gt;&lt;br /&gt;
{|style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #000&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Orange&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Apple&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Bread&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Pie&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{|style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #000&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Orange&lt;br /&gt;
!style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Apple&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Bread&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 1px&amp;quot;| Pie&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Notes :&lt;br /&gt;
* When using the &amp;quot;border-width:&amp;quot; CSS shortcut property, the order of the four space-separated specified values is: top, right, bottom, left. As an example from above: &lt;br /&gt;
::&amp;quot;border-width: 0 1px 0 0&amp;quot; &lt;br /&gt;
:When there are fewer than 4 values, the value for left takes its default from the value for right, the value for bottom takes its default from the value for top, and the value for right takes its default from the value for top.&lt;br /&gt;
* The HTML attributes (such as &amp;quot;width=&amp;quot;, &amp;quot;border=&amp;quot;, &amp;quot;cellspacing=&amp;quot;, &amp;quot;cellpadding=&amp;quot;) do not need any length unit (the pixel unit is assumed). The CSS style properties (which override the HTML attributes) require an explicit length unit (if the value is not 0) such as &amp;quot;px&amp;quot; for the pixel.&lt;br /&gt;
&lt;br /&gt;
===HTML colspan and rowspan===&lt;br /&gt;
&lt;br /&gt;
You can use HTML '''colspan''' and '''rowspan''' attributes on cells for advanced layout.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!colspan=&amp;quot;6&amp;quot;|Shopping List&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Bread &amp;amp; Butter&lt;br /&gt;
|Pie&lt;br /&gt;
|Buns&lt;br /&gt;
|Danish&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|Croissant&lt;br /&gt;
|-&lt;br /&gt;
|Cheese&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|Ice cream&lt;br /&gt;
|Butter&lt;br /&gt;
|Yoghurt&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
!colspan=&amp;quot;6&amp;quot;|Shopping List&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Bread &amp;amp; Butter&lt;br /&gt;
|Pie&lt;br /&gt;
|Buns&lt;br /&gt;
|Danish&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|Croissant&lt;br /&gt;
|-&lt;br /&gt;
|Cheese&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|Ice cream&lt;br /&gt;
|Butter&lt;br /&gt;
|Yoghurt&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===With HTML attributes and CSS styles===&lt;br /&gt;
[[Manual:CSS|CSS]] style attributes can be added with or without other HTML attributes.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; white-space:pre-wrap; word-wrap:break-word; word-break:break-all;&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
'''Attributes''' can be added to the caption and headers as follows.&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; white-space:pre-wrap; word-wrap:break-word; word-break:break-all;&amp;quot;&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ align=&amp;quot;bottom&amp;quot; style=&amp;quot;color:#e76700;&amp;quot; |''Food complements''&lt;br /&gt;
|-&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ align=&amp;quot;bottom&amp;quot; style=&amp;quot;color:#e76700;&amp;quot; |''Food complements''&lt;br /&gt;
|-&lt;br /&gt;
|Orange&lt;br /&gt;
|Apple&lt;br /&gt;
|-&lt;br /&gt;
|Bread&lt;br /&gt;
|Pie&lt;br /&gt;
|-&lt;br /&gt;
|Butter&lt;br /&gt;
|Ice cream &lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Column width====&lt;br /&gt;
'''Column width''' can be added as follows.&lt;br /&gt;
&lt;br /&gt;
You type:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; white-space:pre-wrap; word-wrap:break-word; word-break:break-all;&amp;quot;&amp;gt;&lt;br /&gt;
{| style=&amp;quot;color:black; background-color:#ffffcc;&amp;quot; width=&amp;quot;85%&amp;quot; cellpadding=&amp;quot;10%&amp;quot; cellpadding=&amp;quot;15%&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | This column width is 85% of the screen width (and has a background color)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width: 30%;background-color:white;&amp;quot;| '''This column is 30% counted from 85% of the screen width'''&lt;br /&gt;
| style=&amp;quot;width: 70%;background-color:orange;&amp;quot;| '''This column is 70% counted from 85% of the screen width (and has a background color)'''&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get:&lt;br /&gt;
{| style=&amp;quot;color:black; background-color:#ffffcc;&amp;quot; width=&amp;quot;85%&amp;quot; cellpadding=&amp;quot;10%&amp;quot; cellpadding=&amp;quot;15%&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; | This column width is 85% of the screen width (and has a background color)&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;width: 30%;background-color:white;&amp;quot;| '''This column is 30% counted from 85% of the screen width'''&lt;br /&gt;
| style=&amp;quot;width: 70%;background-color:orange;&amp;quot;| '''This column is 70% counted from 85% of the screen width (and has a background color)'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Accessibility of table header cells===&lt;br /&gt;
Table header cells do not explicitly specify which table data cells they apply to (those on their right on the same row, or those below them on the same column). When the table is rendered in a visual 2D environment, this is usually easy to infer.&lt;br /&gt;
&lt;br /&gt;
However when tables are rendered on non-visual medias, you can help the browser to determine which table header cell applies to the description of any selected cell (in order to repeat its content in some accessibility helper) using a scope=&amp;quot;row&amp;quot; or scope=&amp;quot;col&amp;quot; attribute on table header cells. In most cases with simple tables, you'll use scope=&amp;quot;col&amp;quot; on all header cells of the first row, and scope=&amp;quot;row&amp;quot; on the first cell of the following rows:&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You type&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|You get&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; white-space:pre-wrap; word-wrap:break-word; word-break:break-all;&amp;quot;&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Item&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Quantity&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Price&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Bread&lt;br /&gt;
| 0.3 kg&lt;br /&gt;
| $0.65&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Butter&lt;br /&gt;
| 0.125 kg&lt;br /&gt;
| $1.25&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot; colspan=&amp;quot;2&amp;quot;| Total&lt;br /&gt;
| $1.90&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Item&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Quantity&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Price&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Bread&lt;br /&gt;
| 0.3 kg&lt;br /&gt;
| $0.65&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Butter&lt;br /&gt;
| 0.125 kg&lt;br /&gt;
| $1.25&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot; colspan=&amp;quot;2&amp;quot;| Total&lt;br /&gt;
| $1.90&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Caveats==&lt;br /&gt;
&lt;br /&gt;
===Negative numbers===&lt;br /&gt;
If you start a cell on a new line with a negative number with a minus sign (or a parameter that evaluates to a negative number), your table can get broken, because the characters &amp;lt;code&amp;gt;|-&amp;lt;/code&amp;gt; will be parsed as the wiki markup for table row, not table cell. To avoid this, insert a space before the value (&amp;lt;code&amp;gt;| -6&amp;lt;/code&amp;gt;) or use in-line cell markup (&amp;lt;code&amp;gt;|| -6&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
===CSS vs Attributes===&lt;br /&gt;
Table borders specified through CSS rather than the border attribute will render incorrectly in a small subset of text browsers.&lt;br /&gt;
&lt;br /&gt;
===Common attributes for columns, column groups and row groups===&lt;br /&gt;
The MediaWiki syntax for tables currently offers no support for specifying common attributes for columns (with the HTML element &amp;lt;code&amp;gt;&amp;amp;lt;col /&amp;amp;gt;&amp;lt;/code&amp;gt;), column groups (HTML element &amp;lt;code&amp;gt;&amp;amp;lt;colgroup&amp;amp;gt;...&amp;amp;lt;/colgroup&amp;amp;gt;&amp;lt;/code&amp;gt;) and row groups (HTML elements &amp;lt;code&amp;gt;&amp;amp;lt;thead&amp;amp;gt;...&amp;amp;lt;/thead&amp;amp;gt;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;amp;lt;tbody&amp;amp;gt;...&amp;amp;lt;/tbody&amp;amp;gt;&amp;lt;code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;tfoot&amp;amp;gt;...&amp;amp;lt;/tfoot&amp;amp;gt;&amp;lt;/code&amp;gt;). Those standard HTML elements are not accepted even in their HTML or XHTML syntax.&lt;br /&gt;
&lt;br /&gt;
All the rows and cells (header or data) of the table are rendered within a single implicit row group (HTML element &amp;lt;code&amp;gt;&amp;amp;lt;tbody&amp;amp;gt;...&amp;amp;lt;/tbody&amp;amp;gt;&amp;lt;/code&amp;gt;) without any attributes or styles.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* {{mediawiki|meta:Help:Sorting}}&lt;br /&gt;
* {{mediawiki|wikipedia:Help:Tables}}&lt;br /&gt;
&lt;br /&gt;
{{Languages}}&lt;br /&gt;
[[Category:Help|Tables]]&lt;/div&gt;</summary>
		<author><name>Kghbln</name></author>	</entry>

	<entry>
		<id>http://marrowproductions.com//DCAM/wiki/index.php/Help:Redirects</id>
		<title>Help:Redirects</title>
		<link rel="alternate" type="text/html" href="http://marrowproductions.com//DCAM/wiki/index.php/Help:Redirects"/>
				<updated>2012-01-29T16:12:27Z</updated>
		
		<summary type="html">&lt;p&gt;Kghbln: chg, form&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PD Help Page}}&lt;br /&gt;
&lt;br /&gt;
Redirects are used to forward users from one page name to another. They can be useful if a particular article is referred to by multiple names, or has alternative punctuation, capitalization or spellings.&lt;br /&gt;
&lt;br /&gt;
== Creating a redirect ==&lt;br /&gt;
You may start a new page with the name you want to direct from (see [[Help:Starting a new page]]). You can also use an existing page that you are making inactive as a page by going to that page and using the &amp;quot;edit&amp;quot; tab at the top. In either case, you will be inserting the following code at the very first text position of the Edit window for the page:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#REDIRECT [[&amp;lt;/nowiki&amp;gt;''pagename''&amp;lt;nowiki&amp;gt;]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
where ''pagename'' is the name of the destination page. The word &amp;quot;redirect&amp;quot; is not case-sensitive, but there must be no space before the &amp;quot;#&amp;quot; symbol. Any text before the code will disable the code and prevent a redirect. Any text or regular content code after the redirect code will be ignored (and should be deleted from an existing page). However, to put or keep the current page name listed in a Category, the usual tag for that category is entered or kept on a line after the redirect code entry.&lt;br /&gt;
&lt;br /&gt;
You should use the 'preview' button below the Edit window, or Alt-P, to check that you have entered the correct destination page name. The preview page will not look like the resulting redirect page, it will look like a numbered list, with the destination page in blue:  &lt;br /&gt;
 1. REDIRECT  &amp;lt;span style=&amp;quot;color:blue&amp;quot;&amp;gt;''pagename''&amp;lt;/span&amp;gt;&lt;br /&gt;
If the ''pagename'' as you typed it is not a valid page, it will show in red. Until there is a valid destination page, you should not make the redirect.&lt;br /&gt;
&lt;br /&gt;
== Viewing a redirect ==&lt;br /&gt;
After making a redirect at a page, you can no longer get to that page by using its name or by any link using that name; and they do not show up in wiki search results, either. However, near the top of the destination page, a notice that you have been forwarded appears, with the source pagename as an active link to it. Click this to get back to the redirected page, showing the large bent arrow symbol and the destination for the redirect.&lt;br /&gt;
&lt;br /&gt;
By doing this, you can do all the things that any wiki page allows. You can go to the associated discussion page to discuss the redirect. You can view the history of the page, including a record of the redirect. You can edit the page if the redirect is wrong, and you can revert to an older version to remove the redirect.&lt;br /&gt;
&lt;br /&gt;
== Deleting a redirect ==&lt;br /&gt;
There's generally no need to delete redirects. They do not occupy a significant amount of database space. If a page name is vaguely meaningful, there's no harm (and some benefit) in having it as a redirect to the more relevant or current page. &lt;br /&gt;
&lt;br /&gt;
If you do need to delete a redirect, e.g. if the page name is offensive, or you wish to discourage people from referring to a concept by that name, then you simply go to the redirect page as mentioned above, and follow the procedures at [[Help:Deleting a page]].&lt;br /&gt;
&lt;br /&gt;
== Double redirects ==&lt;br /&gt;
A double redirect is a page redirecting to a page which is itself a redirect, and it will not work. Instead, people will be presented with a view of the next redirect page. This is a deliberate restriction, partly to prevent infinite loops, and partly to keep things simple. &lt;br /&gt;
&lt;br /&gt;
However, you could look out for double redirects and eliminate them by changing them to be 1-step redirects instead. You are most likely to need to do this after a significant [[Help:Moving a page|page move]]. Use the &amp;quot;what links here&amp;quot; toolbox link to find double redirects to a particular page, or use [[Special:DoubleRedirects]] to find them throughout the whole wiki.&lt;br /&gt;
&lt;br /&gt;
== A redirect to a page in the category namespace ==&lt;br /&gt;
To redirect to a category page and to prevent that the redirect appears in this category, precede the word &amp;quot;Category&amp;quot; with a colon: &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;#REDIRECT [[:Category:Glossary]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supressing a redirect ==&lt;br /&gt;
Users with the ''suppressredirect'' [[Manual:User rights|right]] may move a page without creating a redirect. &lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Template:softredirect]] &lt;br /&gt;
* [[Manual:Redirect table]]&lt;br /&gt;
* [[Manual:$wgMaxRedirects]] - to allow for more than one consecutive redirects&lt;br /&gt;
&lt;br /&gt;
{{Languages|Help:Redirects}} &lt;br /&gt;
&lt;br /&gt;
[[Category:Help|Redirects]]&lt;/div&gt;</summary>
		<author><name>Kghbln</name></author>	</entry>

	<entry>
		<id>http://marrowproductions.com//DCAM/wiki/index.php/Help:Templates</id>
		<title>Help:Templates</title>
		<link rel="alternate" type="text/html" href="http://marrowproductions.com//DCAM/wiki/index.php/Help:Templates"/>
				<updated>2012-01-24T09:37:20Z</updated>
		
		<summary type="html">&lt;p&gt;Kghbln: Rejected the last text change (by JulioJones) and restored revision 471782 by Wargo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PD Help Page}}&lt;br /&gt;
If you have standard texts you want to include on several pages, the MediaWiki template feature comes into play.&lt;br /&gt;
&lt;br /&gt;
==Creation==&lt;br /&gt;
Templates are standard wiki pages whose content is designed to be [[wikipedia:Transclusion|transcluded]] (embedded) inside other pages. Templates follow a convention that the name is prefixed with &amp;quot;&amp;lt;code&amp;gt;Template:&amp;lt;/code&amp;gt;&amp;quot;, assigning it to that namespace; besides this, you can [[Help:Starting a new page|create them like any other wiki page]].&lt;br /&gt;
&lt;br /&gt;
The simplest use of templates is as follows. If you create a page called &amp;quot;Template:Welcome&amp;quot; with contents:&lt;br /&gt;
&lt;br /&gt;
 Hello! Welcome to the wiki.&lt;br /&gt;
&lt;br /&gt;
you'll have created your first template! If you then insert the code:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Welcome}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
in any other page, when that page is viewed the text &amp;quot;Hello! Welcome to the wiki.&amp;quot; will appear instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Welcome}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. The template content is &amp;quot;transcluded&amp;quot; into the other page, i.e. it is integrated in the page.&lt;br /&gt;
&lt;br /&gt;
You can then insert &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Welcome}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; at any point of any page where you wish to welcome someone. Suppose it is used in 100 pages. If you then change the template contents to:&lt;br /&gt;
&lt;br /&gt;
 Hi there! Welcome to this wonderful wiki.&lt;br /&gt;
&lt;br /&gt;
and revisit any of the 100 pages where the template was used, you'll see the new text instead of the original one. In this way, you have changed the content of 100 pages without editing them, because the template is transcluded into these pages.&lt;br /&gt;
&lt;br /&gt;
This is the basic mechanism. There are several additional features of transclusion that enrich this mechanism and make templates very useful.&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
Templates can be used in other pages in these ways:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Name}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; — as described above, this link will be dynamically replaced by the current content of &amp;lt;nowiki&amp;gt;[[Template:Name]]&amp;lt;/nowiki&amp;gt; at the time the page with the template link is loaded. The link will remain unchanged in the page's source.&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{subst:Name}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; — when used, this template link will be ''substituted'' with a copy of the contents of &amp;lt;nowiki&amp;gt;[[Template:Name]]&amp;lt;/nowiki&amp;gt; in the source of the transcluding page, as of the time the page with the link is saved; the contents are then a part of the including page, and can be edited normally, separately from the original. ''Note'': changes to the source template page will ''not'' be propagated to the page with the template link.&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{safesubst:Name}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; — this was introduced in [[rev:61710]] to allow for substitution that doesn't break transclusion, see [[w:en:Help:Substitution#The safesubst: modifier]].&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{msgnw:Name}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; includes the template in a form that displays it as raw wiki syntax (the way &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;lt;nowiki&amp;amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; does) when the page containing it is fetched.&lt;br /&gt;
&lt;br /&gt;
In fact, an ordinary wiki page can also be used as a template, simply by specifying the namespace it resides in, so:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Template:Pagename}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;  includes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Template:Pagename]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Foo:Pagename}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;       includes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Foo:Pagename]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{:Pagename}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;          includes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Pagename]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
**&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{subst::Pagename}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;    replaces itself with the contents of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Pagename]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If no such namespace exists, the full title is assumed to be a template:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Foo:Bar}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;            includes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Template:Foo:Bar]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Parameters==&lt;br /&gt;
To enrich the mechanism of transclusion, MediaWiki allows parameters to be passed to a template when it is transcluded. Parameters allow the template to produce different contents or have different behaviors.&lt;br /&gt;
&lt;br /&gt;
Suppose you wish to insert a little thank you note in the [[Help:Talk pages|talk page]] of other users, such as:&lt;br /&gt;
&lt;br /&gt;
{{Thankyou|all your effort|Me}}&lt;br /&gt;
The thank you note will have a reason (in this case, &amp;quot;all your effort&amp;quot;) and a signature (&amp;quot;Me&amp;quot;). Your objective is that any user is able to thank any other user, for any reason whatsoever.&lt;br /&gt;
&lt;br /&gt;
So that the note will look similar everywhere it is used, you can define a template called [[Template:Thankyou]], for example. Although the note should look similar whenever a user thanks another user, its specific contents (i.e. the reason and the signature) will be different. For that reason, you should pass them as parameters. If we ignore the remaining elements to format the box and place the image, the core content of the template will be this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;'''A little thank you...'''&lt;br /&gt;
for {{{1}}}.&lt;br /&gt;
hugs, {{{2}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notice the use of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{1}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{2}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. This is the way to identify, within templates, the parameters that will be passed in when the template is used. Note that, within the template, each parameter is surrounded by '''three''' braces: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{ }}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. This is different from normal template name usage.&lt;br /&gt;
&lt;br /&gt;
When using the template on a page, you fill in the parameter values, separated by a &amp;quot;pipe&amp;quot; character (&amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt;). MediaWiki allows parameters to be passed to the template in three ways: Anonymously, Numbered, and Named.&lt;br /&gt;
&lt;br /&gt;
=== Anonymous parameters ===&lt;br /&gt;
To pass in anonymous parameters, list the values of those parameters sequentially:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Thankyou|all your effort|Me}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
In this case, the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Thankyou}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; template receives parameters &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{1}}}=all your effort&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{2}}}=Me&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, producing:&lt;br /&gt;
&lt;br /&gt;
{{Thankyou|all your effort|Me}}&lt;br /&gt;
&lt;br /&gt;
The order in which anonymous parameters are passed in is crucial to its behaviour. Reversing the order of the parameters, like so:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Thankyou|Me|all your effort}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
would produce this result:&lt;br /&gt;
&lt;br /&gt;
{{Thankyou|Me|all your effort}}&lt;br /&gt;
&lt;br /&gt;
'''Note:''' identifying parameters by order (with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{1}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, etc) works ''only'' with anonymous parameters. If your page identifies any parameter by number or name, as shown below, this method will no longer be available to the template which receives them.&lt;br /&gt;
&lt;br /&gt;
=== Numbered parameters ===&lt;br /&gt;
To pass in parameters by number, identify each parameter when passing it:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Thankyou|2=Me|1=your friendship}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This time, template &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Thankyou}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; receives parameters &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{1}}}=your friendship&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{2}}}=Me&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, though they have been supplied in inverse order, and produces:&lt;br /&gt;
{{Thankyou|2=Me|1=your friendship}}&lt;br /&gt;
&lt;br /&gt;
=== Named parameters ===&lt;br /&gt;
The third way of passing parameters is by name, instead of numbers. In this case, the template contents would be changed to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;'''A little thank you...'''&lt;br /&gt;
for {{{reason}}}.&lt;br /&gt;
hugs, {{{signature}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Within the template, we use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{reason}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{signature}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to identify each parameter, instead of a number. To pass these parameters by name, identify each parameter when passing it:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Thankyou|signature=Me|reason=being who you are}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this case, template &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Thankyou}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; receives parameters &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{reason}}}=being who you are&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{signature}}}=Me&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and produces:&lt;br /&gt;
&lt;br /&gt;
{{Thankyou|signature=Me|reason=being who you are}}&lt;br /&gt;
The advantage of using named parameters in your template, besides also being flexible in the order parameters can be passed, is that it makes the template code much easier to understand if there are many parameters.&lt;br /&gt;
&lt;br /&gt;
=== Default values ===&lt;br /&gt;
If you transclude a template that expects parameters, but do not provide them, in this way:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{Thankyou}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
in the numbered parameters example above you would get the following:&lt;br /&gt;
&lt;br /&gt;
{{Thankyou}}&lt;br /&gt;
Since no parameters were passed in, the template presents the parameters themselves, instead of their respective values. In these cases, it may be useful to define ''default'' values for the parameters, i.e. values that will be used if no value is passed in. For example, if the template contents are changed to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;'''A little thank you...'''&lt;br /&gt;
for {{{reason|everything}}}.&lt;br /&gt;
hugs, {{{signature|Me}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
then &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{reason|everything}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; defines that if no parameter &amp;lt;code&amp;gt;{{{reason}}}&amp;lt;/code&amp;gt; is provided, then the value &amp;lt;code&amp;gt;everything&amp;lt;/code&amp;gt; will be used. Similarly, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{signature|Me}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, defaults parameter &amp;lt;code&amp;gt;{{{signature}}}&amp;lt;/code&amp;gt; to value &amp;lt;code&amp;gt;Me&amp;lt;/code&amp;gt;. Now, transcluding the template again without passing any parameter, results in the following:&lt;br /&gt;
&amp;lt;!-- strictly speaking, this example is false, because the template call was changed to obtain the desired effect - but the effect is the same if the template is defined as described --&amp;gt;&lt;br /&gt;
{{Thankyou|reason=everything|signature=Me}}&lt;br /&gt;
&lt;br /&gt;
===Control template inclusion===&lt;br /&gt;
By default, a template's content is displayed in its entirety, both when viewed directly and when included in another page. However, you can control which parts of a template will be seen and included by the use of the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;includeonly&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tags.&lt;br /&gt;
&lt;br /&gt;
Anything between &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;/noinclude&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; will be seen only when the template's page is being viewed directly, but not when it is included in another page. This is useful when you want to include text or code in a template that you do not want to propagate to any pages which include it, such as:&lt;br /&gt;
&lt;br /&gt;
* [[Help:Categories|Category]] links when categorizing the template itself&lt;br /&gt;
* [[Help:Links#Interlanguage links|interlanguage links]] to similar templates in other languages&lt;br /&gt;
* Explanatory text about how to use the template&lt;br /&gt;
&lt;br /&gt;
Likewise, anything between &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;includeonly&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;/includeonly&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; will be processed and displayed only when the page is being included, but not when the template page is being viewed directly, and is useful in situations such as:&lt;br /&gt;
&lt;br /&gt;
* [[Help:Categories| Categorizing]] pages which include the template. ''Note:'' when changing the categories applied by a template in this fashion, the categorization of the pages which include that template may not be updated until some time later: this is handled by the {{mediawiki|Manual:Job queue|job queue}}. To force the re-categorization of a particular page, open that page for editing and save it without changes.&lt;br /&gt;
* Ensuring that the template's code is not executed when viewing the template page itself. Typically this is because it expects parameters, and its execution without parameters has an undesired result.&lt;br /&gt;
&lt;br /&gt;
Everything outside &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;includeonly&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tags is processed and displayed normally; that is, both when the template page is being viewed directly and when the template is included in another page.&lt;br /&gt;
&lt;br /&gt;
===Organizing templates===&lt;br /&gt;
For templates to be effective, users need to find them, and find out how to use them. &lt;br /&gt;
&lt;br /&gt;
To find them, users can:&lt;br /&gt;
# Click '''Special Pages &amp;gt; All Pages'''&lt;br /&gt;
# In the '''Namespace''' list, choose '''Template''' and click '''Go'''.&lt;br /&gt;
&lt;br /&gt;
To give usage information, include an example like this one on the template page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
Welcome users:&lt;br /&gt;
{{Thankyou|reason=your reason|signature=your signature}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, an editor can simply copy and paste the example to use the template.&lt;br /&gt;
&lt;br /&gt;
==Copying from one wiki to another==&lt;br /&gt;
Templates often require [http://meta.wikimedia.org/wiki/Help:CSS CSS] or other templates, so users frequently have trouble copying templates from one wiki to another. The steps below should work for most templates.&lt;br /&gt;
&lt;br /&gt;
=== MediaWiki code ===&lt;br /&gt;
If you have import rights on the new wiki:&lt;br /&gt;
# Go to [[Special:Export]] on the original wiki, and download an .xml file with the complete history of all necessary templates, as follows:&lt;br /&gt;
#* Enter the name of the template in the big text box, e.g. &amp;quot;Template:Welcome&amp;quot;. Pay special attention to capitalization and special characters — if the template name isn't exactly correct, the export may still occur but the .xml file will not have the expected data.&lt;br /&gt;
#* Check the box &amp;quot;Include templates&amp;quot;.&lt;br /&gt;
#* '''Uncheck''' the box &amp;quot;Include only the current revision&amp;quot;.&lt;br /&gt;
#* Click Export.&lt;br /&gt;
# Go to [[Special:Import]] on the new wiki and upload the .xml file.&lt;br /&gt;
&lt;br /&gt;
If you don't have import rights on the new wiki:&lt;br /&gt;
# Go to [[Special:Export]] on the original wiki, and download an .xml file with the latest version only of all necessary templates, as follows:&lt;br /&gt;
#* Enter the name of the template in the big text box.&lt;br /&gt;
#* Check the box &amp;quot;Include templates&amp;quot;.&lt;br /&gt;
#* '''Check''' the box &amp;quot;Include only the current revision&amp;quot;.&lt;br /&gt;
#* Click Export.&lt;br /&gt;
#* Open the file in a text editor and replace certain [[w:en:XML entity|XML entities]] with the corresponding characters: &amp;amp;amp;lt; → &amp;lt;, &amp;amp;amp;gt; → &amp;gt;, &amp;amp;amp;quot; → &amp;quot; and &amp;amp;amp;amp; → &amp;amp;. Because of XML syntax rules, these entities appear in the XML file, but they should not appear in the edit box of the MediaWiki instance.&lt;br /&gt;
#* Manually copy the text inside the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;text&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tag of each listed template into a similarly named template in your wiki. In the edit summary of each template, link to the original page for attribution.&lt;br /&gt;
&lt;br /&gt;
This will copy the entire code necessary, and will suffice for some templates.&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
An extension often used in templates is ParserFunctions. Visit page {{mediawiki|Help:Extension:ParserFunctions|ParserFunctions}} and check if any of the functions listed there are used in the templates you've copied. If so, you have to install the {{mediawiki|Extension:ParserFunctions|ParserFunctions extension}}. To install it, you'll need system admin access to the server of your MediaWiki installation.&lt;br /&gt;
&lt;br /&gt;
=== CSS and JavaScript code ===&lt;br /&gt;
Besides MediaWiki code, many templates make use of CSS and some rely on JavaScript to work fully. If the copied templates are not behaving as expected, this may be the cause. To copy the required CSS and JavaScript to your wiki you'll normally need to have admin priviledges, because you'll be editing system messages in the &amp;quot;MediaWiki:&amp;quot; namespace.&lt;br /&gt;
&lt;br /&gt;
# Look for the use of CSS classes (text like &amp;lt;code&amp;gt;class=&amp;quot;foobar&amp;quot;&amp;lt;/code&amp;gt;) in the template text. If those classes appear in &amp;quot;MediaWiki:Common.css&amp;quot; or &amp;quot;MediaWiki:Monobook.css&amp;quot; on the original wiki, copy them to &amp;quot;MediaWiki:Common.css&amp;quot; on the new wiki and check if the template is now fine.&lt;br /&gt;
# If the copied template is still not working as expected, check if there is code in &amp;quot;MediaWiki:Common.js&amp;quot; or &amp;quot;MediaWiki:Monobook.js&amp;quot; on the original wiki. If so, you can try copying it to &amp;quot;MediaWiki:Common.js&amp;quot; on the new wiki. Normally, it is a good idea to only copy code from trusted sources, and first browsing the code to identify and select the parts that seem relevant. You may find comments that can serve as clues to identify the functionality of each part. When in doubt, copy all the code to the new wiki.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Help:External searches]] – a template special use case example&lt;br /&gt;
*[[Help:Magic words]] – fancy stuff you may find in some templates&lt;br /&gt;
*[[Help:Parser functions in templates]]&lt;br /&gt;
*{{meta|Help:Template}} – contains a much more thorough manual on how exactly templates function&lt;br /&gt;
*{{meta|Help:Embed page}} – embedding pages from [[Help:namespaces|namespaces]] other than &amp;lt;code&amp;gt;Template:&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[Category:Help|{{PAGENAME}}]]&lt;br /&gt;
[[Category:Template]]&lt;br /&gt;
{{Languages|Help:Templates}}&lt;/div&gt;</summary>
		<author><name>Kghbln</name></author>	</entry>

	<entry>
		<id>http://marrowproductions.com//DCAM/wiki/index.php/Help:Editing</id>
		<title>Help:Editing</title>
		<link rel="alternate" type="text/html" href="http://marrowproductions.com//DCAM/wiki/index.php/Help:Editing"/>
				<updated>2012-01-03T15:02:05Z</updated>
		
		<summary type="html">&lt;p&gt;Kghbln: Undo revision 480428 by 213.243.18.70 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PD Help Page}}&lt;br /&gt;
;Editing&lt;br /&gt;
:[[Help:Editing pages|Editing pages]]&lt;br /&gt;
:[[Help:Starting a new page|Starting a new page]]&lt;br /&gt;
:[[Help:Formatting|Formatting]]&lt;br /&gt;
:[[Help:Links|Links]]&lt;br /&gt;
:[[Help:User page|User pages]]&lt;br /&gt;
:[[Help:Talk pages|Talk pages]]&lt;br /&gt;
;Advanced Editing&lt;br /&gt;
:[[Help:Images|Images]]&lt;br /&gt;
:[[Help:Tables|Tables]]&lt;br /&gt;
:[[Help:Categories|Categories]]&lt;br /&gt;
:[[Help:Templates|Templates]]&lt;br /&gt;
:[[Help:Variables|Variables]]&lt;br /&gt;
:[[Help:Managing files|Managing files]]&lt;br /&gt;
:[[Help:Moving a page|Moving a page]]&lt;br /&gt;
:[[Help:Redirects|Redirects]]&lt;br /&gt;
:[[Help:Deleting a page|Deleting a page]]&lt;br /&gt;
&lt;br /&gt;
{{languages|Help:Editing}}&lt;br /&gt;
[[Category:Help|Editing]]&lt;/div&gt;</summary>
		<author><name>Kghbln</name></author>	</entry>

	</feed>