<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Flexknowlogy - Jared Stein &#187; vista</title>
	<atom:link href="http://jaredstein.org/tag/vista/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaredstein.org</link>
	<description>Education, Technology, Culture, and the Internet</description>
	<lastBuildDate>Fri, 30 Jul 2010 23:18:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Blackboard Vista Triggers Quirks Mode</title>
		<link>http://jaredstein.org/2009/04/02/blackboard-vista-triggers-quirks-mode/</link>
		<comments>http://jaredstein.org/2009/04/02/blackboard-vista-triggers-quirks-mode/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 16:25:20 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[blackboard]]></category>
		<category><![CDATA[web dev]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[quirks mode]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/?p=626</guid>
		<description><![CDATA[Ever been annoyed by Blackboard Vista&#8217;s (or Campus Edition 6+&#8217;s) rendering of your XHTML + CSS web pages? Yeah, me too&#8211;especially on Internet Explorer. This happens because Bb Vista triggers a browser&#8217;s quirks mode in spite of DOCTYPEs and validated markup.

More than just troublesome for pretty CSS-based pages, quirks mode, triggered on standards-compliant pages, can [...]]]></description>
			<content:encoded><![CDATA[<p>Ever been annoyed by Blackboard Vista&#8217;s (or Campus Edition 6+&#8217;s) rendering of your XHTML + CSS web pages? Yeah, me too&#8211;especially on Internet Explorer. This happens because Bb Vista triggers a browser&#8217;s <a href="http://www.quirksmode.org/css/quirksmode.html">quirks mode</a> in spite of <a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">DOCTYPE</a>s and <a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">validated markup</a><span id="more-626"></span>.
</p>
<p>More than just troublesome for pretty CSS-based pages, quirks mode, triggered on standards-compliant pages, can negatively affect the usability and functionality of the learning experience. For example, we use an <a href="http://uvsc.edu/disted/gamegarden/">inline quizzing</a> Javascript that renders questions and answer choices and feedback based on standards mode CSS. In quirks mode this self-assessment tool is useless.</p>
<h3>Blackboard Was Made For Quirks</h3>
<p>
Basically quirks mode means the browser thinks your web skills are not up to snuff, and the browser therefore renders your CSS in a non-standard fashion. Quirks mode is triggered when a DOCTYPE, e.g.:</p>
<pre style="font-size: 90%">
<code>
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
</code>
</pre>
<p>&#8230;is missing, or invalid, or unknown, or not where it should be (i.e. the first line of the document).</p>
<div><img style="border: 1px solid" src="http://flexknowlogy.learningfield.org/files/2009/04/wikis51.jpg" alt="" /></p>
<div style="font-size: 80%">
<em>javascript:alert(document.compatMode)</em> pasted into the Internet Explorer address bar kindly informs us that this browser is rendering <a href="http://resources.qooxdoo.org/download/advanced_boxtest/box_test_standard.html">this page</a> in quirks mode. Firefox will tell you if you go to <em>Tools &gt; Page Info</em>. <a href="http://resources.qooxdoo.org/download/advanced_boxtest/box_test_standard.html">Advanced Box Model Test</a></div>
</div>
<p>But even if you&#8217;ve been careful to put a valid DOCTYPE into your web pages, once it&#8217;s loaded up into Bb Vista and linked to, either from a Folder or a Learning Module, the browser will go into quirks mode. Why does this happen? Simple: <strong>Bb Vista inserts XHTML and JavaScript at the beginning of all web pages onload.</strong> <a href="http://field.5tein.com/files/2009/04/quirkstest1.png">140+ lines</a> of it, to be exact. It&#8217;s an odious thing to do, but, what do you expect? It&#8217;s Blackboard.
</p>
<p>It may (or may not) be important to note that <strong>this does not happen when viewing a page in the File Manager</strong>&#8211;only when a page is loaded from a link within the course.</p>
<h3>What You Can Do</h3>
<p>Not much. And yet this could be <strong>a big issue for Internet Explorer users</strong> (FireFox renders page in quirks mode [not <a href="https://developer.mozilla.org/en/Mozilla%27s_DOCTYPE_sniffing#Almost_Standards_Mode">"Almost Standards Mode"</a> as I'd hoped], yet most standards-compliant XHTML and CSS still render well).
</p>
<p>And though <a href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=2">most users are still on IE 6 or 7</a> I had some hope for a way out with Internet Explorer 8. You see,  <a href="http://msdn.microsoft.com/en-us/library/dd565650(VS.85).aspx">Microsoft promised that &#8220;a page explicitly opts into standards mode&#8221; when it includes &#8220;a metatag in the page that specifies IE=8 or IE=EmulateIE8&#8243;</a>. For example:</p>
<pre style="font-size: 90%">
<code>&lt;meta http-equiv="X-UA-Compatible" content="IE=IE8" /&gt;
</code>
</pre>
<p>In practice, however, this META tag alone does not force IE8 into standards mode in Bb Vista&#8211;the misplaced XHTML is apparently too much for IE8 to ignore.</p>
<p>So the most practical solutions I can think of are:</p>
<ol>
<li>
<p>
<strong>Write custom CSS for Blackboard</strong> that renders (or re-renders) the page according to <a href="http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug">the quirks mode box model</a>. This could be done using <a href="">Internet Explorer conditional comments</a>, for example:</p>
<pre style="font-size: 90%">
<code>
&lt;!--[if IE ]&gt;
  &lt;link href="ie-quirks.css" rel="stylesheet" type="text/css" /&gt;
&lt;![endif]--&gt;
</code>
</pre>
<p>I haven&#8217;t yet considered what CSS rules would need to be written to accommodate this, but <em>if it was possible</em> this seem like the most robust and efficient solution.</p>
</li>
<li><strong>Rewrite the page with Javascript.</strong> After Bb has loaded (or begun to load) the page, Javascript triggers a full rewrite of the page, either wiping out or rewriting the Bb XHTML and Javascript in a more appropriate location (e.g. in a targeted, ID&#8217;ed element). I&#8217;ve asked one of my developers to try this out today, but already fear the additional load time it might put on the Bb-hosted page.</li>
</ol>
<p>Any other ideas?</p>
<p>If this were only about appearance I wouldn&#8217;t be raising a fuss, but this can and does affect the usability of certain e-learning tools, and forces developers to ask, &#8220;How will this work in Blackboard?&#8221; yet again.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2009/04/02/blackboard-vista-triggers-quirks-mode/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blackboard Wins Patent Lawsuit vs. Desire2Learn</title>
		<link>http://jaredstein.org/2008/02/23/blackboard-wins-patent-lawsuit-vs-desire2learn/</link>
		<comments>http://jaredstein.org/2008/02/23/blackboard-wins-patent-lawsuit-vs-desire2learn/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 16:30:00 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[blackboard]]></category>
		<category><![CDATA[desire2learn]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[lawsuits]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[patents]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/02/23/blackboard-wins-patent-lawsuit-vs-desire2learn/</guid>
		<description><![CDATA[Desire2Learn announced on February 22nd that Blackboard has won its patent infringement lawsuit against them, stating, &#8220;the jury has handed down its verdict that the patent is valid and that Blackboard should be awarded damages of approximately $3 million.&#8221; 

Blackboard filed the lawsuit on July 26, 2006 against competitor Desire2Learn based on intellectual property claims [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.desire2learn.com/patentinfo/">Desire2Learn announced on February 22nd that Blackboard has won its patent infringement lawsuit</a> against them, stating, &#8220;the jury has handed down its verdict that the patent is valid and that Blackboard should be awarded damages of approximately $3 million.&#8221; </p>
<p>
Blackboard filed the lawsuit on July 26, 2006 against competitor <a href="http://www.desire2learn.com">Desire2Learn</a> based on intellectual property claims related to it&#8217;s <a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;Sect2=HITOFF&amp;p=1&amp;u=%2Fnetahtml%2FPTO%2Fsearch-bool.html&amp;r=1&amp;f=G&amp;l=50&amp;co1=AND&amp;d=PTXT&amp;s1=6988138.PN.&amp;OS=PN/6988138&amp;RS=PN/6988138">Blackboard’s U.S. patent #6,988,138</a>.  Blackboard has argued that it had invested 100 million dollars in the development of the educational products protected under the patent. (<a href="http://noedupatents.org/">NoEduPatents.com</a> has made <a href="http://noedupatents.org/wiki/index.php?title=Blackboard%E2%80%99s_US_patent_6%2C988%2C138">an explanation of Blackboard&#8217;s 44 patent claims</a>.)
</p>
<p>Backlash to the Blackboard patent by the open source and educational communities has been strong since news of the lawsuit first broke, and will likely continue through communities such as <a href="http://www.boycottblackboard.org/">boycottblackboard.org</a>.  I personally did not expect Blackboard&#8217;s claims would be upheld when <a href="http://www.groklaw.net/article.php?story=2007012520202052">re-examined by the patent office</a>, let alone that the lawsuit would be validated by the jury.</p>
<p>
Because <a href="http://noedupatents.org/wiki/index.php?title=Blackboard%E2%80%99s_US_patent_6%2C988%2C138">the patent claims are broad and impact so many common e-learning features</a>, Blackboard&#8217;s legal victory is bound to be discouraging and troublesome to other commercial learning management system providers such as <a href="http://www.angellearning.com/">Angel Learning</a>, <a href="http://www.eCollege.com">eCollege</a>, and <a href="http://agilix.com/">Agilix</a>.  Blackboard has previously <a href="http://www.blackboard.com/patent/FAQ_013107.htm">declared that it would not assert it&#8217;s U.S. patents against open source software development</a>, e.g. <a href="http://www.moodle.org">Moodle</a> and <a href="http://www.sakai.com">Sakai</a>. </p>
<p>Does this apparent magnanimity bolster my favor for Blackboard?  Certainly not; the position is superficial at best, and Blackboard knows it.  Anyway, it&#8217;s beside the point: though I personally lean towards open source software for educational technology, I am a capitalist, and free market competition and consumer-driven innovation of services and products is important to me.  Blackboard&#8217;s overblown patent claims are an affront to innovation and competition, taking advantage of systemic failures in U.S. Patent regulations.</p>
<p>And though some will dismiss this news based on the argument that <em>even conceptually</em> the LMS has inherent flaws (failure to keep up with current technologies, inauthentic, lack of learner ownership, creepy-tree-house, etc), I believe the LMS is still a valuable toolset for many. The LMS has has propelled e-learning into a new frontier by standardizing the basic communication and delivery features for an educational audience.  The LMS&#8217;s ability to provide teachers an easy-to-use set of online educational tools in a one-stop-shopping experience is and will remain considerable for the next 5 years at least.  (The unfortunate reality is that alternative networked education &#8220;systems&#8221; such as personal learning environments are still being thought out and developed&#8211;at the very least alternatives are probably not ready for widespread adoption and implementation by faculty members.)</p>
<p>Regardless of whether you&#8217;re pro-LMS or anti-LMS in general, I think <a href="http://en.wikipedia.org/wiki/Software_patent_debate">the larger debate about software patents</a> <em>particularly when applied to education</em> is an issue we in ed tech all have a stake in.  At the ITC conference last week I picked up a witty t-shirt given to me by <a href="http://www.rsmart.com/">The rSmart Group</a> that signifies the position of many:</p>
<p><a href="http://www.flickr.com/photos/5tein/2285564911/"><img src="http://farm4.static.flickr.com/3087/2285564911_188383271f.jpg?v=0" alt="Supporting Innovation, Not Suing It" /></a></p>
<h4>Sources</h4>
<ul>
<li><a href="http://www.desire2learn.com/patentinfo/">Desire2Learn&#8217;s Patent Lawsuit Blog</a></li>
<li><a href="http://www.blackboard.com/patent/FAQ_013107.htm">Blackboard&#8217;s Patent Info Page</a></li>
<li><a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;Sect2=HITOFF&amp;p=1&amp;u=%2Fnetahtml%2FPTO%2Fsearch-bool.html&amp;r=1&amp;f=G&amp;l=50&amp;co1=AND&amp;d=PTXT&amp;s1=6988138.PN.&amp;OS=PN/6988138&amp;RS=PN/6988138">Blackboard’s U.S. patent #6,988,138</a></li>
<li><a href="http://noedupatents.org/wiki/index.php?title=Blackboard%E2%80%99s_US_patent_6%2C988%2C138">NoEduPatents&#8217;s Explanation of Blackboard&#8217;s 44 patent claims</a></li>
<li><a href="http://www.groklaw.net/article.php?story=2007012520202052">Groklaw: Reexamination of Blackboard Patent</a></li>
<li><a href="http://en.wikipedia.org/wiki/Software_patent_debate">Wikipedia: Software Patent Debate</a></li>
<li><a href="http://www.boycottblackboard.org/">BoycottBlackboard.org</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/02/23/blackboard-wins-patent-lawsuit-vs-desire2learn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&quot;Student Readiness&quot; Survey Really an &quot;Idealized Student&quot; Survey</title>
		<link>http://jaredstein.org/2007/12/14/student-readiness-survey-really-an-idealized-student-survey/</link>
		<comments>http://jaredstein.org/2007/12/14/student-readiness-survey-really-an-idealized-student-survey/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 06:05:00 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[e-learning]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[blackboard]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[formative]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[punitive]]></category>
		<category><![CDATA[surveys]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2007/12/14/student-readiness-survey-really-an-idealized-student-survey/</guid>
		<description><![CDATA[I am a bit miserable about a series of questions that I whipped up for a survey device at the request of an instructor who teaches a Distance Education course.
Not only do I disagree with the instructor&#8217;s desired objectives in using this survey (she essentially hopes to prove that the reason students are failing her [...]]]></description>
			<content:encoded><![CDATA[<p>I am a bit miserable about a series of questions that I whipped up for a survey device at the request of an instructor who teaches a Distance Education course.</p>
<p>Not only do I disagree with the instructor&#8217;s desired objectives in using this survey (she essentially hopes to prove that the reason students are failing her online course is because they are under-prepared or have wrong assumptions about online education&#8211;of course it couldn&#8217;t have anything to do with the fact that the course has nearly no media-enhanced learning, no student-student contact, and very little student-instructor interaction), I disagree with the questions that I wrote.</p>
<p>Of course anyone who has written survey questions with a mind to gain accurate and insightful information on the participants knows what a challenge the task is from the get-go; I don&#8217;t kid myself that it&#8217;s no easy endeavor, but I also think there has to be a better way.</p>
<p>Among my primary objectives in writing the questions were the following ideas:</p>
<ul>
<li>Keep the survey short, so that students would actually do it.</li>
<li>Have some redundancy to check for accuracy and inhibit prejudicial responses.</li>
<li>Avoid asking questions that dare students to label themselves &#8220;dumb&#8221;.</li>
<li>Avoid questions that tempted students into labeling themselves &#8220;smart&#8221;.</li>
</ul>
<p>But the primary objective was essentially this: after reading a good number of &#8220;student readiness&#8221; surveys online I wanted to avoid asking questions that gauged a student&#8217;s willingness to partake in a lonesome independent study course.  &#8220;Independent study&#8221; is not equivalent to modern &#8220;distance education&#8221; in the Stein dictionary (in fact, even &#8220;distance education&#8221; is not equivalent to &#8220;distance education&#8221; in the Stein dictionary, but that&#8217;s another story).  And so though several of my questions are based on the questions asked in other &#8220;distance education&#8221; surveys, I purposefully steered away from <a href="http://www.cod.edu/dept/CIL/CIL_Surv.htm">presumptive questions like</a>:</p>
<pre>
Feeling that I am part of a class is:
a. Not particularly necessary to me.
b. Somewhat important to me.
c. Very important to me.
</pre>
<p>As if being &#8220;part of a class&#8221; is somehow mutually exclusive from distance learning! And it&#8217;s not that I&#8217;m opposed to independent study types of courses; in fact, I myself greatly enjoy and grow in isolation, but I recognize that&#8217;s not necessarily the norm.</p>
<p>Then there are questions that perpetuate instructors&#8217; presumptions that they can get back to distance students at their leisure:</p>
<pre>
My comfort level with waiting a few days to receive instructor feedback is..
Low   Moderate   High
</pre>
<p>While it may be an unfortunate reality in distance education programs that instructors <em>do</em> often delay responding to students (I recommend a 24 hour turn around at the latest), we certainly don&#8217;t want to encourage that behavior, nor do we want to discourage student expectations of their instructors.</p>
<p>Finally, I also have disagreements with the term &#8220;student readiness&#8221; in general, as that tends to automatically place the blame for student failure at the feet of the students.  Jared Spool, a Web usability expert whom I greatly admired, once inspired me to make the following provocative paraphrase, <q>There are no user errors, only<br />
design errors.</q>  And while I recognize that this statement is not universally true, it does challenge the designer (in this case, the instructor or the instructor&#8217;s instructional designer) to reconsider blaming the user (aka student) for failing to complete the task.</p>
<h4>My Questions</h4>
<p>Even though I have a pretty good insight into what I think is wrong with so many &#8220;student readiness&#8221; surveys, I still had a hard time making my fundamentally different.  But I&#8217;ll share them here anyway, with the hopes that some brainy folks can offer better suggestions to achieve the same general objective: determine if our students are adequately prepared&#8211;both mentally and technically&#8211;for an online course experience.</p>
<p>(Note: these questions are randomized in the final survey to mask redundancy.)</p>
<blockquote><p>
Options: Strongly Agree | Agree | Disagree | Strongly Disagree<br />
1. I often get things done ahead of time.<br />
2. I can work independently and meet deadlines without being reminded.<br />
3. I learn best through live classroom discussions.<br />
4. I am comfortable engaging in class discussions on the Web.<br />
5. If given clear instructions, I am confident that I can complete the assignment independently.<br />
6. I often need to have instructions for an assignment clarified or explained more than once.<br />
7. As a reader, I sometimes need help to understand the text.<br />
8. When I need help understanding the subject, I am comfortable e-mailing an instructor to ask for clarification.<br />
9. When I don&#8217;t understand something I&#8217;ve read, I ask the instructor to explain it as soon as possible.<br />
10. I am very competent using e-mail and Web sites.<br />
11. I am a skilled writer.<br />
12. I don&#8217;t always comprehend what I read.<br />
13. I expect to spend less time on an Distance Education course than a regular on-campus course.<br />
14. I often put things off until the last minute<br />
15. I expect a Distance Education course to be easier than a regular on-campus course.
</p></blockquote>
<p>If you hate these questions, give me something better.</p>
<p>And if you like them, you can download them here (This survey is licensed under a<br />
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License</a>.):</p>
<ul>
<li><a href="http://www.uvsc.edu/disted/tetc/downloads/blackboard/DE Readiness Survey (survey).zip">DE Readiness Survey (survey).zip</a> Blackboard Vista IMS Survey version</li>
<li><a href="http://www.uvsc.edu/disted/tetc/downloads/blackboard/DE Readiness Survey (quiz).zip">DE Readiness Survey (quiz).zip</a> Blackboard Vista IMS Quiz version (scored for a &#8220;perfect&#8221; student)</li>
<li><a href="http://www.uvsc.edu/disted/tetc/downloads/moodle/DE Readiness Survey.txt">DE Readiness Survey.txt</a> Moodle GIFT format (scored for a &#8220;perfect&#8221; student)</li>
</ul>
<p><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/"><br />
<img alt="Creative Commons License" src="http://i.creativecommons.org/l/by-nc-sa/3.0/us/88x31.png" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2007/12/14/student-readiness-survey-really-an-idealized-student-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
