<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Planet Sakai</title>
	<link rel="self" href="http://planetsakai.org/atom.xml"/>
	<link href="http://planetsakai.org/"/>
	<id>http://planetsakai.org/atom.xml</id>
	<updated>2010-02-09T07:40:27+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry xml:lang="en">
		<title type="html">Sakai 3 Basic LTI Widget Sprint</title>
		<link href="http://sakaiproject.org/blogs/lancespeelmon/sakai-3-basic-lti-widget-sprint"/>
		<id>http://sakaiproject.org/1761 at http://sakaiproject.org</id>
		<updated>2010-02-08T19:43:17+00:00</updated>
		<content type="html">&lt;p&gt;I am pleased to update the &lt;a href=&quot;http://sakaiproject.org/&quot; target=&quot;_blank&quot;&gt;Sakai&lt;/a&gt; community on the outcomes of a two day coding sprint to produce a &lt;a href=&quot;http://www.imsglobal.org/toolsinteroperability2.cfm&quot; target=&quot;_blank&quot;&gt;Basic LTI&lt;/a&gt; consumer widget for &lt;a href=&quot;http://sakaiproject.org/future-directions&quot; target=&quot;_blank&quot;&gt;Sakai 3&lt;/a&gt;. &lt;a href=&quot;http://www.dr-chuck.com/csev-blog/&quot; target=&quot;_blank&quot;&gt;Dr. Charles Severance&lt;/a&gt;, &lt;a href=&quot;http://botimer.net/&quot; target=&quot;_blank&quot;&gt;Noah Botimer&lt;/a&gt;, and I participated in the sprint which the University of Michigan &lt;a href=&quot;https://ctools.umich.edu/portal&quot; target=&quot;_blank&quot;&gt;CTools&lt;/a&gt; team was kind enough to host. Don’t worry if you are not familiar with the Basic LTI specification. It is an up and coming specification from &lt;a href=&quot;http://www.imsglobal.org/&quot; target=&quot;_blank&quot;&gt;IMS&lt;/a&gt; which is currently in draft status. In a nutshell, it allows separate applications to be loosely integrated through an &lt;a href=&quot;http://www.w3schools.com/TAGS/tag_iframe.asp&quot; target=&quot;_blank&quot;&gt;IFRAME&lt;/a&gt;. In the first iteration, known as “Basic” LTI, the remote system trusts some user information from the local system such as the identity of the user and the roles of the user (e.g. Instructor, Learner, etc.), and then automatically provisions accounts and tools appropriately. Essentially, this allows a remote tool to appear in a learning management system (LMS) as if it were a local tool. From an industry perspective, this will allow a standard way for say publishers to provide hosted textbook content to a variety of LMSs. It could also create an environment where we begin to select tools à la carte for inclusion into a local LMS implementation; i.e. selecting the tools that best fit the pedagogy used by the instructor. For a quick primer on LTI, I would suggest watching the video &lt;a href=&quot;http://vimeo.com/8073453&quot; target=&quot;_blank&quot;&gt;IMS Basic Learning Tools Interoperability&lt;/a&gt; by Dr. Chuck.&lt;/p&gt;
&lt;p&gt;So the reason that I wanted to explore LTI was perhaps a bit less lofty. Simply, I wanted to use it as a mechanism to place a Sakai 2 tool into a Sakai 3 site as a widget on a page. The work that has been accomplished to date (see: &lt;a href=&quot;http://lancespeelmon.wordpress.com/2010/01/14/sakai-23-hybrid-status-update/&quot; target=&quot;_blank&quot;&gt;Sakai 2+3 Hybrid Status Update&lt;/a&gt;) has been largely about exposing entire Sakai2 sites in the Sakai 3 portal. This work is still very much applicable, but supports a different use case than what I hoped to accomplish with an LTI widget.  In this case, we want to be able to support a mixture of Sakai 2 and Sakai 3 tools and widgets within the context of a Sakai 3 site. This will help us make the transition from 2–&amp;gt;3 without a “big-bang” approach. For example, Sakai 3 will not have a &lt;a href=&quot;http://confluence.sakaiproject.org/display/PEM/Home&quot; target=&quot;_blank&quot;&gt;PostEm&lt;/a&gt; tool day one, and that should not present a roadblock to Sakai 3 adoption. You should simply be able to place the PostEm from Sakai 2 in your Sakai 3 site along with all of the other native Sakai 3 widgets.&lt;/p&gt;
&lt;p&gt;So after two days of intense coding, we had a widget that could consume a sample Basic LTI Provider. &lt;em&gt;Many thanks again for the help from Dr. Chuck and Noah Botimer! You guys are awesome!&lt;/em&gt; There was certainly more work to do, but the plumbing had been laid and now I could focus on refining working code. Beyond the mechanics of creating an LTI launch, we wanted to add some settings to the widget:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create “virtual tool” registrations so that the same widget could be provisioned many times under different names; i.e. the same widget could be reused for sakai2.calendar, sakai2.postem, sakai2.etc.).&lt;/li&gt;
&lt;li&gt;Allow for administrative control over Basic LTI widget placements; i.e. the system administrator could define default values and/or lock settings that could not be modified by instructors. For example, you could use these locked settings to create the virtual tols described in #1.&lt;/li&gt;
&lt;li&gt;Settings to control user privacy: &lt;ol&gt;
&lt;li&gt;Should the user’s name be released to the remote system (i.e. first, last, full names)?&lt;/li&gt;
&lt;li&gt;Should the user’s email address be released to the remote system?&lt;/li&gt;
&lt;li&gt;Should the user’s user-name be released to the remote system?&lt;/li&gt;
&lt;/ol&gt; &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I spent the next week wrapping up these enhancements to the code. The next step was to invoke the Basic LTI provider that is currently slated for release in Sakai 2.7.0. I mean that was the whole point of this exercise after all!  In doing so, I discovered a bug that cause the Sakai 2 provide to choke – it did not like the “/” character in my context_id variable; see: &lt;a href=&quot;http://jira.sakaiproject.org/browse/BLTI-23&quot; target=&quot;_blank&quot;&gt;BLTI-23&lt;/a&gt;. The shortest path to resolution was rolling my sleeves up and fixing the code. So along the way, I &lt;span&gt;accepted an invitation&lt;/span&gt; got wrangled into becoming a committer on the BLTI project! After fixing BLTI-23, we decided that the length of the Sakai 2 siteId could be a problem as we cannot predict the length of context_id that remote systems will pass, so next came &lt;a href=&quot;http://jira.sakaiproject.org/browse/BLTI-24&quot; target=&quot;_blank&quot;&gt;BLTI-24&lt;/a&gt;. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley mceItem&quot; /&gt; A few commits later, and the we were in business! Yeah! I could display a Sakai 2 within a Sakai 3 site placed as a widget on a page.&lt;/p&gt;
&lt;p&gt;So what is next?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;At least one screencast demonstrating the work to date – probably two. One showing the Basic LTI plumbing and passing of the LTI certification tests, and another showing Sakai2 tool placements in Sakai 3 sites.&lt;/li&gt;
&lt;li&gt;Some of the information in an LTI launch needs to be secured from end users. This will be a chance for me to learn more about access control in Sakai 3; see: &lt;a href=&quot;http://jira.sakaiproject.org/browse/KERN-591&quot; target=&quot;_blank&quot;&gt;KERN-591&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;The widget itself needs some renovation. I will likely copy the existing Remote Content widget and add the LTI settings.&lt;/li&gt;
&lt;li&gt;Create some virtual tools for existing Sakai 2 tools and add these to the out of box Sakai 3 experience.&lt;/li&gt;
&lt;li&gt;Work on the Sakai 2 Basic LTI provider servlet to make it more robust and support the specific Sakai 2/3 integration use cases.&lt;/li&gt;
&lt;/ol&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai 3 Basic LTI Widget Sprint</title>
		<link href=""/>
		<id>http://lancespeelmon.wordpress.com/?p=204</id>
		<updated>2010-02-08T19:39:42+00:00</updated>
		<content type="html">I am pleased to update the Sakai community on the outcomes of a two day coding sprint to produce a Basic LTI consumer widget for Sakai 3. Dr. Charles Severance, Noah Botimer, and I participated in the sprint which the University of Michigan CTools team was kind enough to host. Don't worry if you are not familiar with the Basic LTI specification.&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=lancespeelmon.wordpress.com&amp;blog=418730&amp;post=204&amp;subd=lancespeelmon&amp;ref=&amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Lance Speelmon</name>
			<uri>http://lancespeelmon.wordpress.com</uri>
		</author>
		<source>
			<title type="html">Lance's Thought Stream</title>
			<subtitle type="html">Delivering random thoughts to your desktop...</subtitle>
			<link rel="self" href="http://lancespeelmon.wordpress.com/feed/"/>
			<id>http://lancespeelmon.wordpress.com/feed/</id>
			<updated>2010-02-09T07:40:23+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">New wiki help document</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/02/08/new-wiki-help-document/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=335</id>
		<updated>2010-02-08T17:33:30+00:00</updated>
		<content type="html">&lt;p&gt;The WebLearn team have developed a new help document for the wiki: &lt;a href=&quot;https://weblearn.ox.ac.uk/access/wiki/site/info/local-wiki-help.html&quot;&gt;https://weblearn.ox.ac.uk/access/wiki/site/info/local-wiki-help.html &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It has been authored in the wiki itself.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Community-based 3</title>
		<link href="http://sakaiproject.org/blogs/khomotso/community-based-3"/>
		<id>http://sakaiproject.org/1760 at http://sakaiproject.org</id>
		<updated>2010-02-08T15:16:36+00:00</updated>
		<content type="html">&lt;p&gt;My focus is shifting ever more toward community-based activities that inform and shape Sakai 3. Again, I think Sakai 3 represents for us not just a new codebase and user experience, but also new ways in which the community comes together to produce the product.&lt;br /&gt;
At the end of last week I participated in a two-day &lt;a href=&quot;http://confluence.sakaiproject.org//x/YwEQB&quot; target=&quot;_blank&quot;&gt;virtual working session&lt;/a&gt;&amp;nbsp;with our Teaching and Learning community, led by Josh Baron and David Goodrum. They are in the midst of trying to distill and organize the functional brainstorming that's been worked up over the last several months in a &lt;a href=&quot;http://spreadsheets.google.com/ccc?key=0AlfbHxo2qpHEdHRuSnowVGMwWE9HY1MtVjFpY1dtS0E&amp;hl=en&quot; target=&quot;_blank&quot;&gt;google spreadsheet&lt;/a&gt;. About 20 of us spent 6 or 7 hours a day, two days straight, on the phone together; I admired everyone's stamina, and was heartened by the level of interest. The practical aim of this ongoing effort is to provide clear input for the designers that are trying to shape Sakai's user experience, by laying out a clear and well-rounded picture of many of the core tasks and activities they're trying to serve. At the same time I think this group's effort may be paving the way toward what might soon become a functionally-led roadmap, as they draw rings around fundamental capabilities.&lt;br /&gt;
Last week also brought &lt;a href=&quot;http://docs.google.com/Doc?docid=0ATFQGIpNoV9ZZGdzOTdkYndfMTdmeDQ1cTNmaA&amp;hl=en&quot; target=&quot;_blank&quot;&gt;published results&lt;/a&gt;&amp;nbsp;from a first round of user testing, ably led by Daphne Ogle at UCB, for a set of Sakai 3 wireframes. &amp;nbsp;Several members of the UX community are moving into a new cycle of testing this week as well. One of the benefits of Sakai 3's shift client-side is that one can move from wireframes to prototypes far more quickly, and we can iterate on them relatively rapidly. The hope is that this will prove to be yet more empowering for our user experience and accessibility specialists by providing them direct, frequent and practical influence on Sakai's development. I expect in the next few weeks we'll be refining a community-based practice of feedback loops. If you're at all interested in this work, I'd urge you to join the conversation on the &lt;a href=&quot;http://collab.sakaiproject.org/mailman/listinfo/sakai-ux&quot; target=&quot;_blank&quot;&gt;sakai-ux list&lt;/a&gt;.&amp;nbsp;&lt;br /&gt;
Meanwhile the &lt;a href=&quot;http://confluence.sakaiproject.org//x/24CTAQ&quot; target=&quot;_blank&quot;&gt;Product Council&lt;/a&gt; is going to start wrestling with the question of how it can help usher the Sakai 3 development work toward a completeness and maturity that serves the wider community. Sakai 3 as a whole has just recently &lt;a href=&quot;http://confluence.sakaiproject.org//x/IQsQB&quot; target=&quot;_blank&quot;&gt;formally entered incubation&lt;/a&gt;, and in treating it the council will need to ratchet up existing standards while also fleshing out new sets of objective criteria in cooperation with some of our expert sub-communities. You can be part of this ongoing discussion on the &lt;a href=&quot;http://collab.sakaiproject.org/mailman/listinfo/management&quot; target=&quot;_blank&quot;&gt;management list&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai 3 Incubating</title>
		<link href="http://sakaiproject.org/blogs/khomotso/sakai-3-incubating"/>
		<id>http://sakaiproject.org/1759 at http://sakaiproject.org</id>
		<updated>2010-02-07T22:16:42+00:00</updated>
		<content type="html">&lt;p&gt;This has been some time in coming, but Sakai 3 as a whole is &lt;a href=&quot;http://confluence.sakaiproject.org//x/IQsQB&quot; target=&quot;_blank&quot;&gt;now in incubation&lt;/a&gt;. It wasn't too long ago that &quot;Sakai 3&quot; stood as a category within which other projects were being incubated (e.g. K2, Groups), but we've come to the realization that although this compartmentalization may have made it easier to think about the issues piecemeal, it wouldn't be helpful for producing the earliest iterations of a product that needs to hang together.&lt;/p&gt;
&lt;p&gt;The challenge for the product council in taking Sakai 3 on these terms is obviously the size of the issue. In the 2.7 release decisions the framework and the broader context was already set, and we were looking only at implications if a new piece were to be slotted into place alongside the rest. We have no such luxury with Sakai 3. A release readiness decision in this case is as big as the entire product.&lt;/p&gt;
&lt;p&gt;At the same time we'll be weighing Sakai 3 against new standards, some of which will differ in kind as well as degree from the guidelines that ruled the earlier days of Sakai's history. Developing and clarifying these standards in cooperation with our expert sub-communities should be a central activity for the product council in the months ahead. Now that Sakai 3 is formally in incubation we can begin that work in earnest.&lt;/p&gt;
&lt;p&gt;-Clay&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Python for Informatics - Featured on Creative Commons</title>
		<link href="http://www.dr-chuck.com/csev-blog/000699.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000699.html</id>
		<updated>2010-02-06T02:09:58+00:00</updated>
		<content type="html">My new book (thanks to Allen B. Downey and Jeff Elkner) was featured in the Creative Commons blog: http://creativecommons.org/weblog/entry/20559 &quot;Chuck Severance, clinical professor at the University of Michigan’s School of Information, recently published a new textbook in 11 days because...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">New Programming Language</title>
		<link href=""/>
		<id>http://blog.tfd.co.uk/?p=313</id>
		<updated>2010-02-05T15:35:32+00:00</updated>
		<content type="html">My new programming language that always compiles, never has bugs, has perfect style and is generally delivered on time, (all IMHO) is English. Developers must have a screw loose. Generally they refuse to write anything down, often they say the documentation is in the code, any yet, most of their leasure time is taken up [...]&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=blog.tfd.co.uk&amp;blog=6575768&amp;post=313&amp;subd=ianboston&amp;ref=&amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Ian Boston</name>
			<uri>http://blog.tfd.co.uk</uri>
		</author>
		<source>
			<title type="html">Timefields</title>
			<subtitle type="html">Open Source Open Thought</subtitle>
			<link rel="self" href="http://blog.tfd.co.uk/feed/"/>
			<id>http://blog.tfd.co.uk/feed/</id>
			<updated>2010-02-09T07:40:04+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Administration sites: What can the ”Audit” role do?</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/02/05/administration-sites-what-can-the-audit-role-do/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=321</id>
		<updated>2010-02-05T09:35:54+00:00</updated>
		<content type="html">&lt;p&gt;This is an Administration Site role which give the participant rights to audit or view all sites managed by the Administration Site.&lt;/p&gt;
