This document was successfully checked as XHTML 1.0 Strict!

Result: Passed
:
Modified:(undefined)
Server:Apache
Size:(undefined)
Content-Type:text/html
: utf-8
: XHTML 1.0 Strict
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

Congratulations

The document located at <http://aulas.esec-acf.pt/help.php?module=lesson&file=overview.html> was successfully checked as XHTML 1.0 Strict. This means that the resource in question identified itself as "XHTML 1.0 Strict" and that we successfully performed a formal validation of it. The parser implementations we used for this check are based on OpenSP (SGML/XML) and libxml2 (XML).

"valid" Icon(s) on your Web page

To show your readers that you have taken the care to create an interoperable Web page, you may display this icon on any page that validates. Here is the HTML you could use to add this icon to your Web page:

Valid XHTML 1.0 Strict
  <p>
    <a href="http://validator.w3.org/check?uri=referer"><img
      src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
  </p>
  

A full list of icons, with links to alternate formats and colors, is available: If you like, you can download a copy of the icons to keep in your local web directory, and change the HTML fragment above to reference your local image rather than the one on this server.

Linking to this result

If you would like to create a link to this page (i.e., this validation result) to make it easier to revalidate this page in the future or to allow others to validate your page, the URI is <http://validator.w3.org/check?uri=http%3A%2F%2Faulas.esec-acf.pt%2Fhelp.php%3Fmodule%3Dlesson%26file%3Doverview.html;ss=1;verbose=1> (or you can just add the current page to your bookmarks or hotlist).

Validating CSS Style Sheets

If you use CSS in your document, you can check it using the W3C CSS Validation Service.

↑ Top

Source Listing

