<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.sharepointblogs.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>cmetral&amp;#39;s blog</title><link>http://www.sharepointblogs.com/cmetral/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP2 (Build: 20611.960)</generator><item><title>Build your webparts with NAnt</title><link>http://www.sharepointblogs.com/cmetral/archive/2005/07/27/build-your-webparts-with-nant.aspx</link><pubDate>Thu, 28 Jul 2005 03:13:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:841</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=841</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2005/07/27/build-your-webparts-with-nant.aspx#comments</comments><description>&lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Well, first post for a long time now &amp;#8230;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Following &lt;a href="http://blog.spsclerics.com/archive/2005/07/15/6014.aspx"&gt;this&lt;/a&gt; post of my co-officer Renaud (himself following &lt;a href="http://weblogs.asp.net/mnissen/archive/2004/05/18/134306.aspx"&gt;this one &lt;/a&gt;from Mads Nissen), I looked for a better way to build the&amp;nbsp;CAB file, because I&amp;#39;m not an addict of his javascript hack. I thought it was possible, and I did.&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;The main problem when building the&amp;nbsp;CAB file is how to generate the DDF file. How to get the content files of the project ? Of course by reading the CSPROJ file (nothing else than an XML file).&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;But the &lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/xmlpeek.html"&gt;&lt;/a&gt;task can only get a single value, not a list of values. And more than one project have more than one content file. So, before coding a new task (not a bad thing to learn by the way), I googled a little bit of my time and found &lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;this&lt;/a&gt;&amp;nbsp;post on the Serge&amp;#39;s blog, inspired of this &lt;a href="http://blogs.geekdojo.net/rcase/archive/2005/01/06/5971.aspx"&gt;Richard Case post&lt;/a&gt;.&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;That&amp;#39;s the solution : use task to get all file refs from CSPROJ file and write the ddf file accordingly. So :&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;ol style="MARGIN-TOP:0in;MARGIN-BOTTOM:0in;MARGIN-LEFT:0.5in;DIRECTION:ltr;unicode-bidi:embed;"&gt;  &lt;li style="MARGIN-TOP:0px;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;VERTICAL-ALIGN:middle;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Create a temp directory   &lt;li style="MARGIN-TOP:0px;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;VERTICAL-ALIGN:middle;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Generate the DDF header lines in a file that you store in the temp dir with task&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;span style="COLOR:blue;"&gt;echo&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;, using attribute &lt;em&gt;file&lt;/em&gt;. To change destination directory for the CAB file, change the .Set DiskDirectory1 parameter. Example : .Set DiskDirectory1=${project::get-base-directory()}/${build.dir}   &lt;li style="MARGIN-TOP:0px;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;VERTICAL-ALIGN:middle;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Get the compiled assembly (using&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/xmlpeek.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/xmlpeek.html"&gt;&lt;span style="COLOR:blue;"&gt;xmlpeek&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/xmlpeek.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/xmlpeek.html"&gt;&lt;/a&gt;task to get name and build location for the assembly from the CSPROJ&amp;nbsp;? Why not &amp;#8230;), copy them into the temp directory and add the file name in the DDF file (use &lt;em&gt;append&lt;/em&gt; attribute for task&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;span style="COLOR:blue;"&gt;echo&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/echo.html"&gt;&lt;/a&gt;to avoid overwrite in the file).   &lt;li style="MARGIN-TOP:0px;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;VERTICAL-ALIGN:middle;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Use&amp;nbsp;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;span style="COLOR:blue;"&gt;xmllist&lt;/span&gt;&lt;/a&gt;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;/a&gt;with &lt;em&gt;xpath=&amp;quot;//VisualStudioProject/CSHARP/Files/Include/File[@BuildAction=&amp;#39;Content&amp;#39;]/@RelPath&amp;quot;&lt;/em&gt;, iterate in the list with the &lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/foreach.html"&gt;&lt;/a&gt;task&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/foreach.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/foreach.html"&gt;&lt;span style="COLOR:blue;"&gt;foreach&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/foreach.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp;(&lt;em&gt;delim=&amp;quot;,&amp;quot;&lt;/em&gt; if you didn&amp;#39;t specify anything in the &lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;/a&gt;task&amp;nbsp;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;span style="COLOR:blue;"&gt;xmllist&lt;/span&gt;&lt;/a&gt;&lt;a href="http://weblogs.asp.net/soever/archive/2005/05/08/406101.aspx"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;), copy the corresponding file in the temp directory and add it to the DDF file.   &lt;li style="MARGIN-TOP:0px;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;VERTICAL-ALIGN:middle;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Now execute the &lt;em&gt;makecab.exe&lt;/em&gt; with the &lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/exec.html"&gt;&lt;/a&gt;task&amp;nbsp;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/exec.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/exec.html"&gt;&lt;span style="COLOR:blue;"&gt;exec&lt;/span&gt;&lt;/a&gt;&lt;a href="http://nant.sourceforge.net/release/0.85-rc1/help/tasks/exec.html"&gt;&lt;span style="COLOR:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/a&gt;&amp;nbsp;(using &lt;em&gt;workingdir&lt;/em&gt; attribute can help).   &lt;li style="MARGIN-TOP:0px;FONT-SIZE:10pt;MARGIN-BOTTOM:0px;VERTICAL-ALIGN:middle;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Delete the temp dir&lt;/li&gt;&lt;/ol&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;It does the job. NAnt and community power ! Enjoy !&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Note : A little bit of&amp;nbsp;light info about the DDF file &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_deployingwebparts.asp"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;&amp;nbsp;&lt;/p&gt;  &lt;p style="FONT-SIZE:10pt;MARGIN:0in;FONT-FAMILY:Verdana;mso-outline-level:1;"&gt;Updated : &lt;a href="http://www.sharepointblogs.com/cmetral/articles/2976.aspx"&gt;This example &lt;/a&gt;may help.&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=2975" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=841" width="1" height="1"&gt;</description></item><item><title>Quality is invisible ...</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/11/04/quality-is-invisible.aspx</link><pubDate>Fri, 05 Nov 2004 00:21:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:842</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=842</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/11/04/quality-is-invisible.aspx#comments</comments><description>From the last post of &lt;a href="http://sharepointerol.blogspot.com/"&gt;Erol&lt;/a&gt;, an interresting checklist for webpart developpers &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/Office_SharePointWebPartsTestingChecklist.asp"&gt;here&lt;/a&gt;.&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=906" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=842" width="1" height="1"&gt;</description></item><item><title>Where is the sun ? (or where to find the european weather)</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/11/04/where-is-the-sun-or-where-to-find-the-european-weather.aspx</link><pubDate>Fri, 05 Nov 2004 00:01:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:843</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=843</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/11/04/where-is-the-sun-or-where-to-find-the-european-weather.aspx#comments</comments><description>&lt;p&gt;I spent some time yesterday looking for a weather webservice in order to develop a webpart that shows forecasts ... and I have to say that United States are well desserved, but Europe seems late.&lt;/p&gt;  &lt;p&gt;I found mainly 3 webservices : &lt;/p&gt;  &lt;ul&gt;  &lt;li&gt;&lt;a href="http://capescience.capeclear.com/webservices/globalweather/index.shtml"&gt;capscience&lt;/a&gt; : get the current weather report (with a little delay), but only the current (no forecasts).&lt;/li&gt;  &lt;li&gt;&lt;a href="http://www.ejse.com/WeatherService/Service.asmx"&gt;ejse.com&lt;/a&gt; : get the current weather and forecasts (until 9 days !) everywhere in the United States (according to the zip code) or the current weather in ... Iraq !!&lt;/li&gt;  &lt;li&gt;&lt;a href="http://www.nws.noaa.gov/forecasts/xml/"&gt;NOAA&lt;/a&gt; : get complete weather conditions and forecasts, with icons ! Just input the latitude and negative west longitude and it gives you what you need ... if you are in the United States. Nothing is said if forecasts are right for european locations ... (Note that you can get weather by an &lt;a href="http://www.nws.noaa.gov/data/current_obs/"&gt;RSS feed &lt;/a&gt;!)&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;So, I think I&amp;#39;ll have to look through the window and write my webpart with what I see :-) And imagine for the following days ... Seriously, if you know that NOAA data are valid all around the world, or if you know another weather webservice (in Europe ?!), please let me know as a comment to this post, I&amp;#39;ll test and update the list !&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=905" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=843" width="1" height="1"&gt;</description></item><item><title>Do you read French ?</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/11/01/do-you-read-french.aspx</link><pubDate>Mon, 01 Nov 2004 23:21:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:844</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=844</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/11/01/do-you-read-french.aspx#comments</comments><description>&lt;table&gt;    &lt;tr&gt;  &lt;td&gt;&lt;img style="WIDTH:166px;HEIGHT:225px;" height="200" src="http://www.sharepointblogs.com/cmetral/archive/2004/11/01/889.aspx/images/sharepointblogs_com/cmetral/173/o_2747207161.jpg" width="149" alt="" /&gt;&lt;/td&gt;  &lt;td&gt;  &lt;p&gt;&lt;font face="Arial" size="2"&gt;Written for SharePoint addicts that can read French.&lt;br /&gt;I was proud to be a co-writer of this book, and thanks Erol for having invited me ! It has been good experience.&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Title :&lt;/strong&gt; &lt;font face="Arial"&gt;Microsoft SharePoint Portal Server 2003 et WSS au quotidien&lt;/font&gt; &lt;br /&gt;&lt;strong&gt;Authors :&lt;/strong&gt; &lt;a href="http://sharepointerol.blogspot.com/"&gt;&lt;font face="Arial" size="2"&gt;Erol Giraudy&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt; and its team : Erwann Bizeray, &lt;/font&gt;&lt;a href="http://blogs.developpeur.org/themit/"&gt;&lt;font face="Arial" size="2"&gt;Renaud Comte&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt;, Hammou Fadili, Bernard Fedotoff, &lt;/font&gt;&lt;a href="http://www.hametbenoit.info/"&gt;&lt;font face="Arial" size="2"&gt;Benoit Hamet&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt;, Yves-Jacques Lamotte, &lt;/font&gt;&lt;a href="http://www.elcondor.fr/"&gt;&lt;font face="Arial" size="2"&gt;Etienne Legendre&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt;, Fr&amp;#233;d&amp;#233;ric Manson, Christophe Metral, Martine Robert.&lt;/font&gt; &lt;br /&gt;&lt;strong&gt;Price :&lt;/strong&gt; 55&amp;#8364; &lt;br /&gt;&lt;strong&gt;Where to buy :&lt;/strong&gt; &lt;a href="http://www.eska.fr/site2001/livres/recherche.php?recherche=2747207161&amp;amp;critere=ISBN&amp;amp;x=12&amp;amp;y=11"&gt;&lt;font face="Arial" size="2"&gt;ESKA&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt;, &lt;/font&gt;&lt;a href="http://www.amazon.fr/exec/obidos/ASIN/2747207161/qid=1099306305/sr=1-3/ref=sr_1_8_3/402-0422417-9345718"&gt;&lt;font face="Arial" size="2"&gt;AMAZON.FR&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt;, &lt;/font&gt;&lt;a href="http://www.fnac.com/Shelf/article.asp?Mn=3&amp;amp;PRID=1595835&amp;amp;Ra=-1&amp;amp;To=0&amp;amp;Nu=1&amp;amp;Fr=0"&gt;&lt;font face="Arial" size="2"&gt;FNAC.COM&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt; ... and surely many others.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Official website&lt;/strong&gt; (in French of course) : &lt;a href="http://www.mysps.info"&gt;MySPS.info&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=889" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=844" width="1" height="1"&gt;</description></item><item><title>IFilter back too !</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/10/26/ifilter-back-too.aspx</link><pubDate>Wed, 27 Oct 2004 00:08:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:845</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=845</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/10/26/ifilter-back-too.aspx#comments</comments><description>&lt;p&gt;The new Adobe PDF Ifilter is out since last week : find it &lt;a href="http://www.adobe.com/support/downloads/detail.jsp?ftpID=2611"&gt;here&lt;/a&gt;&amp;nbsp;!&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=875" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=845" width="1" height="1"&gt;</description></item><item><title>Welcome back !</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/10/26/welcome-back.aspx</link><pubDate>Wed, 27 Oct 2004 00:04:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:846</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=846</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/10/26/welcome-back.aspx#comments</comments><description>&lt;p&gt;Yes, I know ... I&amp;#39;ve been away for several months ... Near 100 days off ... on holidays and &amp;quot;off SharePoint&amp;quot;. But these days I&amp;#39;m back into our favourites products, diving into webpart dev.&lt;/p&gt;  &lt;p&gt;So I think I&amp;#39;ll post some dev tips in the next days.&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=874" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=846" width="1" height="1"&gt;</description></item><item><title>Customize Category navigation bar on the SPS home page</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/07/15/customize-category-navigation-bar-on-the-sps-home-page.aspx</link><pubDate>Thu, 15 Jul 2004 21:17:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:847</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=847</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/07/15/customize-category-navigation-bar-on-the-sps-home-page.aspx#comments</comments><description>&lt;p&gt;I just discovered &lt;a href="http://blogs.msdn.com/danielmcpherson/archive/2004/05/28/143856.aspx"&gt;this post&lt;/a&gt;&amp;nbsp;from Daniel McPherson. It&amp;#39;s very useful to know how to change the Category navigation bar on the home page of an SPS portal. I advice you to read his post, event if I give you the tip here : he explains why NOT delete the native&amp;nbsp;topics area.&lt;/p&gt;  &lt;ol&gt;  &lt;li&gt;Open :\Program Files\Common Files\Microsoft Shared\web server extensions\60\TEMPLATE\\SPS\default.aspx   &lt;li&gt;Search for the following string:&amp;nbsp;&amp;nbsp; &amp;lt;SPSWC:CategoryNavigationWebPart runat=&amp;quot;server&amp;quot; id=&amp;quot;VerticalNavBar&amp;quot; DisplayStyle=&amp;quot;VerticalOneLayer&amp;quot; /&amp;gt;&amp;nbsp;   &lt;li&gt;Replace it with the following string:&amp;nbsp;&amp;nbsp; &amp;lt;SPSWC:CategoryNavigationWebPart runat=&amp;quot;server&amp;quot; id=&amp;quot;&lt;strong&gt;New&lt;/strong&gt;VerticalNavBar&amp;quot; DisplayStyle=&amp;quot;VerticalOneLayer&amp;quot; CurrentCategoryID=&amp;quot;&lt;em&gt;&amp;lt;INSERT CAT ID HERE&amp;gt;&lt;/em&gt;&amp;quot;/&amp;gt; &lt;/li&gt;  &lt;li&gt;Where is equal to the Category ID of the area whose children you wish to display as navigation. To get the Cat ID: Browse to an area, then click on &amp;quot;Change Settings&amp;quot; and copy the string that appears after &amp;quot;CatID=&amp;quot; in the URL. &amp;quot;&lt;/li&gt;&lt;/ol&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=634" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=847" width="1" height="1"&gt;</description></item><item><title>Customizing templates</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/07/14/customizing-templates.aspx</link><pubDate>Thu, 15 Jul 2004 01:49:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:848</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=848</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/07/14/customizing-templates.aspx#comments</comments><description>&lt;p&gt;If you don&amp;#39;t know it, you can waste a lot !&lt;/p&gt;  &lt;p&gt;When registering new templates in WEBTEMP.XML and WEBTEMPSPS.XML, you have to set an ID greater than 10000 (maybe Microsoft hopes to release a lot of new templates in the SP). And IDs must be different in the two files. For example, you can&amp;#39;t have a template id of 10001 in the WSS definitions (WEBTEMP.XML) and another with id 10001 in the SPS areas definitions (WEBTEMPSPS.XML).&lt;/p&gt;  &lt;p&gt;Have a good templating time ! :-)&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=630" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=848" width="1" height="1"&gt;</description></item><item><title>XML Manifest file format for Migrations</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/07/13/xml-manifest-file-format-for-migrations.aspx</link><pubDate>Tue, 13 Jul 2004 18:56:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:849</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=849</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/07/13/xml-manifest-file-format-for-migrations.aspx#comments</comments><description>&lt;p&gt;Well, I&amp;#39;m not currently working on SharePoint, that&amp;#39;s why my posts are so rare ... But I have a look at what&amp;#39;s happening.&lt;/p&gt;  &lt;p&gt;And there it is ! The SPout/SPin manifest file is decribed in &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=e1fd6eae-2030-4402-a79e-6b1e4d22799a&amp;amp;displaylang=en"&gt;this document &lt;/a&gt;from Microsoft.&lt;/p&gt;  &lt;p&gt;What to do with it ?&lt;/p&gt;  &lt;ul&gt;  &lt;li&gt;Create your own &amp;quot;Exporter&amp;quot; (from any technology)&amp;nbsp;and use SPin to import into SharePoint 2003.&lt;/li&gt;  &lt;li&gt;Custom the&amp;nbsp;SPout-generated xml file and use SPin to import into SharePoint 2003.&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;An alternative (with best and worse points) to the Extractors/Importers.&lt;/p&gt;  &lt;p&gt;Enjoy !&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=617" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=849" width="1" height="1"&gt;</description></item><item><title>Extractor/Importer : migrate content to SharePoint Technologies 2003</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/07/02/extractor-importer-migrate-content-to-sharepoint-technologies-2003.aspx</link><pubDate>Fri, 02 Jul 2004 18:55:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:850</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=850</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/07/02/extractor-importer-migrate-content-to-sharepoint-technologies-2003.aspx#comments</comments><description>&lt;p&gt;Relaying &lt;a href="http://blog.spsclerics.com/archive/2004/07/02/430.aspx"&gt;this post &lt;/a&gt;of Renaud Comte.&lt;/p&gt;  &lt;p&gt;Or directly to : &lt;a href="http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=6996fb17-2a54-4607-983b-35c7697baa53"&gt;GotDotNet&lt;/a&gt;&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=570" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=850" width="1" height="1"&gt;</description></item><item><title>Customization</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/05/10/customization.aspx</link><pubDate>Mon, 10 May 2004 21:58:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:851</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=851</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/05/10/customization.aspx#comments</comments><description>&lt;p&gt;A lot of posts in the fr and us newsgroups talks about customization.&lt;/p&gt;  &lt;p&gt;Here is a list of web resources to know, that helps considerably during your customization process :&lt;/p&gt;  &lt;ul&gt;  &lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/odc_SP2003_ta/html/ODC_SPSCustomizingSharePointSites1.asp"&gt;http://msdn.microsoft.com/library/en-us/odc_SP2003_ta/html/ODC_SPSCustomizingSharePointSites1.asp&lt;/a&gt;&amp;nbsp;: customize SharePoint sites and areas; manage users, sites, and templates; change the structure of pages in a site; manage user access; and optimize style sheets&lt;/li&gt;  &lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/odc_sp2003_ta/html/ODC_SPSCustomizingSharePointSites2.asp"&gt;http://msdn.microsoft.com/library/en-us/odc_sp2003_ta/html/ODC_SPSCustomizingSharePointSites2.asp&lt;/a&gt;&amp;nbsp;: site templates and definitions&lt;/li&gt;  &lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_SPSCustomizingSharePointSites3.asp"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_SPSCustomizingSharePointSites3.asp&lt;/a&gt;&amp;nbsp;: Stylesheet reference table (this one is very useful according to the stylesheets length and complexity)&lt;/li&gt;  &lt;li&gt;&lt;a href="http://www.sharepointcustomization.com/default.aspx"&gt;http://www.sharepointcustomization.com/default.aspx&lt;/a&gt;&amp;nbsp;: Customization kit for SharePoint products&lt;/li&gt;  &lt;li&gt;&lt;a href="http://wss.collutions.com/pages/IV%20-%20Basic%20Customization.aspx"&gt;http://wss.collutions.com/pages/IV%20-%20Basic%20Customization.aspx&lt;/a&gt;&amp;nbsp;: Mike Walsh&amp;#39;s contribution to customization&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;If I find more, or if you have more, I&amp;#39;ll update this list.&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=404" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=851" width="1" height="1"&gt;</description></item><item><title>GUISPin by Renaud Comte</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/guispin-by-renaud-comte.aspx</link><pubDate>Wed, 05 May 2004 01:14:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:852</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=852</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/guispin-by-renaud-comte.aspx#comments</comments><description>&lt;p&gt;Once again &lt;a href="http://blogs.developpeur.org/themit/"&gt;Renaud Comte&lt;/a&gt;, the GUI guy, made a user interface for a console tool. This time it is for SPin, the SharePoint 2003 import tool. &lt;a href="http://www.sharepointblogs.com/cmetral/articles/375.aspx"&gt;Here &lt;/a&gt;is a quick overview of the tool.&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Updated : Changed the link to Renaud&amp;#39;s blog and updated the link of the tool in the article.&lt;/em&gt;&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=376" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=852" width="1" height="1"&gt;</description></item><item><title>Complete migration process with Spin and SPout</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/complete-migration-process-with-spin-and-spout.aspx</link><pubDate>Wed, 05 May 2004 01:08:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:853</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=853</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/complete-migration-process-with-spin-and-spout.aspx#comments</comments><description>&lt;p&gt;This was appreciated on my old blog, so I put the article here : &lt;a id="Editor_Edit_hlEntryLink" title="view: Complete SharePoint migration process test" href="http://www.sharepointblogs.com/cmetral/archive/2004/05/04/374.aspx/cmetral/articles/371.aspx" target="_blank"&gt;&lt;font color="#002c99"&gt;http://www.sharepointblogs.com/cmetral/articles/371.aspx&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;It is a little test of SPin/SPout with a few documents but that can be useful to prepare a bigger migration.&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=374" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=853" width="1" height="1"&gt;</description></item><item><title>SPin tip !</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/spin-tip.aspx</link><pubDate>Wed, 05 May 2004 01:05:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:854</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=854</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/spin-tip.aspx#comments</comments><description>&lt;p&gt;As it was ask yesterday on the french user group, I rewrite it here ...&lt;/p&gt;  &lt;p&gt;When importing documents in a specific area with the parameter &lt;i&gt;/area&lt;/i&gt;, you have to provide the logical relative path to the existing area. &lt;br /&gt;&lt;br /&gt;Explanation : I want to import in &lt;i&gt;myserver&amp;gt;area1&amp;gt;area1child1&lt;/i&gt;, I specify &lt;b&gt;&amp;quot;area1/area1child1&amp;quot;&lt;/b&gt; and not &lt;i&gt;&amp;quot;http://myserver/area1/area1child1&amp;quot;&lt;/i&gt; (that could be logical) or &lt;i&gt;&amp;quot;http://myserver/C3/area1child1&amp;quot;&lt;/i&gt; (that is the browser url of the area). &lt;br /&gt;&lt;br /&gt;Enjoy !&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=373" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=854" width="1" height="1"&gt;</description></item><item><title>Welcome in my thoughts</title><link>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/welcome-in-my-thoughts.aspx</link><pubDate>Tue, 04 May 2004 20:01:00 GMT</pubDate><guid isPermaLink="false">1f6a1193-f4bb-4480-a5ae-b538d8b20f46:855</guid><dc:creator>Unclaimed Blog</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.sharepointblogs.com/cmetral/rsscomments.aspx?PostID=855</wfw:commentRss><comments>http://www.sharepointblogs.com/cmetral/archive/2004/05/04/welcome-in-my-thoughts.aspx#comments</comments><description>&lt;p&gt;My name is &lt;a href="http://ch.metral.free.fr"&gt;Christophe Metral&lt;/a&gt;, I am 24 years old and whereas I&amp;#39;m french,&amp;nbsp;I work as Software designer at &lt;a href="http://www.ilem.ch"&gt;ilem&lt;/a&gt; in Geneva, Switzerland. I&amp;#39;ve been here for 2 years now (that&amp;#39;s my first job !), and completed during this period a big project on SharePoint Portal Server 2001. But now it&amp;#39;s time to dive into SharePoint Technologies 2003 and migrations ...&lt;/p&gt;  &lt;p&gt;I am a member of the french user group at &lt;a href="http://www.clubsps.org"&gt;www.clubsps.org&lt;/a&gt;&amp;nbsp;and am active (or try to be) on the french SharePoint newsgroup.&lt;/p&gt;  &lt;p&gt;My hobbies are football (soccer), tennis, &lt;a href="http://freeride2004.free.fr"&gt;ski&lt;/a&gt;, &lt;a href="http://www.sigames.com"&gt;Championship Manager&lt;/a&gt; (?!?!).&lt;/p&gt;  &lt;p&gt;Well I think it&amp;#39;s enough about me for this post.&lt;/p&gt;  &lt;p&gt;I hope you&amp;#39;ll enjoy reading me :-))&lt;/p&gt;&lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=370" width="1" height="1" alt="" /&gt;
			&lt;hr&gt;&lt;span style="font-size:10pt;"&gt;Posted on &lt;a href="http://www.sharepointblogs.com/"&gt;SharePoint Blogs&lt;/a&gt;&lt;/span&gt;
		  &lt;img src="http://www.sharepointblogs.com/aggbug.aspx?PostID=855" width="1" height="1"&gt;</description></item></channel></rss>