<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>classifiedcabinet Wiki Rss Feed</title><link>http://classifiedcabinet.codeplex.com/</link><description>classifiedcabinet Wiki Rss Description</description><item><title>Updated Wiki: Documentation</title><link>http://classifiedcabinet.codeplex.com/documentation?version=12</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Getting Started&lt;/h2&gt;The easiest way to start using the control is to get the new Visual Studio item template. You can get it from the &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623" class="externalLink"&gt;Downloads&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; page or better still - use the &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623#DownloadId=227632" class="externalLink"&gt;.vsix installer&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;, it will add the template to Visual Studio automatically. After you have the Item Template, just click Add-&amp;gt;New Item and choose the &amp;quot;CompletIT ClassifiedCabinet User Control&amp;quot;. It will add to your Silverlight project a user control with a fully set ClassifiedCabinet. You can then add this user control to your application&amp;#39;s main page or even set it as the root visual and you will have a functioning ClassifiedCabinet right away. It is that easy! To make it even easier to start using the control, the project is now available on NuGet. If you have NuGet, just type &lt;i&gt;Install-Package ClassifiedCabinet&lt;/i&gt; and you&amp;#39;re ready to use our control (and if you don&amp;#39;t have NuGet yet - it&amp;#39;s great, get it from &lt;a href="http://nuget.org" class="externalLink"&gt;nuget.org&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.)
&lt;h2&gt;API Reference&lt;/h2&gt;You can download full &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623#DownloadId=211476" class="externalLink"&gt;API reference&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; in compiled HTML format. Just remember to unblock the file after you download it to allow it to run. Right-click on the file, select properties and then click &amp;quot;Unblock&amp;quot;. &lt;br /&gt;
&lt;h2&gt;Articles &lt;/h2&gt;To help you start using this control we have prepared a number of articles published on SilverlightShow.
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.silverlightshow.net/items/ClassifiedCabinet-A-Quick-Start.aspx" class="externalLink"&gt;ClassifiedCabinet – A Quick Start&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;i&gt;More articles to come in the following weeks.&lt;/i&gt;&lt;br /&gt;
&lt;h2&gt;Using the Source Code&lt;/h2&gt;&lt;b&gt;Classified Cabinet Control&lt;/b&gt;&lt;br /&gt;After you download the ClassifiedCabinetSourceCode.zip file from the Downloads page, just extract it somewhere and open it with Visual Studio 2010. You should be able to build it and run the test right away. The ClassifiedCabinet project is the class library that actually contains the control. The other project – ClassifiedCabinet.Testing contains the unit tests. To be able to build and run it you need to have the Telerik.JustMock.Silverlight.dll assembly, which is included in this release and can be found in the Lib folder. Telerik.JustMock is freely available and if you want you can download and install it from &lt;a href="http://www.telerik.com/products/mocking.aspx" class="externalLink"&gt;http://www.telerik.com/products/mocking.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;b&gt;Bookshelf Sample&lt;/b&gt;&lt;br /&gt;After downloading the Samples.zip file from the Downloads page, extract it somewhere and open it using Visual Studio 2010. The web project Bookshelf.Web should already be the start-up project and you should be able to build and run it immediately without any additional work. The project is setup to run with attached database and the actual database file is located in the web project under App_Data. &lt;br /&gt;If you don&amp;#39;t have a local instance of Micorsoft SQL Server Express or you want to use another database, you should change the connection string in the Web.config file accordingly. The .Net Entity Framework 4.0 was used so the connection string is in its specific format. For example, the current value is&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;add&lt;/span&gt; &lt;span style="color:Red;"&gt;name&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;BookshelfEntities&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; 
    &lt;span style="color:Red;"&gt;connectionString&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;metadata=res://*/BookshelfEntities.csdl|res://*/BookshelfEntities.ssdl|res://*/BookshelfEntities.msl;provider=System.Data.SqlClient; provider connection string=&amp;amp;quot;Data Source=.\SQLEXPRESS;Integrated Security=true;AttachDbFilename=|DataDirectory|\Bookshelf.mdf;User Instance=true;&amp;amp;quot;&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;
    &lt;span style="color:Red;"&gt;providerName&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;System.Data.EntityClient&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;but if you want to use it on your web server, you might want to change to something like this:&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;add&lt;/span&gt; &lt;span style="color:Red;"&gt;name&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;BookshelfEntities&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;
    &lt;span style="color:Red;"&gt;connectionString&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;metadata=res://*/BookshelfEntities.csdl|res://*/BookshelfEntities.ssdl|res://*/BookshelfEntities.msl;provider=System.Data.SqlClient;provider connection string=&amp;amp;quot;Data Source=localhost;Initial Catalog=&amp;lt;YourDataBase&amp;gt;;User ID=&amp;lt;YourUserID&amp;gt;;Password=&amp;lt;YourPassword&amp;gt;;MultipleActiveResultSets=True&amp;amp;quot;&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; 
    &lt;span style="color:Red;"&gt;providerName&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;System.Data.EntityClient&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;There are few more settings in the Web.config, you might want to change. Right now the project is configured to run from localhost on port 49692. If you want to set it up to run on different server or port (for example if you want to run it from your web server), you have to change the following lines:&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;appSettings&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;add&lt;/span&gt; &lt;span style="color:Red;"&gt;key&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;BookshelfService&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;value&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;http://localhost:49692/BookCategoriesDataService.svc/&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;add&lt;/span&gt; &lt;span style="color:Red;"&gt;key&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;BookshelfWeb&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;value&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;http://localhost:49692&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;add&lt;/span&gt; &lt;span style="color:Red;"&gt;key&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;BookshelfUploadImageHandler&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;value&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;http://localhost:49692/UploadImageHandler.ashx&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#A31515;"&gt;appSettings&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;The values are later passed to the Silverlight application as initParams and are expected to be valid URI strings. The first one should be the URI of your data service. The second one is the base URI used to resolve the URIs of the images and the last is the URI of the handler used for uploading the images. Basically, you want to just replace the string &amp;quot;localhost:49692&amp;quot; with your domain for example &amp;quot;example.com&amp;quot; in all three cases. There is one last thing you need to change.&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;services&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;service&lt;/span&gt; &lt;span style="color:Red;"&gt;name&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;Samples.Bookshelf.Web.BookCategoriesDataService&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;endpoint&lt;/span&gt; &lt;span style="color:Red;"&gt;address&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;http://localhost:49692/BookCategoriesDataService.svc&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;binding&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;webHttpBinding&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;contract&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;System.Data.Services.IRequestHandler&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#A31515;"&gt;service&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#A31515;"&gt;services&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;Here again you have to change the &amp;quot;address&amp;quot; to be the URI of your data service – it&amp;#39;s the same as above.&lt;br /&gt;&lt;br /&gt;If you have any questions or want to share your opinion about the ClassifiedCabinet you&amp;#39;re more than welcome to do so using the Discussions page. You can also send your feedback to &lt;a href="mailto:feedback@completit.com" class="externalLink"&gt;feedback@completit.com&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>gstoyanov</author><pubDate>Tue, 12 Apr 2011 11:32:15 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20110412113215A</guid></item><item><title>Updated Wiki: Home</title><link>http://classifiedcabinet.codeplex.com/wikipage?version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;The Silverlight Classified Cabinet is a component that makes it easier to show classified items in a nice way. With the power of Silverlight, it lets users zoom and drag the items, categorize them into shelves, filter and see detailed view. It can be used
 in wide range of scenarios like product showcasing, bookshelf, etc. The idea for this control grew out of the widely popular