&lt;p&gt;Specifically, a participant with the &lt;em&gt;audit &lt;/em&gt;role may:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;visit all sites managed by the Administration Site (including unpublished sites)&lt;/li&gt;
&lt;li&gt;read announcements&lt;/li&gt;
&lt;li&gt;read assignments and student submissions&lt;/li&gt;
&lt;li&gt;see the site calendar&lt;/li&gt;
&lt;li&gt;read chat transcripts&lt;/li&gt;
&lt;li&gt;see all files in resources including hidden material&lt;/li&gt;
&lt;li&gt;read the email archive&lt;/li&gt;
&lt;li&gt;see all site member details&lt;/li&gt;
&lt;li&gt;read all wiki pages&lt;/li&gt;
&lt;li&gt;see all &amp;#8217;sign-up&amp;#8217; meeting details&lt;/li&gt;
&lt;li&gt;use Site Stats tool&lt;/li&gt;
&lt;li&gt;see site membership (in Site Info)&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Administration sites: What is the difference between the ”Admin” and ”Member” roles?</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/02/05/administration-sites-what-is-the-difference-between-the-admin-and-member-roles/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=319</id>
		<updated>2010-02-05T09:33:57+00:00</updated>
		<content type="html">&lt;p&gt;The &lt;em&gt;admin &lt;/em&gt;role is more powerful than the &lt;em&gt;member &lt;/em&gt;role.&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;admin &lt;/em&gt;role can visit and &amp;#8216;maintain&amp;#8217; all sites that are managed by the Administration Site. A participant with the &lt;em&gt;member &lt;/em&gt;role has to be a participant within a site in order to visit it it, and (as usual) has to have the &lt;em&gt;maintain &lt;/em&gt;role within a site to be able to configure it. In addition a participant with the &lt;em&gt;member &lt;/em&gt;role in the Administration Site is able to create sites from with any site where they have the &lt;em&gt;maintain &lt;/em&gt;role.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">What is the difference between the ”access”, ”contribute” and ”maintain” roles?</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/02/05/what-is-the-difference-between-the-access-contribute-and-maintain-roles/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=317</id>
		<updated>2010-02-05T09:31:58+00:00</updated>
		<content type="html">&lt;p&gt;The &lt;em&gt;maintain &lt;/em&gt;and &lt;em&gt;contribute &lt;/em&gt;roles are very similar.&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;maintain &lt;/em&gt;role is allowed to change tool permissions and add site participants and create new sites (so long as they are a member of an Administration Site) but otherwise the roles are almost identical. The &lt;em&gt;contribute &lt;/em&gt;role is meant for &lt;strong&gt;staff &lt;/strong&gt;members who are expected to author content, modify forum discussions, make announcements and the like but who are not actually site maintainers.&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;access &lt;/em&gt;role is for student-type access, if &amp;#8217;students&amp;#8217; are required to author content or moderate Forum discussions then the permissions for the access role should be modified in the tool itself.&lt;/p&gt;
&lt;p&gt;In general students should &lt;strong&gt;never &lt;/strong&gt;be given the &lt;em&gt;contribute &lt;/em&gt;role.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai teaching award – free trip to Colorado US!!</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/02/05/sakai-teaching-award-free-trip-to-colorado-us/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=314</id>
		<updated>2010-02-05T09:29:13+00:00</updated>
		<content type="html">&lt;p&gt;Every year the Sakai community holds a teaching award competition. The prize this year includes a free trip to the Sakai conference which will be held in Colorado, Denver. The details are given below.&lt;/p&gt;