Below is the source input I used for this validation:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="pt" xml:lang="pt">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/standard/styles.php" />
  6. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/formal_white/styles.php" />
  7. <!--[if IE 7]>
  8. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/standard/styles_ie7.css" />
  9. <![endif]-->
  10. <!--[if IE 6]>
  11. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/standard/styles_ie6.css" />
  12. <![endif]-->
  13. <meta name="keywords" content="moodle, Ajuda " />
  14. <title>Ajuda</title>
  15. <link rel="shortcut icon" href="http://aulas.esec-acf.pt/theme/formal_white/favicon.ico" />
  16. <!--<style type="text/css">/*<![CDATA[*/ body{behavior:url(http://aulas.esec-acf.pt/lib/csshover.htc);} /*]]>*/</style>-->
  17. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/javascript-static.js"></script>
  18. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/javascript-mod.php"></script>
  19. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/overlib/overlib.js"></script>
  20. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/overlib/overlib_cssstyle.js"></script>
  21. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/cookies.js"></script>
  22. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/ufo.js"></script>
  23. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/dropdown.js"></script>
  24. <script type="text/javascript" defer="defer">
  25. //<![CDATA[
  26. setTimeout('fix_column_widths()', 20);
  27. //]]>
  28. </script>
  29. <script type="text/javascript">
  30. //<![CDATA[
  31. function openpopup(url,name,options,fullscreen) {
  32. fullurl = "http://aulas.esec-acf.pt" + url;
  33. windowobj = window.open(fullurl,name,options);
  34. if (fullscreen) {
  35. windowobj.moveTo(0,0);
  36. windowobj.resizeTo(screen.availWidth,screen.availHeight);
  37. }
  38. windowobj.focus();
  39. return false;
  40. }
  41. function uncheckall() {
  42. void(d=document);
  43. void(el=d.getElementsByTagName('INPUT'));
  44. for(i=0;i<el.length;i++) {
  45. void(el[i].checked=0);
  46. }
  47. }
  48. function checkall() {
  49. void(d=document);
  50. void(el=d.getElementsByTagName('INPUT'));
  51. for(i=0;i<el.length;i++) {
  52. void(el[i].checked=1);
  53. }
  54. }
  55. function inserttext(text) {
  56. text = ' ' + text + ' ';
  57. if ( opener.document.forms['theform'].message.createTextRange && opener.document.forms['theform'].message.caretPos) {
  58. var caretPos = opener.document.forms['theform'].message.caretPos;
  59. caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
  60. } else {
  61. opener.document.forms['theform'].message.value += text;
  62. }
  63. opener.document.forms['theform'].message.focus();
  64. }
  65. function getElementsByClassName(oElm, strTagName, oClassNames){
  66. var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
  67. var arrReturnElements = new Array();
  68. var arrRegExpClassNames = new Array();
  69. if(typeof oClassNames == "object"){
  70. for(var i=0; i<oClassNames.length; i++){
  71. arrRegExpClassNames.push(new RegExp("(^|\\s)" + oClassNames[i].replace(/\-/g, "\\-") + "(\\s|$)"));
  72. }
  73. }
  74. else{
  75. arrRegExpClassNames.push(new RegExp("(^|\\s)" + oClassNames.replace(/\-/g, "\\-") + "(\\s|$)"));
  76. }
  77. var oElement;
  78. var bMatchesAll;
  79. for(var j=0; j<arrElements.length; j++){
  80. oElement = arrElements[j];
  81. bMatchesAll = true;
  82. for(var k=0; k<arrRegExpClassNames.length; k++){
  83. if(!arrRegExpClassNames[k].test(oElement.className)){
  84. bMatchesAll = false;
  85. break;
  86. }
  87. }
  88. if(bMatchesAll){
  89. arrReturnElements.push(oElement);
  90. }
  91. }
  92. return (arrReturnElements)
  93. }
  94. //]]>
  95. </script>
  96. </head>
  97. <body class=" course-1 notloggedin dir-ltr lang-pt_utf8" id="help">
  98. <div id="page">
  99. <!-- END OF HEADER -->
  100. <div id="content"><div class="box generalbox generalboxcontent"><h1>Overview</h1>
  101. <ol>
  102. <li>A lesson is made up of a number of <b>pages</b> and optionally <b>branch
  103. tables</b>.</li>
  104. <li>A page contains some <b>content</b> and it normally ends with a
  105. <b>question</b>. Thus the term <b>Question Page</b>.</li>
  106. <li>For Essay Questions, there is no answer, just a score, feedback, and a page jump.</li>
  107. <li>Each answer can have a short piece of text which is displayed if the answer is
  108. chosen. This piece of text is called the <b>response</b>.</li>
  109. <li>Also associated with each answer is a <b>jump</b>. The jump can be relative -
  110. this page, next page - or absolute - specifying any one of the pages in the
  111. lesson or the end of the lesson.</li>
  112. <li>By default, the first answer jumps to the <b>next page</b> in the lesson. The subsequent
  113. answers jump to the same page. That is, the student is shown the same page of the
  114. lesson again if they do not chose the first answer. If you have already created a
  115. cluster with an end of cluster, and the question is within it, you can also choose
  116. to jump to an Unseen Question within the cluster. This option will not be shown if
  117. you are not in a cluster. You can surround a set of questions with cluster and end
  118. of cluster at any time.</li>
  119. <li>The next page is determined by the lesson's <b>logical order</b>. This is
  120. the order of the pages as seen by the teacher. This order can be altered
  121. by moving pages within the lesson.</li>
  122. <li>The lesson also has a <b>navigation order</b>. This is the order of the
  123. pages as seen by the students. This is determined by the jumps specified
  124. for individual answers and it can be very different from the logical order.
  125. (Although if the jumps are <i>not</i> changed from their default values
  126. the two are strongly related.) The teacher has the option to check the
  127. navigation order.</li>
  128. <li>When displayed to the students, the answers are usually shuffled. That is,
  129. the first answer from the teacher's point of view will not necessarily be
  130. the first answer in the list shown to the students. (Further, each time the
  131. same set of answers is displayed they are likely to appear in a different
  132. order.) The exception is sets of answers for matching-type questions, here
  133. the answers are shown in the same order as input by the teacher. </li>
  134. <li>The number of answers can vary from page to page. For example, it is allowed
  135. that some pages can end with a true/false question while others have questions
  136. with one correct answer and three, say, distractors. </li>
  137. <li>It is possible to set up a page without any answers. The students are shown
  138. a <b>Continue</b> link instead of the set of shuffled answers.</li>
  139. <li>If custom scoring is off: for the purposes of grading the lessons, <b>correct</b> answers are ones which
  140. jump to a page which is further <i>down</i> the logical order than the current page.
  141. <b>Wrong</b> answers are ones which either jump to the same page or to a page
  142. further <i>up</i> the logical order than the current page. Thus, if the jumps are
  143. <i>not</i> changed, the first answer is a correct answer and the other answers are
  144. wrong answers.
  145. <br /><br />
  146. If custom scoring is on: grading of an answer is determined by the point value
  147. of the answer, the total points earned serves as a fraction of the total point value
  148. of the lesson, up to 100%.</li>
  149. <li>Questions can have more than one correct answer. For example, if two of the answers
  150. jump to the next page then either answer is taken as a correct answer. (Although
  151. the same destination page is shown to the students, the responses shown on the way
  152. to that page may well be different for the two answers.)</li>
  153. <li>In the teacher's view of the lesson the correct answers have underlined Answer
  154. Labels.</li>
  155. <li><b>Branch tables</b> are simply pages which have a set of links to other
  156. pages in the lesson. Typically a lesson may start with a branch table which
  157. acts as a <b>Table of Contents</b>.</li>
  158. <li>Each link in a branch table has two components, a description and the title
  159. of the page to jump to.</li>
  160. <li>A branch table effectively divides the lesson into a number of
  161. <b>branches</b> (or sections). Each branch can contain a number of pages
  162. (probably all related to the same topic). The end of a branch is usually
  163. marked by an <b>End of Branch</b> page. This is a special page which, by
  164. default, returns the student back to the preceding branch table. (The
  165. &quot;return&quot; jump in an End of Branch page can be changed, if
  166. required, by editing the page.) </li>
  167. <li>There can be more than one branch table in a lesson. For example, a lesson
  168. might usefully be structured so that specialist points are sub-branches
  169. within the main subject branches.</li>
  170. <li>It is important to give students a means of ending the lesson. This might
  171. be done by including an &quot;End Lesson&quot; link in the main branch
  172. table. This jumps to the (imaginary) <b>End of Lesson</b> page. Another
  173. option is for the last branch in the lesson (here &quot;last&quot; is used
  174. in the logical ordering sense) to simply continue to the end of the lesson,
  175. that is, it is <i>not</i> terminated by an End of Branch page.</li>
  176. <li>With custom scoring off, when a lesson includes one or more branch tables it is
  177. advisable to set the &quot;Minimum number of Questions&quot; parameter to some reasonable
  178. value. This sets a lower limit on the number of pages seen when the grade is
  179. calculated. Without this parameter a student might visit a single branch in the
  180. lesson, answer all its questions correctly and leave the lesson with the maximum
  181. grade.
  182. <br /><br />
  183. With custom scoring on, a student is graded based on the number of points they have
  184. earned as a percentage of the total points for the lesson.</li>
  185. <li>Further, with custom scoring off, when a branch table is present a student has
  186. the opportunity of re-visiting the same branch more than once. However, the grade is
  187. calculated using the number of <i>unique</i> questions answered. So repeatedly answering
  188. the same set of questions does <i>not</i> increase the grade. (In fact, the reverse is
  189. true, it lowers the grade as the count of the number of pages seen is used in the
  190. denominator when calculating grades does include repeats.) In order to give students
  191. a fair idea of their progress in the lesson, they are shown details of how many
  192. questions they are answered correctly, number of pages seen, and their current grade
  193. on every branch table page.
  194. <br /> <br />
  195. With custom scoring on, a student may revisit a question if the navigation path
  196. allows it, and re-earn the point(s) for that question, if attempts is greater than
  197. 1. To prevent this, set attempts to 1.</li>
  198. <li>The <b>end of the lesson</b> is reached by either jumping to that location explicitly
  199. or by jumping to the next page from the last (logical) page of the lesson. With
  200. custom scoring off, when the end of the lesson is reached, the student receives a
  201. congratulations message and is shown their grade. The grade is (the number of
  202. questions correctly answered / number of pages seen) * the grade of the lesson.
  203. With custom scoring on, the grade is the points earned as a % of the total points
  204. (e.g. 3 points earned for a 3 point lesson = 100% of 3 points).</li>
  205. <li>If the end of the lesson is <i>not</i> reached and the student just leaves,
  206. when the student goes into the lesson again they are given the choice of
  207. starting at the beginning or picking up the lesson where they answered their
  208. last correct answer.</li>
  209. <li>For a lesson which allow re-takes, the teacher has the choice of using the
  210. best grade or the average of the grades as the &quot;final&quot; grade from
  211. the lesson. That grade is shown on the Grades page, for example.</li>
  212. <li>Cluster pages: a cluster represents a set of questions from which one or more
  213. may be randomly chosen. Clusters should be completed with an End of Cluster page for
  214. best results (otherwise they treat the End of Lesson as the EOC). Questions within a
  215. cluster are randomly selected by choosing "Random Question within a Cluster" as a
  216. jump. Questions within a cluster may either link to the EOC to exit the cluster, or
  217. jump to an unseen question within the cluster, or jump to any other page in the
  218. lesson. This also enables the creation of scenarios with a random element using the
  219. lesson module.</li>
  220. </ol>
  221. </div><div class="closewindow">
  222. <form action="#"><div><input type="button" onclick="self.close();" value="Fechar esta janela" /></div></form></div>
  223. <p class="helpindex"><a href="help.php?file=index.html">Índice de todos os ficheiros de ajuda</a></p></div><div id="footer"><p class="helplink"></p><hr /> <div class="validators"><ul>
  224. <li><a href="http://validator.w3.org/check?verbose=1&amp;ss=1&amp;uri=http%3A%2F%2Faulas.esec-acf.pt%2Fhelp.php%3Fmodule%3Dlesson%26file%3Doverview.html">Validate HTML</a></li>
  225. <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&amp;url1=http%3A%2F%2Faulas.esec-acf.pt%2Fhelp.php%3Fmodule%3Dlesson%26file%3Doverview.html">Section 508 Check</a></li>
  226. <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=0&amp;warnp2n3e=1&amp;url1=http%3A%2F%2Faulas.esec-acf.pt%2Fhelp.php%3Fmodule%3Dlesson%26file%3Doverview.html">WCAG 1 (2,3) Check</a></li>
  227. </ul></div>
  228. </div>
  229. </div>
  230. </body>
  231. </html>

↑ Top