&lt;a href="http://www.silverlightshow.net/books.aspx" target="_blank"&gt;SilverlightShow bookshelf&lt;/a&gt; which turns out to attract people attention quite a lot. With this component we converted the bookshelf to a more generic control that you can use in your application.&lt;/p&gt;
&lt;p&gt;&lt;a title="View Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;&lt;img title="Bookshelf" src="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=classifiedcabinet&amp;DownloadId=211468" border="0" alt="Bookshelf" width="946" height="561" style="padding-left:0px; padding-right:0px; display:inline; padding-top:0px; border-width:0px"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
See a &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt; of how this controls looks like and behaves.&lt;/p&gt;
&lt;h2&gt;What's new&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The ClassifiedCabinet project is now available on &lt;a title="NuGet" href="http://nuget.org/List/Packages/ClassifiedCabinet" target="_blank"&gt;
Nuget&lt;/a&gt;! This makes adding a reference to the assembly as simple as typing &amp;quot;&lt;em&gt;Install-Package ClassifiedCabinet&lt;/em&gt;&amp;quot;.
&lt;/li&gt;&lt;li&gt;You can now use the new &lt;strong&gt;item template&lt;/strong&gt; for Visual Studio. To start using the control you can just select Add -&amp;gt; New Item and choose the new template &amp;quot;CompletIT ClassifiedCabinet User Control&amp;quot; which will add to your project a fully set
 ClassifiedCabinet control that you could just adapt to your needs. &lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;How can I use this control?&lt;/h2&gt;
