From 6ee45796657ae07a36aebc1d2b0f4b09a9ad807e Mon Sep 17 00:00:00 2001 From: martin Date: Sun, 11 Aug 2002 14:12:15 +0000 Subject: [PATCH] Moved the help files into their own directory in lang/en/help --- lang/en/help/courseformats.html | 24 +++++++++ lang/en/help/picture.html | 17 ++++++ lang/en/help/questions.html | 94 +++++++++++++++++++++++++++++++++ lang/en/help/text.html | 41 ++++++++++++++ lang/en/moodle.php | 8 +++ lib/moodlelib.php | 2 +- 6 files changed, 185 insertions(+), 1 deletion(-) create mode 100644 lang/en/help/courseformats.html create mode 100644 lang/en/help/picture.html create mode 100644 lang/en/help/questions.html create mode 100644 lang/en/help/text.html diff --git a/lang/en/help/courseformats.html b/lang/en/help/courseformats.html new file mode 100644 index 0000000000..2cc26c4ac0 --- /dev/null +++ b/lang/en/help/courseformats.html @@ -0,0 +1,24 @@ +

Moodle course formats

+ +

Weekly format

+ + +

Topics format

+ + +

Social format

+ + diff --git a/lang/en/help/picture.html b/lang/en/help/picture.html new file mode 100644 index 0000000000..026cfcbb54 --- /dev/null +++ b/lang/en/help/picture.html @@ -0,0 +1,17 @@ +

Uploading a picture

+ +

You can upload a picture from your computer to this server, and this picture will be used in various places to represent you. +

For this reason, the best images to use are a close-up of your face, but you can use any image you like. +

The picture must be in JPG or PNG format (ie the names will usually end in .jpg or .png). +

You can get a picture file using one of four methods: + +

    +
  1. Using a digital camera, your photos will most likely already be on your computer in the right format. +
  2. You can use a scanner to scan a printed photograph. Make sure you save it as JPG or PNG format. +
  3. If you're artistic, you might draw a picture using a paint program. +
  4. Lastly, you can "steal" images from the web. http://images.google.com is a superb place to search for images. Once you find one, you can "right-click" on them with the mouse and choose "Save this image..." from the menu (different computers may vary slightly). +
+ +

To upload the image, click the "Browse" button on this editing page, and select the image from your hard disk. +

Then click "Update my Profile" at the bottom - the image file will be cropped to a square and resized down to 100x100 pixels. +

When you are taken back to your profile page, the image might not appear to have changed. If this is so, just use the "Reload" button in your browser. diff --git a/lang/en/help/questions.html b/lang/en/help/questions.html new file mode 100644 index 0000000000..d96e3e1536 --- /dev/null +++ b/lang/en/help/questions.html @@ -0,0 +1,94 @@ +

Asking questions

+

Socratic questions are open-ended, probing questions designed to promote critical + evaluation of ideas, as well as encourage the creation of new ideas. Below are + some examples of such questions:

+

Questions of Clarification

+ +

Questions that probe assumptions

+ +

Questions that probe reasons and evidence

+ +

Questions about Viewpoints or Perspectives

+ +

Questions that Probe Implications and Consequences

+ + +
+Questions adapted from Paul, R. (1993). Critical Thinking: How To Prepare Students for a Rapidly Changing World: Foundation for Critical Thinking, Santa Rosa, CA. diff --git a/lang/en/help/text.html b/lang/en/help/text.html new file mode 100644 index 0000000000..eb48fda494 --- /dev/null +++ b/lang/en/help/text.html @@ -0,0 +1,41 @@ +

Help on writing text

+ +Writing text in Moodle works pretty much the way you would expect, but you also have the ability to include "smilies", "URL addresses" and some HTML tags in your text. + +

Smilies (emoticons)

+ + +

URLs

+ + +

HTML tags

+ + + diff --git a/lang/en/moodle.php b/lang/en/moodle.php index ffe6260e57..17ca400f5f 100644 --- a/lang/en/moodle.php +++ b/lang/en/moodle.php @@ -31,6 +31,7 @@ $string[complete] = "Complete"; $string["continue"] = "Continue"; $string[country] = "Country"; $string[course] = "Course"; +$string[courseformats] = "Course formats"; $string[courses] = "Courses"; $string[createaccount] = "Create my new account"; $string[createuserandpass] = "Create a new username and password to log in with"; @@ -52,6 +53,7 @@ $string[description] = "Description"; $string[edit] = "Edit \$a"; $string[editcoursesettings] = "Edit course settings"; $string[editmyprofile] = "Edit profile"; +$string[editsummary] = "Edit summary"; $string[editthisactivity] = "Edit this activity"; $string[edituser] = "Edit user accounts"; $string[email] = "Email address"; @@ -94,6 +96,9 @@ $string[firstname] = "First name"; $string[firsttime] = "Is this your first time here?"; $string[forgotten] = "Forgotten your username or password?"; $string[format] = "Format"; +$string[formatsocial] = "Social format"; +$string[formattopics] = "Topics format"; +$string[formatweeks] = "Weekly format"; $string[fulllistofcourses] = "Full list of courses"; $string[fullprofile] = "Full profile"; $string[fullname] = "Full name"; @@ -166,6 +171,9 @@ $string[missingusername] = "Missing username"; $string[movedown] = "Move down"; $string[moveup] = "Move up"; $string[mustconfirm] = "You need to confirm your login"; +$string[namesocial] = "section"; +$string[nametopics] = "topic"; +$string[nameweeks] = "week"; $string[newaccount] = "New account"; $string[newforumposts] = "New forum posts"; $string[newpassword] = "New password"; diff --git a/lib/moodlelib.php b/lib/moodlelib.php index b3915812eb..90c9b81567 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -449,7 +449,7 @@ function helpbutton ($page, $title="", $module="moodle", $image=true, $text="") if ($text) { $url = "/help.php?module=$module&text=$text"; } else { - $url = "/help.php?module=$module&file=help.$page.php"; + $url = "/help.php?module=$module&file=$page.html"; } link_to_popup_window ($url, "popup", $linkobject, 400, 500, $title); } -- 2.39.5