MDL-21695 mod/wiki will be replaced by new wiki

This commit is contained in:
Petr Skoda 2010-04-11 18:35:57 +00:00
parent 0abd36bf69
commit 31b9279c44
16 changed files with 0 additions and 507 deletions

View file

@ -1,3 +0,0 @@
<h1>Check Links</h1>
<p>This tool checks all http:// links for availability, and afterwards resaves the
wiki page with the dead links marked for easier editing.</p>

View file

@ -1,11 +0,0 @@
<h1>Allow Binary Files</h1>
<p>If you allow binary content (such as images), you have two possibilities:</p>
<ol>
<li>You can upload and use images on wiki-pages. When editing a page, an upload form will be displayed
for uploading images. After a successful upload, an image code is displayed that you can embed in
your pages using square brackets. For example: [internal://myimage.gif].</li>
<li>You can attach files to a Wiki Page which can be displayed by the <i>attachments</i> action.
The size is limited to the setting made in Moodle.</li>
</ol>

View file

@ -1,255 +0,0 @@
<h2>How To Wiki</h2>
<p>
Moodle's wiki is based on
<a href="http://erfurtwiki.sourceforge.net/?id=ErfurtWiki" target="_blank">ErfurtWiki</a>,
which is an implementation of the
<a href="http://c2.com/cgi/wiki?WikiWikiWeb" target="_blank">WikiWikiWeb</a>
hypertext system. It allows simple collaborative editing and creation of web pages.</p>
<ul>
<li>learn how to <a href="#createpages">CreatePages</a></li>
<li>just click on <img alt="edit" src="pix/t/edit.gif" /> or select "Edit this page" from the drop down menu to change the contents of a page</li>
<li>you can format your pages with <a href="#wikimarkup">Wiki Markup</a>, or with HTML (if the wiki has been given that option)</li>
<li>SearchPages or go to the list of NewestPages</li>
<li>there are also lists of the MostVisitedPages, MostOftenChangedPages and recently UpdatedPages</li>
</ul>
<h3 id="createpages">Create Pages:</h3>
<p>You create a page by naming it in the text of an existing page. A wiki page is named using
<a href="#camelcase">CamelCase</a> or by enclosing it in square brackets ( [] ).</p>
<p>
For example:
</p>
<ul>
<li>MyWikiPage (Camel Case)</li>
<li>[My Wiki Page] (enclosed in square brackets)</li>
</ul>
<p>
Text that has been given a wiki page name will have a '?' after it. Clicking on the '?', will
enter edit mode for that page. Enter your text, save and you have a new wiki page.</p>
<h3 id="wikimarkup">Wiki Markup:</h3>
<p>If you are using the WYSIWYG HTML editor with ordinary word-processor style controls, then you
should use those controls to format your entry. Otherwise (when the edit box is just a normal
text box with no special controls) you can use the following wiki markup.
<b>These features do not apply when using the WYSIWYG editor</b>.
</p>
<h4> Paragraphs</h4>
<ul type="circle">
<li> separate paragraphs inside the text with empty lines</li>
<li> use three percent signs %%<em></em>% to enforce a line break</li>
<li> if you prepend text with spaces or tabs it will get indented </li>
</ul>
<h4> !! Headlines</h4>
<ul type="circle">
<li> use an exclamation mark ! at the beginning of a line to create a small headline</li>
<li> !! for medium</li>
<li> !!! for large headlines </li>
</ul>
<h4> text style</h4>
<ul type="circle">
<li> if you want to <em>emphasize text</em> enclose it in two single-quotes '' (usually looks italic)</li>
<li> <strong>text gets bold</strong> with two underscores __ (or if enclosed with two asterisks **)</li>
<li> to make <big>text big</big> enclose it in hash characters ##</li>
<li> you can get <small> smaller text </small> using "µµ" likewise</li>
<li> a <tt>typewrite like font</tt> will be used if you enclose text in two equal == signs </li>
</ul>
<h4> Lists</h4>
<ul type="circle">
<li> start a line with an asterisk * to begin a list</li>
<li> use # instead for numerated lists
<ol>
<li> you can create sublists</li>
<li> subsequent list points should start with the same mix of * and # </li>
</ol>
</li>
</ul>
<h4> HyperLinks</h4>
<ul type="circle">
<li> just enter a CamelCase WikiWord inside your text to create a new HyperLink</li>
<li> or, enclose some <b>words in square brackets</b> to create a HyperLink</li>
<li> any valid internet address (starting with <a href="http://">http://</a>) like http://www.example.com/ inside the text will be made clickable automatically</li>
<li> enclose a www address or a WikiLink inside square brackets [<a href="http://www.moodle.org/">Moodle</a>] and assign it a neat title using quotation marks or the | character
<ul type="circle">
<li> [title | http://example.com]</li>
<li> [WikiWord "title"] or ["title for" WikiLink] </li>
</ul>
</li>
<li> if you don't want a WikiWord or a !http://www-address (or [anything] inside square brackets) to become a HyperLink then just prepend it with a exclamation mark or a tilde
<ul type="circle">
<li> !NoHyperLink, ~NoHyperLink</li>
<li> ![no hyperlink], !!http://nolink.org/ </li>
</ul>
</li>
</ul>
<h4> Tables with |</h4>
<table cellpadding="2" border="1" cellspacing="0">
<tr>
<td> just enclose </td>
<td> things with the dash </td>
<td> character </td>
</tr><tr>
<td> to build a </td>
<td> table structure </td>
</tr><tr>
<td> browsers usually </td>
<td> leave out the missing </td>
<td> cells </td>
</tr>
</table>
<p>
Please always put an empty line before and after a table, so it stands out from other text in its own paragraph.
</p>
<h4> Pictures</h4>
<ul type="circle">
<li> to include an image into a page enclose its absolute www-address in square brackets, like [http://www.example.com/pics/image.png] </li>
<li> alternatively you could use the ImageUploading function</li>
</ul>
<h4>Further readings</h4>
There are more possibilities for Wiki mark-up. Please consult the <a href="http://erfurtwiki.sourceforge.net" target="_blank">Erfurt Wiki Homepage</a> for more information.
<h5 id="camelcase">Camel Case:</h5>
<p>
CamelCase describes what WikiWords look like. Multiple words, joined together without
spaces, separated by changes in case. The uppercase and
lowercase letters show up like the humps of camels.</p>
<p>
This linking scheme is often also called BumpyText.</p>
<p>
While language purists hate Wikis for that naming scheme, it is very common in the
computing world and well known to most programmers.</p>

View file

@ -1,11 +0,0 @@
<h1>HTML Mode</h1>
<p>You have the following possibilities:</p>
<dl>
<dt>No HTML</dt>
<dd>Escapes all HTML-Tags. Formatting is done through the WikiWords. Filters work in this Mode.</dd>
<dt>Safe HTML</dt>
<dd>Some Tags are allowed and are displayed. There are no filters active which need tags in this mode !</dd>
<dt>HTML only</dt>
<dd>No WikiWords, just HTML. This option allows the use of the HTML-Editor.</dd>
</dl>

View file

@ -1,7 +0,0 @@
<h1>Fill in initial content</h1>
<p>This is the content which can be initially filled into the Wiki.</p>
<p>If you want your own initial content, create it as text-files, and upload it to a directory in the course
files area. Then select one of the files as the initial page. All pages in that directory will become content
for every new wiki structure created for this wiki, and the selected page will be the first page.
</p>

View file

@ -1,14 +0,0 @@
<p><img alt="" src="<?php echo $CFG->wwwroot?>/mod/wiki/icon.gif" />&nbsp;<b>Wikis</b></p>
<div class="indent">
<p>A Wiki enables documents to be authored collectively in a simple markup language using a web browser.</p>
<p>"Wiki wiki" means "super fast" in the Hawaiian language, and it is the speed of creating and
updating pages that is one of the defining aspects of wiki technology. Generally, there is no
prior review before modifications are accepted, and most wikis are open to the general
public or at least to all persons who also have access to the wiki server.</p>
<p>The Moodle Wiki module enables participants to work together on web pages to add,
expand and change the content. Old versions are never deleted and can be restored.</p>
<p>This module is based on <a href="http://erfurtwiki.sourceforge.net" target="_blank">Erfurt Wiki</a>.</p>
</div>

View file

@ -1,3 +0,0 @@
<h1>Remove Pages</h1>
<p>This function allows you to remove wiki pages. A quick check is done and pages with errors are shown.</p>
<p>Please take care and think twice before removing a page. Usually it is not necessary.</p>

View file

@ -1,5 +0,0 @@
<h1>Author for reverting mass changes</h1>
<p>
This must be a fixed string (you cannot use * or regex), at
best use the attackers` IP address or host name.
</p>

View file

@ -1,4 +0,0 @@
<h1>Revert Pages</h1>
<p>If someone makes a mess of many pages in your Wiki, you may want to automatically revert those changes by
deleting all page versions that carry a certain string in the {author} field (usually the IP address or host name)</p>

View file

@ -1,13 +0,0 @@
<h1>Set Page Flags</h1>
<p>Flags are assigned to a wiki page and allow to change the type or behavior.</p>
<p>Flag description:</p>
<table border="1" width="100%"><tbody>
<tr><td valign="top" width="25%">TXT</td><td>The page contains text.</td></tr>
<tr><td valign="top" width="25%">BIN</td><td>The page contains binary data.</td></tr>
<tr><td valign="top" width="25%">OFF</td><td>The page is disabled.</td></tr>
<tr><td valign="top" width="25%">HTM</td><td>Allow HTML for this page (the general Wiki setting precedes this flag).</td></tr>
<tr><td valign="top" width="25%">RO</td><td>Read Only.</td></tr>
<tr><td valign="top" width="25%">WR</td><td>Writable.</td></tr>
</table>

View file

@ -1,3 +0,0 @@
<h1>Strip Pages</h1>
<p>This function purges old versions of all pages stored in the database and just keeps the newest versions.</p>

View file

@ -1,6 +0,0 @@
<h1>Student Administration Options</h1>
<p>Certain administration options can be turned 'on' or 'off' for students. When 'on', these options only
take affect for wikis that can be edited by the student. When 'off', they will not appear in the administrator
menu.
</p>

View file

@ -1,10 +0,0 @@
<h1>Wiki Auto-linking Options</h1>
<p>In certain situations, you may not want automatic linking based on CamelCase words.
If this is so, check this box to disable CamelCase linking.
</p>
<p>
<b>WARNING</b> -- CamelCase is a standard wiki feature, and disabling it may cause other
imported wikis to work incorrectly. Use this feature <i>only</i> if you are absolutely certain
you do not want CamelCase linking.
</p>

View file

@ -1,10 +0,0 @@
<h1>Initial Page Name for wiki</h1>
<p>
If you want the first wiki page name to be something other than the
wiki name, you can specify it here. This name will become the first
page of the wiki for every created instance of this wiki.<br /><br />
If you leave this field blank, the initial page name will be the wiki name, unless you select
a page in the 'initial page' field.
</p>

View file

@ -1,39 +0,0 @@
<h1>Wiki types</h1>
<p>
There are three wiki types: Teacher, Groups, Student. In addition,
like any activity, the wiki has the Moodle group modes: &quot;No Groups&quot; &quot;Separate Groups&quot; and &quot;Visible Groups&quot;.
This leads to the following matrix of nine possibilities:
<table border="1" width="100%"><tbody>
<tr>
<th valign="top" width="25%" scope="col"></th>
<th valign="top" width="25%" scope="col">No Groups</th>
<th valign="top" width="25%" scope="col">Separate Groups</th>
<th valign="top" width="25%" scope="col">Visible Groups</th>
</tr>
<tr>
<th valign="top" width="25%" scope="row">Teacher</th>
<td valign="top" width="25%">There is only one wiki which only the teacher can edit. Students can view the contents.</td>
<td valign="top" width="25%">There is one wiki for every group which just the teacher can edit. Students can view the wiki of their group only.</td>
<td valign="top" width="25%">There is one wiki for every group which just the teacher can edit. Students can view the wikis for all groups.</td>
</tr>
<tr>
<th valign="top" width="25%" scope="row">Groups</th>
<td valign="top" width="25%">There is only one wiki. The teacher and all students can view and edit this wiki.</td>
<td valign="top" width="25%">There is one wiki per group. Students can view and edit the wiki of their own group only.</td>
<td valign="top" width="25%">There is one wiki per group. Students can change the wiki of their own group only. They can view the wikis for all groups.</td>
</tr>
<tr>
<th valign="top" width="25%" scope="row">Student</th>
<td valign="top" width="25%">Every student has their own wiki which only they and their teacher can view and edit.</td>
<td valign="top" width="25%">Every student has their own wiki, which only they and their teacher can edit. Students can view the wikis of other students in their group.</td>
<td valign="top" width="25%">Every student has their own wiki, which only they and their teacher can edit. Students can view the wikis of all other students in the course.</td>
</tr></tbody>
</table>
<p>Unless the group mode has been forced by the course settings, it can be set with the groups icons on the course home page after the wiki has been created.
</p>
<ul>
<li>A teacher can always edit every wiki in the course</li>
</ul>

View file

@ -1,113 +0,0 @@
<h1>Wiki Usage</h1>
<p>
Wiki is a platform for working together on constructing web pages. The principles are simple.
</p>
<ul>
<li>A text is written and saved.</li>
<li>Later, another person may read that text and think of some additions or
corrections that could be made. They choose "Edit" and make their changes to the page. </li>
<li>After saving their new version, it is available globally.</li>
</ul>
<p>With a wiki, it is also easily possible to add a page or link to existing pages.</p>
<ul>
<li>A link is created by a WikiWord. This is one word with at least two capital letters. If a page with this name already exist, it will be linked automatically, if not, it will be displayed with a question mark.</li>
<li>Clicking on this question mark, will start a new blank page with that name, ready to edit.</li>
</ul>
<h3 class="center">Wiki formatting rules</h3>
<h4> Paragraphs</h4>
<ul>
<li> separate paragraphs inside the text with empty lines</li>
<li> use three percent signs %%% to enforce a line break</li>
<li> if you prepend text with spaces or tabs it will get indented </li>
</ul>
<h4> !! Headlines</h4>
<ul type="circle">
<li> use an exclamation mark ! at the beginning of a line to create a small headline</li>
<li> !! for medium</li>
<li> !!! for large headlines </li>
</ul>
<h4>Text style</h4>
<ul>
<li> if you want to <em>emphasize text</em> enclose it in two single-quotes '' (usually looks italic)</li>
<li> <strong>text gets bold</strong> with two underscores __ (or if enclosed with two asterisks **)</li>
<li> to make <big>text big</big> enclose it in hash characters ##</li>
<li> you can get <small> smaller text </small> using "µµ" likewise</li>
<li> a <tt>typewrite like font</tt> will be used if you enclose text in two equal == signs </li>
</ul>
<h4>Lists</h4>
<ul>
<li> start a line with an asterisk * to begin a list</li>
<li> use # instead for numerated lists
<ol>
<li> you can create sublists</li>
<li> subsequent list points should start with the same mix of * and # </li>
</ol>
</li>
</ul>
<h4> HyperLinks</h4>
<ul>
<li> just enter a WikiWord inside your text to create a new hyper link</li>
<li> enclose some words in [square brackets] to create a HyperLink inside the WikiWikiWeb which is not made up of a valid WikiWord</li>
<li> any valid internet address (starting with http:/) like http://www.example.com/ inside the text will be made clickable automatically</li>
<li> enclose a www address or a WikiLink inside square brackets and assign it a neat title using quotation marks or the | character
<ul>
<li> [title | http://example.com]</li>
<li> [WikiWord "title"] or ["title for" WikiLink] </li>
</ul>
</li>
<li> if you don't want a WikiWord or a http://www-address (or [anything] inside square brackets) to become a HyperLink then just prepend it with a exclamation mark or a tilde
<ul>
<li> !NoHyperLink, ~NoHyperLink</li>
<li> ![no hyperlink], !http://nolink.org/ </li>
</ul>
</li>
</ul>
<h4> Tables with |</h4>
| just enclose | things with the dash | character | <br />
| to build a | table structure | <br />
| browsers usually | leave out the missing | cells | <br />
<p>
Please always put an empty line before and after a table, so it stands out from other text in its own paragraph.
</p>
<h4> Pictures</h4>
<ul>
<li> to include an image into a page enclose its absolute www-address in square brackets, like [http://www.example.com/pics/image.png] </li>
<li> alternatively you could use the image uploading function.</li>
</ul>
<h4>Further readings</h4>
<p>
There are more possibilities for Wiki mark-up. Please consult the <a href="http://erfurtwiki.sourceforge.net" target="_new">Erfurt Wiki Homepage</a> for more information.
</p>