&lt;p&gt;To help you start using this control we have prepared a number of articles published on SilverlightShow.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a title="ClassifiedCabinet – A Quick Start" href="http://www.silverlightshow.net/items/ClassifiedCabinet-A-Quick-Start.aspx" target="_blank"&gt;ClassifiedCabinet &amp;ndash; A Quick Start&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;More articles to come in the following weeks.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;Samples&lt;/h2&gt;
&lt;p&gt;We have prepared a sample project to demo how to use the control in your application. Along with it, we also included a sample admin application that lets you manage the items in your cabinet. We plan to extend these samples in the coming weeks to show you
 different scenarios where you may find this component useful.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Bookshelf &amp;ndash; See &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt;, &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623#DownloadId=211506" target="_blank"&gt;
download source&lt;/a&gt; &amp;ndash; includes Silverlight application for the client, Silverlight application for managing books and Web application with an OData service to serve the bookshelf.
&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Feedback&lt;/h2&gt;
&lt;p&gt;Any&amp;nbsp;feedback&amp;nbsp;you can&amp;nbsp;give us&amp;nbsp;is more than welcome.&amp;nbsp;We want to know what you&amp;rsquo;d like to see improved, where do you use our control (yes, we will feature your project if you send us a link), how can we help you integrate this
 component in your applications, etc.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>gstoyanov</author><pubDate>Mon, 11 Apr 2011 13:57:38 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110411015738P</guid></item><item><title>Updated Wiki: Home</title><link>http://classifiedcabinet.codeplex.com/wikipage?version=11</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;The Silverlight Classified Cabinet is a component that makes it easier to show classified items in a nice way. With the power of Silverlight, it lets users zoom and drag the items, categorize them into shelves, filter and see detailed view. It can be used
 in wide range of scenarios like product showcasing, bookshelf, etc. The idea for this control grew out of the widely popular
