Help:Contents: Difference between revisions

The educational technology and digital learning wiki
Jump to navigation Jump to search
mNo edit summary
Line 3: Line 3:
; Editing Mediawiki pages
; Editing Mediawiki pages
* Start be reading "[[Help:Basic_Edition|How to edit a page: the basics]]"
* Start be reading "[[Help:Basic_Edition|How to edit a page: the basics]]"
* Then you may read [[Help:How to edit a page|How to edit a page]] (advanced editing from Mediawiki 1.4)
* Then you may look at the [http://www.mediawiki.org/wiki/Help:Contents Help help pages] over at Mediawiki.org
* '''[[Help:Editing rules | Editing rules]]''' for this Wiki


; Policies
; Policies
* [[Help:English Tips]] (e.g. is there a difference between "pedagogic" and pedagogical" ?)
* '''[[Help:Editing rules | Editing rules]]''' for this Wiki
* [[Help:Bringing classes to EduTech Wiki]]
* [[Help:Bringing classes to EduTech Wiki]]


; Other
; Other
* [[Template demo | Template demo page]]
* [[Template demo | Template demo page]]
* [[Help:English Tips]] (e.g. is there a difference between "pedagogic" and pedagogical" ?)


== Images ==
== Images ==

Revision as of 16:44, 27 August 2009

How Begin

Editing Mediawiki pages
Policies
Other

Images

  • Before using an image you must upload it: Upload an image (please document it !)
  • Example for image insertion (original size + frame + caption)

[[image:input-process-output-paradigm.png|frame|none|Input-process-output paradigm]]

Finding images:

Import/export

Mediawiki editing

If you are unhappy with the built-in editing facilities, there exist several options:

  • WikiEd is a "what you see is what you mean" editor andcan replace the default simple editor. It allows pasting formatted text, e.g. from MS-Word (including tables). Currently it works only for Mozilla browsers like Firefox and SeaMonkey.
  • Mediawikis can interface to various programming editors. See the Mediawiki entry on external editors. This option requires installation work on the client side, i.e. you will have to install extensions in your editor. Daniel K. Schneider uses emacs on Linux, an option not recommended for people not familiar with this tool, and sometimes JEdit on Windows.

HTML import

Word import

Export

Pointers to MediaWiki documentation

If you want to got further, some stuff may not apply to this wiki. This wiki has a very different editing policy than wikipedia. Nevertheless, it's interesting to see how they "do it".

Style

Help Contents

Images

Transclusion, templates, etc.

http://meta.wikimedia.org/wiki/Help:Advanced_editing

Extensions

Many wikis use extensions that extend the syntax of this wiki.

Computer source code syntax

Instead of using the "pre" tag or indenting lines to the right you also could use the "source" tag.

Example 1:

<source lang="html4strict" line start=1 >
 <h1>Title</h1>
 <p align="center">para text</p>
</source>

Will show as

1  <h1>Title</h1>
2  <p align="center">para text</p>

You may use the following parameters:

  • lang: Defines the language (e.g. actionscript, javascript, xml, php)
  • line: Enables line numbers
  • start: Number of start line
  • enclose: takes values "none", "div", "pre"
  • strict: true or false.

To try out things