<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Looking for a CMS</title>
	<atom:link href="http://weblogg-ed.com/2005/looking-for-a-cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogg-ed.com/2005/looking-for-a-cms/</link>
	<description>The Read/Write Web in the Classroom</description>
	<pubDate>Thu, 20 Nov 2008 22:52:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Richard</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1914</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Sat, 03 Dec 2005 17:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1914</guid>
		<description>&lt;a&gt;&lt;/a&gt;Loading user information from a standards-based SIS into Moodle isn't that hard. Here is a modification I have made to moodle/user/edit.php (lines 320+) that pulls student information from Blackbaud.

	&lt;a href="//" rel="nofollow"&gt;//&lt;/a&gt; pre-fill user information
	$query = "	SELECT 
					EA7RECORDS.FIRSTNAME, EA7RECORDS.NICKNAME, EA7RECORDS.LASTNAME
				FROM
					EA7RECORDS,
					ADDRESSLINKS,
					PHONELINKS,
					ADDRESSLINKPHONES
				WHERE
					NUM LIKE '$user-&#62;username" . '@sfuhs.org' . "' AND
					ADDRESSLINKPHONES.PHONESID=PHONELINKS.PHONESID AND
					PHONELINKS.ADDRESSLINKSID=ADDRESSLINKS.ADDRESSLINKSID AND
					ADDRESSLINKS.PARENTRECORDID=EA7RECORDS.EA7RECORDSID";
				
	mssql_connect ( "sqlsrv", "[user]", "[pwd]" );
	$result = mssql_query ( $query );
	$row=mssql_fetch_array($result);
	if ($row['NICKNAME']) &#123;$row['FIRSTNAME']=$row['NICKNAME'];&#125;
	mssql_close();
	if ($row['FIRSTNAME']) &#123;$user-&#62;firstname = $row['FIRSTNAME'];&#125;
	if ($row['LASTNAME']) &#123;$user-&#62;lastname = $row['LASTNAME'];&#125;
	$user-&#62;email = $user-&#62;username . '@sfuhs.org';

A couple of similar changes allow Moodle to automatically recognize users based on their web site login and bypass the Moodle login screen. I understand that Moodle has developed an API for single sign-on but have not yet seen detailed documentation on it.