&lt;a href="http://www.silverlightshow.net/books.aspx" target="_blank"&gt;SilverlightShow bookshelf&lt;/a&gt; which turns out to attract people attention quite a lot. With this component we converted the bookshelf to a more generic control that you can use in your application.&lt;/p&gt;
&lt;p&gt;&lt;a title="View Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;&lt;img title="Bookshelf" src="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=classifiedcabinet&amp;DownloadId=211468" border="0" alt="Bookshelf" width="946" height="561" style="padding-left:0px; padding-right:0px; display:inline; padding-top:0px; border-width:0px"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
See a &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt; of how this controls looks like and behaves.&lt;/p&gt;
&lt;h2&gt;What's new&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The ClassifiedCabinet project is now available on &lt;a title="NuGet" href="http://nuget.org/List/Packages/ClassifiedCabinet" target="_blank"&gt;
Nuget&lt;/a&gt;! This makes adding a reference to the assembly as simple as typing &amp;quot;&lt;em&gt;Install-Package ClassifiedCabinet&lt;/em&gt;&amp;quot;.
&lt;/li&gt;&lt;li&gt;You can now use the new &lt;strong&gt;item template&lt;/strong&gt; for Visual Studio. To start using the control you can just select Add -&amp;gt; New Item and choose the new template &amp;quot;CompletIT ClassifiedCabinet User Control&amp;quot; which will add to your project a fully setup
 ClassifiedCabinet control that you could just adapt to your needs. &lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;How can I use this control?&lt;/h2&gt;
&lt;p&gt;To help you start using this control we have prepared a number of articles published on SilverlightShow.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a title="ClassifiedCabinet – A Quick Start" href="http://www.silverlightshow.net/items/ClassifiedCabinet-A-Quick-Start.aspx" target="_blank"&gt;ClassifiedCabinet &amp;ndash; A Quick Start&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;More articles to come in the following weeks.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;Samples&lt;/h2&gt;
&lt;p&gt;We have prepared a sample project to demo how to use the control in your application. Along with it, we also included a sample admin application that lets you manage the items in your cabinet. We plan to extend these samples in the coming weeks to show you
 different scenarios where you may find this component useful.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Bookshelf &amp;ndash; See &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt;, &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623#DownloadId=211506" target="_blank"&gt;
download source&lt;/a&gt; &amp;ndash; includes Silverlight application for the client, Silverlight application for managing books and Web application with an OData service to serve the bookshelf.
&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Feedback&lt;/h2&gt;
&lt;p&gt;Any&amp;nbsp;feedback&amp;nbsp;you can&amp;nbsp;give us&amp;nbsp;is more than welcome.&amp;nbsp;We want to know what you&amp;rsquo;d like to see improved, where do you use our control (yes, we will feature your project if you send us a link), how can we help you integrate this
 component in your applications, etc.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>gstoyanov</author><pubDate>Mon, 11 Apr 2011 13:54:28 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110411015428P</guid></item><item><title>Updated Wiki: Home</title><link>http://classifiedcabinet.codeplex.com/wikipage?version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;The Silverlight Classified Cabinet is a component that makes it easier to show classified items in a nice way. With the power of Silverlight, it lets users zoom and drag the items, categorize them into shelves, filter and see detailed view. It can be used
 in wide range of scenarios like product showcasing, bookshelf, etc. The idea for this control grew out of the widely popular
&lt;a href="http://www.silverlightshow.net/books.aspx" target="_blank"&gt;SilverlightShow bookshelf&lt;/a&gt; which turns out to attract people attention quite a lot. With this component we converted the bookshelf to a more generic control that you can use in your application.&lt;/p&gt;
&lt;p&gt;&lt;a title="View Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;&lt;img title="Bookshelf" src="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=classifiedcabinet&amp;DownloadId=211468" border="0" alt="Bookshelf" width="946" height="561" style="padding-left:0px; padding-right:0px; display:inline; padding-top:0px; border-width:0px"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
See a &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt; of how this controls looks like and behaves.&lt;/p&gt;
&lt;h2&gt;How can I use this control?&lt;/h2&gt;
&lt;p&gt;To help you start using this control we have prepared a number of articles published on SilverlightShow.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a title="ClassifiedCabinet – A Quick Start" href="http://www.silverlightshow.net/items/ClassifiedCabinet-A-Quick-Start.aspx" target="_blank"&gt;ClassifiedCabinet &amp;ndash; A Quick Start&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;More articles to come in the following weeks.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;Samples&lt;/h2&gt;
&lt;p&gt;We have prepared a sample project to demo how to use the control in your application. Along with it, we also included a sample admin application that lets you manage the items in your cabinet. We plan to extend these samples in the coming weeks to show you
 different scenarios where you may find this component useful.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Bookshelf &amp;ndash; See &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt;, &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623#DownloadId=211506" target="_blank"&gt;
