<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.unicon.net" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Unicon Articles</title>
 <link>http://www.unicon.net/articles/feed</link>
 <description>Unicon&#039;s articles on all things Sakai and uPortal</description>
 <language>en</language>
<item>
 <title>Administrative Sakai Scripting With SASH</title>
 <link>http://www.unicon.net/node/969</link>
 <description>&lt;p&gt;Placing new tooling on existing worksites en masse is a &lt;a href=&quot;http://www.nabble.com/forum/ViewPost.jtp?post=15361183&amp;amp;framed=y&quot;&gt;classic&lt;/a&gt; Sakai administration problem. Creating new worksites as copies of other sites is easy enough, but subsequent changes to the original site are not reflected in the copy.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/969&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/969#comments</comments>
 <pubDate>Wed, 05 Mar 2008 17:45:18 -0700</pubDate>
 <dc:creator>dmccallum</dc:creator>
 <guid isPermaLink="false">969 at http://www.unicon.net</guid>
</item>
<item>
 <title>Why uPortal?</title>
 <link>http://www.unicon.net/articles/why_uPortal</link>
 <description>&lt;p&gt;A discussion of advantages of choosing the uPortal platform for implementing a campus portal.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/articles/why_uPortal&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/articles/why_uPortal#comments</comments>
 <pubDate>Mon, 25 Feb 2008 08:06:03 -0700</pubDate>
 <dc:creator>apetro</dc:creator>
 <guid isPermaLink="false">961 at http://www.unicon.net</guid>
</item>
<item>
 <title>Developing a Portlet with Spring Portlet MVC and SimpleFormController</title>
 <link>http://www.unicon.net/node/838</link>
 <description>&lt;p&gt;A &lt;a href=&quot;/node/618&quot;&gt;previous article&lt;/a&gt; explained the basics of developing a Portlet.  This article will introduce the &lt;a href=&quot;http://www.springframework.org/&quot;&gt;Spring&lt;/a&gt; Portlet MVC Framework for developing Portlets.  Specifically, this article will help you create a new Portlet using the &lt;a href=&quot;http://static.springframework.org/spring/docs/2.0.x/api/org/springframework/web/portlet/mvc/SimpleFormController.html&quot;&gt;SimpleFormController&lt;/a&gt; available in the Spring Portlet MVC Framework.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/838&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/838#comments</comments>
 <enclosure url="http://www.unicon.net/files/SimpleFormGuessNumber.zip" length="3513871" type="application/zip" />
 <pubDate>Thu, 01 Nov 2007 17:59:40 -0600</pubDate>
 <dc:creator>holdorph</dc:creator>
 <guid isPermaLink="false">838 at http://www.unicon.net</guid>
</item>
<item>
 <title>Real Portlets, Real Easy (Part One)</title>
 <link>http://www.unicon.net/node/822</link>
 <description>&lt;p&gt;Recently I was asked by &lt;a href=&quot;https://www.cu.edu/&quot;&gt;University of Colorado System&lt;/a&gt; to develop a portlet-based user interface for their User Impersonation capabilities.  These tools allow special users -- developers and help desk staff -- to assume the identity of another user within the portal.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/822&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/822#comments</comments>
 <pubDate>Fri, 12 Oct 2007 17:50:11 -0600</pubDate>
 <dc:creator>drew</dc:creator>
 <guid isPermaLink="false">822 at http://www.unicon.net</guid>
</item>
<item>
 <title>Toro Installer Documentation</title>
 <link>http://www.unicon.net/node/821</link>
 <description>&lt;p&gt;This article describes the Toro Portal Installer workflow and each configuration item.&lt;/p&gt;
