Validation issues in PDA portlet
GENERAL
TESTING
GENERAL
TESTING
Description
is depended on by
Activity
Show:

Filter Maintainer August 8, 2008 at 6:02 AM
2.5.0 QA has been completed. Unfortunately, there were not resources available to specifically test this issue. If you find this to still be a problem in the latest release (at this point 2.5.2), please reopen the JIRA and add the latest affects version.
Stephen Marquard April 29, 2007 at 1:21 AM
Presence title added in r29748
Stephen Marquard April 19, 2007 at 8:17 AM
#3 needs fix in presence.

Peter Knoop April 18, 2007 at 7:12 AM
This issue was reported against Nightly/SVN-Trunk after 2.3.1 was released. It is still unresolved at this point, therefore, it is most likely affecting 2.4.0 as well, and Affects Version is being updated to the current 2.4 tag (2.4.0.010) to reflect this.
Three validation issues:
1.
<a href-"#" onMouseOver="showPresence();" onMouseOut="hidePresence();">Users Present</a>
should
<a href="#" onMouseOver="showPresence();" onMouseOut="hidePresence();">Users Present</a>
(= rather than - following href)
2. <script> should be <script type="text/javascript"> to keep validators happy.
3. In the users present iframe html list, there needs to be a <title> element in the <head> section (also in the standard portal in fact):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="/library/skin/tool_base.css" type="text/css" rel="stylesheet" media="all" />
<link href="/library/skin/default/tool.css" type="text/css" rel="stylesheet" media="all" />
<script type="text/javascript" language="JavaScript" src="/library/js/headscripts.js"></script>
</head>
<body>
<script type="text/javascript" language="JavaScript">
updateTime = 30000;
updateUrl = "http://mocha.cet.uct.ac.za:8080/courier/184dde2e-fa54-4f2f-0064-e38493087965-presence";
scheduleUpdate();
</script>
<ul class="presenceList">
<li><span title="Currently in Site">Sakai Administrator</span></li>
</ul>
</body></html>