We don't import course and student enrollment information. All of our courses are set to auto-enroll when a student visits it for the first time, so this process mostly takes care of itself.
</description>
		<content:encoded><![CDATA[<p><a></a>Loading user information from a standards-based SIS into Moodle isn&#8217;t that hard. Here is a modification I have made to moodle/user/edit.php (lines 320+) that pulls student information from Blackbaud.</p>
<p>	<a href="//" rel="nofollow">//</a> pre-fill user information<br />
	$query = &#8221;	SELECT<br />
					EA7RECORDS.FIRSTNAME, EA7RECORDS.NICKNAME, EA7RECORDS.LASTNAME<br />
				FROM<br />
					EA7RECORDS,<br />
					ADDRESSLINKS,<br />
					PHONELINKS,<br />
					ADDRESSLINKPHONES<br />
				WHERE<br />
					NUM LIKE &#8216;$user-&gt;username&#8221; . &#8216;@sfuhs.org&#8217; . &#8220;&#8216; AND<br />
					ADDRESSLINKPHONES.PHONESID=PHONELINKS.PHONESID AND<br />
					PHONELINKS.ADDRESSLINKSID=ADDRESSLINKS.ADDRESSLINKSID AND<br />
					ADDRESSLINKS.PARENTRECORDID=EA7RECORDS.EA7RECORDSID&#8221;;</p>
<p>	mssql_connect ( &#8220;sqlsrv&#8221;, &#8220;[user]&#8221;, &#8220;[pwd]&#8221; );<br />
	$result = mssql_query ( $query );<br />
	$row=mssql_fetch_array($result);<br />
	if ($row[&#8217;NICKNAME&#8217;]) &#123;$row[&#8217;FIRSTNAME&#8217;]=$row[&#8217;NICKNAME&#8217;];&#125;<br />
	mssql_close();<br />
	if ($row[&#8217;FIRSTNAME&#8217;]) &#123;$user-&gt;firstname = $row[&#8217;FIRSTNAME&#8217;];&#125;<br />
	if ($row[&#8217;LASTNAME&#8217;]) &#123;$user-&gt;lastname = $row[&#8217;LASTNAME&#8217;];&#125;<br />
	$user-&gt;email = $user-&gt;username . &#8216;@sfuhs.org&#8217;;</p>
<p>A couple of similar changes allow Moodle to automatically recognize users based on their web site login and bypass the Moodle login screen. I understand that Moodle has developed an API for single sign-on but have not yet seen detailed documentation on it.</p>
<p>We don&#8217;t import course and student enrollment information. All of our courses are set to auto-enroll when a student visits it for the first time, so this process mostly takes care of itself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Hoffman</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1913</link>
		<dc:creator>Tom Hoffman</dc:creator>
		<pubDate>Fri, 02 Dec 2005 15:26:05 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1913</guid>
		<description>&lt;a&gt;&lt;/a&gt;If you want to hit a button on your SIS to load up your CMS, then I'd say your SIS doesn't work with Moodle, rather than vice versa.  It looks like the next version of Moodle will support web services, so this kind of thing should get easier.  I just wish I could figure out when that is projected to be released...</description>
		<content:encoded><![CDATA[<p><a></a>If you want to hit a button on your SIS to load up your CMS, then I&#8217;d say your SIS doesn&#8217;t work with Moodle, rather than vice versa.  It looks like the next version of Moodle will support web services, so this kind of thing should get easier.  I just wish I could figure out when that is projected to be released&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Lehmann</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1912</link>
		<dc:creator>Chris Lehmann</dc:creator>
		<pubDate>Fri, 02 Dec 2005 02:17:44 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1912</guid>
		<description>&lt;a&gt;&lt;/a&gt;Will -- I'll be reading along with this, as this is what I'm looking for for SLA as well. 

I'm hoping that a combination of a few pieces will give me what I want. I'm looking for SchoolTool to eventually be that bridge between SIS and CMS.</description>
		<content:encoded><![CDATA[<p><a></a>Will &#8212; I&#8217;ll be reading along with this, as this is what I&#8217;m looking for for SLA as well. </p>
<p>I&#8217;m hoping that a combination of a few pieces will give me what I want. I&#8217;m looking for SchoolTool to eventually be that bridge between SIS and CMS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will Richardson</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1911</link>
		<dc:creator>Will Richardson</dc:creator>
		<pubDate>Thu, 01 Dec 2005 15:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1911</guid>
		<description>&lt;a&gt;&lt;/a&gt;Thanks for all of the feedback. We want to be able to create course sites off of the schedules in our SIS. So, we'd just click on the course ID and it would automatically import the class list into the CMS. Does that make sense? Also, we want almost all of the apps listed at &lt;a href="http://www.cmsmatrix.org/" rel="nofollow"&gt;CMS Matrix&lt;/a&gt;. Based on what I've gotten back so far, it sounds like Moodle and Blackboard will make our final cut. But I'd like to seriously look at two others. Sakai and Mambo are some others that are floating up...</description>
		<content:encoded><![CDATA[<p><a></a>Thanks for all of the feedback. We want to be able to create course sites off of the schedules in our SIS. So, we&#8217;d just click on the course ID and it would automatically import the class list into the CMS. Does that make sense? Also, we want almost all of the apps listed at <a href="http://www.cmsmatrix.org/" rel="nofollow">CMS Matrix</a>. Based on what I&#8217;ve gotten back so far, it sounds like Moodle and Blackboard will make our final cut. But I&#8217;d like to seriously look at two others. Sakai and Mambo are some others that are floating up&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Wilson</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1910</link>
		<dc:creator>Tim Wilson</dc:creator>
		<pubDate>Thu, 01 Dec 2005 02:50:46 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1910</guid>
		<description>&lt;a&gt;&lt;/a&gt;Will,

I'm curious too about what you're looking for with respect to SIS integration. What are you hoping to achieve?

-Tim
&lt;a href="http://technosavvy.org" rel="nofollow"&gt;http://technosavvy.org&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a></a>Will,</p>
<p>I&#8217;m curious too about what you&#8217;re looking for with respect to SIS integration. What are you hoping to achieve?</p>
<p>-Tim<br />
<a href="http://technosavvy.org" rel="nofollow">http://technosavvy.org</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dave cormier</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1909</link>
		<dc:creator>dave cormier</dc:creator>
		<pubDate>Thu, 01 Dec 2005 00:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1909</guid>
		<description>&lt;a&gt;&lt;/a&gt;moodle does integrate with SIS. and blackboard does do what it does very well. It is teacher centered... but it does that very well...
a few links regarding the subject.

&lt;a href="http://cdc.humboldt.edu/moodle/mod/netpublish/view.php?id=3&#38;section=9" rel="nofollow"&gt;http://cdc.humboldt.edu/moodle/mod/netpublish/view.php?id=3&#38;section=9&lt;/a&gt;

&lt;a href="http://edublogr.blogspot.com/2005/10/reflections-on-merger.html" rel="nofollow"&gt;http://edublogr.blogspot.com/2005/10/reflections-on-merger.html&lt;/a&gt;
see michaelp's comments 

&lt;a href="http://moodle.org/mod/forum/discuss.php?d=20527" rel="nofollow"&gt;http://moodle.org/mod/forum/discuss.php?d=20527&lt;/a&gt;
a classic debate

&lt;a href="http://instructionaltechnology.editthispage.com/newsItems/viewDepartment$Blackboard" rel="nofollow"&gt;http://instructionaltechnology.editthispage.com/newsItems/viewDepartment$Blackboard&lt;/a&gt;

&lt;a href="http://moodle.org/mod/forum/discuss.php?d=22640&#38;parent=107125" rel="nofollow"&gt;http://moodle.org/mod/forum/discuss.php?d=22640&#38;parent=107125&lt;/a&gt;

This is old (moodle has moved forward... and i imagine blackboard has too)
but still a classic
&lt;a href="http://www.humboldt.edu/~jdv1/moodle/all.htm" rel="nofollow"&gt;http://www.humboldt.edu/~jdv1/moodle/all.htm&lt;/a&gt;

cheers.</description>
		<content:encoded><![CDATA[<p><a></a>moodle does integrate with SIS. and blackboard does do what it does very well. It is teacher centered&#8230; but it does that very well&#8230;<br />
a few links regarding the subject.</p>
<p><a href="http://cdc.humboldt.edu/moodle/mod/netpublish/view.php?id=3&amp;section=9" rel="nofollow">http://cdc.humboldt.edu/moodle/mod/netpublish/view.php?id=3&amp;section=9</a></p>
<p><a href="http://edublogr.blogspot.com/2005/10/reflections-on-merger.html" rel="nofollow">http://edublogr.blogspot.com/2005/10/reflections-on-merger.html</a><br />
see michaelp&#8217;s comments </p>
<p><a href="http://moodle.org/mod/forum/discuss.php?d=20527" rel="nofollow">http://moodle.org/mod/forum/discuss.php?d=20527</a><br />
a classic debate</p>
<p><a href="http://instructionaltechnology.editthispage.com/newsItems/viewDepartment$Blackboard" rel="nofollow">http://instructionaltechnology.editthispage.com/newsItems/viewDepartmentBlackboard</a></p>
<p><a href="http://moodle.org/mod/forum/discuss.php?d=22640&amp;parent=107125" rel="nofollow">http://moodle.org/mod/forum/discuss.php?d=22640&amp;parent=107125</a></p>
<p>This is old (moodle has moved forward&#8230; and i imagine blackboard has too)<br />
but still a classic<br />
<a href="http://www.humboldt.edu/~jdv1/moodle/all.htm" rel="nofollow">http://www.humboldt.edu/~jdv1/moodle/all.htm</a></p>
<p>cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Jakes</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1908</link>
		<dc:creator>David Jakes</dc:creator>
		<pubDate>Wed, 30 Nov 2005 23:13:35 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1908</guid>
		<description>&lt;a&gt;&lt;/a&gt;Hey Will:

We are a high school district in Illinois with 2 high schools and we are entirely PC with a Novell network and a aging student information system.

We use the Blackboard Community System and have had a great deal of success witht the platform.  It integrates nicely with our SIS and their snapshot tool makes setting up courses a breeze, and they are constantly updated with class roster changes and additions.  This is a significant advantage over Moodle, as I understand that it does not integrate with SIS's.  We purchased the server with the software installed from Blackboard and it has worked flawlessly over the past two years.  We've installed it, and no considering updates, have not touched it.  The uptime has been fantastic and the system may have been down several hours over the past two years.

I should mention that we have 407 students in two buildings, 1800 PC's and 407 teachers.  In two years, we have gone from 0 use to 225 participants, so acceptance has been outstanding.  We have a range of uses, from announcements and assignment posting to complex uses that merge a wiki tool with discussion boards.  We have integrated several building blocks with Blackboard, including Turnitin.com integration, Discussion Board Grader (from Joliet Junior College in Illinois, and free), and Lectora, with provides free form Web development for our more advanced users, with a direct capability to publish that Web content directly into Blackboard.  We have recently added a building block by LearningObjects.com that adds blog and wiki capability into Blackboard.

Overall, I am extremely satisfied with the product.  I know Blackboard gets bashed alot, but it has worked in our district exceptionally well.  You should know that their support is not good, and they have a revolving door with their reps as they get promoted as the company grows.  

We simply tired of having teachers build ineffective Web sites.  Blackboard has given us the capability to have a wide variety of online support for our students, with some amazing and creative applications of the various tools to create very dynamic learning enviroments.  

Contact me through email and I'll send my phone if you would like to talk directly.  See you at the Illinois Tech Conference.

Sincerely,
David

David Jakes
Instructional Technology Coordinator
Community High School District 99, Downers Grove, IL</description>
		<content:encoded><![CDATA[<p><a></a>Hey Will:</p>
<p>We are a high school district in Illinois with 2 high schools and we are entirely PC with a Novell network and a aging student information system.</p>
<p>We use the Blackboard Community System and have had a great deal of success witht the platform.  It integrates nicely with our SIS and their snapshot tool makes setting up courses a breeze, and they are constantly updated with class roster changes and additions.  This is a significant advantage over Moodle, as I understand that it does not integrate with SIS&#8217;s.  We purchased the server with the software installed from Blackboard and it has worked flawlessly over the past two years.  We&#8217;ve installed it, and no considering updates, have not touched it.  The uptime has been fantastic and the system may have been down several hours over the past two years.</p>
<p>I should mention that we have 407 students in two buildings, 1800 PC&#8217;s and 407 teachers.  In two years, we have gone from 0 use to 225 participants, so acceptance has been outstanding.  We have a range of uses, from announcements and assignment posting to complex uses that merge a wiki tool with discussion boards.  We have integrated several building blocks with Blackboard, including Turnitin.com integration, Discussion Board Grader (from Joliet Junior College in Illinois, and free), and Lectora, with provides free form Web development for our more advanced users, with a direct capability to publish that Web content directly into Blackboard.  We have recently added a building block by LearningObjects.com that adds blog and wiki capability into Blackboard.</p>
<p>Overall, I am extremely satisfied with the product.  I know Blackboard gets bashed alot, but it has worked in our district exceptionally well.  You should know that their support is not good, and they have a revolving door with their reps as they get promoted as the company grows.  </p>
<p>We simply tired of having teachers build ineffective Web sites.  Blackboard has given us the capability to have a wide variety of online support for our students, with some amazing and creative applications of the various tools to create very dynamic learning enviroments.  </p>
<p>Contact me through email and I&#8217;ll send my phone if you would like to talk directly.  See you at the Illinois Tech Conference.</p>
<p>Sincerely,<br />
David</p>
<p>David Jakes<br />
Instructional Technology Coordinator<br />
Community High School District 99, Downers Grove, IL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1907</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 30 Nov 2005 17:51:55 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1907</guid>
		<description>&lt;a&gt;&lt;/a&gt;It really depends on how much support you want for your CMS. If you know that you have the in-house support to troubleshoot technical problems and figure out how to manipulate the system to "hook up" with your student system already in place then I'd say stick with the opne source and go for Moodle. On the other hand, if you'd prefer to have someone who's primary function it is to solve problems with a particular CMS then go with Blackboard. Since you're paying for their product, they should provide decent customer service. However, since there are so many open source solutions out there (Drupal is another), I'd say to look into those before considering a fee based service. My guess is you have some pretty tech savvy people when it comes to manilupating PHP scripts, my_SQL, and other software you'll need to run an open source solution. With enough tweaking you should be able to make Moodle or another tool work for you (provided you have the time).</description>
		<content:encoded><![CDATA[<p><a></a>It really depends on how much support you want for your CMS. If you know that you have the in-house support to troubleshoot technical problems and figure out how to manipulate the system to &#8220;hook up&#8221; with your student system already in place then I&#8217;d say stick with the opne source and go for Moodle. On the other hand, if you&#8217;d prefer to have someone who&#8217;s primary function it is to solve problems with a particular CMS then go with Blackboard. Since you&#8217;re paying for their product, they should provide decent customer service. However, since there are so many open source solutions out there (Drupal is another), I&#8217;d say to look into those before considering a fee based service. My guess is you have some pretty tech savvy people when it comes to manilupating PHP scripts, my_SQL, and other software you&#8217;ll need to run an open source solution. With enough tweaking you should be able to make Moodle or another tool work for you (provided you have the time).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dave cormier</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1906</link>
		<dc:creator>dave cormier</dc:creator>
		<pubDate>Wed, 30 Nov 2005 16:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1906</guid>
		<description>&lt;a&gt;&lt;/a&gt;hi will...

wow. what a fun question. 

I'm currently in a very lively debate around these issues... check out &lt;a href="http://teachandlearnonline.blogspot.com/2005/11/die-lms-die-you-too-ple.html" rel="nofollow"&gt; Leigh Blackall's post&lt;/a&gt;, and the debate on it follows through the link at the end of his post. 

In terms of moodle and integration... i would be suprised if there wasn't a way to tie in moodle to your SIS. There are 10 different ways of accessing databases included in the base release, and if it doesn't exist now, you could pay someone in the open source community to patch into your SIS for less than it would cost to purchase a Blackboard license.

In terms of the difference between a VLE (virtual learning environment)/LCMS (learning content management system) and a CMS (content management system) there are a host of choices that could suit your situation. I'd love to hear more about what you have in mind, what you need it for, and what your plans are for it in the future. Would love to give an opinion (i know you'll find this surprising :) ) but I'd have to know a little more. If you don't feel comfortable posting that here, feel free to contact me. But on a quick look... you look like you need a MU blogging platform not a teacher centered CMS. 

I found the Novell install of moodle a little trying. (but i'm not exactly a novell certified pro either, the linux/windows install is super easy)

cheers,

dave.</description>
		<content:encoded><![CDATA[<p><a></a>hi will&#8230;</p>
<p>wow. what a fun question. </p>
<p>I&#8217;m currently in a very lively debate around these issues&#8230; check out <a href="http://teachandlearnonline.blogspot.com/2005/11/die-lms-die-you-too-ple.html" rel="nofollow"> Leigh Blackall&#8217;s post</a>, and the debate on it follows through the link at the end of his post. </p>
<p>In terms of moodle and integration&#8230; i would be suprised if there wasn&#8217;t a way to tie in moodle to your SIS. There are 10 different ways of accessing databases included in the base release, and if it doesn&#8217;t exist now, you could pay someone in the open source community to patch into your SIS for less than it would cost to purchase a Blackboard license.</p>
<p>In terms of the difference between a VLE (virtual learning environment)/LCMS (learning content management system) and a CMS (content management system) there are a host of choices that could suit your situation. I&#8217;d love to hear more about what you have in mind, what you need it for, and what your plans are for it in the future. Would love to give an opinion (i know you&#8217;ll find this surprising <img src='http://weblogg-ed.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) but I&#8217;d have to know a little more. If you don&#8217;t feel comfortable posting that here, feel free to contact me. But on a quick look&#8230; you look like you need a MU blogging platform not a teacher centered CMS. </p>
<p>I found the Novell install of moodle a little trying. (but i&#8217;m not exactly a novell certified pro either, the linux/windows install is super easy)</p>
<p>cheers,</p>
<p>dave.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Collins - http://ryancollins.org</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1905</link>
		<dc:creator>Ryan Collins - http://ryancollins.org</dc:creator>
		<pubDate>Wed, 30 Nov 2005 14:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1905</guid>
		<description>&lt;a&gt;&lt;/a&gt;I would stick with Moodle. There is work going on with a CMS module for it, and a lot of the CMS stuff can already be done with it.

What we are moving toward is Wordpress for those teachers that are ready to put something online, and once they're comfortable with that, moving them toward using Moodle. 

Are there any shortcomings of Moodle that you can think of that doesn't work for you?</description>
		<content:encoded><![CDATA[<p><a></a>I would stick with Moodle. There is work going on with a CMS module for it, and a lot of the CMS stuff can already be done with it.</p>
<p>What we are moving toward is Wordpress for those teachers that are ready to put something online, and once they&#8217;re comfortable with that, moving them toward using Moodle. </p>
<p>Are there any shortcomings of Moodle that you can think of that doesn&#8217;t work for you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Hoffman</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1904</link>
		<dc:creator>Tom Hoffman</dc:creator>
		<pubDate>Wed, 30 Nov 2005 12:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1904</guid>
		<description>&lt;a&gt;&lt;/a&gt;What do you mean by "the tie in with our student information system" how would anything tie into your SIS?  What do you want out of your SIS?  

The problem with .LRN is that it is based on a dying platform (Open ACS), but I suppose, as a happy user of Manila, you're used to that kind of thing.</description>
		<content:encoded><![CDATA[<p><a></a>What do you mean by &#8220;the tie in with our student information system&#8221; how would anything tie into your SIS?  What do you want out of your SIS?  </p>
<p>The problem with .LRN is that it is based on a dying platform (Open ACS), but I suppose, as a happy user of Manila, you&#8217;re used to that kind of thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caroline Meeks</title>
		<link>http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1903</link>
		<dc:creator>Caroline Meeks</dc:creator>
		<pubDate>Wed, 30 Nov 2005 12:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://weblogg-ed.com/2005/looking-for-a-cms/#comment-1903</guid>
		<description>&lt;a&gt;&lt;/a&gt;Hi,

I'm one of the .LRN developers you met. My company website is solutiongrove.com.  It has contact info, please give me a call and tell me more about your project and I'll update you on where .LRN is now.

Thanks
Caroline</description>
		<content:encoded><![CDATA[<p><a></a>Hi,</p>
<p>I&#8217;m one of the .LRN developers you met. My company website is solutiongrove.com.  It has contact info, please give me a call and tell me more about your project and I&#8217;ll update you on where .LRN is now.</p>
<p>Thanks<br />
Caroline</p>
]]></content:encoded>
	</item>
</channel>
</rss>