&lt;p&gt;The installer was implemented using an open source project called AntInstaller, which is a nice application that uses Ant to perform the installation tasks. For further information about AntInstaller, visit their Sourceforge page (&lt;a href=&quot;http://antinstaller.sourceforge.net/&quot; title=&quot;http://antinstaller.sourceforge.net/&quot;&gt;http://antinstaller.sourceforge.net/&lt;/a&gt;).&lt;br/&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/821&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/821#comments</comments>
 <pubDate>Fri, 12 Oct 2007 13:38:21 -0600</pubDate>
 <dc:creator>nbolton</dc:creator>
 <guid isPermaLink="false">821 at http://www.unicon.net</guid>
</item>
<item>
 <title>Using a Servlet with your Portlet Application</title>
 <link>http://www.unicon.net/node/756</link>
 <description>&lt;p&gt;One of the limitations of the &lt;a href=&quot;http://www.jcp.org/en/jsr/detail?id=168&quot;&gt;JSR 168&lt;/a&gt; Portlet Specification is not allowing the Portlet to serve any binary content, or content that does not get &lt;em&gt;marked up&lt;/em&gt; by the portal.  Portlet developers must still develop workarounds to address this need, until the new Portlet specification (&lt;a href=&quot;http://www.jcp.org/en/jsr/detail?id=286&quot;&gt;JSR 286&lt;/a&gt;) is finalized and implemented by different portal vendors.  One work around is to use a Servlet to serve the content.  This article will demonstrate how to do this.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/756&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/756#comments</comments>
 <enclosure url="http://www.unicon.net/files/ImageViewer.zip" length="1263938" type="application/zip" />
 <pubDate>Wed, 15 Aug 2007 18:09:52 -0600</pubDate>
 <dc:creator>holdorph</dc:creator>
 <guid isPermaLink="false">756 at http://www.unicon.net</guid>
</item>
<item>
 <title>Portlets for Web Developers</title>
 <link>http://www.unicon.net/node/730</link>
 <description>&lt;p&gt;As a web developer, there are several things that you should know about developing portlets that make it different than normal web development.&lt;/p&gt;
&lt;p&gt;This article will extend and expand upon the article &lt;a href=&quot;/node/586&quot;&gt;How Portlet Development is Different from Servlet Development&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/730&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/730#comments</comments>
 <pubDate>Thu, 19 Jul 2007 13:07:58 -0600</pubDate>
 <dc:creator>slonas</dc:creator>
 <guid isPermaLink="false">730 at http://www.unicon.net</guid>
</item>
<item>
 <title>New Portlet Application Deployment Tool in uP 2.6</title>
 <link>http://www.unicon.net/node/707</link>
 <description>&lt;p&gt;Today I wrapped up some work I had been preparing for the uPortal 2.6 release:  a new Portlet Application deployment tool.  Readers who attended &lt;a href=&quot;http://www.ja-sig.org/jasigconf/popAbstract.jsp?conf_id=jasig12&amp;amp;id=1ac90966&quot;&gt;my talk at the JA-SIG conference&lt;/a&gt; in Denver last week on &lt;a href=&quot;http://code.google.com/p/cernunnos/&quot;&gt;Cernunnos&lt;/a&gt; may recognize it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/707&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/707#comments</comments>
 <pubDate>Wed, 04 Jul 2007 15:30:37 -0600</pubDate>
 <dc:creator>drew</dc:creator>
 <guid isPermaLink="false">707 at http://www.unicon.net</guid>
</item>
<item>
 <title>Installing uPortal</title>
 <link>http://www.unicon.net/node/700</link>
 <description>&lt;h2&gt;Introduction&lt;/h2&gt;
&lt;p&gt;The purpose of this document is to provide step-by-step setup instructions for a &lt;a href=&quot;http://www.uportal.org&quot;&gt;uPortal&lt;/a&gt; development environment for use in developing Portlets.  The instructions will be geared towards users of the Microsoft Windows XP platform, but the concepts should be applicable for other operating systems including UNIX.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/700&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/700#comments</comments>
 <pubDate>Fri, 22 Jun 2007 13:26:18 -0600</pubDate>
 <dc:creator>holdorph</dc:creator>
 <guid isPermaLink="false">700 at http://www.unicon.net</guid>
</item>
<item>
 <title>A Tutorial on Portlet Development</title>
 <link>http://www.unicon.net/node/618</link>
 <description>&lt;p&gt;One difficulty in developing Portlets are the lack of tutorial guides.  And when you find a tutorial it generally is very specific to one portal.  This article will demonstrate the steps needed to create a very basic Portlet using uPortal.  However, the steps in this guide that are specific to uPortal will be kept to a minimum.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicon.net/node/618&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.unicon.net/node/618#comments</comments>
 <enclosure url="http://www.unicon.net/files/Hello_World_Portlet_Tutorial.zip" length="114153" type="application/zip" />
 <pubDate>Thu, 22 Mar 2007 19:16:22 -0600</pubDate>
 <dc:creator>holdorph</dc:creator>
 <guid isPermaLink="false">618 at http://www.unicon.net</guid>
</item>
</channel>
</rss>
