Difference between revisions of "Geïnstalleerde Mediawiki Extensies"
Postmaster (talk | contribs) |
(first categorizion, consistent usage of include_once, syntax highlighting for include_once rules) |
||
Line 1: | Line 1: | ||
Hier een overzicht van alle extensies/aanpassingen die we op deze wiki gebruiken: | Hier een overzicht van alle extensies/aanpassingen die we op deze wiki gebruiken: | ||
+ | |||
+ | == GUI extensions== | ||
+ | Extensions for graphic feautures. | ||
=== ASHighlight === | === ASHighlight === | ||
Line 7: | Line 10: | ||
[Neem op in je][Insert into your] LocalSettingsExtra.php: | [Neem op in je][Insert into your] LocalSettingsExtra.php: | ||
− | require_once( " | + | require_once( "/extensions/ASHighlight/ashighlight.php" ); |
''Usage'' | ''Usage'' | ||
Line 35: | Line 38: | ||
</tr> | </tr> | ||
</table> | </table> | ||
− | + | ||
=== CategoryTree === | === CategoryTree === | ||
Line 42: | Line 45: | ||
[Neem op in je][Insert into your] LocalSettingsExtra.php: | [Neem op in je][Insert into your] LocalSettingsExtra.php: | ||
− | + | <source lang="php"> | |
$wgUseAjax = true; | $wgUseAjax = true; | ||
− | require_once( | + | require_once( "extensions/CategoryTree/CategoryTree.php" ); |
− | + | </source> | |
''Example'' | ''Example'' | ||
<pre><categorytree mode=pages | <pre><categorytree mode=pages | ||
Line 51: | Line 54: | ||
background-color:white;">Manual</categorytree></pre> | background-color:white;">Manual</categorytree></pre> | ||
− | + | ||
+ | === Flash === | ||
+ | [Neem op in je (aan het eind) ][Insert into your to the end] LocalSettingsExtra.php: | ||
+ | <source lang="php"> | ||
+ | require_once ("extensions/Flash.php"); | ||
+ | </source> | ||
+ | link: [http://www.mediawiki.org/wiki/Extension:Flash] | ||
+ | |||
+ | |||
+ | === Collapsible tables === | ||
+ | |||
+ | link: [http://en.wikipedia.org/wiki/Wikipedia:Collapsible_tables] | ||
+ | |||
+ | === FCKeditor === | ||
+ | A [http://en.wikipedia.org/wiki/WYSIWYG '''Y'''ou '''S'''ee '''I'''s '''W'''hat '''Y'''ou '''G'''et''] for the wikitext. | ||
+ | |||
+ | |||
+ | == Function extensions== | ||
+ | Extensions that are delivering more functions to the wiki. | ||
=== Cite === | === Cite === | ||
Line 58: | Line 79: | ||
[Neem op in je][Insert into your] LocalSettingsExtra.php: | [Neem op in je][Insert into your] LocalSettingsExtra.php: | ||
− | require_once( | + | <source lang="php"> |
− | + | require_once( "/extensions/Cite/Cite.php" ); | |
+ | </source> | ||
''Example'' | ''Example'' | ||
<blockquote> | <blockquote> | ||
Line 78: | Line 100: | ||
<references/> | <references/> | ||
− | |||
− | link: [http:// | + | == User management == |
+ | Extensions for management of the users on the wiki. | ||
+ | |||
+ | === OpenID === | ||
+ | |||
+ | === PasswordReset === | ||
+ | |||
+ | link: [http://www.mediawiki.org/wiki/Extension:Password_Reset] | ||
+ | |||
+ | |||
+ | |||
+ | === Renameuser === | ||
+ | |||
+ | link: [http://www.mediawiki.org/wiki/Extension:Renameuser] | ||
+ | |||
− | === | + | === SpecialImportUsers.php === |
− | |||
− | + | == Uncategorized extensions== | |
− | |||
=== Graphviz.php === | === Graphviz.php === | ||
Line 95: | Line 128: | ||
=== latexmk === | === latexmk === | ||
− | |||
− | |||
=== OpenWetWare:Toggle === | === OpenWetWare:Toggle === | ||
link: [http://openwetware.org/wiki/OpenWetWare:Toggle Toggle items] | link: [http://openwetware.org/wiki/OpenWetWare:Toggle Toggle items] | ||
− | |||
− | |||
− | |||
− | |||
=== PdfExport === | === PdfExport === | ||
=== RawHTML.php === | === RawHTML.php === | ||
− | |||
− | |||
− | |||
− | |||
=== SecureLoginPage.php === | === SecureLoginPage.php === | ||
− | |||
− | |||
=== SpecialNoCategoryContributions.php === | === SpecialNoCategoryContributions.php === | ||
Line 125: | Line 146: | ||
link: [http://jimbojw.com/wiki/index.php?title=WikiArticleFeeds_Extension WikiArticleFeeds] | link: [http://jimbojw.com/wiki/index.php?title=WikiArticleFeeds_Extension WikiArticleFeeds] | ||
+ | |||
[[Category:Internet]] | [[Category:Internet]] |
Revision as of 16:47, 11 March 2008
Hier een overzicht van alle extensies/aanpassingen die we op deze wiki gebruiken:
GUI extensions
Extensions for graphic feautures.
ASHighlight
link: ASHighlight
Insert into your LocalSettingsExtra.php:
require_once( "/extensions/ASHighlight/ashighlight.php" );
Usage
Use a 'source' HTML-style tag in your wiki code, and give it a 'lang' attribute that matches the standard file extension for your source code, eg 'c' for C code, 'cpp' for C++ code, 'py' for Python, etc. For example:
What it looks like | What you type |
---|---|
while(1){
i++;
}
|
<source lang="c"> while(1){ i++; } </source> |
CategoryTree
link: CategoryTree
Insert into your LocalSettingsExtra.php:
$wgUseAjax = true;
require_once( "extensions/CategoryTree/CategoryTree.php" );
Example
<categorytree mode=pages style="float:right; clear:right; margin-left:1ex; border:1px solid gray; padding:0.7ex; background-color:white;">Manual</categorytree>
Flash
Insert into your to the end LocalSettingsExtra.php:
require_once ("extensions/Flash.php");
link: [1]
Collapsible tables
link: [2]
FCKeditor
A You See Is What You Get for the wikitext.
Function extensions
Extensions that are delivering more functions to the wiki.
Cite
link: Cite/Cite
Insert into your LocalSettingsExtra.php:
require_once( "/extensions/Cite/Cite.php" );
Example
According to scientists, the Sun is pretty big.<ref>E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.</ref>
The Moon, however, is not so big.<ref>R. Smith, "Size of the Moon", Scientific American, 46 (April 1978): 44-6.</ref>
==Notes==
<references/>
According to scientists, the Sun is pretty big.[1] The Moon, however, is not so big.[2]
Notes
User management
Extensions for management of the users on the wiki.
OpenID
PasswordReset
link: [3]
Renameuser
link: [4]
SpecialImportUsers.php
Uncategorized extensions
Graphviz.php
LatexDoc
latexmk
OpenWetWare:Toggle
link: Toggle items
PdfExport
RawHTML.php
SecureLoginPage.php
SpecialNoCategoryContributions.php
WhoIsWatching
WikiArticleFeeds
link: WikiArticleFeeds