&lt;p&gt;The WebLearn team are happy to help anybody who is thinking of submitting an entry: simply get in touch with us via the usual email address: weblearn@oucs.ox.ac.uk&lt;/p&gt;
&lt;h3&gt;The announcement&lt;/h3&gt;
&lt;p&gt;The deadline for the Teaching with Sakai Innovation Award is fast approaching&amp;#8211; March 15. Please consider helping your faculty apply for this award. Innovation is broadly defined, some may call it active learning or student-centered learning. Here&amp;#8217;s an article from yesterday&amp;#8217;s Campus Technology describing one of the past winning courses: &lt;a href=&quot;http://campustechnology.com/articles/2010/02/03/teaching-with-sakai-innovation-award-call-for-entries-open-thru-march-15.aspx&quot;&gt;http://campustechnology.com/articles/2010/02/03/teaching-with-sakai-innovation-award-call-for-entries-open-thru-march-15.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Call for Entries: 2010 Teaching With Sakai Innovation Award (Deadline: Monday, March 15, 2010)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Teaching with Sakai Innovation Award publicly honors successful pedagogical innovation and best practices in teaching and learning in a Sakai environment. Winners will receive a trip to the 2010 Sakai Conference, June 14-17, 2010, in Denver, Colorado, USA to give a featured presentation about their teaching with Sakai. All entries will become part of the OpenEdPractices.org repository of best teaching practices. The award is sponsored by IBM, with additional support from rSmart and John Wiley &amp;amp; Sons.&lt;/p&gt;
&lt;p&gt;For more information about the award and the submission deadline, go to the Teaching with Sakai Innovation Award web site (&lt;a href=&quot;http://openedpractices.org/twsia&quot;&gt;http://openedpractices.org/twsia&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Many thanks,&lt;/p&gt;
&lt;p&gt;Kate Ellis&lt;/p&gt;
&lt;p&gt;Learning Technologies Consultant&lt;br /&gt;
Indiana University Bloomington&lt;br /&gt;
Teaching and Learning Technologies Center&lt;br /&gt;
Wells Library 305 West Tower&lt;br /&gt;
812-855-9024&lt;br /&gt;
&lt;a href=&quot;mailto:kdellis@indiana.edu&quot;&gt;kdellis@indiana.edu&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai 2.6.2 and 2.5.6 maintenance releases available</title>
		<link href="http://sakaiproject.org/news/sakai-262-and-256-maintenance-releases-available"/>
		<id>http://sakaiproject.org/1757 at http://sakaiproject.org</id>
		<updated>2010-02-05T08:38:21+00:00</updated>
		<content type="html">&lt;div class=&quot;field field-type-text field-field-mailing-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Announcements Mailing List        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-sakai-dev-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Sakai Dev Mailing List        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-user-mail-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    off        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Release Date: 29 January 2010&lt;/p&gt;
&lt;p&gt;The Sakai Foundation is pleased to announce the latest maintenance release for Sakai 2.6.x and 2.5.x.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;-----------------------------&lt;br /&gt;The &lt;strong&gt;Sakai 2.6.2 maintenance release&lt;/strong&gt; provides a set of bug fixes that improve upon the Sakai 2.6.1 release. Over 80 issues have been addressed by 2.6.2.&lt;/p&gt;
&lt;p&gt;Fixes have been applied to the following tools/services: assignments, blogger, citations, common, email archive, forums, messages, polls, post'em, preferences, providers, schedule, search, section info, site info, sites, syllabus and worksite setup.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Sakai 2.6.2 Release Documentation&lt;/strong&gt; (Overview, Installation, Configuration, etc.) is on the wiki at: &amp;lt;&lt;a href=&quot;http://confluence.sakaiproject.org/display/DOC/Sakai+2.6&quot;&gt;http://confluence.sakaiproject.org/display/DOC/Sakai+2.6&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sakai 2.6.2 fixes&lt;/strong&gt; are listed with details at: &amp;lt;&lt;a href=&quot;http://confluence.sakaiproject.org/display/DOC/Sakai+2.6.2+Fixes&quot;&gt;http://confluence.sakaiproject.org/display/DOC/Sakai+2.6.2+Fixes&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sakai 2.6.2 Release Artifacts&lt;/strong&gt; (source, binary and demo versions) are available at: &amp;lt;&lt;a href=&quot;http://source.sakaiproject.org/release/2.6.2/&quot;&gt;http://source.sakaiproject.org/release/2.6.2/&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;------------------------------&lt;br /&gt;The &lt;strong&gt;Sakai 2.5.6 maintenance&lt;/strong&gt; release provides a set of bug fixes and security enhancements that improve upon Sakai 2.5.5. Over 130 issues have been addressed in this release.&lt;/p&gt;
&lt;p&gt;Fixes have been applied to the following tools/services: announcements, assignments, blog, calendar, content service, entity service, entitybroker, event service, forums, gradebook, mailtool, messages, post'em, polls, portal, portfolios, profile, providers, reports, resources, roster, rwiki, schedule, search, section info, site info, sites, syllabus, Test &amp;amp; Quizzes, user service, web content, webdav and worksite setup.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Sakai 2.5.6 Release Documentation&lt;/strong&gt; (Overview, Installation, Configuration, etc.) is on the wiki at:&amp;nbsp; &amp;lt;&lt;a href=&quot;http://confluence.sakaiproject.org/display/DOC/Sakai+2.5&quot;&gt;http://confluence.sakaiproject.org/display/DOC/Sakai+2.5&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sakai 2.5.6 fixes&lt;/strong&gt; are listed with details at: &amp;lt;&lt;a href=&quot;http://confluence.sakaiproject.org/display/DOC/Sakai+2.5.6+Fixes&quot;&gt;http://confluence.sakaiproject.org/display/DOC/Sakai+2.5.6+Fixes&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sakai 2.5.6 Release Artifacts&lt;/strong&gt; (source, binary and demo versions) are available at: &amp;lt;&lt;a href=&quot;http://source.sakaiproject.org/release/2.5.6/&quot;&gt;http://source.sakaiproject.org/release/2.5.6/&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;---------------------------------&lt;br /&gt;&lt;strong&gt;Older versions of Sakai&lt;/strong&gt;&lt;br /&gt;Users of &lt;strong&gt;pre-2.5&lt;/strong&gt; versions of Sakai are strongly encouraged to update to the Sakai Community-supported Sakai 2.6.2 or Sakai 2.5.6 releases in order to take advantage of the feature, performance and security enhancements provided by the Sakai 2.5 and Sakai 2.6 series.&lt;br /&gt;&lt;br /&gt;The Sakai open source community develops, tests, and maintains the code for all Sakai releases. For the most current release and the immediate prior release, the Sakai Foundation uses its resources to oversee and manage the development, QA testing, patching, and releasing of incremental numbered versions.&lt;br /&gt;&lt;br /&gt;For earlier versions, the Foundation no longer provides this oversight and coordination of the community contribution to the codebase. This does not mean that these earlier versions are not used and maintained by some institutions in the community, they are. Institutions running an older version may of course continue to do so, applying patches, bug fixes, and enhancements as they wish. These modifications are committed to the Sakai SVN code repository and are available for others to use if they wish. But the Foundation does not coordinate testing or validation of the code changes, and does not create a concomitant roll-up into an incremental release.&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">A run-in with Tomcat SSL and Java keytool</title>
		<link href="http://steve-on-sakai.blogspot.com/2010/02/run-in-with-tomcat-ssl-and-java-keytool_05.html"/>
		<id>tag:blogger.com,1999:blog-7781495706234585669.post-2294156709552765047</id>
		<updated>2010-02-05T03:20:46+00:00</updated>
		<content type="html">I recently had the pleasure of setting up a &lt;a href=&quot;http://www.jasig.org/cas&quot;&gt;Jasig CAS&lt;/a&gt; server on campus. The install went without a hitch. I initially brought it online with a self signed certificate, which was a no brainer as the &lt;a href=&quot;http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html&quot;&gt;Tomcat docs&lt;/a&gt; are great.&lt;br /&gt;&lt;br /&gt;Once we got our SSL certificate though, I realised that the private key and keystore I had initially generated for the self signed certificate wasn't used for the the Certificate Signing Request that the sysadmin's had sent away to the Certificate Authority. So I had a private key for the SSL certificate but the one in the keystore was different. Problem 1. And it's not possible to import a private key into a keystore using keytool because it doesn't have this ability. Problem 2.&lt;br /&gt;&lt;br /&gt;Thankfully, this is fixed in Java 6: &lt;a href=&quot;http://java.sun.com/javase/6/docs/technotes/tools/solaris/keytool.html&quot;&gt;keytool&lt;/a&gt; can now import a PKCS12 file into a keystore. But first you need to get your certificate and private key into that format. You can use OpenSSL for this:&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;openssl pkcs12 -inkey /path/to/private/key -in /path/to/certificate -export -out bundle.p12&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now we have a file called bundle.p12 which we will import into our keystore via keytool:&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;keytool -importkeystore -deststorepass changeit -destkeypass changeit -destkeystore /path/to/keystore -srckeystore /path/to/bundle.p12 -srcstoretype PKCS12 -srcstorepass changeit -alias 1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The alias 1 is required to tell keytool to import the first certificate in the PKCS12 file.&lt;br /&gt;&lt;br /&gt;Finally the Tomcat config:&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;lt;Connector port=&quot;8443&quot; protocol=&quot;HTTP/1.1&quot; SSLEnabled=&quot;true&quot;&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;maxThreads=&quot;150&quot; scheme=&quot;https&quot; secure=&quot;true&quot;&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;clientAuth=&quot;false&quot; sslProtocol=&quot;TLS&quot;&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;keystoreFile=&quot;/path/to/keystore&quot; keystorePass=&quot;changeit&quot; /&amp;gt;&lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/7781495706234585669-2294156709552765047?l=steve-on-sakai.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Steve Swinsburg</name>
			<email>noreply@blogger.com</email>
			<uri>http://steve-on-sakai.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">steve on sakai</title>
			<link rel="self" href="http://steve-on-sakai.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-7781495706234585669</id>
			<updated>2010-02-07T23:20:16+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Apple iPad Review: Awesome and Perfect - From Sobbing to Cheering!</title>
		<link href="http://www.dr-chuck.com/csev-blog/000698.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000698.html</id>
		<updated>2010-02-04T17:44:45+00:00</updated>
		<content type="html">Like most of the nerd world, I sat in my office listening to streamed pirate audio from the Apple announcement of the iPad last week. Like most of the nerd world, I had high hopes for the iPad - I...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Academic Study of Blackboard vs. Sakai at UNC School of Medicine</title>
		<link href="http://feedproxy.google.com/~r/mfeldstein/yyMY/~3/dPyeMTglTUU/"/>
		<id>http://mfeldstein.com/?p=1288</id>
		<updated>2010-02-04T16:49:37+00:00</updated>
		<content type="html">&lt;p&gt;Brian Moynihan has posted his &lt;a href=&quot;http://brianmoynihan.com/files/Moynihan-Sakai_Thesis.pdf&quot;&gt;Masters Thesis on University of North Carolina School of Medicine&amp;#8217;s LMS evaluation&lt;/a&gt;, which eventually came down to a shootout between Blackboard and Unicon-supported Sakai. There&amp;#8217;s a lot that&amp;#8217;s of interest in this paper, particularly around the complexity of higher ed IT environments and the need for integration, but these two paragraphs particularly caught my eye as being relevant to the general LMS evaluation process of many schools:&lt;/p&gt;
&lt;p&gt;(...)&lt;br /&gt;Read the rest of &lt;a href=&quot;http://mfeldstein.com/academic-study-of-blackboard-vs-sakai-at-unc-school-of-medicine/&quot;&gt;Academic Study of Blackboard vs. Sakai at UNC School of Medicine&lt;/a&gt; (1,039 words)&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;© michael.feldstein for &lt;a href=&quot;http://mfeldstein.com&quot;&gt;e-Literate&lt;/a&gt;, 2010. |
&lt;a href=&quot;http://mfeldstein.com/academic-study-of-blackboard-vs-sakai-at-unc-school-of-medicine/&quot;&gt;Permalink&lt;/a&gt; |
&lt;a href=&quot;http://mfeldstein.com/academic-study-of-blackboard-vs-sakai-at-unc-school-of-medicine/#comments&quot;&gt;4 comments&lt;/a&gt; |
Add to
&lt;a href=&quot;http://del.icio.us/post?url=http://mfeldstein.com/academic-study-of-blackboard-vs-sakai-at-unc-school-of-medicine/&amp;title=Academic Study of Blackboard vs. Sakai at UNC School of Medicine&quot;&gt;del.icio.us&lt;/a&gt;
&lt;br /&gt;
Post tags: &lt;a href=&quot;http://mfeldstein.com/tag/blackboard-inc/&quot; rel=&quot;tag&quot;&gt;Blackboard-Inc.&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/sakai/&quot; rel=&quot;tag&quot;&gt;Sakai&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/sakai-project/&quot; rel=&quot;tag&quot;&gt;Sakai Project&lt;/a&gt;&lt;br /&gt;
&lt;/small&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=dPyeMTglTUU:dGC8NLQhWPk:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=dPyeMTglTUU:dGC8NLQhWPk:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=dPyeMTglTUU:dGC8NLQhWPk:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=dPyeMTglTUU:dGC8NLQhWPk:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?i=dPyeMTglTUU:dGC8NLQhWPk:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=dPyeMTglTUU:dGC8NLQhWPk:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=dPyeMTglTUU:dGC8NLQhWPk:l6gmwiTKsz0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=l6gmwiTKsz0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/mfeldstein/yyMY/~4/dPyeMTglTUU&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Michael Feldstein</name>
			<uri>http://mfeldstein.com</uri>
		</author>
		<source>
			<title type="html">e-Literate</title>
			<subtitle type="html">What Michael Feldstein Is Learning About Online Learning...Online</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/mfeldstein/yyMY"/>
			<id>http://feeds.feedburner.com/mfeldstein/yyMY</id>
			<updated>2010-02-08T22:40:30+00:00</updated>
			<rights type="html">©</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">2010 Sakai Conference - tell us who you want for Keynote Speaker</title>
		<link href="http://sakaiproject.org/blogs/pieter-hartsook/2010-sakai-conference-tell-us-who-you-want-keynote-speaker"/>
		<id>http://sakaiproject.org/1756 at http://sakaiproject.org</id>
		<updated>2010-02-04T08:17:37+00:00</updated>
		<content type="html">&lt;p&gt;The Conference Program Committee has come up with a list of candidates for Keynote Speaker. We'd like you to tell us who &lt;strong&gt;you&lt;/strong&gt; would like to hear speak at the conference. Please take a couple of minutes and mark your 1st, 2nd, and 3rd choices on this online survey &amp;lt;&lt;a href=&quot;http://www.surveymonkey.com/s/FNQP2NG&quot; target=&quot;_blank&quot;&gt;http://www.surveymonkey.com/s/FNQP2NG&lt;/a&gt;&amp;gt;.&lt;/p&gt;
&lt;p&gt;We appreciate your input.&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">A Serendipitous Social Media Story.</title>
		<link href="http://feedproxy.google.com/~r/AnythingInstructional/~3/p9j8jPnhDg8/serendipitous-social-media-story.html"/>
		<id>tag:blogger.com,1999:blog-6063199541711503109.post-9189831746992212596</id>
		<updated>2010-02-04T00:37:15+00:00</updated>
		<content type="html">You know how we always think of the Internet as a web of facts that are interconnected to one another? Well, here's a story of random interconnected stuff that led me to step out of my comfort zone. Warning: This blog post jumps from one thing to the other a lot.

About 2 months ago, I finally got rid of my dino-phone (circa 2007) to make a leap into 2009 and bought a Motorola Droid (I know, the 
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/qnmfNlUWBuN3cED8b6HCKX4dGWY/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/qnmfNlUWBuN3cED8b6HCKX4dGWY/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/qnmfNlUWBuN3cED8b6HCKX4dGWY/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/qnmfNlUWBuN3cED8b6HCKX4dGWY/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/AnythingInstructional/~4/p9j8jPnhDg8&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Mathieu Plourde</name>
			<email>noreply@blogger.com</email>
			<uri>http://anythinginstructional.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">Anything Instructional</title>
			<subtitle type="html">Instructional Design, Information Technology, Learning Management Systems, Web 2.0, Usability, and Everything in Between.</subtitle>
			<link rel="self" href="http://anythinginstructional.blogspot.com/feeds/posts/default"/>
			<id>tag:blogger.com,1999:blog-6063199541711503109</id>
			<updated>2010-02-07T01:40:18+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">the JISC Institutional Innovation Exchange at Birmingham</title>
		<link href="http://academic-networking.blogspot.com/2010/02/jisc-institutional-innovation-exchange.html"/>
		<id>tag:blogger.com,1999:blog-3549360710060693111.post-3794919972556998135</id>
		<updated>2010-02-03T21:01:24+00:00</updated>
		<content type="html">On Thursday 28th and Friday 29th of January, Laura and Anne-Sophie went off to Birmingham for the JISC Institutional Innovation Exchange meeting.&lt;br /&gt;&lt;br /&gt;One of the activities was the Trade Fair... With 7 sold products, we didn't do such a bad job! Thanks for all who bought our products. For those who would still like to have a look at them, you can find all the information you need below.&lt;br /&gt;&lt;br /&gt;Overall, it was good to see all projects and people again, and to find out what progress they made.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/3549360710060693111-3794919972556998135?l=academic-networking.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Anne-Sophie</name>
			<email>noreply@blogger.com</email>
			<uri>http://academic-networking.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">JISC Academic Networking</title>
			<subtitle type="html">This project aims to bring some of the affordances of consumer social networks to teaching and learning, and will deliver applications within CamTools, our Sakai-based VLE. This is an informal blog by the project team at CARET, University of Cambridge.</subtitle>
			<link rel="self" href="http://academic-networking.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-3549360710060693111</id>
			<updated>2010-02-09T07:40:08+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">DEADLINE:  EuroSakai Early Bird registration ends Feb. 15</title>
		<link href="http://sakaiproject.org/news/deadline-eurosakai-early-bird-registration-ends-feb-15"/>
		<id>http://sakaiproject.org/1755 at http://sakaiproject.org</id>
		<updated>2010-02-03T20:09:15+00:00</updated>
		<content type="html">&lt;div class=&quot;field field-type-text field-field-mailing-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Announcements Mailing List        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-sakai-dev-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Sakai Dev Mailing List        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-user-mail-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Sakai User Mailing List        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Information on the conference can be found at &lt;a href=&quot;http://sakaiproject.org/sakai-european-regional-conference-2010&quot; target=&quot;_blank&quot;&gt;http://sakaiproject.org/sakai-european-regional-conference-2010&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;Remember to &lt;strong&gt;register before 15th of February&lt;/strong&gt; to get the benefit of the Early Bird Registration Fee at &lt;a href=&quot;https://www.upv.es/pls/sosak/sic_eusakai.REGISTRATION?p_vista=poliformat&amp;P_IDIOMA=i&quot; target=&quot;_blank&quot;&gt;https://www.upv.es/pls/sosak/sic_eusakai.REGISTRATION?p_vista=poliformat&amp;amp;P_IDIOMA=i&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Schedule for 3rd European Conference that will be held in Valencia, Spain from 1 to 3rd of March 2010 is NOW available at &lt;a href=&quot;http://www.upv.es/var/eurosakai_schedule.html&quot; title=&quot;http://www.upv.es/var/eurosakai_schedule.html&quot;&gt;http://www.upv.es/var/eurosakai_schedule.html&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;If you have any questions, doubts, or you just need more information, contact &lt;a href=&quot;mailto:eurosakai2010@upv.es&quot;&gt;eurosakai2010@upv.es&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;WE HOPE TO SEE ALL OF YOU IN VALENCIA&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Open Ed 2010 Call for Papers open thru May 15</title>
		<link href="http://sakaiproject.org/news/open-ed-2010-call-papers-open-thru-may-15"/>
		<id>http://sakaiproject.org/1754 at http://sakaiproject.org</id>
		<updated>2010-02-03T19:39:14+00:00</updated>
		<content type="html">&lt;div class=&quot;field field-type-text field-field-mailing-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    None        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-sakai-dev-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    off        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-user-mail-list&quot;&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Sakai User Mailing List        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The &lt;a href=&quot;http://openedconference.org/2010/&quot; target=&quot;_blank&quot;&gt;Open Ed conference&lt;/a&gt; theme for 2010 is &lt;em&gt;OER: Impact and Sustainability&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;November 2-4, 2010, the seventh annual Open Education Conference moves to Barcelona for its first convening outside of North America! The 2010 conference venue is CosmoCaixa, designated Europe’s best science museum in 2006.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://openedconference.org/2010/call-for-papers&quot; target=&quot;_blank&quot;&gt;The Call for Papers&lt;/a&gt; is open through May 15. Submit your paper now! &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Open Education Conference has been described as “the annual reunion of the open education family.” Each year the conference serves as the world’s premiere venue for research related to open education, while simultaneously creating the most friendly and energetic atmosphere you’ll find at any academic conference.&lt;/p&gt;
&lt;p&gt;Open Ed 2010 is jointly organized by the Open University of Catalunya, the Open University of the Netherlands, and the David O. McKay School of Education at Brigham Young University&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Assignments 2 Incubating</title>
		<link href="http://sakaiproject.org/blogs/khomotso/assignments-2-incubating"/>
		<id>http://sakaiproject.org/1753 at http://sakaiproject.org</id>
		<updated>2010-02-02T19:05:37+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://confluence.sakaiproject.org//x/uAcQB&quot; target=&quot;_blank&quot;&gt;Assignments 2&lt;/a&gt; has entered incubation.&lt;/p&gt;
&lt;p&gt;As many of you know, assignments 2 has been baking for some time at IU. Although it's another unavoidable case of a project not entering incubation until it's rather far along in its development - and so our Sakai 2 precedents may mislead the casual observer about &lt;a href=&quot;http://confluence.sakaiproject.org//x/sgTtAw&quot; target=&quot;_blank&quot;&gt;the process&lt;/a&gt; - I'm still happy to have it incubated so far in advance of any release decisions.&amp;nbsp;More room to breathe and do the right thing.&lt;/p&gt;
&lt;p&gt;So far I see a &lt;a href=&quot;http://confluence.sakaiproject.org//x/DADKAg&quot; target=&quot;_blank&quot;&gt;feature-driven&lt;/a&gt; development process which is then polished with usability testing. I think the Product Council could use the occasion to flesh out our review criteria, eg. those for accessibility with the help of the WG already making &lt;a href=&quot;http://confluence.sakaiproject.org//x/2AoAB&quot; target=&quot;_blank&quot;&gt;big strides&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I'd also like to point out the fronts along which assignments 2 has been compelled to engage - with gradebook and a variety of helpers, with OSP, TurnItIn, and maybe others. This may be a challenge for UX coherence in Sakai 2 contexts, but I think it helps confirm that the underlying capability is pivotal, and should inform the Sakai 3 UX at an early stage, provided we can trace it back to its essentials well enough. As with many things in Sakai 3, it won't be enough to first develop a tool and then look for horizontal integration points after the fact.&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai in Small &quot;Schools&quot;</title>
		<link href="http://sakaiproject.org/blogs/michael-korcuska/sakai-small-schools"/>
		<id>http://sakaiproject.org/1751 at http://sakaiproject.org</id>
		<updated>2010-01-31T23:14:54+00:00</updated>
		<content type="html">&lt;p&gt;I was pleased to see Michael Feldstein's &lt;a href=&quot;http://feedproxy.google.com/%7Er/mfeldstein/yyMY/%7E3/bn0LSuABZtA/&quot;&gt;blog post&lt;/a&gt; about Sakai at smaller organizations (he also alluded to the strength of Sakai's teacing and learning leadership). Coincidentally, that's exactly what I was planning to blog about.&lt;/p&gt;
&lt;p&gt;I've been spending some time reaching out to Sakai users that I don't typically speak to on a regular basis to find out how things are going with their Sakai experience. And it seems that a bunch of these conversations have been with liberal arts colleges and other smaller institutitions. They are all doing extremely well with Sakai, typically but not always, in conjunction with a Sakai Commercial Affiliate that provides hosting and support. Here are a few that I've spoken with recently:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://sakai.allegheny.edu/portal/&quot;&gt;Allegheny College&lt;/a&gt;, a liberal arts college in western Pennsylvania with 2100 sutdents. Hosted by &lt;a href=&quot;http://www.longsight.com/&quot; target=&quot;_blank&quot;&gt;The Longsight Group&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sakai.wlu.edu/portal/&quot;&gt;Washington and Lee&lt;/a&gt;, a liberal arts college in Virginia with approximately 2100 students as well. Also hosted by Longsight.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://aims.neoucom.edu/portal/&quot;&gt;Northeastern Ohio Universities College of Medicine&lt;/a&gt; (NEOUCOM), a medical school that servers several universities and has an enrollment of less than 1000. Longsight again (I'm detecting a pattern...hmmm).&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sakai.uarts.edu/portal&quot;&gt;The University of the Arts&lt;/a&gt; in Philadelphia with its 2400 students have been using Sakai for a long time. They are self-hosted.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The experiences of these organizations clearly illustrate that Sakai isn't only for large research universities. I know the commercial affiliates are working to get these stories out. I hope we will see folks from some of these schools present at the &lt;a href=&quot;http://sakaiproject.org/static/conference-2010.htm&quot; target=&quot;_blank&quot;&gt;upcoming 2010 Sakai Conference&lt;/a&gt; and, of course, at other conferences where those considering a new system might hear what they have to say.&lt;/p&gt;
&lt;p&gt;(FWIW...I put &quot;schools&quot; in quotes because in the UK, &quot;schools&quot; fairly unambiguously refers to primary/secondary education while in the US it can refer to any type of educational institution. Here I'm obviously using it in the US-sense))&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai, Small Schools, and Pedagogy</title>
		<link href="http://feedproxy.google.com/~r/mfeldstein/yyMY/~3/bn0LSuABZtA/"/>
		<id>http://mfeldstein.com/?p=1284</id>
		<updated>2010-01-31T19:25:24+00:00</updated>
		<content type="html">&lt;p&gt;&lt;strong&gt;&lt;em&gt;Update:&lt;span&gt; Michael Korcuska has &lt;a href=&quot;http://sakaiproject.org/blogs/michael-korcuska/sakai-small-schools&quot;&gt;a blog post&lt;/a&gt; up about some small colleges that have been successful with Sakai.&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Sakai has a reputation for being technology-driven and focused on the needs of large research universities. There was some truth to both of those claims in the early years of the project. However, the recent election of the Sakai Foundation Board Chair and Vice Chair are strong indicators that neither claim is true anymore. The community recently elected the Sakai Foundation board members and the board members, in turn, elected Josh Baron and Maggie McVay Lynch as Chair and Vice Chair, respectively.&lt;/p&gt;
&lt;p&gt;Both Josh and Maggie come from small schools. Josh represents Marist College, a small liberal arts school in Poughkeepsie, NY with about 4,200 undergraduates. Maggie represents College of the Redwoods, a community college in Eureka, CA with 6,774 students. These are not tiny schools, but neither are they huge. Both of these schools hire an external support company (rSmart) rather than managing their Sakai instances with their own IT department.&lt;/p&gt;
&lt;p&gt;Equally importantly, both Josh and Maggie are teachers and not technologists. Both have advanced degrees in education. Both run their educational technology programs at their respective schools. And both came to prominence within the Sakai community for their contributions to developing the Teaching and Learning committee and, more generally, bringing pedagogy to the forefront of the Sakai community&amp;#8217;s work and focus.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://mfeldstein.com/ive-been-elected-to-the-sakai-foundation-board-of-directors/&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link: I&amp;#8217;ve Been Elected to the Sakai Foundation Board of Directors&quot;&gt;I&amp;#8217;ve Been Elected to the Sakai Foundation Board of Directors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://mfeldstein.com/sakai-learning-capabilities-brainstorming/&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link: Sakai Learning Capabilities Brainstorming&quot;&gt;Sakai Learning Capabilities Brainstorming&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://mfeldstein.com/advice-for-small-schools-on-the-lms-selection-process/&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link: Advice for Small Schools on the LMS Selection Process&quot;&gt;Advice for Small Schools on the LMS Selection Process&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;© michael.feldstein for &lt;a href=&quot;http://mfeldstein.com&quot;&gt;e-Literate&lt;/a&gt;, 2010. |
&lt;a href=&quot;http://mfeldstein.com/sakai-small-schools-and-pedagogy/&quot;&gt;Permalink&lt;/a&gt; |
&lt;a href=&quot;http://mfeldstein.com/sakai-small-schools-and-pedagogy/#comments&quot;&gt;One comment&lt;/a&gt; |
Add to
&lt;a href=&quot;http://del.icio.us/post?url=http://mfeldstein.com/sakai-small-schools-and-pedagogy/&amp;title=Sakai, Small Schools, and Pedagogy&quot;&gt;del.icio.us&lt;/a&gt;
&lt;br /&gt;
Post tags: &lt;a href=&quot;http://mfeldstein.com/tag/josh-baron/&quot; rel=&quot;tag&quot;&gt;Josh Baron&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/maggie-mcvay-lynch/&quot; rel=&quot;tag&quot;&gt;Maggie McVay Lynch&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/sakai/&quot; rel=&quot;tag&quot;&gt;Sakai&lt;/a&gt;&lt;br /&gt;
&lt;/small&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=bn0LSuABZtA:J2UsnyRMoos:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=bn0LSuABZtA:J2UsnyRMoos:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=bn0LSuABZtA:J2UsnyRMoos:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=bn0LSuABZtA:J2UsnyRMoos:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?i=bn0LSuABZtA:J2UsnyRMoos:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=bn0LSuABZtA:J2UsnyRMoos:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=bn0LSuABZtA:J2UsnyRMoos:l6gmwiTKsz0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=l6gmwiTKsz0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/mfeldstein/yyMY/~4/bn0LSuABZtA&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Michael Feldstein</name>
			<uri>http://mfeldstein.com</uri>
		</author>
		<source>
			<title type="html">e-Literate</title>
			<subtitle type="html">What Michael Feldstein Is Learning About Online Learning...Online</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/mfeldstein/yyMY"/>
			<id>http://feeds.feedburner.com/mfeldstein/yyMY</id>
			<updated>2010-02-08T22:40:30+00:00</updated>
			<rights type="html">©</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Mellon Foundation RIT Project Concludes a Success</title>
		<link href="http://feedproxy.google.com/~r/mfeldstein/yyMY/~3/cti9Km2Tl0g/"/>
		<id>http://mfeldstein.com/?p=1280</id>
		<updated>2010-01-31T18:59:49+00:00</updated>
		<content type="html">&lt;p&gt;&lt;em&gt;This is a guest post by Jim Farmer. Apologies to Jim; this has been sitting in my inbox for a couple of weeks now.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;“The Andrew W. Mellon Foundation is closing a grant program that financed a series of high-profile university software projects, leaving some worried about a vacuum of support for open-source ventures.”&lt;/p&gt;
&lt;p&gt;- Marc Parry, “In Potential Blow to Open-Source Software, Mellon Foundation Closes Grant Program,” The Chronicle of Higher Education, 5 January 2010&lt;/p&gt;
&lt;p&gt;A closer analysis suggests the Mellon Foundation’s “Research in Information Technology” had already met its objectives. This announcement should be an opportunity for reflection and appreciation of what was accomplished.&lt;/p&gt;
&lt;p&gt;(...)&lt;br /&gt;Read the rest of &lt;a href=&quot;http://mfeldstein.com/mellon-foundation-rit-project-concludes-a-success/&quot;&gt;Mellon Foundation RIT Project Concludes a Success&lt;/a&gt; (748 words)&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;© michael.feldstein for &lt;a href=&quot;http://mfeldstein.com&quot;&gt;e-Literate&lt;/a&gt;, 2010. |
&lt;a href=&quot;http://mfeldstein.com/mellon-foundation-rit-project-concludes-a-success/&quot;&gt;Permalink&lt;/a&gt; |
&lt;a href=&quot;http://mfeldstein.com/mellon-foundation-rit-project-concludes-a-success/#comments&quot;&gt;No comment&lt;/a&gt; |
Add to
&lt;a href=&quot;http://del.icio.us/post?url=http://mfeldstein.com/mellon-foundation-rit-project-concludes-a-success/&amp;title=Mellon Foundation RIT Project Concludes a Success&quot;&gt;del.icio.us&lt;/a&gt;
&lt;br /&gt;
Post tags: &lt;a href=&quot;http://mfeldstein.com/tag/andrew-w-mellon-foundation/&quot; rel=&quot;tag&quot;&gt;Andrew W. Mellon Foundation&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/chris-mackie/&quot; rel=&quot;tag&quot;&gt;Chris Mackie&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/ira-fuchs/&quot; rel=&quot;tag&quot;&gt;Ira Fuchs&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/jstor/&quot; rel=&quot;tag&quot;&gt;JSTOR&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/kuali-foundation/&quot; rel=&quot;tag&quot;&gt;Kuali Foundation&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/marc-parry/&quot; rel=&quot;tag&quot;&gt;Marc Parry&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/sakai/&quot; rel=&quot;tag&quot;&gt;Sakai&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/sakai-project/&quot; rel=&quot;tag&quot;&gt;Sakai Project&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/the-chronicle-of-higher-education/&quot; rel=&quot;tag&quot;&gt;The Chronicle of Higher Education&lt;/a&gt;, &lt;a href=&quot;http://mfeldstein.com/tag/uportal/&quot; rel=&quot;tag&quot;&gt;UPortal&lt;/a&gt;&lt;br /&gt;
&lt;/small&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=cti9Km2Tl0g:sFW3kp3a0So:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=cti9Km2Tl0g:sFW3kp3a0So:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=cti9Km2Tl0g:sFW3kp3a0So:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=cti9Km2Tl0g:sFW3kp3a0So:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?i=cti9Km2Tl0g:sFW3kp3a0So:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=cti9Km2Tl0g:sFW3kp3a0So:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=cti9Km2Tl0g:sFW3kp3a0So:l6gmwiTKsz0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=l6gmwiTKsz0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/mfeldstein/yyMY/~4/cti9Km2Tl0g&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Michael Feldstein</name>
			<uri>http://mfeldstein.com</uri>
		</author>
		<source>
			<title type="html">e-Literate</title>
			<subtitle type="html">What Michael Feldstein Is Learning About Online Learning...Online</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/mfeldstein/yyMY"/>
			<id>http://feeds.feedburner.com/mfeldstein/yyMY</id>
			<updated>2010-02-08T22:40:30+00:00</updated>
			<rights type="html">©</rights>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Abstract: Teaching Informatics to Everyone: The End of Dilbert</title>
		<link href="http://www.dr-chuck.com/csev-blog/000697.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000697.html</id>
		<updated>2010-01-29T15:29:58+00:00</updated>
		<content type="html">People will look at old Dilbert comics in 50 years and will no longer understand why they are funny. The word &quot;nerd&quot; will simply be a &quot;funny arcane word&quot; like the word &quot;flapper&quot;. In this presentation we look past the...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Non-functional</title>
		<link href="http://feedproxy.google.com/~r/mfeldstein/yyMY/~3/M5JjsA2CiTo/"/>
		<id>http://mfeldstein.com/?p=1278</id>
		<updated>2010-01-29T14:44:06+00:00</updated>
		<content type="html">&lt;p&gt;You may not have noticed, but &lt;em&gt;e-Literate&lt;/em&gt; had a brief outage yesterday which was fixed for me by the good folks at my ISP, SiteGround. Meanwhile,&lt;em&gt; e-Literate&lt;/em&gt;&amp;#8217;s operator (i.e., me) has been experiencing a longer outage due to a nasty bout of bronchitis. I am starting to feel slightly more human today and will begin catching up on the backblog this weekend, starting with a treat&amp;#8212;a guest post from our old friend Jim Farmer. I&amp;#8217;ll also have a couple of shorter, newsy posts, after which I hope to get back to writing some decent-sized pieces.&lt;/p&gt;
&lt;p&gt;Sorry for the long quiet period.&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;© michael.feldstein for &lt;a href=&quot;http://mfeldstein.com&quot;&gt;e-Literate&lt;/a&gt;, 2010. |
&lt;a href=&quot;http://mfeldstein.com/non-functional/&quot;&gt;Permalink&lt;/a&gt; |
&lt;a href=&quot;http://mfeldstein.com/non-functional/#comments&quot;&gt;No comment&lt;/a&gt; |
Add to
&lt;a href=&quot;http://del.icio.us/post?url=http://mfeldstein.com/non-functional/&amp;title=Non-functional&quot;&gt;del.icio.us&lt;/a&gt;
&lt;br /&gt;
Post tags: &lt;br /&gt;
&lt;/small&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=M5JjsA2CiTo:yu4_Vv4skFI:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=M5JjsA2CiTo:yu4_Vv4skFI:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=M5JjsA2CiTo:yu4_Vv4skFI:7Q72WNTAKBA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=7Q72WNTAKBA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=M5JjsA2CiTo:yu4_Vv4skFI:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?i=M5JjsA2CiTo:yu4_Vv4skFI:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=M5JjsA2CiTo:yu4_Vv4skFI:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=qj6IDK7rITs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?a=M5JjsA2CiTo:yu4_Vv4skFI:l6gmwiTKsz0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/mfeldstein/yyMY?d=l6gmwiTKsz0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/mfeldstein/yyMY/~4/M5JjsA2CiTo&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Michael Feldstein</name>
			<uri>http://mfeldstein.com</uri>
		</author>
		<source>
			<title type="html">e-Literate</title>
			<subtitle type="html">What Michael Feldstein Is Learning About Online Learning...Online</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/mfeldstein/yyMY"/>
			<id>http://feeds.feedburner.com/mfeldstein/yyMY</id>
			<updated>2010-02-08T22:40:30+00:00</updated>
			<rights type="html">©</rights>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Abstract: Building Real Teaching Tools for any LMS Using IMS Basic LTI</title>
		<link href="http://www.dr-chuck.com/csev-blog/000696.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000696.html</id>
		<updated>2010-01-29T05:57:21+00:00</updated>
		<content type="html">his presentation will cover IMS Basic Learning Tools Interoperability and show how a tool or element of content which supports IMS Basic LTI can be quickly and easily integrated into Sakai, Moodle, BlackBoard, WebCT or Desire2Learn. IMS Basic LTI provides...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Old WebLearn: Test Building will become read only from 8th Feb</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/28/tb3/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=307</id>
		<updated>2010-01-28T17:15:41+00:00</updated>
		<content type="html">&lt;p&gt;&lt;strong&gt;It will no longer be possible to create new material in the old WebLearn Test Building from 8 Feb 2010&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;As part of the migration to the new WebLearn, it is our intention to stop allowing the creation of new materials in Old WebLearn&amp;#8217;s Test Building from Monday 8 Feb 2010, Wk4 HT2010. This is the first phase of the process of closing the Test Building.&lt;/p&gt;
&lt;p&gt;This will only affect you if you wish to &lt;strong&gt;create&lt;/strong&gt; rooms, webpages or other resources, or upload files in the Test Building.&lt;/p&gt;
&lt;p&gt;It will not have any impact if you or your students or colleagues merely &lt;strong&gt;access&lt;/strong&gt; material hosted in the Test Building, although you should be aware that the Test Building will be closed on 21 June 2010 (Wk9 TT2010).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What should I do if this affects me?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We suggest creating your material within your Departmental Floor instead. If you do not have permission to do this then you should speak to your Floor Manager. If this proves impossible then you could consider using your personal &amp;#8216;MyWebLearn&amp;#8217; area instead.&lt;/p&gt;
&lt;p&gt;If you have any questions then please contact &lt;a href=&quot;mailto:weblearn@oucs.ox.ac.uk&quot;&gt;weblearn@oucs.ox.ac.uk&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What will happen when the Test Building closes?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;All material in the Test Building become inaccessible on 21 June 2010 (Wk9 TT2010), it is your responsibility to move anything that you want to keep by this date.&lt;/p&gt;
&lt;p&gt;We would recommend that you either move the material elsewhere in old WebLearn or into new WebLearn. There is an ITLP training course outlining the process of moving material into new WebLearn, to book a place, visit: &lt;a href=&quot;http://www.oucs.ox.ac.uk/itlp/courses/detail/TOVC&quot;&gt;http://www.oucs.ox.ac.uk/itlp/courses/detail/TOVC&lt;/a&gt;. You may also &lt;a href=&quot;https://weblearn.ox.ac.uk/access/content/group/e05e05d2-f4ce-4a24-a008-031832bd1509/WebLearn/Course_Book_WebLearn_TOVB_Fundamentals.pdf&quot;&gt;download the &amp;#8216;Migration&amp;#8217; course booklet&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you have any questions then please contact &lt;a href=&quot;mailto:weblearn@oucs.ox.ac.uk&quot;&gt;weblearn@oucs.ox.ac.uk&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Contributing to 'Wicket By Example'</title>
		<link href="http://steve-on-sakai.blogspot.com/2010/01/contributing-to-wicket-by-example.html"/>
		<id>tag:blogger.com,1999:blog-7781495706234585669.post-8988284212726999518</id>
		<updated>2010-01-28T02:45:37+00:00</updated>
		<content type="html">I'm now a contributor on&amp;nbsp;&lt;a href=&quot;http://wicketbyexample.com/&quot;&gt;Wicket By Example&lt;/a&gt;&amp;nbsp;and have just posted my first article about using the Wicket ObjectAutoCompleteTextField component from the WicketStuff library.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://wicketbyexample.com/autocomplete-with-an-object/&quot;&gt;http://wicketbyexample.com/autocomplete-with-an-object/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Check it out!&lt;br /&gt;&lt;br /&gt;This article was based on my experience creating the private messaging component in &lt;a href=&quot;http://confluence.sakaiproject.org/display/PROFILE/Profile2&quot;&gt;Profile2&lt;/a&gt;&amp;nbsp;where you get a list of your connections and can narrow down that list by typing the name of a connection you want to send a message to.&lt;br /&gt;&lt;br /&gt;You can try out the messaging feature of Profile2 on the &lt;a href=&quot;http://nightly2.sakaiproject.org:8085/portal&quot;&gt;nightly trunk+experimental server&lt;/a&gt;&amp;nbsp;hosted by the &lt;a href=&quot;http://sakaiproject.org/&quot;&gt;Sakai Foundation&lt;/a&gt; (rebuilt daily at 2.30am Eastern US).&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/7781495706234585669-8988284212726999518?l=steve-on-sakai.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Steve Swinsburg</name>
			<email>noreply@blogger.com</email>
			<uri>http://steve-on-sakai.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">steve on sakai</title>
			<link rel="self" href="http://steve-on-sakai.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-7781495706234585669</id>
			<updated>2010-02-07T23:20:16+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Portfolios, Used Well, Are Transformational</title>
		<link href="http://threecanoes.com/blogs/janice/portfolios-used-well-are-transformational"/>
		<id>http://threecanoes.com/31 at http://threecanoes.com</id>
		<updated>2010-01-27T15:00:00+00:00</updated>
		<content type="html">&lt;p&gt;My entire career has been about the enhancement of learning and teaching. It began in graduate school when I noticed that how we teach does not necessarily match what we say we believe about learning. It was as if we unconsciously imitate the teaching we have received, rather than exploring the learning we yearn for.&lt;/p&gt;
&lt;p&gt;In the early 90s I became a business expert for what was to become the &lt;a href=&quot;http://osportfolio.rsmart.com/&quot;&gt;Open Source Portfolio&lt;/a&gt; (OSP) in &lt;a href=&quot;http://sakaiproject.org/&quot;&gt;Sakai&lt;/a&gt;. Since then I have interacted with a great many institutions experimenting, succeeding, and in some cases failing, with ePortfolios. The failures seem to happen when leadership expects the tool to create the transformation, rather than understanding that transforming how we foster learning requires continued strategizing for change.&lt;/p&gt;
&lt;p&gt;Since the 1950s and more recently on &lt;a href=&quot;http://www.npr.org/templates/story/story.php?storyId=4538138&quot;&gt;National Public Radio&lt;/a&gt;, a series of &lt;a href=&quot;http://thisibelieve.org/&quot;&gt;This I Believe&lt;/a&gt; essays have helped us separate what truly matters from what does not.&lt;/p&gt;
&lt;p class=&quot;rtecenter&quot;&gt;&lt;strong&gt;I believe that portfolios, used well, are transformational.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://threecanoes.com/blogs/janice/portfolios-used-well-are-transformational&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Janice Smith</name>
			<uri>http://threecanoes.com/blogs/janice</uri>
		</author>
		<source>
			<title type="html">Janice's blog</title>
			<link rel="self" href="http://threecanoes.com/blogs/janice/feed"/>
			<id>http://threecanoes.com/blogs/janice/feed</id>
			<updated>2010-02-09T07:40:17+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">WebLearn newsletter 26-Jan-10</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/26/weblearn-newsletter-26-jan-10/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=297</id>
		<updated>2010-01-26T17:27:35+00:00</updated>
		<content type="html">&lt;p&gt;&lt;strong&gt;Contents&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&amp;#8220;WebLearn: Migration&amp;#8221; ITLP course &amp;#8211; 1 Feb 2pm, OUCS&lt;/li&gt;
&lt;li&gt;Evaluations (survey) tool pilot &amp;#8211; call for volunteers&lt;/li&gt;
&lt;li&gt;Closure of the Test Building&lt;/li&gt;
&lt;li&gt;Request space in the new WebLearn&lt;/li&gt;
&lt;li&gt;&amp;#8220;WebLearn: Fundamentals&amp;#8221; ITLP course &amp;#8211; 28 Jan 10, OUCS&lt;/li&gt;
&lt;li&gt;&amp;#8220;WebLearn Drop-in surgery&amp;#8221; every Friday morning in OUCS&lt;/li&gt;
&lt;li&gt;Visit the WebLearn guidance site&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;1 &amp;#8220;WebLearn: Migration&amp;#8221; ITLP course 1 Feb 2pm, OUCS&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;All users must migrate their content from old to new WebLearn over the next year and a half.&lt;/p&gt;
&lt;p&gt;OUCS are running a migration course every month to help with this process. There are still places on the next occurrence of the course (on 1st Feb 10). Visit: &lt;a href=&quot;http://www.oucs.ox.ac.uk/itlp/courses/detail/TOVC&quot;&gt;http://www.oucs.ox.ac.uk/itlp/courses/detail/TOVC&lt;/a&gt; to book a place.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2 Evaluations (survey) tool pilot &amp;#8211; call for volunteers&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Evaluations tool allows the creation of on-line surveys which can be delivered to Oxford staff and students or to the general public. Such surveys may be used for course evaluation, obtaining feedback, questionnaires or general data gathering purposes.&lt;/p&gt;
&lt;p&gt;If you want to be involved in the pilot of this tool then have a look at: &lt;a href=&quot;http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/20/create-on-line-surveys-for-free-using-new-weblearn/&quot;&gt;http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/20/create-on-line-surveys-for-free-using-new-weblearn/&lt;/a&gt; and / or send an email expressing interest to &lt;a href=&quot;mailto:wl-eval@weblearn.ox.ac.uk&quot;&gt;wl-eval@weblearn.ox.ac.uk&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3 Closure of the Test Building&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;As part of the process of moving from the old to new WebLearn system, it is our intention to close the Test Building at the start of this year&amp;#8217;s long vac.&lt;/p&gt;
&lt;p&gt;We recommend that if you currently use the Test Building you consider either moving your material to the new WebLearn or move it elsewhere in old WebLearn with a view to moving it again to the new WebLearn at a later date.&lt;/p&gt;
&lt;p&gt;We will be reminding you about this closure over the coming months but why not act quickly and address the issue early.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4 Request space in new WebLearn&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;To establish a presence in new WebLearn, each Department or College will need to authorise one or more staff members to become a &amp;#8216;Local WebLearn Coordinator&amp;#8217; and complete the &lt;a title=&quot;Request for an Administration Site form&quot; href=&quot;https://weblearn.ox.ac.uk/access/content/public/request-admin-site/request.pdf&quot; target=&quot;_top&quot;&gt;Request for an Administration Site form&lt;/a&gt;. If you are intending to move to the new WebLearn then at some point this form will need to be filled in.&lt;/p&gt;
&lt;p&gt;We will be reminding you about filling in this form over the coming months but why not act quickly and address the issue early!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5 &amp;#8220;WebLearn: Fundamentals&amp;#8221; ITLP course &amp;#8211; 28 Jan 10, OUCS&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The next instance of this hugely popular course is taking place at 2pm on Thursday 28 Jan in OUCS. There are still a few spaces left, please book a place via: &lt;a href=&quot;http://www.oucs.ox.ac.uk/itlp/courses/detail/TOVB&quot;&gt;http://www.oucs.ox.ac.uk/itlp/courses/detail/TOVB&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6 &amp;#8220;WebLearn Drop-in Surgery&amp;#8221; every Friday morning in OUCS&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If you have already attended a WebLearn course then extra face-to-face help is available most Friday mornings by booking a place at the &amp;#8220;WebLearn drop-in surgery&amp;#8221; at Computer8. To book a place please visit:  &lt;a href=&quot;http://www.oucs.ox.ac.uk/itlp/courses/detail/TECE&quot;&gt;http://www.oucs.ox.ac.uk/itlp/courses/detail/TECE&lt;/a&gt; &lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;7 Visit the WebLearn Guidance site&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This site within new WebLearn contains lots of useful resources including a FAQ, a series of step-by-step guides, case studies, bite-sized &amp;#8220;least you need to know guides&amp;#8221;, copyright and plagiarism resources and showcase WebLearn sites. Visit &lt;a href=&quot;http://weblearn.ox.ac.uk/info&quot;&gt;http://weblearn.ox.ac.uk/info&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Combining jUnit’s @Ignore and @AfterClass</title>
		<link href="http://jay.shao.org/2010/01/26/combining-junits-ignore-and-afterclass/"/>
		<id>http://jay.shao.org/?p=726</id>
		<updated>2010-01-26T17:12:58+00:00</updated>
		<content type="html">&lt;div class=&quot;tweetmeme_button&quot;&gt;&lt;a href=&quot;http://api.tweetmeme.com/share?url=http%3A%2F%2Fjay.shao.org%2F2010%2F01%2F26%2Fcombining-junits-ignore-and-afterclass%2F&quot;&gt;&lt;img src=&quot;http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjay.shao.org%2F2010%2F01%2F26%2Fcombining-junits-ignore-and-afterclass%2F&quot; height=&quot;61&quot; width=&quot;51&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt;Interesting &amp;#8211; in jUnit 4.4 &amp;#8211; combining @Ignore and @AfterClass (haven&amp;#8217;t tried the other static&amp;#8217;s like @BeforeClass) don&amp;#8217;t seem to do what I&amp;#8217;d expect &amp;#8211; e.g. the @AfterClass annotated method seems to execute regardless.&lt;/p&gt;</content>
		<author>
			<name>Jason Shao</name>
			<email>jay@shao.org</email>
			<uri>http://jay.shao.org</uri>
		</author>
		<source>
			<title type="html">Jason E. Shao</title>
			<link rel="self" href="http://jay.shao.org/feed/"/>
			<id>http://jay.shao.org/feed/</id>
			<updated>2010-01-26T17:20:05+00:00</updated>
			<rights type="html">2004-2009</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Comments on Thema Project Executive Summary #3</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/26/comments-on-thema-project-executive-summary-3/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=293</id>
		<updated>2010-01-26T16:31:34+00:00</updated>
		<content type="html">&lt;p&gt;These comments relate to the JISC-funded Thema Project Executive Summary for the University of Oxford: &lt;a href=&quot;http://tinyurl.com/themasummary&quot;&gt;http://tinyurl.com/themasummary&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Section 4: Recommendations relating to taught postgraduates&lt;/h3&gt;
&lt;p&gt;The first part of section 4.2 of the report focuses on learner expectations. The rport highlights that many students find themselves in awe when they arrive and worry greatly as they do not really know what to expect over the coming year.&lt;/p&gt;
&lt;p&gt;This University has partially addressed the problem by developing a web gateway  &lt;a href=&quot;https://www.ox.ac.uk/students&quot; target=&quot;blank&quot;&gt;http://www.ox.ac.uk/students&lt;/a&gt; but we feel that WebLearn can offer further support at the departmental rather than University level.&lt;/p&gt;
&lt;p&gt;The Thema report includes the following:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Ensure that applicants for taught postgraduate courses receive clear information about the pedagogic approach of courses in order to help them to negotiate a fit between their aspirations for the course and the resources and structures available:&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;The following types of information might be useful additions to descriptions in prospectuses and on course Websites:&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Expectations of the department towards students in terms of their readiness to take on the role of autonomous learner:&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Detailed descriptions of what it means to be a learner in the department&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Explication of reading approaches that the student will need to develop&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Specifications of the expected levels of academic writing and research&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Expected levels of participation during classroom activities&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Expected disposition towards learning, such as critique and analysis&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;em&gt;What students can expect from their course:&lt;/em&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Descriptions of pedagogical approach, including an explication of what terms like “seminar”, “tutorial”, “discussion session” etc., mean in the context of the&lt;/em&gt; particular course&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Details of formative feedback mechanisms both during taught and research-based parts of the course&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Reasonable assessment of the workload and suggestions for ways to manage it&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://blogs.oucs.ox.ac.uk/adamweblearn/2009/10/02/pre-arrival/&quot;&gt;As mentioned elsewhere in this blog&lt;/a&gt; departments can use WebLearn to disseminate information and to allow the peer mentoring of students before they arrive. Information relating to the above list can be stored in a department&amp;#8217;s area within WebLearn and existing students can be quizzed on various aspects via a discussion forum or in a chat room.&lt;/p&gt;
&lt;p&gt;Now that students receive their Oxford SSO credentials before they arrive, this can all be done in a secure area and not in the public gaze on social networking sites such as Facebook and My Space.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Product 3 – Find out how to do user testing!</title>
		<link href="http://academic-networking.blogspot.com/2010/01/product-3-find-out-how-to-do-user.html"/>
		<id>tag:blogger.com,1999:blog-3549360710060693111.post-3833523973683837234</id>
		<updated>2010-01-26T16:21:42+00:00</updated>
		<content type="html">Another outcome of this exciting project is a brief example &lt;a href=&quot;http://www.youtube.com/watch?v=5q0FkYn2zYI&quot;&gt;video&lt;/a&gt; which shows you a real user testing session so you get an idea of what user testing is like.&lt;br /&gt;&lt;br /&gt;We also run a workshop on Friday 5th of March 2010 which gives you concrete tips on how to get started on doing a user testing session yourself, and a chance to ask questions and explore your ideas with others who’ve done it before!&lt;br /&gt;After the workshop, you’ll be invited to see the sights of Cambridge!&lt;br /&gt;&lt;br /&gt;This workshop will take place at CARET (&lt;a href=&quot;http://www.caret.cam.ac.uk/page/contact&quot;&gt;16 Mill Lane, CB2 1SB Cambridge&lt;/a&gt;). It will probably be a full day (morning  and afternoon), but further details will follow later.&lt;br /&gt;&lt;br /&gt;Apply for attending this workshop by emailing Laura (laura @ caret.cam.ac.uk) or Anne-Sophie (asd38 @ caret.cam.ac.uk), and definitely have a look at the &lt;a href=&quot;http://www.youtube.com/watch?v=5q0FkYn2zYI&quot;&gt;video&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&gt; &lt;a href=&quot;http://www.youtube.com/watch?v=5q0FkYn2zYI&quot;&gt;Watch the video&lt;/a&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/flyer%20video%20_JISC%20Academic%20Networking_.pdf&quot;&gt;Download the flyer&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;This outcome is one of the products presented at the JISC Innovation Exchange at Birmingham 28th-29th January &lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/3549360710060693111-3833523973683837234?l=academic-networking.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Anne-Sophie</name>
			<email>noreply@blogger.com</email>
			<uri>http://academic-networking.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">JISC Academic Networking</title>
			<subtitle type="html">This project aims to bring some of the affordances of consumer social networks to teaching and learning, and will deliver applications within CamTools, our Sakai-based VLE. This is an informal blog by the project team at CARET, University of Cambridge.</subtitle>
			<link rel="self" href="http://academic-networking.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-3549360710060693111</id>
			<updated>2010-02-09T07:40:08+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Product 1 – Find out how to use user-centric design!</title>
		<link href="http://academic-networking.blogspot.com/2010/01/product-1-find-out-how-to-use-user.html"/>
		<id>tag:blogger.com,1999:blog-3549360710060693111.post-8248640349693697797</id>
		<updated>2010-01-26T16:20:10+00:00</updated>
		<content type="html">Desperate to understand what your faculty and students REALLY want (because it’s never what they ask for)?&lt;br /&gt;This handbook gives you the methodology description of the JISC Academic Networking project.&lt;br /&gt;A run-through, with real examples, pictures and lots of ‘how-do-I-start-on-this’ should enable you to get started on a project, using this methodology yourself.&lt;br /&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/Handbook%20JISC%20Academic%20Networking.pdf&quot;&gt;Download the Handbook&lt;/a&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/flyer%20Handbook.pdf&quot;&gt;Download the flyer&lt;/a&gt;&lt;br /&gt;&lt;span&gt;&lt;br /&gt;This outcome is one of the products presented at the JISC Innovation Exchange at Birmingham 28th-29th January &lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/3549360710060693111-8248640349693697797?l=academic-networking.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Anne-Sophie</name>
			<email>noreply@blogger.com</email>
			<uri>http://academic-networking.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">JISC Academic Networking</title>
			<subtitle type="html">This project aims to bring some of the affordances of consumer social networks to teaching and learning, and will deliver applications within CamTools, our Sakai-based VLE. This is an informal blog by the project team at CARET, University of Cambridge.</subtitle>
			<link rel="self" href="http://academic-networking.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-3549360710060693111</id>
			<updated>2010-02-09T07:40:08+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Product 2 – Find out how to involve stakeholders efficiently!</title>
		<link href="http://academic-networking.blogspot.com/2010/01/product-2-find-out-how-to-involve.html"/>
		<id>tag:blogger.com,1999:blog-3549360710060693111.post-9179786238620973244</id>
		<updated>2010-01-26T16:19:57+00:00</updated>
		<content type="html">Looking to try something new with your next project, or you simply want to find out how to involve your stakeholders efficiently? Then this product is something for you!&lt;br /&gt;&lt;br /&gt;It can sometimes be really hard to get your stakeholders involved. This tick-box-shaped document isn’t a walkthrough roadmap, but a list of initiatives you can choose from, in order to involve your stakeholders in an efficient way.&lt;br /&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/How%20to%20involve%20stakeholders%20efficiently.pdf&quot;&gt;Document on how to involve stakeholders efficiently&lt;/a&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/focus%20on%20personas%20-%20extra%20info%20stakeholders.doc&quot;&gt;Document about personas - Adds to the information in the previous document&lt;/a&gt;&lt;br /&gt;&gt; &lt;a href=&quot;http://brii-oxford.blogspot.com/2009/06/stakeholder-buy-in.html&quot;&gt;Find out more information on 'Stakeholder buy-in' on the BRII blog&lt;/a&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/flyer%20stakeholders%20_JISC%20Academic%20Networking_.pdf&quot;&gt;Download the flyer&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;&lt;span&gt;This outcome is one of the products presented at the JISC Innovation Exchange at Birmingham 28th-29th January&lt;/span&gt;&lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/3549360710060693111-9179786238620973244?l=academic-networking.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Anne-Sophie</name>
			<email>noreply@blogger.com</email>
			<uri>http://academic-networking.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">JISC Academic Networking</title>
			<subtitle type="html">This project aims to bring some of the affordances of consumer social networks to teaching and learning, and will deliver applications within CamTools, our Sakai-based VLE. This is an informal blog by the project team at CARET, University of Cambridge.</subtitle>
			<link rel="self" href="http://academic-networking.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-3549360710060693111</id>
			<updated>2010-02-09T07:40:08+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Product 4 – Academic Networking in your Virtual Learning Environment!</title>
		<link href="http://academic-networking.blogspot.com/2010/01/product-4-academic-networking-in-your.html"/>
		<id>tag:blogger.com,1999:blog-3549360710060693111.post-7245702826232043641</id>
		<updated>2010-01-26T16:18:50+00:00</updated>
		<content type="html">One of the outcomes of the JISC Academic Networking project is that the results of the project will be integrated in future releases of open source Online Learning Environment Sakai.&lt;br /&gt;Keep an eye on &lt;a href=&quot;http://sakaiproject.org/&quot;&gt;SakaiProject.org&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&gt; &lt;a href=&quot;https://camtools.cam.ac.uk/access/content/group/9d4e5ce2-c6c9-409e-9948-fdd031b84c82/NEW%20STRUCTURE/EXTRA%20INFORMATION%20AND%20RESOURCES/JISC%20BIRMINGHAM/flyer%20Sakai3%20%28JISC%20Academic%20Networking%29.pdf&quot;&gt;Download the flyer &lt;/a&gt;&lt;span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;This outcome is one of the products presented at the JISC Innovation Exchange at Birmingham 28th-29th January&lt;/span&gt;&lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/3549360710060693111-7245702826232043641?l=academic-networking.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Anne-Sophie</name>
			<email>noreply@blogger.com</email>
			<uri>http://academic-networking.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">JISC Academic Networking</title>
			<subtitle type="html">This project aims to bring some of the affordances of consumer social networks to teaching and learning, and will deliver applications within CamTools, our Sakai-based VLE. This is an informal blog by the project team at CARET, University of Cambridge.</subtitle>
			<link rel="self" href="http://academic-networking.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-3549360710060693111</id>
			<updated>2010-02-09T07:40:08+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Default Text in Sakai Portfolio forms</title>
		<link href="http://threecanoes.com/blogs/sean/default-text-portfolio-forms"/>
		<id>http://threecanoes.com/30 at http://threecanoes.com</id>
		<updated>2010-01-26T14:42:42+00:00</updated>
		<content type="html">&lt;p&gt;Last night I was building a series of reflection forms for a large matrix (15 rows). Each reflection form had a rich text editor to hold the reflection.&lt;/p&gt;
&lt;p&gt;The design of these reflection forms included some &amp;quot;default text&amp;quot; that would help to guide the student's thinking about their reflection. Each row of the matrix was to have slightly different default text in that field. There are two ways I could accomplish the task.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://threecanoes.com/blogs/sean/default-text-portfolio-forms&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Sean Keesler</name>
			<uri>http://threecanoes.com/blogs/sean</uri>
		</author>
		<source>
			<title type="html">Sean's blog</title>
			<link rel="self" href="http://threecanoes.com/blogs/sean/feed"/>
			<id>http://threecanoes.com/blogs/sean/feed</id>
			<updated>2010-02-09T07:40:13+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Comments on Thema Project Executive Summary #2</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/26/comments-on-thema-project-executive-summary-2/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=287</id>
		<updated>2010-01-26T12:45:46+00:00</updated>
		<content type="html">&lt;p&gt;These comments relate to the JISC-funded Thema Project Executive Summary for the University of Oxford: &lt;a href=&quot;http://tinyurl.com/themasummary&quot;&gt;http://tinyurl.com/themasummary&lt;/a&gt; .&lt;/p&gt;
&lt;h3&gt;Section 3: student’s use of digital technologies. Recommendations.&lt;/h3&gt;
&lt;h3&gt;Content Provision in WebLearn&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;In relation to the institutional VLE, WebLearn, lecturers within the same course should:&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Provide students with the same “base level” of service (i.e. in making PowerPoint presentations, lecture notes and so forth available), even if they do not all use the other tools and features provided.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We would wholeheartedly support this recommendation. Remember there&amp;#8217;s lots of training available for WebLearn.&lt;/p&gt;
&lt;h3&gt;Podcasting as a Revision Aid&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;In relation to the use of digital technologies in lectures and other classes, lecturers are&lt;br /&gt;
encouraged to:&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Consider the recording of lectures as podcasts to aid students’ revision, without fear that&lt;br /&gt;
students will cease to attend lectures as a consequence.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There is a &amp;#8216;Podcast&amp;#8217; tool within WebLearn, this allows podcasts to be uploaded and access restricted to site participants. Alternatively public podcasts can be hosted on the University&amp;#8217;s public &amp;#8216;Oxford Podcasts&amp;#8217; website (and on iTunesU) and re-used in WebLearn via the &amp;#8216;News&amp;#8217; tool.&lt;/p&gt;
&lt;h3&gt;Reading Lists&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;In compiling students’ reading lists, lecturers should:&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Make photocopied study packs of print-based materials available where possible, subject to copyright restrictions and cost implications.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It should be pointed out here that the University&amp;#8217;s CLA licence allows material to be scanned and hosted in WebLearn within &amp;#8216;Resources&amp;#8217; on a course site. This will be more cost effective than producing reams of photocopies each year.&lt;/p&gt;
&lt;h3&gt;Support for Mobile Phones&lt;/h3&gt;
&lt;p&gt;The Erewhon project is enhancing WebLearn for use on Smartphones. This technology should be available in the 2010/11 academic year and lectures are encouraged to think how they may use the new functionality.&lt;/p&gt;
&lt;h3&gt;For Training Providers&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;When planning the delivery of training through the academic year, providers are encouraged to:&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Be mindful of students’ preference for “just-in-time” training.&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Consider the creation of online “refresher” guides to supplement face-to-face training.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Just-in-time training and refresher guides can be hosted within WebLearn. Think about recording lectures and hosting within WebLearn or on the Oxford Podcasts site.&lt;/p&gt;
&lt;p&gt;We are planning a special &amp;#8217;study skills&amp;#8217; area in WebLearn where generic training material can be deposited and used by students. Details to follow.&lt;/p&gt;
&lt;h3&gt;Links&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.oucs.ox.ac.uk/weblearn/index.xml.ID=guidance&quot;&gt;WebLearn Training&lt;/a&gt; and &lt;a href=&quot;http://weblearn.ox.ac.uk/info&quot;&gt;WebLearn Guidance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.oucs.ox.ac.uk/weblearn/index.xml.ID=toolslist#tool-podcasts&quot;&gt;Podcast tool&lt;/a&gt;, &lt;a href=&quot;http://www.oucs.ox.ac.uk/weblearn/index.xml.ID=toolslist#tool-news&quot;&gt;News Tool&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://podcasts.ox.ac.uk/&quot;&gt;Oxford Podcasts&lt;/a&gt; and &lt;a href=&quot;http://itunes.ox.ac.uk/&quot;&gt;iTunesU&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://weblearn.ox.ac.uk/portal/hierarchy/info/copyright&quot;&gt;CLA and copyright&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://erewhon.oucs.ox.ac.uk/&quot;&gt;Erewhon project&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Comments on Thema Project Executive Summary #1</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/26/comments-on-thema-project-executive-summary-1/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=281</id>
		<updated>2010-01-26T10:50:54+00:00</updated>
		<content type="html">&lt;p&gt;These comments relate to the JISC-funded Thema Project Executive Summary for the University of Oxford: &lt;a href=&quot;http://tinyurl.com/themasummary&quot;&gt;http://tinyurl.com/themasummary&lt;/a&gt; .&lt;/p&gt;
&lt;h3&gt;Section 3: student&amp;#8217;s use of digital technologies.&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;&amp;#8220;Although over 90% of students have laptops, they tend not to take them to classes for a range of reasons &amp;#8230;&amp;#8221;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;One of the deliverables of the JISC-funded Erewhon project is to develop  &lt;strong&gt;a &amp;#8216;Smart-phone&amp;#8217;  interface to WebLearn&lt;/strong&gt;. The relevant work-package in the project is divided into two parts: authentication and a new tools interface.&lt;/p&gt;
&lt;h4&gt;Authentication&lt;/h4&gt;
&lt;p&gt;Here we will develop a new method of authentication that allows a registered WebLearn user to remain logged into the system for a very long time but with a reduced permission set.&lt;/p&gt;
&lt;p&gt;This approach strikes a balance between ease of use and security:  i.e., not having to negotiate the fiddly process of logging in every time WebLearn is to be accessed whilst at the same time maintaining integrity. This is achieved using &amp;#8216;three-legged oAuth&amp;#8217; &amp;#8211; this technology is also used by Flickr amongst other.&lt;/p&gt;
&lt;p&gt;Every user will have an oAuth management tool in their My Workspace which allows them to specify what external applications are allowed to see and do in WebLearn.&lt;/p&gt;
&lt;p&gt;The Smartphone interface to WebLearn will always be accessed via the Mobile Oxford portal (m.ox.ac.uk) so permission must be granted to m.ox to view specific classes of data such as calendars and announcements.&lt;/p&gt;
&lt;p&gt;In the future it is envisaged that other applications such as Nexus SharePoint could also use oAuth to retrieve information stored within WebLearn.&lt;/p&gt;
&lt;h4&gt;New Tools Interface&lt;/h4&gt;
&lt;p&gt;Here we provide a vastly simplified interface to a handful of the most suitable WebLearn tools. These include&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Polls &amp;#8211; for conducting opinion polls in a classroom setting&lt;/li&gt;
&lt;li&gt;Tutorial sign-up &amp;#8211; allow students to book a tutorial session (or any other kind of event) without needing to find a &amp;#8216;big computer&amp;#8217;&lt;/li&gt;
&lt;li&gt;Announcements &amp;#8211; view course-related announcements&lt;/li&gt;
&lt;li&gt;Schedule &amp;#8211; view a collated course events calendar&lt;/li&gt;
&lt;li&gt;Resources &amp;#8211; what new documents or links have been added?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In the future, we also hope to allow students to access the survey tool (&amp;#8217;Evaluations&amp;#8217;) via m.ox &amp;#8211; this will allow course experience feedback to be completed via a mobile phone. It is hoped that this will result in  higher completion rate than if the survey were only available via a desktop computer.&lt;/p&gt;
&lt;h4&gt;Links&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://erewhon.oucs.ox.ac.uk/&quot;&gt;Erewhon project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://oauth.net/&quot;&gt;oAuth authentication&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://m.ox.ac.uk&quot;&gt;Mobile Oxford portal: m.ox.ac.uk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://weblearn.ox.ac.uk/portal/hierarchy/info/eas/eval&quot;&gt;Evaluations tool&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">[FIXED] Eclipse Issues with Clicking on Ubuntu/GNOME</title>
		<link href="http://jay.shao.org/2010/01/25/fixed-eclipse-issues-with-clicking-on-ubuntugnome/"/>
		<id>http://jay.shao.org/?p=724</id>
		<updated>2010-01-25T18:39:59+00:00</updated>
		<content type="html">&lt;div class=&quot;tweetmeme_button&quot;&gt;&lt;a href=&quot;http://api.tweetmeme.com/share?url=http%3A%2F%2Fjay.shao.org%2F2010%2F01%2F25%2Ffixed-eclipse-issues-with-clicking-on-ubuntugnome%2F&quot;&gt;&lt;img src=&quot;http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjay.shao.org%2F2010%2F01%2F25%2Ffixed-eclipse-issues-with-clicking-on-ubuntugnome%2F&quot; height=&quot;61&quot; width=&quot;51&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt;For the last few months, have moved most of my work programming from the Mac to Ubuntu (first convenience via VMs, recently because I switched jobs and at the new employer it was that or Windows) which has mostly gone will, though there were some issues around Eclipse UI gotchas, notably:&lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;Sometimes buttons wouldn&amp;#8217;t let you click them (though keyboard focus mostly worked find)&lt;/li&gt;
    &lt;li&gt;Sometimes windows wouldn&amp;#8217;t paint properly &amp;#8211; contents, toolbars, etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At first I thought it might have been Virtualbox&amp;#8217;s mouse driver, but it looks like it&amp;#8217;s a generic Eclipse/GTK issue, with some notes at &lt;a href=&quot;http://blogs.gurulabs.com/dax/2009/10/what-gdk-native.html&quot;&gt;http://blogs.gurulabs.com/dax/2009/10/what-gdk-native.html&lt;/a&gt; on the root cause, and how to fix it. For the time being I&amp;#8217;ve created scripts to launch Eclipse (and STS) and before I fire off Eclipse, do a:&lt;/p&gt;

&lt;div class=&quot;codecolorer-container bash default&quot;&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;div&gt;1&lt;br /&gt;&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;div class=&quot;bash codecolorer&quot;&gt;&lt;span&gt;export&lt;/span&gt; &lt;span&gt;GDK_NATIVE_WINDOWS&lt;/span&gt;=&lt;span&gt;1&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This seems to resolve the painting issues, though it feels a bit less smooth/fast (UBUNTU+GNOME+COMPIZ) &amp;#8211; still usable, though admittedly have tried this on a pretty fast machine (recent 2xQuad-Core w/lots of RAM)&lt;/p&gt;</content>
		<author>
			<name>Jason Shao</name>
			<email>jay@shao.org</email>
			<uri>http://jay.shao.org</uri>
		</author>
		<source>
			<title type="html">Jason E. Shao</title>
			<link rel="self" href="http://jay.shao.org/feed/"/>
			<id>http://jay.shao.org/feed/</id>
			<updated>2010-01-26T17:20:05+00:00</updated>
			<rights type="html">2004-2009</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">2010 Sakai Conference website goes live - Call for Proposals now open</title>
		<link href="http://sakaiproject.org/news/2010-sakai-conference-website-goes-live-call-proposals-now-open"/>
		<id>http://sakaiproject.org/1748 at http://sakaiproject.org</id>
		<updated>2010-01-23T06:09:23+00:00</updated>
		<content type="html">&lt;p&gt;The website   &lt;a href=&quot;http://sakaiproject.org/static/conference-2010.htm&quot;&gt;http://sakaiproject.org/static/conference-2010.htm&lt;/a&gt; with details about the Annual Conference in Denver, Colorado is now live. And the Call for Participation section is open to accept your proposals for both Conference Presentations and for Technical Demos.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;The deadline for proposal submissions is Feb. 28, 2010. &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The conference Tracks are:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Building Sakai &lt;/li&gt;
&lt;li&gt;Deploying Sakai &lt;/li&gt;
&lt;li&gt;Using Sakai &lt;/li&gt;
&lt;li&gt;Portfolio &lt;/li&gt;
&lt;li&gt; Sakai Showcase&lt;/li&gt;
&lt;li&gt;Multiple Audiences &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This year you will also be able identify the focus of your presentation by selecting a &quot;subtrack&quot; area of interest to help attendees in their session planning.&lt;/p&gt;
&lt;p&gt;The subtrack tags are:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Newcomer &lt;/li&gt;
&lt;li&gt;Research &lt;/li&gt;
&lt;li&gt;Pedagogy &lt;/li&gt;
&lt;li&gt;&amp;nbsp;QA &lt;/li&gt;
&lt;li&gt;&amp;nbsp;Faculty Practices &lt;/li&gt;
&lt;li&gt;&amp;nbsp;Sakai3 &lt;/li&gt;
&lt;li&gt;Student Involvement &lt;/li&gt;
&lt;li&gt;Innovation &lt;/li&gt;
&lt;li&gt;User Support &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;We look forward to your proposals.  --- 2010 Sakai Conference Planning Committee&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Sakai Foundation Executive Brief Webinar - slides</title>
		<link href="http://sakaiproject.org/news/sakai-foundation-executive-brief-webinar-slides"/>
		<id>http://sakaiproject.org/1747 at http://sakaiproject.org</id>
		<updated>2010-01-22T21:28:21+00:00</updated>
		<content type="html">&lt;p&gt;The slides from the webinar are on the &lt;a href=&quot;http://sakaiproject.org/sakai-foundation&quot;&gt;Sakai Foundation page&lt;/a&gt; along with a &lt;a href=&quot;http://sakaiproject.org/sites/default/files/2010%20January%20Exec%20Brief.ppt&quot;&gt;link&lt;/a&gt; to download the .ppt file and &lt;a href=&quot;http://sakaiproject.org/sites/default/files/2010%20January%20Exec%20Brief.pdf&quot;&gt;a pdf version&lt;/a&gt; too.&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">I clicked ”Switch to access role” on an unpublished site and now I can’t see my site. What to do?</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/21/i-clicked-switch-to-access-role-on-an-unpublished-site-and-now-i-cant-see-my-site-what-to-do/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=204</id>
		<updated>2010-01-21T13:38:39+00:00</updated>
		<content type="html">&lt;p&gt;Site participants with the &lt;em&gt;access&lt;/em&gt; role cannot see unpublished sites so the above-mentioned behaviour is to be expected (if not entirely useful). Logging out and then logging in again will cure the problem!&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">How does the Forums notification work?</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/21/how-does-the-forums-notification-work/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=201</id>
		<updated>2010-01-21T13:28:44+00:00</updated>
		<content type="html">&lt;p&gt;The &lt;em&gt;Watch&lt;/em&gt; option has 3 settings.&lt;/p&gt;
&lt;p&gt;The default option is &amp;#8216;Notify me by email when a thread that I have contributed to receives a new message&amp;#8217;. The other options are &amp;#8216;no notification&amp;#8217; and &amp;#8216;Notify me by email whenever a new message is posted&amp;#8217;.&lt;/p&gt;
&lt;p&gt;A user can change their individual setting by clicking on the &lt;em&gt;Watch&lt;/em&gt; link at the top of the Forums page. It is &lt;strong&gt;not&lt;/strong&gt; possible for a site maintainer to stipulate what the &amp;#8216;watch-level&amp;#8217; is on their site.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Off to the programme meeting...</title>
		<link href="http://academic-networking.blogspot.com/2010/01/off-to-programme-meeting.html"/>
		<id>tag:blogger.com,1999:blog-3549360710060693111.post-3397321931718740641</id>
		<updated>2010-01-21T12:28:47+00:00</updated>
		<content type="html">Next week, Laura and Anne-Sophie will be off to Aston for the Institutional Innovation JISC programme meeting.&lt;br /&gt;&lt;br /&gt;We're looking forward to meeting the other projects, and figuring out what to buy in the Trade Fair... watch this space for posts about what we'll have available in the Fair!&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/3549360710060693111-3397321931718740641?l=academic-networking.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Laura James</name>
			<email>noreply@blogger.com</email>
			<uri>http://academic-networking.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">JISC Academic Networking</title>
			<subtitle type="html">This project aims to bring some of the affordances of consumer social networks to teaching and learning, and will deliver applications within CamTools, our Sakai-based VLE. This is an informal blog by the project team at CARET, University of Cambridge.</subtitle>
			<link rel="self" href="http://academic-networking.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-3549360710060693111</id>
			<updated>2010-02-09T07:40:08+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html"></title>
		<link href="http://about-teaching.blogspot.com/2010/01/rather-than-keeping-up-individual-blog.html"/>
		<id>tag:blogger.com,1999:blog-34390221.post-8121926854435067952</id>
		<updated>2010-01-21T10:13:18+00:00</updated>
		<content type="html">Rather than keeping up an individual blog for myself, I'm now posting my thoughts on teaching and technology within the blogs for the projects I'm currently working on. These are:&lt;br /&gt;&lt;br /&gt;Arcadia Fellows blog, Cambridge University Library&lt;br /&gt;http://arcadiaproject.blogspot.com/&lt;br /&gt;&lt;br /&gt;CourseTools project blog, CARET, University of Cambridge:&lt;br /&gt;http://coursetools.caret.cam.ac.uk/project-blog&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/34390221-8121926854435067952?l=about-teaching.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>HMTruscott</name>
			<email>noreply@blogger.com</email>
			<uri>http://about-teaching.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">Thoughts about teaching and technology</title>
			<link rel="self" href="http://about-teaching.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-34390221</id>
			<updated>2010-02-08T10:20:21+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Reazon Systems Officially Releases 'iRubric For Sakai'</title>
		<link href="http://sakaiproject.org/blogs/pieter-hartsook/reazon-systems-officially-releases-irubric-sakai"/>
		<id>http://sakaiproject.org/1745 at http://sakaiproject.org</id>
		<updated>2010-01-21T08:31:01+00:00</updated>
		<content type="html">&lt;p&gt;(Newswire Today) —&amp;nbsp; Irvine, CA, United States, 2010-01-21 - &lt;a href=&quot;http://www.newswiretoday.com/news/63653/&quot; target=&quot;_blank&quot;&gt;Announcing the official launch of iRubric-for-Sakai&lt;/a&gt;, a comprehensive assessment and analysis suite for Sakai CLE.&lt;/p&gt;
&lt;p&gt;&quot;We are excited to have accomplished a seamless integration between the two platforms and to allow Sakai users to easily build and grade rubrics with a few simple clicks,&quot; said Ramesh Sabetiashraf, the creator of iRubric. &quot;Equally important was student privacy and security as sensitive student data transmitted between the two systems. From the onset, our integration effort placed a strong emphasis on ease-of-use and security. We are happy to have fulfilled both objectives to meet our users' high standards.&quot;&lt;br /&gt;&lt;br /&gt;iRubric-for-Sakai is available to K-12 and Higher Education through a variety of flexible licensing and hosting options, designed to meet the needs of a wide range of organizational sizes. Hosting plans eliminate the need for internal infrastructure, IT support, and server maintenance. Schools may also select a licensing plan to host iRubric internally.&lt;/p&gt;
&lt;p&gt;See more on the &lt;a href=&quot;http://www.rcampus.com/sakai/&quot; target=&quot;_blank&quot;&gt;iRubric for Sakai website&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">AAC&amp;amp;U Essential Learning Outcomes and VALUE Rubrics for Sakai</title>
		<link href="http://threecanoes.com/blogs/sean/aacu-essential-learning-outcomes-matrix-and-value-rubrics-sakai"/>
		<id>http://threecanoes.com/29 at http://threecanoes.com</id>
		<updated>2010-01-20T21:48:38+00:00</updated>
		<content type="html">&lt;p&gt;We had a little time in between some projects recently, so we decided to try an in-house project that ended up being something we thought should be out there in the community.&lt;/p&gt;
&lt;p&gt;I've been hearing about the AAC&amp;amp;U VALUE project for quite a while now and had been anticipating the project deliverables (a well researched set of rubrics for assessing ePortfolio work) as something we could refer clients to as an excellent example of how to assess student work. It took us a few days to get it done, but the result is something that I think may be useful for the community.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://threecanoes.com/blogs/sean/aacu-essential-learning-outcomes-matrix-and-value-rubrics-sakai&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Sean Keesler</name>
			<uri>http://threecanoes.com/blogs/sean</uri>
		</author>
		<source>
			<title type="html">Sean's blog</title>
			<link rel="self" href="http://threecanoes.com/blogs/sean/feed"/>
			<id>http://threecanoes.com/blogs/sean/feed</id>
			<updated>2010-02-09T07:40:13+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Create on-line surveys for free using new WebLearn!</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/20/create-on-line-surveys-for-free-using-new-weblearn/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=199</id>
		<updated>2010-01-20T18:15:44+00:00</updated>
		<content type="html">&lt;p&gt;You may be aware that OUCS are currently piloting new WebLearn’s Evaluations Tool with a view to introducing this tool in the 2010/2011 academic year.&lt;/p&gt;
&lt;p&gt;The Evaluations tool allows the creation of on-line surveys which can be delivered to Oxford staff and students or to the general public. Such surveys may be used for course evaluation, obtaining feedback, questionnaires or general data gathering purposes.&lt;/p&gt;
&lt;p&gt;The pilot is divided into two phases and most people who were involved in phase I have provided positive feedback about the tool. Now that the project has entered phase II we are choosing a further selection of units to participate.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What’s in it for me?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You will become an early      adopter and will be able to save money and effort by replacing paper-based      evaluations, questionnaires or forms with an on-line equivalent;&lt;/li&gt;
&lt;li&gt;Your suggestions will be considered      for improving the tool before it goes into production;&lt;/li&gt;
&lt;li&gt;Discuss and share ideas with      other members of the pilot;&lt;/li&gt;
&lt;li&gt;Receive help and training in      using the tool and running on-line surveys.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;What will it involve?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Attending a free workshop at      OUCS during wk5 HT2010 (18-Feb-2010 at 2pm);&lt;/li&gt;
&lt;li&gt;Testing your survey(s);&lt;/li&gt;
&lt;li&gt;Delivering your survey(s) to      users; (the timing is such that we hope that you’ll be able to deliver      your survey(s) to your students by the end of TT2010)&lt;/li&gt;
&lt;li&gt;Viewing and processing your      survey results&lt;/li&gt;
&lt;li&gt;Providing feedback to the      WebLearn team by completing a pilot project survey&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Please let us know if you would like to participate in this pilot project by sending an email to &lt;a href=&quot;mailto:wl-eval@weblearn.ox.ac.uk&quot;&gt;wl-eval@weblearn.ox.ac.uk&lt;/a&gt; at your earliest convenience.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">New Version of WebLearn Released</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/20/new-version-of-weblearn-released/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=196</id>
		<updated>2010-01-20T15:58:03+00:00</updated>
		<content type="html">&lt;p&gt;Both WebLearn systems were upgraded on 19th January 2010, new WebLearn to 2.6-ox2 and old WebLearn to 2.32. New WebLearn incorporates the latest version of Sakai, v2.6.2.&lt;/p&gt;
&lt;h3&gt;New Facilities &amp;#8211; The Highlights&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Sites can be restricted to &amp;#8216;All staff&amp;#8217;, &amp;#8216;All students&amp;#8217; and &amp;#8216;All Oxford users&amp;#8217;. Sites can also be restricted based on card status.&lt;/li&gt;
&lt;li&gt;New version of the Tutorial Sign-up tool.&lt;/li&gt;
&lt;li&gt;Old WebLearn MCQs can now be exported and imported into the Tasks, Tests and Surveys tool.&lt;/li&gt;
&lt;li&gt;WebLearn will send an email notification of a new posting to a Forum.&lt;/li&gt;
&lt;li&gt;Provision of an &amp;#8216;Audit&amp;#8217; role within Administration Sites. This will allow individuals who are added with this role to visit all sites that are managed by the Administration Site in question.&lt;/li&gt;
&lt;li&gt;Old WebLearn Structured Documents can now be exported as a single page (with optional index).&lt;/li&gt;
&lt;li&gt;Sites can specify different permissions for &amp;#8216;Anyone&amp;#8217; (ie, general public) and &amp;#8216;All logged-in users&amp;#8217;.&lt;/li&gt;
&lt;li&gt;Updated copyright status: the previous copyright statuses were based on American terminology and were not particularly useful in the UK&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Bug Fixes&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;URL of Reading List is now correct within &amp;#8216;access view&amp;#8217; of resources.&lt;/li&gt;
&lt;li&gt;All reported bugs in the Tutorial Sign-up tool have been fixed.&lt;/li&gt;
&lt;li&gt;The RSS feed for public announcements no longer includes the site&amp;#8217;s long description.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;More Information&lt;/h3&gt;
&lt;p&gt;There is a separate document containing &lt;a href=&quot;https://weblearn.ox.ac.uk/access/content/public/System%20notices/release-notes-upgrade-to-v2p6-ox2p0.html&quot;&gt;a more detailed list of changes&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">EuroSakai 2010  and call for Papers</title>
		<link href="http://sakai-nl.blogspot.com/2010/01/eurosakai-2010-and-call-for-papers.html"/>
		<id>tag:blogger.com,1999:blog-19383016.post-1056215797268430253</id>
		<updated>2010-01-20T15:40:19+00:00</updated>
		<content type="html">&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;This year the EuroSakai 2010 Conference will be in Valencia, Spain. Valencia is a lovely Mediterranean city with a warm weather. &lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;  &lt;/p&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;The conference will consist of a BootCamp/Workshop on the 1st of March followed by 2 days of conference presentations and BOF meetings on 2nd and 3rd of March.&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;About PRESENTATION PROPOSALS&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;Please we need all your collaboration for the conference presentations. If you think you have any good experience to talk about, a new tool to show or any good practice you want to share, please think about doing a presentation in the conference.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Presentation proposals can be sent to the conference e-email address &lt;/span&gt;&lt;a href=&quot;mailto:eurosakai2010@upv.es%3cmailto:eurosakai2010@upv.es&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;eurosakai2010@upv.es&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;About the BOOTCAMP/WORKSHOP&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;In the schedule it is included a Bootcamp/Workshop focused on configuration and maintenance for the sakai 2.x instance.&lt;br /&gt;As you may know, sakai 3 is coming now strongly and may be you are interested also in a second and parallel BOOTCAMP for sakai 3.&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Registration &amp;amp; Information&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;You can find all the information about the conference in the sakai website &lt;/span&gt;&lt;a href=&quot;http://sakaiproject.org/sakai-european-regional-conference-2010&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;http://sakaiproject.org/sakai-european-regional-conference-2010&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt; Registration and payment can be done in &lt;/span&gt;&lt;a href=&quot;https://www.upv.es/pls/sosak/sic_eusakai.REGISTRATION?p_vista=poliformat&amp;P_IDIOMA=i&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;https://www.upv.es/pls/sosak/sic_eusakai.REGISTRATION?p_vista=poliformat&amp;amp;P_IDIOMA=i&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt; The registration fee is 100 EUR and includes all the meals for the conference.&lt;/span&gt;&lt;/p&gt;  &lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt; If you are from Europe or you are planning to attend this conference please visit the web site and register as soon as possible.&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/19383016-1056215797268430253?l=sakai-nl.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Frank Benneker</name>
			<email>noreply@blogger.com</email>
			<uri>http://sakai-nl.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">Dutch Sakai News &amp;amp; Opinions</title>
			<subtitle type="html">Weblog van en voor Nederlandse e-learning professionals die geïnteresseerd zijn in Sakai, en daarover kennis willen delen. This blog was started in 2005 by the University of Amsterdam and the University of Twente. We have grown with a few other contributors since then. This weblog is  currently brought to you by and is maintained by the Dutch Sakai community.&lt;br /&gt;
As of April 2008 we will be bringing more news in the Dutch language. In het Nederlands dus....</subtitle>
			<link rel="self" href="http://sakai-nl.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-19383016</id>
			<updated>2010-01-20T15:40:19+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Launching the UX framework site</title>
		<link href=""/>
		<id>http://sakaipm.wordpress.com/?p=103</id>
		<updated>2010-01-20T15:27:45+00:00</updated>
		<content type="html">For a little while now, the latest design phase for Sakai 3 has had issues with how it communicates with the Sakai community.
On the one hand, while our contracted designers need to access the accumulated practical wisdom and user insight lodged in our collective heads, there&amp;#8217;s nevertheless a limit to how many voices and perspectives [...]&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=sakaipm.wordpress.com&amp;blog=8783118&amp;post=103&amp;subd=sakaipm&amp;ref=&amp;feed=1&quot; /&gt;</content>
		<author>
			<name>Clay Fenlason</name>
			<uri>http://sakaipm.wordpress.com</uri>
		</author>
		<source>
			<title type="html">UnLearned</title>
			<subtitle type="html">What I used to think I knew isn't helping: adventures in higher ed open source</subtitle>
			<link rel="self" href="http://sakaipm.wordpress.com/feed/"/>
			<id>http://sakaipm.wordpress.com/feed/</id>
			<updated>2010-02-09T07:40:27+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Thema project: executive summary and other project outputs</title>
		<link href="http://blogs.oucs.ox.ac.uk/adamweblearn/2010/01/20/thema-project-executive-summary-and-other-project-outputs/"/>
		<id>http://blogs.oucs.ox.ac.uk/adamweblearn/?p=193</id>
		<updated>2010-01-20T15:05:10+00:00</updated>
		<content type="html">&lt;p&gt;LTG conducted an investigation (&amp;#8221;Thema&amp;#8221;) into the use of digital technologies by students on taught Master&amp;#8217;s programmes in Oxford from 2007-8. It was funded by the JISC Learner Experiences of E-learning programme.&lt;/p&gt;
&lt;p&gt;We are pleased to announce that the project outputs are now finally available. Executive summary: &lt;a href=&quot;http://tinyurl.com/themasummary&quot;&gt;http://tinyurl.com/themasummary&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Adam Marshall</name>
			<uri>http://blogs.oucs.ox.ac.uk/adamweblearn</uri>
		</author>
		<source>
			<title type="html">Adam's WebLearn Blog</title>
			<subtitle type="html">Tips and information concerning Oxford University's on-line learning environment</subtitle>
			<link rel="self" href="http://blogs.oucs.ox.ac.uk/adamweblearn/feed/"/>
			<id>http://blogs.oucs.ox.ac.uk/adamweblearn/feed/</id>
			<updated>2010-02-08T17:40:12+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Board Thoughts: Thinking About an Umbrella Organization</title>
		<link href="http://www.dr-chuck.com/csev-blog/000695.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000695.html</id>
		<updated>2010-01-19T20:17:18+00:00</updated>
		<content type="html">This is the first in a series of posts where I contemplate Sakai Strategic stuff - after all I am a Sakai Board member for the next few years. I think that it is incumbent on board members to gather...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Abstract: New Opportunities for Teaching and Learning: Extending Learning Management Systems Using Standards</title>
		<link href="http://www.dr-chuck.com/csev-blog/000694.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000694.html</id>
		<updated>2010-01-19T01:33:33+00:00</updated>
		<content type="html">The IMS Learning Tools Interoperability standard is available in Blackboard, Desire2Learn, Sakai, Moodle, and WebCT so a learning tool can be written that integrates into these LMS systems. This presentation will give an overview of IMS LTI, show its use...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Etudes Users' Summit</title>
		<link href="http://sakaiproject.org/event/etudes-users-summit"/>
		<id>http://sakaiproject.org/1744 at http://sakaiproject.org</id>
		<updated>2010-01-18T21:13:23+00:00</updated>
		<content type="html">&lt;div class=&quot;field field-type-date field-field-datetime&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Date and Time:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    &lt;span class=&quot;date-display-start&quot;&gt;05/13/10&lt;/span&gt;&lt;span class=&quot;date-display-separator&quot;&gt; - &lt;/span&gt;&lt;span class=&quot;date-display-end&quot;&gt;05/14/10&lt;/span&gt;        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;field field-type-text field-field-location&quot;&gt;
      &lt;div class=&quot;field-label&quot;&gt;Location:&amp;nbsp;&lt;/div&gt;
    &lt;div class=&quot;field-items&quot;&gt;
            &lt;div class=&quot;field-item odd&quot;&gt;
                    Crowne Plaza Hotel, San Francisco CA        &lt;/div&gt;
        &lt;/div&gt;
&lt;/div&gt;
&lt;h3&gt;Etudes Users' Summit&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://etudes.org/summit/summit-register.htm&quot; target=&quot;_blank&quot;&gt;Register Now!&lt;/a&gt; Early bird registration ends Feb. 28, 2010&lt;/p&gt;
&lt;p&gt;Etudes develops the Melete, Mneme, and JForum tools for the Sakai communityand uses the Users' Summit to showcase the latest and planned features forthese tools as well as gather user requirements for the roadmap for thesetools going forward.&amp;nbsp; The Users' Summit also showcases how teacherseffectively teach with Sakai.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://etudes.org/summit/&quot; target=&quot;_blank&quot;&gt;This year's Summit&lt;/a&gt; will be held on May 13 &amp;amp; May 14, 2010, in Burlingame /San Francisco, California, at the Crowne Plaza San Francisco International. Last year's Etudes Users' Summit was held in Los Angeles, California and had over 125 attendees.&lt;br /&gt;&lt;br /&gt;Dr. Ed Gould, Superintendent/President from Imperial Valley College, will kick off the Summit on Thursday, May 13, with the keynote address. The program will include show &amp;amp; tell sessions, tool demos, roundtable discussions and breakout sessions on best practices, retention strategies, tips and tools to become a better teacher, and much more.&lt;/p&gt;
&lt;h4&gt;CALL FOR PRESENTATIONS&lt;/h4&gt;
&lt;p&gt;We are now accepting presentation proposals. The &lt;strong&gt;DEADLINE&lt;/strong&gt; for submissions is February 12, 2010. For more information on program themes, presentation types, and to submit a proposal, see:&lt;br /&gt;&lt;a href=&quot;http://etudes.org/summit/summit-proposal-call.htm&quot; target=&quot;_blank&quot;&gt;http://etudes.org/summit/summit-proposal-call.htm&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Fun Python Syntax - operator.itemgetter(), sorted(), and lambda functions - Oh MY!</title>
		<link href="http://www.dr-chuck.com/csev-blog/000693.html"/>
		<id>http://www.dr-chuck.com/csev-blog/000693.html</id>
		<updated>2010-01-18T20:57:34+00:00</updated>
		<content type="html">This is perhaps the coolest idiom of Python I have seen yet. Thanks to Clint for stopping by my office for a Python versus Perl versus PHP smackdown that got me thinking. This is a great way to sort a...</content>
		<author>
			<name>Dr. Chuck</name>
			<uri>http://www.dr-chuck.com/csev-blog/</uri>
		</author>
		<source>
			<title type="html">Dr. Chuck's Web Log</title>
			<link rel="self" href="http://www.dr-chuck.com/csev-blog/index.rdf"/>
			<id>http://www.dr-chuck.com/csev-blog/index.rdf</id>
			<updated>2010-02-06T02:10:36+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Writeup on Josh Baron, new Sakai Foundation Board Chair</title>
		<link href="http://sakaiproject.org/blogs/pieter-hartsook/writeup-josh-baron-new-sakai-foundation-board-chair"/>
		<id>http://sakaiproject.org/1743 at http://sakaiproject.org</id>
		<updated>2010-01-18T17:20:08+00:00</updated>
		<content type="html">&lt;p&gt;Press release from Marist College about their Director of Academic Technology and eLearning being electing chair of the Sakai Board of Directors. &lt;a href=&quot;http://www.sys-con.com/node/1250611&quot; target=&quot;_blank&quot;&gt;http://www.sys-con.com/node/1250611&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Sakai Project</name>
			<uri>http://sakaiproject.org/</uri>
		</author>
		<source>
			<title type="html">Sakai Project Announcements, Events &amp;amp; Blogs</title>
			<subtitle type="html">All announcements, events and blog posts published on the Sakai Project website.</subtitle>
			<link rel="self" href="http://sakaiproject.org/feed"/>
			<id>http://sakaiproject.org/feed</id>
			<updated>2010-02-09T07:11:03+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Profile2 1.4 preview release available</title>
		<link href="http://steve-on-sakai.blogspot.com/2010/01/profile2-14-preview-release-available.html"/>
		<id>tag:blogger.com,1999:blog-7781495706234585669.post-7607948083771037227</id>
		<updated>2010-01-17T13:31:15+00:00</updated>
		<content type="html">I am very pleased to announce that a preview release of Profile2 1.4.0 is available.&amp;nbsp;This release gives a sneak peek into some of the new features that Profile2 v1.4.0 will bring.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;b&gt;Notable features included in this release:&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Private messaging&lt;/li&gt;&lt;li&gt;An image gallery and the ability to choose your profile image from your gallery&lt;/li&gt;&lt;li&gt;Improved Wicket AJAX performance&lt;/li&gt;&lt;li&gt;Direct, easy bookmarkable URLs to various pages and views&lt;/li&gt;&lt;li&gt;and dozens of other fixes and features!&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;For the full list of issues and features in this release, see Jira:&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://jira.sakaiproject.org/browse/PRFL/fixforversion/11740&quot;&gt;http://jira.sakaiproject.org/browse/PRFL/fixforversion/11740&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;As always, the full installation/upgrade/configuration guide is available in Confluence:&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://confluence.sakaiproject.org/display/PROFILE/Profile2&quot;&gt;http://confluence.sakaiproject.org/display/PROFILE/Profile2&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;How to get it:&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This release is available in the Sakai subversion repository at:&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;https://source.sakaiproject.org/svn/profile2/tags/profile2-1.4.0-preview-01/&quot;&gt;https://source.sakaiproject.org/svn/profile2/tags/profile2-1.4.0-preview-01/&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;and as a binary Tomcat overlay in the Sakai Maven repository at:&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://source.sakaiproject.org/maven2/org/sakaiproject/profile2/profile2-assembly/1.4.0-preview-01/&quot;&gt;http://source.sakaiproject.org/maven2/org/sakaiproject/profile2/profile2-assembly/1.4.0-preview-01/&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;A big thanks to everyone who has contributed to the development of Profile2, and a special thanks to the &lt;a href=&quot;http://e-science.lancs.ac.uk/&quot;&gt;Centre for e-Science, Lancaster University, UK&lt;/a&gt;, who contributed the Image Gallery feature!&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/7781495706234585669-7607948083771037227?l=steve-on-sakai.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Steve Swinsburg</name>
			<email>noreply@blogger.com</email>
			<uri>http://steve-on-sakai.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">steve on sakai</title>
			<link rel="self" href="http://steve-on-sakai.blogspot.com/atom.xml"/>
			<id>tag:blogger.com,1999:blog-7781495706234585669</id>
			<updated>2010-02-07T23:20:16+00:00</updated>
		</source>
	</entry>

</feed>
