<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>dnnlabs Wiki Rss Feed</title><link>http://dnnlabs.codeplex.com/wikipage</link><description>dnnlabs Wiki Rss Description</description><item><title>New Comment on "Documentation"</title><link>http://dnnlabs.codeplex.com/documentation?&amp;ANCHOR#C24237</link><description>Hi,&amp;#10;&amp;#10;Could you please send me DotNetNuke.mvc project working with 6.2.&amp;#10;Many-2 thanks toi you in advance.</description><author>Dnnace</author><pubDate>Thu, 28 Jun 2012 17:49:13 GMT</pubDate><guid isPermaLink="false">New Comment on "Documentation" 20120628054913P</guid></item><item><title>Updated Wiki: Home</title><link>http://dnnlabs.codeplex.com/wikipage?version=8</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Project Description&lt;/h1&gt;DotNetNuke Labs is a collection of &amp;#34;research &amp;#38; development&amp;#34; type projects for the DotNetNuke platform.&lt;br /&gt;
&lt;h2&gt;DotNetNuke MVC Module Application Framework&lt;/h2&gt;
The first project added to the Labs is the &amp;quot;DotNetNuke MVC Module Application Framework&amp;quot;.  This is a prototype - &amp;quot;proof of concept&amp;quot; - for enabling Module Developers to use the new ASP.NET MVC Framework to develop &amp;quot;Module Applications&amp;quot;.  The code in this project is very rough, and so far only supports the ability to use the default route (ie HomeController, Index Action)&lt;br /&gt;
&lt;h2&gt;Dynamo&lt;/h2&gt;
This is the second project added to the Labs.  Dynamo allows you to completely skip Visual Studio, the debugger, IIS, deployment, packaging, etc...  Install this single module and open your DNN installation to the world of &lt;a href="http://jint.codeplex.com/" class="externalLink"&gt;dynamic language interpretation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. &lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Read more here.&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;1.06.00 Was just released.  &lt;a href="http://weblogs.asp.net/rchartier/archive/2010/08/09/more-on-dynamic-language-execution-within-dotnetnuke.aspx" class="externalLink"&gt;Read more here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; &lt;a href="http://dnnlabs.codeplex.com/releases/view/49383" class="externalLink"&gt;Download here&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Tue, 10 Aug 2010 00:58:19 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100810125819A</guid></item><item><title>Updated Wiki: Dynamo Documentation</title><link>http://dnnlabs.codeplex.com/wikipage?title=Dynamo Documentation&amp;version=5</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http://dnnlabs.codeplex.com/wikipage?title=Prototype%20Samples&amp;referringTitle=Dynamo%20Documentation"&gt;Prototype Samples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Introducing… Dynamo – A Scriptable DotNetNuke module&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;With version 1.5 we can now mix HTML and Code in the same script.  For example...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------------------------&lt;br /&gt;&amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Provide Feedback&amp;lt;/legend&amp;gt;&lt;br /&gt;Your Email:&amp;lt;br /&amp;gt;&amp;lt;input type=&amp;#39;text&amp;#39; value=&amp;#39;@{=get(&amp;quot;fromemail&amp;quot;)}@&amp;#39; name=&amp;#39;fromemail&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;Subject:&amp;lt;br /&amp;gt;&amp;lt;input type=&amp;#39;text&amp;#39; value=&amp;#39;@{=get(&amp;quot;subject&amp;quot;)}@&amp;#39; name=&amp;#39;subject&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;Body:&amp;lt;br /&amp;gt;&amp;lt;textarea name=&amp;#39;body&amp;#39; rows=&amp;#39;10&amp;#39; cols=&amp;#39;50&amp;#39;&amp;gt;@{=get(&amp;quot;body&amp;quot;)}@&amp;lt;/textarea&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;#39;submit&amp;#39; value=&amp;#39;Send Feedback&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;/fieldset&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;@{&lt;br /&gt;if(Page.IsPostBack) {&lt;br /&gt;    var fromemail = get(&amp;quot;fromemail&amp;quot;);&lt;br /&gt;    var subject = get(&amp;quot;subject&amp;quot;);&lt;br /&gt;    var body= get(&amp;quot;body&amp;quot;);&lt;br /&gt;  if(fromemail!=&amp;quot;&amp;quot; &amp;amp;&amp;amp; subject!=&amp;quot;&amp;quot; &amp;amp;&amp;amp; body!=&amp;quot;&amp;quot;) {&lt;br /&gt;      var val = DotNetNuke.Services.Mail.Mail.SendMail(fromemail, &amp;quot;admin@localhost&amp;quot;, &amp;quot;&amp;quot;, subject, body, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;      if(val==&amp;quot;&amp;quot;) val = &amp;quot;Your message was sent.&amp;quot;;      &lt;br /&gt;      echo(val);&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;return &amp;quot;&amp;quot;;&lt;br /&gt;&lt;br /&gt;}@&lt;br /&gt;--------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Mon, 26 Jul 2010 18:11:06 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Dynamo Documentation 20100726061106P</guid></item><item><title>Updated Wiki: Dynamo Documentation</title><link>http://dnnlabs.codeplex.com/wikipage?title=Dynamo Documentation&amp;version=4</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http://dnnlabs.codeplex.com/wikipage?title=Prototype%20Samples&amp;referringTitle=Dynamo%20Documentation"&gt;Prototype Samples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Introducing… Dynamo – A Scriptable DotNetNuke module&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;With version 1.5 we can now mix HTML and Code in the same script.  For example...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Provide Feedback&amp;lt;/legend&amp;gt;&lt;br /&gt;Your Email:&amp;lt;br /&amp;gt;&amp;lt;input type=&amp;#39;text&amp;#39; value=&amp;#39;@{=get(&amp;quot;fromemail&amp;quot;)}@&amp;#39; name=&amp;#39;fromemail&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;Subject:&amp;lt;br /&amp;gt;&amp;lt;input type=&amp;#39;text&amp;#39; value=&amp;#39;@{=get(&amp;quot;subject&amp;quot;)}@&amp;#39; name=&amp;#39;subject&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;Body:&amp;lt;br /&amp;gt;&amp;lt;textarea name=&amp;#39;body&amp;#39; rows=&amp;#39;10&amp;#39; cols=&amp;#39;50&amp;#39;&amp;gt;@{=get(&amp;quot;body&amp;quot;)}@&amp;lt;/textarea&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;#39;submit&amp;#39; value=&amp;#39;Send Feedback&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;/fieldset&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;@{&lt;br /&gt;if(Page.IsPostBack) {&lt;br /&gt;    var fromemail = get(&amp;quot;fromemail&amp;quot;);&lt;br /&gt;    var subject = get(&amp;quot;subject&amp;quot;);&lt;br /&gt;    var body= get(&amp;quot;body&amp;quot;);&lt;br /&gt;  if(fromemail!=&amp;quot;&amp;quot; &amp;amp;&amp;amp; subject!=&amp;quot;&amp;quot; &amp;amp;&amp;amp; body!=&amp;quot;&amp;quot;) {&lt;br /&gt;      var val = DotNetNuke.Services.Mail.Mail.SendMail(fromemail, &amp;quot;admin@localhost&amp;quot;, &amp;quot;&amp;quot;, subject, body, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;      if(val==&amp;quot;&amp;quot;) val = &amp;quot;Your message was sent.&amp;quot;;      &lt;br /&gt;      echo(val);&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;return &amp;quot;&amp;quot;;&lt;br /&gt;&lt;br /&gt;}@&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Mon, 26 Jul 2010 18:10:43 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Dynamo Documentation 20100726061043P</guid></item><item><title>Updated Wiki: Dynamo Documentation</title><link>http://dnnlabs.codeplex.com/wikipage?title=Dynamo Documentation&amp;version=3</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http://dnnlabs.codeplex.com/wikipage?title=Prototype%20Samples&amp;referringTitle=Dynamo%20Documentation"&gt;Prototype Samples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Introducing… Dynamo – A Scriptable DotNetNuke module&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;With version 1.5 we can now mix HTML and Code in the same script.  For example...&lt;br /&gt;&amp;lt;fieldset&amp;gt;&amp;lt;legend&amp;gt;Provide Feedback&amp;lt;/legend&amp;gt;&lt;br /&gt;Your Email:&amp;lt;br /&amp;gt;&amp;lt;input type=&amp;#39;text&amp;#39; value=&amp;#39;@{=get(&amp;quot;fromemail&amp;quot;)}@&amp;#39; name=&amp;#39;fromemail&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;Subject:&amp;lt;br /&amp;gt;&amp;lt;input type=&amp;#39;text&amp;#39; value=&amp;#39;@{=get(&amp;quot;subject&amp;quot;)}@&amp;#39; name=&amp;#39;subject&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;Body:&amp;lt;br /&amp;gt;&amp;lt;textarea name=&amp;#39;body&amp;#39; rows=&amp;#39;10&amp;#39; cols=&amp;#39;50&amp;#39;&amp;gt;@{=get(&amp;quot;body&amp;quot;)}@&amp;lt;/textarea&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;#39;submit&amp;#39; value=&amp;#39;Send Feedback&amp;#39;&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;/fieldset&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;@{&lt;br /&gt;if(Page.IsPostBack) {&lt;br /&gt;    var fromemail = get(&amp;quot;fromemail&amp;quot;);&lt;br /&gt;    var subject = get(&amp;quot;subject&amp;quot;);&lt;br /&gt;    var body= get(&amp;quot;body&amp;quot;);&lt;br /&gt;  if(fromemail!=&amp;quot;&amp;quot; &amp;amp;&amp;amp; subject!=&amp;quot;&amp;quot; &amp;amp;&amp;amp; body!=&amp;quot;&amp;quot;) {&lt;br /&gt;      var val = DotNetNuke.Services.Mail.Mail.SendMail(fromemail, &amp;quot;admin@localhost&amp;quot;, &amp;quot;&amp;quot;, subject, body, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;      if(val==&amp;quot;&amp;quot;) val = &amp;quot;Your message was sent.&amp;quot;;      &lt;br /&gt;      echo(val);&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;return &amp;quot;&amp;quot;;&lt;br /&gt;&lt;br /&gt;}@&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Mon, 26 Jul 2010 18:10:28 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Dynamo Documentation 20100726061028P</guid></item><item><title>Updated Wiki: Dynamo Documentation</title><link>http://dnnlabs.codeplex.com/wikipage?title=Dynamo Documentation&amp;version=2</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http://dnnlabs.codeplex.com/wikipage?title=Prototype%20Samples&amp;referringTitle=Dynamo%20Documentation"&gt;Prototype Samples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Introducing… Dynamo – A Scriptable DotNetNuke module&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Sat, 24 Jul 2010 18:58:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Dynamo Documentation 20100724065829P</guid></item><item><title>Updated Wiki: Prototype Samples</title><link>http://dnnlabs.codeplex.com/wikipage?title=Prototype Samples&amp;version=1</link><description>&lt;div class="wikidoc"&gt;function Person(name, age) {&lt;br /&gt;&lt;br /&gt;	if (Boolean(name))&lt;br /&gt;		this.name = name;&lt;br /&gt;	else&lt;br /&gt;		throw new Error(&amp;#39;A person is required to have a name&amp;#39;);&lt;br /&gt;&lt;br /&gt;	if (Boolean(age))&lt;br /&gt;		this.age = age;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function Employee(name, age, idNumber, salary) {&lt;br /&gt;&lt;br /&gt;	// Let the Person function initialize the name and age&lt;br /&gt;	Person.call(this, name, age);&lt;br /&gt;&lt;br /&gt;	// Initialize idNumber and salary&lt;br /&gt;	if (Boolean(idNumber))&lt;br /&gt;		this.idNumber = idNumber;&lt;br /&gt;	if (Boolean(salary))&lt;br /&gt;		this.salary = salary;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// Employee.prototype = new Person();&lt;br /&gt;Employee.prototype = Person.prototype;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// Getters&lt;br /&gt;Employee.prototype.getIdNumber = function () { return this.idNumber; }&lt;br /&gt;Employee.prototype.getSalary = function () { return this.salary; }&lt;br /&gt;&lt;br /&gt;// Setters&lt;br /&gt;Employee.prototype.setIdNumber = function (idNumber) { this.idNumber = idNumber; }&lt;br /&gt;Employee.prototype.setSalary = function (salary) { this.salary = salary; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;var rob = new Employee(&amp;quot;Rob&amp;quot;, &amp;quot;30&amp;quot;);&lt;br /&gt;rob.setSalary(&amp;quot;100&amp;quot;);&lt;br /&gt;&lt;br /&gt;vLog(&amp;quot;name&amp;quot;, rob.name);&lt;br /&gt;vLog(&amp;quot;salary&amp;quot;, rob.getSalary());&lt;br /&gt;&lt;br /&gt;function vLog(name, value) {&lt;br /&gt;    echo(name + &amp;quot;=[&amp;quot; + value + &amp;quot;]&amp;lt;br /&amp;gt;&amp;quot;);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;return &amp;quot;&amp;quot;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Thu, 22 Jul 2010 02:15:05 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Prototype Samples 20100722021505A</guid></item><item><title>Updated Wiki: Dynamo Documentation</title><link>http://dnnlabs.codeplex.com/wikipage?title=Dynamo Documentation&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http://dnnlabs.codeplex.com/wikipage?title=Prototype%20Samples&amp;referringTitle=Dynamo%20Documentation"&gt;Prototype Samples&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Thu, 22 Jul 2010 02:14:46 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Dynamo Documentation 20100722021446A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://dnnlabs.codeplex.com/documentation?version=1</link><description>&lt;div class="wikidoc"&gt;&lt;a href="http://dnnlabs.codeplex.com/wikipage?title=Dynamo%20Documentation&amp;referringTitle=Documentation"&gt;Dynamo Documentation&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Thu, 22 Jul 2010 02:14:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20100722021429A</guid></item><item><title>Updated Wiki: Home</title><link>http://dnnlabs.codeplex.com/wikipage?version=7</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Project Description&lt;/h1&gt;DotNetNuke Labs is a collection of &amp;#34;research &amp;#38; development&amp;#34; type projects for the DotNetNuke platform.&lt;br /&gt;
&lt;h2&gt;DotNetNuke MVC Module Application Framework&lt;/h2&gt;
The first project added to the Labs is the &amp;quot;DotNetNuke MVC Module Application Framework&amp;quot;.  This is a prototype - &amp;quot;proof of concept&amp;quot; - for enabling Module Developers to use the new ASP.NET MVC Framework to develop &amp;quot;Module Applications&amp;quot;.  The code in this project is very rough, and so far only supports the ability to use the default route (ie HomeController, Index Action)&lt;br /&gt;
&lt;h2&gt;Dynamo&lt;/h2&gt;
This is the second project added to the Labs.  Dynamo allows you to completely skip Visual Studio, the debugger, IIS, deployment, packaging, etc...  Install this single module and open your DNN installation to the world of &lt;a href="http://jint.codeplex.com/" class="externalLink"&gt;dynamic language interpretation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. &lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Read more here.&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Wed, 21 Jul 2010 17:35:05 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100721053505P</guid></item><item><title>Updated Wiki: Home</title><link>http://dnnlabs.codeplex.com/wikipage?version=6</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Project Description&lt;/h1&gt;DotNetNuke Labs is a collection of &amp;#34;research &amp;#38; development&amp;#34; type projects for the DotNetNuke platform.&lt;br /&gt;
&lt;h2&gt;DotNetNuke MVC Module Application Framework&lt;/h2&gt;
The first project added to the Labs is the &amp;quot;DotNetNuke MVC Module Application Framework&amp;quot;.  This is a prototype - &amp;quot;proof of concept&amp;quot; - for enabling Module Developers to use the new ASP.NET MVC Framework to develop &amp;quot;Module Applications&amp;quot;.  The code in this project is very rough, and so far only supports the ability to use the default route (ie HomeController, Index Action)&lt;br /&gt;
&lt;h2&gt;Dynamo&lt;/h2&gt;
This is the second project added to the Labs.  Dynamo allows you to completely skip Visual Studio, the debugger, IIS, deployment, packaging, etc...  Install this single module and open your DNN installation to the world of dynamic language interpretation. &lt;a href="http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx" class="externalLink"&gt;Read more here.&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Wed, 21 Jul 2010 17:34:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100721053417P</guid></item><item><title>Updated Wiki: Home</title><link>http://dnnlabs.codeplex.com/wikipage?version=5</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Project Description&lt;/h1&gt;DotNetNuke Labs is a collection of &amp;#34;research &amp;#38; development&amp;#34; type projects for the DotNetNuke platform.&lt;br /&gt;
&lt;h2&gt;DotNetNuke MVC Module Application Framework&lt;/h2&gt;
The first project added to the Labs is the &amp;quot;DotNetNuke MVC Module Application Framework&amp;quot;.  This is a prototype - &amp;quot;proof of concept&amp;quot; - for enabling Module Developers to use the new ASP.NET MVC Framework to develop &amp;quot;Module Applications&amp;quot;.  The code in this project is very rough, and so far only supports the ability to use the default route (ie HomeController, Index Action)&lt;br /&gt;
&lt;h2&gt;Dynamo&lt;/h2&gt;
This is the second project added to the Labs.  Dynamo allows you to completely skip Visual Studio, the debugger, IIS, deployment, packaging, etc...  Install this single module and open your DNN installation to the world of dynamic language interpretation. &lt;a href="http://Read more here." class="externalLink"&gt;http://weblogs.asp.net/rchartier/archive/2010/07/21/introducing-dynamo-a-scriptable-dotnetnuke-module.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Wed, 21 Jul 2010 17:34:00 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100721053400P</guid></item><item><title>Updated Wiki: Home</title><link>http://dnnlabs.codeplex.com/wikipage?version=4</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Project Description&lt;/h1&gt;DotNetNuke Labs is a collection of &amp;#34;research &amp;#38; development&amp;#34; type projects for the DotNetNuke platform.&lt;br /&gt;
&lt;h2&gt;DotNetNuke MVC Module Application Framework&lt;/h2&gt;
The first project added to the Labs is the &amp;quot;DotNetNuke MVC Module Application Framework&amp;quot;.  This is a prototype - &amp;quot;proof of concept&amp;quot; - for enabling Module Developers to use the new ASP.NET MVC Framework to develop &amp;quot;Module Applications&amp;quot;.  The code in this project is very rough, and so far only supports the ability to use the default route (ie HomeController, Index Action)&lt;br /&gt;
&lt;h2&gt;Dynamo&lt;/h2&gt;
This is the second project added to the Labs.  Dynamo allows you to completely skip Visual Studio, the debugger, IIS, deployment, packaging, etc...  Install this single module and open your DNN installation to the world of dynamic language interpretation. Read more here.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>RobChartier</author><pubDate>Wed, 21 Jul 2010 17:30:20 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100721053020P</guid></item></channel></rss>