Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Test"

From NetSec
Jump to: navigation, search
m (Unprotected "Test")
 
Line 1: Line 1:
http://blog.internetnews.com/skerner/smk/testpilot.png
+
= Test Page =
 +
 
 +
== Common Templates ==
 +
 
 +
=== Quote ===
 +
 
 +
<nowiki>{{Quote|do your homework|hatter}}</nowiki>
 +
 
 +
{{Quote|do your homework|hatter}}
 +
 
 +
=== Cleanup ===
 +
 
 +
<nowiki>{{cleanup}}>></nowiki>
  
 
{{cleanup}}
 
{{cleanup}}
 +
 +
=== Boxes ===
 +
 +
==== Info ====
 +
 +
<nowiki>{{Info|Testing Info}}</nowiki>
 +
 
{{Info|Testing Info}}
 
{{Info|Testing Info}}
 +
 +
==== Notice ====
 +
 +
<nowiki>{{Notice|Testing Notice}}</nowiki>
 +
 
{{Notice|Testing Notice}}
 
{{Notice|Testing Notice}}
 +
 +
==== Warning ====
 +
 +
<nowiki>{{Warning|Testing Warning}}</nowiki>
 +
 
{{Warning|Testing Warning}}
 
{{Warning|Testing Warning}}
 +
 +
=== Key Combinations ===
 +
 +
<nowiki>{{Key|</nowiki>'''KEY'''<nowiki>}}</nowiki>
 +
 +
==== Example ====
  
 
{{Key|Ctrl}} {{Key|Alt}} {{Key|Del}}
 
{{Key|Ctrl}} {{Key|Alt}} {{Key|Del}}
  
 +
=== Code Highlighting ===
 +
 +
<nowiki>
 +
<syntaxhighlight lang="</nowiki>'''LANG'''<nowiki>"></nowiki>
 +
<syntaxhighlight lang="php">
 +
/*
 +
*
 +
Your code here
 +
*
 +
*/
 +
</syntaxhighlight>
 +
<nowiki></syntaxhighlight></nowiki>
 +
 +
==== Example ====
  
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
<?php
 
<?php
    $v = "string";    // sample initialization
+
  $v = "string";    // sample initialization
?>
+
  echo $v;        // end of php code
html text
+
<?
+
    echo $v;        // end of php code
+
 
?>
 
?>
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
=== Wikitable ===
 +
 +
<syntaxhighlight lang="html4strict">
 +
<tab class=wikitable sep=comma head=top>
 +
Head 1,Head 2,Head 3
 +
Field 4,Field 5,Field 6
 +
Field 7,Field 8,Field 9
 +
</tab>
 +
</syntaxhighlight>
 +
 +
==== Example ====
  
 
<tab class=wikitable sep=comma head=top>
 
<tab class=wikitable sep=comma head=top>

Revision as of 07:05, 19 October 2011

Test Page

Common Templates

Quote

{{Quote|do your homework|hatter}}

hatter says
do your homework

Cleanup

{{cleanup}}>>

Boxes

Info

{{Info|Testing Info}}

c3el4.png Testing Info

Notice

{{Notice|Testing Notice}}

Notice: Testing Notice

Warning

{{Warning|Testing Warning}}

RPU0j.png Testing Warning

Key Combinations

{{Key|KEY}}

Example

Ctrl Alt Del

Code Highlighting

<syntaxhighlight lang="LANG"> <syntaxhighlight lang="php"> /*

*
Your code here
*
*/

</syntaxhighlight> </syntaxhighlight>

Example

<syntaxhighlight lang="php"> <?php

 $v = "string";    // sample initialization
 echo $v;         // end of php code

?> </syntaxhighlight>

Wikitable

<syntaxhighlight lang="html4strict"> <tab class=wikitable sep=comma head=top> Head 1,Head 2,Head 3 Field 4,Field 5,Field 6 Field 7,Field 8,Field 9 </tab> </syntaxhighlight>

Example

<tab class=wikitable sep=comma head=top> Head 1,Head 2,Head 3 Field 4,Field 5,Field 6 Field 7,Field 8,Field 9 </tab>