<?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>Jared Stein - Education, Technology, Culture, and the Internet &#187; mods</title>
	<atom:link href="http://jaredstein.org/tag/mods/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaredstein.org</link>
	<description>Education, Technology, Culture, and the Internet</description>
	<lastBuildDate>Mon, 21 May 2012 02:49:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Condensing the &#8220;News&#8221; Feature of My Moodle Using a Show/Hide Javascript</title>
		<link>http://jaredstein.org/2010/05/19/condensing-the-news-feature-of-my-moodle-using-a-showhide-javascript/</link>
		<comments>http://jaredstein.org/2010/05/19/condensing-the-news-feature-of-my-moodle-using-a-showhide-javascript/#comments</comments>
		<pubDate>Wed, 19 May 2010 21:19:34 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[modifications]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://jaredstein.org/?p=1239</guid>
		<description><![CDATA[The My Moodle feature in Moodle 1.9x displays a list of registered courses to a user after logging in. The nice thing about the list is that each course link is followed by a listing of any recent news or events in the course. Unfortunately in highly active courses this list becomes quite lengthy, and [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://docs.moodle.org/en/My_Moodle">My Moodle feature</a> in <a href="http://moodle.org">Moodle</a> 1.9x displays a list of registered courses to a user after logging in. The nice thing about the list is that each course link is followed by a listing of any recent news or events in the course. Unfortunately in highly active courses this list becomes quite lengthy, and ultimately obnoxious as the length obstructs quick access to other courses in one&#8217;s view.</p>
<p>To remedy this I have, for quite some time, maintained a custom bit of very basic Javascript and CSS that sets the default view of news items to hidden, with a clickable link to show the entire list from the My Moodle page<span id="more-1239"></span>:</p>
<div>
<p><a href="http://www.flickr.com/photos/5tein/4622703444/in/photostream/"><img src="http://farm5.static.flickr.com/4033/4622703444_32679d85df_o.jpg" alt="hidden news in My Moodle" /></a></p>
<p style="font-size: 70%">Clicking &#8220;There is news in this course&#8221; expands the news.</p>
</div>
<div>
<p><a href="http://www.flickr.com/photos/5tein/4622703572/"><img src="http://farm4.static.flickr.com/3357/4622703572_74db8af2a6_o.png" alt="hidden news in My Moodle" /></a></p>
<p style="font-size: 70%">The default for news for each course is &#8220;hidden&#8221;.</p>
</div>
<p>Nothing fancy, and even as I look at it now I can think of improvements&#8230;</p>
<p>We just upgraded to 1.9.8 this semester, and because this snippet modifies Moodle core I had my developer Kevin re-test the snippet before I asked our server admin Paul to replace the existing function as follows:</p>
<pre>file Location:            '/course/lib.php'
file line:                    "800"
function to replace: "function print_overview($courses)"
</pre>
<p>Here&#8217;s the actual replacement function:</p>
<div style="margin: 1em 0em;padding: .75em;border: 1px solid gray font-family: Courier New,monospace;font-size: 75%">
// Begin My Moodle Show-Hide News modification</p>
<p>// Replaces function in &#8220;course/lib.php&#8221; to hide course news by default.<br />
// Hidden news is viewable via Javascript by clicking &#8220;There is news in this course&#8221; link.<br />
// Link does not exist if there is no news in the course.<br />
function print_overview($courses) {</p>
<p>&nbsp;&nbsp;&nbsp;global $CFG, $USER;</p>
<p>&nbsp;&nbsp;&nbsp;$htmlarray = array();</p>
<p>&nbsp;&nbsp;&nbsp;if ($modules = get_records(&#8216;modules&#8217;)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach ($modules as $mod) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (file_exists(dirname(dirname(__FILE__)).&#8217;/mod/&#8217;.$mod-&gt;name.&#8217;/lib.php&#8217;)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;include_once(dirname(dirname(__FILE__)).&#8217;/mod/&#8217;.$mod-&gt;name.&#8217;/lib.php&#8217;);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$fname = $mod-&gt;name.&#8217;_print_overview&#8217;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (function_exists($fname)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$fname($courses,$htmlarray);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;foreach ($courses as $course) {</p>
<p>&nbsp;&nbsp;&nbsp;   print &#8220;&lt;ul style=\&#8221;margin: 0; padding: 0; list-style: none; width: 96%; \&#8221;&gt;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$linkcss = &#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (empty($course-&gt;visible)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$linkcss = &#8216;class=&#8221;dimmed&#8221;&#8216;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&#8217;&lt;li class=&#8221;coursebox&#8221; style=&#8221;padding: .5em 1em 1em&#8221;&gt;&lt;h3 style=&#8221;font-size: 120%; font-weight: normal; margin: 0 0 .2em 0&#8243;&gt;&lt;a title=&#8221;&#8216;. format_string($course-&gt;fullname).&#8217;&#8221; &#8216;.$linkcss.&#8217; href=&#8221;&#8216;.$CFG-&gt;wwwroot.&#8217;/course/view.php?id=&#8217;.$course-&gt;id.&#8217;&#8221;&gt;&#8217;. format_string($course-&gt;fullname).&#8217;&lt;/a&gt;&lt;/h3&gt;&#8217;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (array_key_exists($course-&gt;id,$htmlarray)) {</p>
<p>			print &#8216;&lt;a href=&#8221;#&#8221; id=&#8221;toggler_&#8217;.$course-&gt;id.&#8217;&#8221; onclick=&#8221;document.getElementById(\&#8217;coursenews_&#8217;.$course-&gt;id.&#8217;\').style.display=(document.getElementById(\&#8217;coursenews_&#8217;.$course-&gt;id.&#8217;\').style.display==\&#8217;block\&#8217;?\&#8217;none\&#8217;:\&#8217;block\&#8217;); document.getElementById(\&#8217;toggler_&#8217;.$course-&gt;id.&#8217;\').innerHTML=(document.getElementById(\&#8217;toggler_&#8217;.$course-&gt;id.&#8217;\').innerHTML == \&#8217;There is news in this course&#8230;\&#8217;?\&#8217;Hide course news&#8230;\&#8217;:\&#8217;There is news in this course&#8230;\&#8217;);&#8221;&gt;There is news in this course&#8230;&lt;/a&gt;&lt;div id=&#8221;coursenews_&#8217;.$course-&gt;id.&#8217;&#8221; style=&#8221;display: none&#8221;&gt;&#8217;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach ($htmlarray[$course-&gt;id] as $modname =&gt; $html) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $html;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>			print &#8220;&lt;/div&gt;&lt;!&#8211;end contents&#8211;&gt;&lt;/li&gt;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print &#8220;&lt;/ul&gt;&#8221;;</p>
<p>&nbsp;&nbsp;&nbsp;}</p>
<p>}<br />
//End My Moodle Show-Hide News modification
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2010/05/19/condensing-the-news-feature-of-my-moodle-using-a-showhide-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Intro to OpenShare for Moodle</title>
		<link>http://jaredstein.org/2008/10/23/video-intro-to-openshare-for-moodle/</link>
		<comments>http://jaredstein.org/2008/10/23/video-intro-to-openshare-for-moodle/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 22:31:31 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[openshare]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/10/23/video-intro-to-openshare-for-moodle/</guid>
		<description><![CDATA[Mike Caufield asked that I put up a screencast on the OpenShare mod for Moodle. Here&#8217;s one that comes in just under 8 minutes&#8211;shorter even than my hatcheted and curtailed preso at MoodleMoot &#8217;08 SFO! [kml_flashembed movie="http://www.youtube.com/v/vOvQ55MxF1Y" width="425" height="350" wmode="transparent" /] Here&#8217;s a higher quality flv version: Intro to OpenShare for Moodle 1.9 (flv)]]></description>
			<content:encoded><![CDATA[<p>Mike Caufield asked that I put up a screencast on <a href="http://flexknowlogy.learningfield.org/2008/10/01/openshare-v05-for-moodle-released/">the OpenShare mod for Moodle</a>. Here&#8217;s one that comes in just under 8 minutes&#8211;shorter even than my hatcheted and curtailed preso at MoodleMoot &#8217;08 SFO<span id="more-109"></span>!</p>
<p><code>[kml_flashembed movie="http://www.youtube.com/v/vOvQ55MxF1Y" width="425" height="350" wmode="transparent" /]</code></p>
<p>Here&#8217;s a higher quality flv version:</p>
<p><a href="http://learningfield.org/resources/stein/video/openshare_intro/openshare_intro.flv">Intro to OpenShare for Moodle 1.9 (flv)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/10/23/video-intro-to-openshare-for-moodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenShare (v0.5) for Moodle Released</title>
		<link>http://jaredstein.org/2008/10/01/openshare-v05-for-moodle-released/</link>
		<comments>http://jaredstein.org/2008/10/01/openshare-v05-for-moodle-released/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 04:09:37 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[e-learning]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[blocks]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[ocw]]></category>
		<category><![CDATA[openshare]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/10/01/openshare-v05-for-moodle-released/</guid>
		<description><![CDATA[The OpenShare block in Moodle Tonight I&#8217;ve released the first all-new version of the OpenShare modification for Moodle 1.9, which I demonstrated last week at OpenEd 2008. You may view OpenShare documentation or simply download the OpenShare mod now. Overview of OpenShare OpenShare turns Moodle into a veritable open educational resources (OER) or opencourseware (OCW) [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right;width:221px;margin: 0 0 1.5em 1.5em;font-size: 75%"><img src="/resources/stein/images/openshare/openshare08.jpg" alt="the OpenShare block" />The OpenShare block in Moodle</div>
<p>Tonight I&#8217;ve released the first all-new version of the OpenShare modification for Moodle 1.9, which I demonstrated last week at <a href="http://cosl.usu.edu/events/opened2008">OpenEd 2008</a>.</p>
<p>You may <a href="/addons/openshare/">view OpenShare documentation</a> or simply <a href="/resources/stein/plugins/openshare.zip">download the OpenShare mod</a> now.</p>
<p><span id="more-103"></span></p>
<h3>Overview of OpenShare</h3>
<div><img src="http://metasolutions.us/resources/moodle/images/c_red.png" alt="C" height="11"><img src="http://metasolutions.us/resources/moodle/images/cc_01.png" alt="CC" height="11"><img src="http://metasolutions.us/resources/moodle/images/door_shut.png" alt="private" height="11"><img src="http://metasolutions.us/resources/moodle/images/door_glass.png" alt="shared" height="11"><img src="http://metasolutions.us/resources/moodle/images/door_open.png" alt="open" height="11"></div>
<p>OpenShare turns Moodle into a veritable open educational resources (OER) or opencourseware (OCW) platform by allowing instructors or designers to mark all or part of their Moodle courses as open (public) or closed (enrolled students and teachers only).  The open/closed status of any module applies to Moodle&#8217;s anonymous Guest role, but OpenShare goes further, adding an Open Learner role that can actually interact and complete open activities such as quizzes.  This feature provides a means by which a fully online distance education or independent study course in Moodle can be released as a self-directed informal-social learning environment for the general public, something not provided by typical opencourseware.</p>
<div style="1.5em 0;font-size: 75%"><a href="/resources/stein/images/openshare/openshare11.jpg"><img src="/resources/stein/images/openshare/openshare13.jpg" alt="open and close modules in Moodle" /></a>License, Open, or Close Resources &amp; Activities</div>
<p>Though based on our old <a href="http://flexknowlogy.learningfield.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/">Open Mod for OER</a>, I have renamed this version and reset the numbering because the scripting is 100% new and based on new logic.  I owe a lot of thanks to Mike Franks, Jovca, and Eric Bollens of UCLA for explaining their own Public/Private modification to me, and setting me in the right direction with respect to Groupings.</p>
<p>Further, this version of the mod is a Moodle block that requires <em>no modification of core Moodle code</em>.  I do, however, have two add-ons to the block that provide advanced usability of the mod.  These will be available soon <a href="/addons/openshare/">on the OpenShare page</a>.</p>
<div style="1.5em 0;font-size: 75%"><a href="/resources/stein/images/openshare/openshare14.jpg"><img src="/resources/stein/images/openshare/openshare14.jpg" alt="open and close individual modules in Moodle" /></a>An optional modification allows for OpenShare changes on the fly.</div>
<p>There are several exciting applications of the OpenShare mod:</p>
<ul>
<li>open all or part of live Moodle courses during the semester(s) they are offered; students do not mingle with public unless you so desire</li>
<li>duplicate complete or self-contained Moodle courses and open them up for public self-enrollment</li>
<li>duplicate a live Moodle server with courses intact and serve those courses with self-enrollment</li>
</ul>
<p>One of the most significant advantages of this mod is that it provides an alternative to redundant OER/OCW publishing platforms, and diminishes the need for dedicated OER/OCW staff by putting the power to control the license and release of resources and activities in the hands of the course creators.</p>
<p>From informal conversations and feedback I recognize that the next step is to tackle the problem of <em>getting OER out</em> of Moodle so it is interoperable.</p>
<p>For more info see my <a href="/addons/openshare/">OpenShare documentation &amp; download</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/10/01/openshare-v05-for-moodle-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wii Sensor for Head Tracking</title>
		<link>http://jaredstein.org/2008/05/15/wii-sensor-for-head-tracking/</link>
		<comments>http://jaredstein.org/2008/05/15/wii-sensor-for-head-tracking/#comments</comments>
		<pubDate>Fri, 16 May 2008 03:54:34 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[inventions]]></category>
		<category><![CDATA[johnny chung lee]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[user interfaces]]></category>
		<category><![CDATA[Wii]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/05/15/wii-sensor-for-head-tracking/</guid>
		<description><![CDATA[I normally don&#8217;t like to just link to other people&#8217;s videos, but this blew me away. Though I&#8217;ve checked in on some of Mr. Johnny Chung Lee&#8216;s cool projects with steadycams and user interfaces with the Wii-mote, to reverse the origination of the signals and use the Wii sensor for head tracking provides some pretty [...]]]></description>
			<content:encoded><![CDATA[<p>I normally don&#8217;t like to just link to other people&#8217;s videos, but this blew me away.  Though I&#8217;ve checked in on some of <a href="http://www.cs.cmu.edu/~johnny">Mr. Johnny Chung Lee</a>&#8216;s cool projects with <a href="http://www.littlegreatideas.com/steadycam/">steadycams</a> and <a href="http://youtube.com/watch?v=0awjPUkBXOU">user interfaces with the Wii-mote</a>, to reverse the origination of the signals and use the Wii <em>sensor</em> for head tracking provides some pretty startling results&#8211;and remember, the hardware shown is all consumer technology off-the-shelf&#8211;Lee wrote the software for the tracking and figured out how to adapt the hardware:</p>
<p>Johnny noted that this would be great for gaming, and it&#8217;s true: I imagined the next Metroid game with VR glasses! But I also thought about the impressive educational opportunities, with more engaging simulations of locations and environments.</p>
<p> But that&#8217;s a very simple extension; what ideas for education applications can you come up with?</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/05/15/wii-sensor-for-head-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moodle Open Mod for Sharing Open Educational Resources</title>
		<link>http://jaredstein.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/</link>
		<comments>http://jaredstein.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 18:52:29 +0000</pubDate>
		<dc:creator>Jared Stein</dc:creator>
				<category><![CDATA[lms]]></category>
		<category><![CDATA[moodle]]></category>
		<category><![CDATA[oer]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[mods]]></category>
		<category><![CDATA[ocw]]></category>

		<guid isPermaLink="false">http://flexknowlogy.learningfield.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/</guid>
		<description><![CDATA[After a year-long developer famine, we now have a new Web developer who is assisting us on revivifying the Moodle Open MetaMod project as part of his duties. In a nutshell: the primary goal of the mod is to allow individual resources OR activities within a Moodle course to be &#8220;open&#8221; to either non-authenticated visitors [...]]]></description>
			<content:encoded><![CDATA[<p>After a year-long developer famine, we now have a new Web developer who is assisting us on revivifying the Moodle Open MetaMod project as part of his duties.</p>
<p>In a nutshell: the primary goal of the mod is to allow individual resources OR activities within a Moodle course to be &#8220;open&#8221; to either non-authenticated visitors or a custom role called &#8220;Open User&#8221;.  There are a number of secondary goals related to intellectual property metadata (e.g. Creative Commons). Much of the information posted here is based on the <a href="http://metasolutions.us/resources/moodle/mods/ocw_metamod.php">&#8220;official&#8221; Open MetaMod page at our Meta Web site</a>.</p>
<h3>Project Status</h3>
<ul>
<li>We have recently corrected errors in the 1.8x version for use in Moodle 1.84.</li>
<li>The current version of the mod works only on mySQL, though Mr. Sergio Sama Villanueva at Universidad de Oviedo in Spain has added PostgreSQL support, and so adding that to our install package and testing is a high priority.</li>
<li>Mr. Villanueva has added other features as well, which we plan to test and evaluate.</li>
<li>We also have a short list of usability alterations and feature enhancements to implement.</li>
<li>We are working on an update for 1.9 this spring.  We hope to present that broadly for feedback from the Moodle community, starting at the June Moodle Moot in San Francisco.</li>
<li>We plan to host a Moodle 1.9 public instance with several UVU opencourses, and providing pre-made user accounts for teachers, students, and &#8220;open users&#8221; to test the mod.</li>
</ul>
<h3>Download the Open MetaMod for Moodle 1.8x</h3>
<p>Users interested in testing the latest released beta version of the Open MetaMod may download the following ZIP file:</p>
<p><a href="http://metasolutions.us/resources/moodle/mods/OCW_install_18.zip">Open MetaMod for Moodle 1.8x</a></p>
<p>Note that this version of the mod works only on Moodle 1.8x installations on mySQL. A PostgreSQL version is forthcoming. Additionally, unlike previous versions, this version of the mod does not have an installer, and files must be modified manually. In short: use at your own risk!</p>
<h3>Detailed Overview of the Open MetaMod</h3>
<div><img src="http://metasolutions.us/resources/moodle/images/c_red.png" alt="C" height="11" width="11"><img src="http://metasolutions.us/resources/moodle/images/cc_01.png" alt="CC" height="11" width="11"><img src="http://metasolutions.us/resources/moodle/images/door_shut.png" alt="private" height="11" width="11"><img src="http://metasolutions.us/resources/moodle/images/door_glass.png" alt="shared" height="11" width="11"><img src="http://metasolutions.us/resources/moodle/images/door_open.png" alt="open" height="11" width="11"></div>
<p>Open MetaMod is a modification for the Moodle learning management system that provides instructors and designers with the ability to mark individual Resources <em>or</em> Activities within a Moodle course as &#8220;private&#8221; (only visible for registered students) or &#8220;shared&#8221; (allowing anonymous guest viewing).</p>
<p>A new third option for Moodle Activities, &#8220;open&#8221;, allows <em>registered non-student users</em> to interact with the class in Moodle activities. This is different from &#8220;shared&#8221;, as it allows authenticated users on the Moodle system who are not officially registered for the course to interact with students and instructors on the discussion board, take quizzes, complete activities, contribute to wikis, etc.</p>
<p>Instructors and designers can mark resources or activities as &#8220;Copyright cleared/Creative Commons&#8221; and as &#8220;shared&#8221; either <a href="#individually">individually</a> through the normal course module/block interface, or <a href="#enmasse"><em>en masse</em></a> through the Open Settings in the Administration block. All Creative Commons license types are supported in the latest version of the Open MetaMod</p>
<h4>Tagging Individual Resources/Activities&#8217; Copyright Status</h4>
<p><strong>Note:</strong> The default tag of all resources and activities is <em>copyrighted</em>. This is done intentionally to inhibit the accidental sharing of copyrighted course materials.</p>
<ol>
<li>To tag individual resources or activities with a copyright status, first <strong>enter your Moodle course</strong> and click <strong>Turn editing on</strong>.</li>
<li>Next to each resource or activity you will note either a red &#8220;C&#8221; indicating Copyrighted or a green &#8220;CC&#8221; indicating Copyright Cleared/Creative Commons:
<p><img src="http://metasolutions.us/resources/moodle/mods/images/metamod_001.jpg" alt="Toggling the copyright status"></p>
<ul>
<li><strong>Clicking the red &#8220;C&#8221; or the green &#8220;CC&#8221;</strong> will toggle the copyright status of this resource/activity.</li>
<li>Only resources/activities tagged as &#8220;CC&#8221; are eligible to be &#8220;shared&#8221;.</li>
</ul>
</li>
</ol>
<h4>Marking Individual Resources/Activities as &#8220;Shared&#8221; or &#8220;Private&#8221;</h4>
<p><strong>Note:</strong> Changing the copyright status of a resource marked as &#8220;shared&#8221; from &#8220;CC&#8221; to &#8220;C&#8221; will automatically disable the shared status.</p>
<ul>
<li>After a resource/activity has been tagged as &#8220;CC&#8221;, the grayed-out door icon will become clickable.</li>
<li>&#8220;CC&#8221; resources/activities default to &#8220;private&#8221;, indicated by a brown closed door icon.</li>
<li><strong>Clicking the door icon</strong> will toggle the private/shared status of this resource/activity.<img src="http://metasolutions.us/resources/moodle/mods/images/metamod_002.jpg" alt="Toggling the shared or private status"></li>
<li>&#8220;Shared&#8221; resources are indicated by a glass door icon.<img src="http://metasolutions.us/resources/moodle/mods/images/metamod_003.jpg" alt="a shared resource"></li>
<li>An open door icon, which indicates a fully &#8220;Open&#8221; status.<img src="http://metasolutions.us/resources/moodle/images/door_open.png" alt="open door"></li>
</ul>
<h4>Making Copyright Status and Shared Status Changes <em>En Masse</em></h4>
<p>Tagging and marking individual resources seems pretty onerous, right? Well, this is purposefully the case so that instructors/designers are forced to consider the copyright status of each and every resources or activity.</p>
<p>However, we&#8217;ve also accomodated the need to tag and mark multiple resources and activities simultaneously with the OCW Settings link, found in the Administration block.</p>
<p><img src="http://metasolutions.us/resources/moodle/mods/images/metamod_004.jpg" alt="OCW Settings"></p>
<ul>
<li>To tag a subset of resources/activities as Copyright cleared/Creative Commons, simply <strong>click the checkbox next to the resource/activity group</strong>.<img src="http://metasolutions.us/resources/moodle/mods/images/metamod_005.jpg" alt="Tag a subset as C or CC"></li>
<li>At the top or bottom of the page, click <strong>Save Changes</strong>.</li>
<li>Clicking Save Changes on the Copyright Status page takes you into the Private/Shared Status page.</li>
<li>Only resources/activities marked as &#8220;CC&#8221; will be eligible for &#8220;shared&#8221; or &#8220;open&#8221; status.</li>
<li>To toggle a subset of resources/activities as either &#8220;private&#8221; or &#8220;shared&#8221;, simply <strong>click the appropriate radio button</strong> next to the resource/activity group.<img src="http://metasolutions.us/resources/moodle/mods/images/metamod_006.jpg" alt="Mark a subset as private or shared"></li>
</ul>
<h3>Terminology</h3>
<dl>
<dt>C</dt>
<dd>Copyright <img src="http://metasolutions.us/resources/moodle/images/c_red.png" alt="C" height="11" width="11"> This indicates that a resources or activity is protected by copyright law, and should not be made available to the general public. For one&#8217;s own protection, one might best assume that all resources or activities are <em>de facto</em> copyrighted&lt;./dd&gt;</p>
</dd>
<dt>CC</dt>
<dd>Copyright Cleared or Creative Commons license. <img src="http://metasolutions.us/resources/moodle/images/cc_01.png" alt="CC" height="11" width="11"> This refers generally to the idea that a particular resources is legally eligible to be made available to the general public.  Ensuring the Copyright Cleared or Creative Commons license status of a resource and activity is solely the responsibility of the instructor or course designer.</dd>
<dt>private</dt>
<dd><img src="http://metasolutions.us/resources/moodle/images/door_shut.png" alt="private" height="11" width="11"> Indicates that a resource or activity should only be available to <strong>registered</strong> Moodle users who are also <strong>enrolled</strong> in the course.</dd>
<dt>shared</dt>
<dd><img src="http://metasolutions.us/resources/moodle/images/door_glass.png" alt="shared" height="11" width="11"> Indicates that a resource or activity should be viewable to both <strong>registered</strong> Moodle users who are also <strong>enrolled</strong> in the course as well as anonymous Moodle <strong>guests</strong>.</dd>
<dt>open</dt>
<dd><img src="http://metasolutions.us/resources/moodle/images/door_open.png" alt="open" height="11" width="11"> Indicates that an activity should be fully accessible to <strong>registered</strong> Moodle users regardless of whether or not they are officially <strong>enrolled</strong> in the course. If a course allows &#8220;Guest access&#8221;, anonymous Moodle <strong>guests</strong> may view but not interact with &#8220;open&#8221; activities. <em>Note:</em> This feature is not available in the current version of the Open MetaMod for Moodle.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://jaredstein.org/2008/04/30/project-status-moodle-open-mod-for-open-educational-resources/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

