From 089a198517ab2aa3e85764eea1be6e700bb68c8e Mon Sep 17 00:00:00 2001
From: mchurch
Date: Thu, 3 Jun 2004 13:40:46 +0000
Subject: [PATCH] Changed multiple occurrences of help icon in non-HTML modes,
to one occurrence for all modes.
---
lang/en/help/wiki/howtowiki.html | 17 +++++++++++++----
mod/wiki/view.php | 11 ++++-------
2 files changed, 17 insertions(+), 11 deletions(-)
diff --git a/lang/en/help/wiki/howtowiki.html b/lang/en/help/wiki/howtowiki.html
index df70d08990..2dbdd02da7 100755
--- a/lang/en/help/wiki/howtowiki.html
+++ b/lang/en/help/wiki/howtowiki.html
@@ -113,9 +113,18 @@ Please always put an empty line before and after a table, so it stands out from
alternatively you could use the ImageUploading function
- More markup
+Further readings
+There are more possibilities for Wiki mark-up. Please consult the Erfurt Wiki Homepage for more information.
-Please see the page about ExtendedWikiMarkup, if you'd like to know a bit
-more about available markup.
-
\ No newline at end of file
+Camel Case:
+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.
+
+This linking scheme is often also called BumpyText.
+
+While language purists hate Wikis for that naming scheme, it is very common in the
+computing world and well known to most programmers.
+
+
diff --git a/mod/wiki/view.php b/mod/wiki/view.php
index e6ea9e3c66..9db4c6551e 100644
--- a/mod/wiki/view.php
+++ b/mod/wiki/view.php
@@ -265,7 +265,6 @@
echo '';
echo '';
- helpbutton('howtowiki', get_string('howtowiki', 'wiki'), 'wiki');
if ($canedit) {
$iconstr="";
$editicon= ' ';
@@ -309,12 +308,10 @@
}
/// Formatting Rules
- if($wiki->htmlmode!=2) {
- echo ' | ';
- helpbutton('wikiusage', get_string('wikiusage', 'wiki'), 'wiki');
- echo get_string("wikiusage","wiki");
- echo ' | ';
- }
+ echo '';
+ helpbutton('howtowiki', get_string('howtowiki', 'wiki'), 'wiki');
+ echo get_string('howtowiki','wiki');
+ echo ' | ';
echo '
';
}
--
2.39.5