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=forum&file=ratings.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%3Dforum%26file%3Dratings.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"><!-- $Id$ -->
  101. <h1>Classificações</h1>
  102. <p>Os envios individuais podem ser avaliados utilizando uma escala
  103. baseada na teoria da <strong>aprendizagem isolada e
  104. colectiva</strong>.</p>
  105. <p>Esta teoria pode ajudá-lo a observar as interacções humanas sob um
  106. ponto de vista diferente. Explica duas formas diferentes de avaliar e
  107. aprender aquilo que vemos e ouvimos.</p>
  108. <p>Apesar de podermos utilizar estes dois métodos em conteúdos e
  109. períodos diferentes, é útil para exemplificar, imaginar duas pessoas,
  110. uma conhecedor isolado (Jim) e uma conhecedora colectiva (Mary).</p>
  111. <ul>
  112. <li>Jim gosta de ser o mais &quot;objectivo&quot; possível sem incluir
  113. os seus sentimentos e emoções. Quando numa troca de pontos de vista
  114. com alguém que tenha outros, ele gosta de defender as suas próprias
  115. ideias, utilizando a lógica para encontrar lacunas nas ideias do
  116. seu/sua oponente. Tem uma posição crítica em relação a novas ideias a
  117. não ser que as mesmas sejam provadas por fontes fidedignas tais como
  118. livros, professores conceituados ou através da sua própria
  119. experiência. Jim é o <strong>típico aluno isolado</strong>. </li>
  120. <li>Mary é mais sensível para com os outros. Tem a capacidade de
  121. empatia e prefere ouvir e questionar até sentir que pode estabelecer
  122. ligação ao &quot;compreender as coisas do ponto de vista dos
  123. outros&quot;. Ela aprende tentando partilhar as experiências que a
  124. conduzem ao conhecimento que adquire através dos outros. Ao falar com
  125. outras pessoas, evita confrontos e se achar oportuno, tenta ajudar
  126. através de sugestões lógicas. Mary é uma <strong>aluna muito
  127. colectiva</strong>.</li>
  128. </ul>
  129. <p>Já reparou nestes exemplos que o aluno isolado é masculino e a
  130. colectiva é feminina? Alguns estudos sobre o assunto provam
  131. estatisticamente este facto, no entanto, qualquer pessoa pode estar
  132. entre estes dois extremos.</p>
  133. <p>Para um grupo de alunos mais colaboradores e empenhados, o ideal
  134. seria se utilizassem AMBOS os métodos.</p>
  135. <p>Numa situação específica, como num fórum na Web, um único envio
  136. feito por alguém pode revelar qualquer uma destas características, ou
  137. até ambas. Alguém que normalmente é muito colectivo pode enviar uma
  138. mensagem de cariz isolado e vice versa. O benefício de avaliar cada
  139. envio usando esta escala é:</p>
  140. <ol style="list-style:lower-alpha">
  141. <li>ajuda-o a pensar sobre estes temas ao ler outros envios</li>
  142. <li>providencia um diganóstico a cada autor no modo como é visto pelos
  143. outros</li>
  144. </ol>
  145. <p>Os resultados não são usados para avaliar os alunos em nenhuma
  146. forma, mas são usados apenas para ajudar a melhorar a comunicação e a
  147. aprendizagem.</p>
  148. <hr />
  149. <p>Caso esteja interessado, seguem-se algumas referências a documentos
  150. elaborados pelos autores que originalmente desenvolveram estas
  151. ideias:</p>
  152. <ul>
  153. <li>Belenky, M.F., Clinchy, B.M., Goldberger, N.R., &amp; Tarule,
  154. J.M. (1986). <em>Women's ways of knowing: the development of self,
  155. voice, and mind</em>. New York, NY: Basic Books.</li>
  156. <li>Clinchy, B.M. (1989a). <em>The development of thoughtfulness in
  157. college women: Integrating reason and care</em>. American Behavioural
  158. Scientist, 32(6), 647-657.</li>
  159. <li>Clinchy, B.M. (1989b). <em>On critical thinking &amp; connected
  160. knowing. Liberal education</em>, 75(5), 14-19.</li>
  161. <li>Clinchy, B.M. (1996). <em>Connected and separate knowing; Toward a
  162. marriage of two minds</em>. In N.R. Goldberger, Tarule, J.M., Clinchy,
  163. B.M. &amp; Belenky, M.F. (Eds.), <em>Knowledge, Difference, and Power;
  164. Essays inspired by Women's Ways of Knowing</em> (pp. 205-247). New
  165. York, NY: Basic Books.</li>
  166. <li>Galotti, K. M., Clinchy, B. M., Ainsworth, K., Lavin, B., &amp;
  167. Mansfield, A. F. (1999). <em>A New Way of Assessing Ways of Knowing:
  168. The Attitudes Towards Thinking and Learning Survey (ATTLS). Sex
  169. Roles</em>, 40(9/10), 745-766.</li>
  170. <li>Galotti, K. M., Reimer, R. L., &amp; Drebus,
  171. D. W. (2001). <em>Ways of knowing as learning styles: Learning MAGIC
  172. with a partner. Sex Roles</em>, 44(7/8), 419-436.</li>
  173. </ul>
  174. </div><div class="closewindow">
  175. <form action="#"><div><input type="button" onclick="self.close();" value="Fechar esta janela" /></div></form></div>
  176. <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>
  177. <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%3Dforum%26file%3Dratings.html">Validate HTML</a></li>
  178. <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&amp;url1=http%3A%2F%2Faulas.esec-acf.pt%2Fhelp.php%3Fmodule%3Dforum%26file%3Dratings.html">Section 508 Check</a></li>
  179. <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%3Dforum%26file%3Dratings.html">WCAG 1 (2,3) Check</a></li>
  180. </ul></div>
  181. </div>
  182. </div>
  183. </body>
  184. </html>

↑ Top