download source&lt;/a&gt; &amp;ndash; includes Silverlight application for the client, Silverlight application for managing books and Web application with an OData service to serve the bookshelf.
&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Feedback&lt;/h2&gt;
&lt;p&gt;Any&amp;nbsp;feedback&amp;nbsp;you can&amp;nbsp;give us&amp;nbsp;is more than welcome.&amp;nbsp;We want to know what you&amp;rsquo;d like to see improved, where do you use our control (yes, we will feature your project if you send us a link), how can we help you integrate this
 component in your applications, etc.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Emil</author><pubDate>Wed, 02 Mar 2011 04:45:35 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110302044535A</guid></item><item><title>Updated Wiki: Home</title><link>http://classifiedcabinet.codeplex.com/wikipage?version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;The Silverlight Classified Cabinet is a component that makes it easier to show classified items in a nice way. With the power of Silverlight, it lets users zoom and drag the items, categorize them into shelves, filter and see detailed view. It can be used
 in wide range of scenarios like product showcasing, bookshelf, etc. The idea for this control grew out of the widely popular
&lt;a href="http://www.silverlightshow.net/books.aspx" target="_blank"&gt;SilverlightShow bookshelf&lt;/a&gt; which turns out to attract people attention quite a lot. With this component we converted the bookshelf to a more generic control that you can use in your application.&lt;/p&gt;
&lt;p&gt;&lt;a title="View Demo" href="http://bookshelf.silverlight.bg/"&gt;&lt;img title="Bookshelf" src="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=classifiedcabinet&amp;DownloadId=211468" border="0" alt="Bookshelf" width="946" height="561" style="padding-left:0px; padding-right:0px; display:inline; padding-top:0px; border-width:0px"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
See a &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt; of how this controls looks like and behaves.&lt;/p&gt;
&lt;h2&gt;How can I use this control?&lt;/h2&gt;
&lt;p&gt;To help you start using this control we have prepared a number of articles published on SilverlightShow.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a title="ClassifiedCabinet – A Quick Start" href="http://www.silverlightshow.net/items/ClassifiedCabinet-A-Quick-Start.aspx" target="_blank"&gt;ClassifiedCabinet &amp;ndash; A Quick Start&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;More articles to come in the following weeks.&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;Samples&lt;/h2&gt;
&lt;p&gt;We have prepared a sample project to demo how to use the control in your application. Along with it, we also included a sample admin application that lets you manage the items in your cabinet. We plan to extend these samples in the coming weeks to show you
 different scenarios where you may find this component useful.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Bookshelf &amp;ndash; See &lt;a title="Bookshelf Demo" href="http://bookshelf.silverlight.bg/" target="_blank"&gt;
demo&lt;/a&gt;, &lt;a href="http://classifiedcabinet.codeplex.com/releases/view/61623#DownloadId=211506" target="_blank"&gt;
download source&lt;/a&gt; &amp;ndash; includes Silverlight application for the client, Silverlight application for managing books and Web application with an OData service to serve the bookshelf.
&lt;/li&gt;&lt;/ul&gt;
&lt;h2&gt;Feedback&lt;/h2&gt;
&lt;p&gt;Any&amp;nbsp;feedback&amp;nbsp;you can&amp;nbsp;give us&amp;nbsp;is more than welcome.&amp;nbsp;We want to know what you&amp;rsquo;d like to see improved, where do you use our control (yes, we will feature your project if you send us a link), how can we help you integrate this
 component in your applications, etc.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Emil</author><pubDate>Wed, 02 Mar 2011 04:45:09 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110302044509A</guid></item></channel></rss>