<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>PowerTools Forum Rss Feed</title><link>http://www.codeplex.com/PowerTools/Thread/List.aspx</link><description>PowerTools Forum Rss Description</description><item><title>New Post: Runs not merging in Word doc</title><link>http://powertools.codeplex.com/discussions/444349</link><description>&lt;div style="line-height: normal;"&gt;Using the following settings in my C# program:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;SimplifyMarkupSettings settings = new SimplifyMarkupSettings
                {
                    AcceptRevisions = true,
                    RemoveComments = true,
                    RemoveContentControls = true,
                    RemoveEndAndFootNotes = true,
                    RemoveFieldCodes = true,
                    RemoveLastRenderedPageBreak = true,
                    RemovePermissions = true,
                    RemoveProof = true,
                    RemoveRsidInfo = true,
                    RemoveSmartTags = true,
                    RemoveSoftHyphens = true,
                    ReplaceTabsWithSpaces = true,
                    RemoveBookmarks = true,
                    RemoveGoBackBookmark = true,
                    NormalizeXml = true,
                    RemoveWebHidden = true
                };&lt;/code&gt;&lt;/pre&gt;

But there are still breaks in my text that I'm trying to process with XSLT; looks like runs are not being combined as the tool is supposed to (AFAIK from reading docs). Here's some of the generated XML after running the tool. Note the comments (added by me). The text should be a single run of 'What I have learned' but it's split into 2 runs, the first containing 'What I have l' and the second, 'earned'. Both have the exact same &amp;lt;w:rPr/&amp;gt; preceding them. How can I merge these two?&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;w:p w:rsidR=&amp;quot;00F10DB1&amp;quot; w:rsidRDefault=&amp;quot;00FC4BC1&amp;quot;&amp;gt;
                        &amp;lt;w:pPr&amp;gt;
                            &amp;lt;w:spacing w:before=&amp;quot;120&amp;quot; w:after=&amp;quot;0&amp;quot; w:line=&amp;quot;240&amp;quot; w:lineRule=&amp;quot;auto&amp;quot;/&amp;gt;
                            &amp;lt;w:rPr&amp;gt;
                                &amp;lt;w:rFonts w:ascii=&amp;quot;Arial&amp;quot; w:hAnsi=&amp;quot;Arial&amp;quot;/&amp;gt;
                                &amp;lt;w:b/&amp;gt;
                                &amp;lt;w:sz w:val=&amp;quot;24&amp;quot;/&amp;gt;
                                &amp;lt;w:szCs w:val=&amp;quot;24&amp;quot;/&amp;gt;
                            &amp;lt;/w:rPr&amp;gt;
                        &amp;lt;/w:pPr&amp;gt;
                        &amp;lt;w:r&amp;gt;
                            &amp;lt;w:rPr&amp;gt;
                                &amp;lt;w:rFonts w:ascii=&amp;quot;Arial&amp;quot; w:hAnsi=&amp;quot;Arial&amp;quot;/&amp;gt;
                                &amp;lt;w:b/&amp;gt;
                                &amp;lt;w:sz w:val=&amp;quot;24&amp;quot;/&amp;gt;
                                &amp;lt;w:szCs w:val=&amp;quot;24&amp;quot;/&amp;gt;
                            &amp;lt;/w:rPr&amp;gt;
                            &amp;lt;w:t&amp;gt;What I have l&amp;lt;/w:t&amp;gt; &amp;lt;!-- HERE --&amp;gt;
                        &amp;lt;/w:r&amp;gt;
                        &amp;lt;w:r&amp;gt;
                            &amp;lt;!-- THIS IS SAME AS ABOVE, NO? --&amp;gt;
                            &amp;lt;w:rPr&amp;gt;
                                &amp;lt;w:rFonts w:ascii=&amp;quot;Arial&amp;quot; w:hAnsi=&amp;quot;Arial&amp;quot;/&amp;gt;
                                &amp;lt;w:b/&amp;gt;
                                &amp;lt;w:sz w:val=&amp;quot;24&amp;quot;/&amp;gt;
                                &amp;lt;w:szCs w:val=&amp;quot;24&amp;quot;/&amp;gt;
                            &amp;lt;/w:rPr&amp;gt;
                            &amp;lt;w:t&amp;gt;earned&amp;lt;/w:t&amp;gt; &amp;lt;!-- CONTINUED HERE --&amp;gt;
                        &amp;lt;/w:r&amp;gt;
                    &amp;lt;/w:p&amp;gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>hiscapness</author><pubDate>Mon, 20 May 2013 22:52:28 GMT</pubDate><guid isPermaLink="false">New Post: Runs not merging in Word doc 20130520105228P</guid></item><item><title>New Post: "The given path's format is not supported" when passing argument to any cmdlet</title><link>http://powertools.codeplex.com/discussions/444346</link><description>&lt;div style="line-height: normal;"&gt;built and installed powertools cmdlets - can see them in powershell. However, every time I try to run one (in this case Confirm-OpenXmlValid ./test.docx):&lt;br /&gt;
&lt;br /&gt;
Confirm-OpenXmlValid : The given path's format is not supported.&lt;br /&gt;
&lt;br /&gt;
Is there something I'm missing?&lt;br /&gt;
&lt;/div&gt;</description><author>hiscapness</author><pubDate>Mon, 20 May 2013 22:28:07 GMT</pubDate><guid isPermaLink="false">New Post: "The given path's format is not supported" when passing argument to any cmdlet 20130520102807P</guid></item><item><title>New Post: Lost image after convert docx to html.</title><link>http://powertools.codeplex.com/discussions/60600</link><description>&lt;div style="line-height: normal;"&gt;I am also facing same problem. Images are not converted while converting word document to HTML.&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;
I can not use the (.DOC) file for conversion to HTML - Exception - File contains corrupted data.&lt;br /&gt;
So, I have to use the (.DOCX) files for conversion to HTML. Is this the limitation?&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
If file contains some images it is not correctly converted. If I Open the HTML file in browser.I can not see the images&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
Following code I am using -&lt;br /&gt;
&lt;br /&gt;
public static void ConvertToHTMLUsingOpenXml(string fUpload, string htmlFile, string imagePath)&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;   {

       string sourceDocumentFileName = fUpload;

       string imageDirectoryName = Path.GetFileNameWithoutExtension(sourceDocumentFileName) + &amp;quot;_files&amp;quot;;

       int imageCounter = 0;

       byte[] byteArray = File.ReadAllBytes(sourceDocumentFileName);

       using (MemoryStream memoryStream = new MemoryStream())

       {

           memoryStream.Write(byteArray, 0, byteArray.Length);

           WordprocessingDocument doc =

               WordprocessingDocument.Open(memoryStream, true);

           {

               HtmlConverterSettings settings = new HtmlConverterSettings()

               {

                   PageTitle = Path.GetFileNameWithoutExtension(sourceDocumentFileName),

                   ConvertFormatting = true,

               };

               XElement html = HtmlConverter.ConvertToHtml(doc, settings,

                   imageInfo =&amp;gt;

                   {

                       DirectoryInfo localDirInfo = new DirectoryInfo(imagePath + imageDirectoryName);//Server.MapPath(HTML_FILE_PATH + imageDirectoryName));

                       if (!localDirInfo.Exists)

                           localDirInfo.Create();

                       ++imageCounter;

                       string extension = imageInfo.ContentType.Split('/')[1].ToLower();

                       ImageFormat imageFormat = null;

                       if (extension == &amp;quot;png&amp;quot;)

                       {

                           extension = &amp;quot;jpeg&amp;quot;;

                           imageFormat = ImageFormat.Jpeg;

                       }

                       else if (extension == &amp;quot;bmp&amp;quot;)

                           imageFormat = ImageFormat.Bmp;

                       else if (extension == &amp;quot;jpeg&amp;quot;)

                           imageFormat = ImageFormat.Jpeg;

                       else if (extension == &amp;quot;tiff&amp;quot;)

                           imageFormat = ImageFormat.Tiff;

                        if (imageFormat == null)

                           return null;

                        string imageFileName = imagePath+ imageDirectoryName + &amp;quot;\\image&amp;quot; + // Server.MapPath(HTML_FILE_PATH + imageDirectoryName) + &amp;quot;/image&amp;quot; +

                            imageCounter.ToString() + &amp;quot;.&amp;quot; + extension;

                       try

                       {

                           imageInfo.Bitmap.Save(imageFileName, imageFormat);

                       }

                       catch (System.Runtime.InteropServices.ExternalException)

                       {

                           return null;

                       }

                       XElement img = new XElement(Xhtml.img,

                           new XAttribute(NoNamespace.src, imageFileName),

                           imageInfo.ImgStyleAttribute,

                           imageInfo.AltText != null ?

                               new XAttribute(NoNamespace.alt, imageInfo.AltText) : null);

                       return img;

                   });

               File.WriteAllText(htmlFile, html.ToString());

           }

           memoryStream.Close();

       }

   }&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>akshay904</author><pubDate>Thu, 09 May 2013 06:27:26 GMT</pubDate><guid isPermaLink="false">New Post: Lost image after convert docx to html. 20130509062726A</guid></item><item><title>New Post: PowerTools 2.2 source code cannot be Referenced in another project</title><link>http://powertools.codeplex.com/discussions/442330</link><description>&lt;div style="line-height: normal;"&gt;Himanshu,&lt;br /&gt;
&lt;br /&gt;
I am not sure but adding references to &amp;quot;DocumentFormat.OpenXml&amp;quot; and &amp;quot;WindowsBase&amp;quot; apart from OpenXmlPowerTools dll in your project can resolve your issue.&lt;br /&gt;
&lt;br /&gt;
-- Fenil.&lt;br /&gt;
&lt;/div&gt;</description><author>fenilrathod</author><pubDate>Mon, 06 May 2013 12:18:47 GMT</pubDate><guid isPermaLink="false">New Post: PowerTools 2.2 source code cannot be Referenced in another project 20130506121847P</guid></item><item><title>New Post: PowerTools 2.2 source code cannot be Referenced in another project</title><link>http://powertools.codeplex.com/discussions/442330</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
I'm trying to use the PowerTools 2.2 in my project, I need to use the MarkupSimplifier class as in Eric's blog post - &lt;a href="http://ericwhite.com/blog/2011/03/09/getting-started-with-open-xml-powertools-markup-simplifier" rel="nofollow"&gt;http://ericwhite.com/blog/2011/03/09/getting-started-with-open-xml-powertools-markup-simplifier&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I’m using it with Visual Studio 2010 in the source code. I’ve included the PowerTools 2.2 project that I downloaded from codeplex to my solution and then added the reference to OpenXmlPowerTools in my project so I can use MarkupSimplifier.&lt;br /&gt;
When I try to debug the solution initially it loads fine but later gives an exception:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;System.IO.FileNotFoundException was caught
Message=Could not load file or assembly ‘OpenXmlPowerTools, Version=2.2.0.0, Culture=neutral, PublicKeyToken=981466f262afc448′ or one of its dependencies. The system cannot find the file specified.
I’m really stumped, I’ve tried adding reference to only the OpenXmlPowerTools DLL but that doesn’t seem to work either and gives same message.&lt;/code&gt;&lt;/pre&gt;

Also, I’m using Windows Server 2008 R2, and Sharepoint 2010 with Powershell 2.0&lt;br /&gt;
&lt;br /&gt;
Not sure what might be causing the exceptions? &lt;br /&gt;
Please could someone help.&lt;br /&gt;
&lt;br /&gt;
Many thanks&lt;br /&gt;
Himanshu&lt;br /&gt;
&lt;/div&gt;</description><author>maverickht</author><pubDate>Thu, 02 May 2013 12:02:44 GMT</pubDate><guid isPermaLink="false">New Post: PowerTools 2.2 source code cannot be Referenced in another project 20130502120244P</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;Hi Eric,&lt;br /&gt;
&lt;br /&gt;
I've just resolve the issue by making the unique ids for all the shape, shapeTypes and objects associates with each other. And this simple solution have resolve my issue. Below is the code, Let me know if anything is unusual.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt; private static void FixUpEmbeddedObjectIds(WordprocessingDocument outputWPDocument)
 {
     foreach (EmbeddedObject obj in outputWPDocument.MainDocumentPart.Document.Descendants&amp;lt;EmbeddedObject&amp;gt;())
     {
         var shapeType = obj.Descendants&amp;lt;DocumentFormat.OpenXml.Vml.Shapetype&amp;gt;().FirstOrDefault();
         var shape = obj.Descendants&amp;lt;DocumentFormat.OpenXml.Vml.Shape&amp;gt;().FirstOrDefault();
         var oleObject = obj.Descendants&amp;lt;OleObject&amp;gt;().FirstOrDefault();

         if (shapeType != null &amp;amp;&amp;amp; shape != null)
         {
             shapeType.Id = Guid.NewGuid().ToString();
             shape.Type = shapeType.Id;
         }
         if (shape != null &amp;amp;&amp;amp; oleObject != null)
         {
             shape.Id = Guid.NewGuid().ToString();
             oleObject.ShapeId = shape.Id;
         }
     }
 }&lt;/code&gt;&lt;/pre&gt;

Cheers,&lt;br /&gt;
Fenil.&lt;br /&gt;
&lt;/div&gt;</description><author>fenilrathod</author><pubDate>Wed, 24 Apr 2013 12:02:00 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130424120200P</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;In DocumentBuilder, you will find a class that it uses to prevent duplication of images.  The correct approach is to make a variation of that class that prevents duplication of the OleObject.  The code will be almost identical.  It could be possible to modify the class to prevent image duplication so that it prevents duplication of multiple types of things, i.e. images and OleObjects, but it is a small class and it is probably more effort that it is worth.  I would probably just create a new class that is nearly identical to that one.&lt;br /&gt;
&lt;br /&gt;
Cheers, Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EricWhiteDpe</author><pubDate>Fri, 12 Apr 2013 19:46:31 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130412074631P</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;Thanks again for your quick response. &lt;br /&gt;
&lt;br /&gt;
Today, After investigating further I found that during merging, OleObjects getting duplicated with same id with duplicated shape and shapetypes as well. Probably that could be an issue.&lt;br /&gt;
&lt;br /&gt;
I'll look into it further and will try to solve it if possible.&lt;br /&gt;
&lt;br /&gt;
If you can provide any suggestions it will be helpful.&lt;br /&gt;
&lt;br /&gt;
Thanks again for your time.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Fenil.&lt;br /&gt;
&lt;/div&gt;</description><author>fenilrathod</author><pubDate>Fri, 12 Apr 2013 17:38:16 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130412053816P</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;I haven't done the analysis of what would be required to support OleObjects.  There probably should be some check to make sure that the same OleObject isn't duplicated in the destination document.  Then to test a number of scenarios, making sure all bases are covered.&lt;br /&gt;
&lt;br /&gt;
It will be some time before I can get to this.  I am over-booked for the next 2 1/2 months.&lt;br /&gt;
&lt;br /&gt;
I do have PowerTools on my agenda, and that includes some important enhancements to DocumentBuilder.&lt;br /&gt;
&lt;br /&gt;
Cheers, Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EricWhiteDpe</author><pubDate>Fri, 12 Apr 2013 17:03:17 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130412050317P</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;Thanks Eric for the response.&lt;br /&gt;
&lt;br /&gt;
I guess DocumentBuilder supporting OleObjects and I've successfully able to merge OleObjects(Linked Objects, e.g, Excel file) if they are in only one source document. &lt;br /&gt;
&lt;br /&gt;
But as soon as multiple documents have OleObjects, after merging they links of OleObjects are getting broken apart from the first OleObject in the document. If possible I could share demo application for this issue.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Fenil.&lt;br /&gt;
&lt;/div&gt;</description><author>fenilrathod</author><pubDate>Fri, 12 Apr 2013 13:16:16 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130412011616P</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;Hi Fenil,&lt;br /&gt;
&lt;br /&gt;
That is an issue with DocumentBuilder.  Currently it does not support merging documents that reference OleObjects.  It is a great idea for a future enhancement.&lt;br /&gt;
&lt;br /&gt;
Regards, Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EricWhiteDpe</author><pubDate>Fri, 12 Apr 2013 09:51:56 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130412095156A</guid></item><item><title>New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder</title><link>http://powertools.codeplex.com/discussions/440028</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I'm getting issues during merging multiple documents having OleObjects (Linked Objects) having external relationships to files using DocumentBuilder.&lt;br /&gt;
&lt;br /&gt;
You can reproduce this issue by having multiple linked objects in it and try to merge them using DocumentBuilder. &lt;br /&gt;
&lt;br /&gt;
As a result you will have a merged document with OleObjects with broken external relationship and you will no longer able to update those objects by clicking them.&lt;br /&gt;
&lt;br /&gt;
I just want to know if this is the issue with DocumentBuilder or I am doing something wrong?&lt;br /&gt;
&lt;br /&gt;
Fenil.&lt;br /&gt;
&lt;/div&gt;</description><author>fenilrathod</author><pubDate>Fri, 12 Apr 2013 07:42:23 GMT</pubDate><guid isPermaLink="false">New Post: Multiple OleObjects (Linked Objects) are not getting merged properly using DocumentBuilder 20130412074223A</guid></item><item><title>New Post: Change to allow a partial importation of KeepSection</title><link>http://powertools.codeplex.com/discussions/434806</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br /&gt;
&lt;br /&gt;
I have tried to merge some documents but by keeping the informations of the first document. So, when I added a source for the first document I had to add True to KeepSection. For the other documents as I needed to keep the header and footer of the first document I had to put False. The problem was that a custom margin was only allowed for the content of the first document and the other documents had lost the custom margins.&lt;br /&gt;
I have made the following change (in case someone is interested : &lt;br /&gt;
In the file &lt;br /&gt;
DocumentBuilder.cs&lt;br /&gt;
Function BuildDocument&lt;br /&gt;
In the end of the function there is &lt;br /&gt;
&lt;br /&gt;
else&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;FixUpSectionProperties(output);
&lt;/code&gt;&lt;/pre&gt;

I have put the two lines in comment so the new code is &lt;br /&gt;
&lt;br /&gt;
 //else&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            //    FixUpSectionProperties(output);
&lt;/code&gt;&lt;/pre&gt;

the end of the function looks like that &lt;br /&gt;
&lt;br /&gt;
if (!sources.Any(s =&amp;gt; s.KeepSections))&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;            {
                using (OpenXmlMemoryStreamDocument streamDoc = new OpenXmlMemoryStreamDocument(sources[0].WmlDocument))
                using (WordprocessingDocument doc = streamDoc.GetWordprocessingDocument())
                {
                    var sectPr = doc.MainDocumentPart.GetXDocument().Root.Element(W.body)
                        .Elements().Last();
                    if (sectPr.Name == W.sectPr)
                    {
                        AddSectionAndDependencies(doc, output, sectPr, images);
                        output.MainDocumentPart.GetXDocument().Root.Element(W.body).Add(sectPr);
                    }
                }
            }
            //else
            //    FixUpSectionProperties(output);
        }
        foreach (var part in output.GetAllParts())
            if (part.Annotation&amp;lt;XDocument&amp;gt;() != null)
                part.PutXDocument();
    }&lt;/code&gt;&lt;/pre&gt;

With this change I can keep the header / footer / margins of the first documents without losing parameters from the other ones.&lt;br /&gt;
&lt;br /&gt;
Marc&lt;br /&gt;
&lt;/div&gt;</description><author>marc_al</author><pubDate>Thu, 28 Feb 2013 07:41:59 GMT</pubDate><guid isPermaLink="false">New Post: Change to allow a partial importation of KeepSection 20130228074159A</guid></item><item><title>New Post: How to extract content from Table cell using DocumentBuilder?</title><link>http://powertools.codeplex.com/discussions/397278</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I can already offer a solution. &amp;nbsp;We can define ISource interface for sources (that&amp;nbsp;encapsulate&amp;nbsp;a content extraction from source document), and implement DocumentBuilder in terms of ISource. &amp;nbsp;Draft version you can find here -&amp;nbsp;&lt;a href="https://gist.github.com/3799925"&gt;https://gist.github.com/3799925&lt;/a&gt;&amp;nbsp;(tiny
 changes&amp;nbsp;require&amp;nbsp;into MergeOpenXmlDocumentCmdlet.cs)&lt;/p&gt;
&lt;p&gt;After that we can define new Source for table cells - something like that&amp;nbsp;&lt;a href="https://gist.github.com/3799948"&gt;https://gist.github.com/3799948&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;What do you think about such changes?&lt;/p&gt;
&lt;/div&gt;</description><author>the_ravent</author><pubDate>Fri, 28 Sep 2012 13:48:44 GMT</pubDate><guid isPermaLink="false">New Post: How to extract content from Table cell using DocumentBuilder? 20120928014844P</guid></item><item><title>New Post: How to extract content from Table cell using DocumentBuilder?</title><link>http://powertools.codeplex.com/discussions/397278</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;No, the granularity of a source is at the table level.&amp;nbsp; It is a good idea, though.&lt;/p&gt;
&lt;p&gt;-Eric&lt;/p&gt;&lt;/div&gt;</description><author>EricWhiteDpe</author><pubDate>Fri, 28 Sep 2012 13:18:27 GMT</pubDate><guid isPermaLink="false">New Post: How to extract content from Table cell using DocumentBuilder? 20120928011827P</guid></item><item><title>New Post: How to extract content from Table cell using DocumentBuilder?</title><link>http://powertools.codeplex.com/discussions/397278</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Could I use DocumentBuilder to copy content of one table cell to another document?&lt;/p&gt;
&lt;p&gt;Is it possible to describe content of the one table cell as a Source?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;/div&gt;</description><author>the_ravent</author><pubDate>Fri, 28 Sep 2012 10:45:32 GMT</pubDate><guid isPermaLink="false">New Post: How to extract content from Table cell using DocumentBuilder? 20120928104532A</guid></item><item><title>New Post: SharedStringTable updates</title><link>http://powertools.codeplex.com/discussions/389921</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Was looking through the AddValue method in WorkSheetAccessor class. While adding a value to a cell shouldn't the SharedStringTable be updated, And the reference ShareStringIndex used as a value in the Cell?&lt;/p&gt;
&lt;p&gt;Better still shall we have another AddValue() which lets one update SharedStringTable as well, setting the data type as SharedString?&lt;/p&gt;
&lt;/div&gt;</description><author>sarangbk</author><pubDate>Thu, 02 Aug 2012 00:55:45 GMT</pubDate><guid isPermaLink="false">New Post: SharedStringTable updates 20120802125545A</guid></item><item><title>New Post: Binaries?</title><link>http://powertools.codeplex.com/discussions/355533</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I now see that Remove-OpenXmlMarkup does indeed do SimplifyMarkup and in particular should combine adjacent runs. However, it is failing to do that on a very simple file. Here is the portion of document.xml in question. Any thoughts?&lt;/p&gt;
&lt;p&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;p&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;pPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;jc&lt;/span&gt; &lt;span style="color: red;"&gt;w:val&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;center&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;pPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;bookmarkStart&lt;/span&gt; &lt;span style="color: red;"&gt;w:id&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;0&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt; &lt;span style="color: red;"&gt;w:name&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;_GoBack&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;bookmarkEnd&lt;/span&gt; &lt;span style="color: red;"&gt;w:id&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;0&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rFonts&lt;/span&gt; &lt;span style="color: red;"&gt;w:hint&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;eastAsia&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&amp;amp;#20316;&amp;amp;#25104;&amp;amp;#26085;&amp;amp;#65306;&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515;"&gt;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;201&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515;"&gt;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rFonts&lt;/span&gt; &lt;span style="color: red;"&gt;w:hint&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;eastAsia&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;1&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515;"&gt;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;/0&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515;"&gt;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rFonts&lt;/span&gt; &lt;span style="color: red;"&gt;w:hint&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;eastAsia&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;6&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515;"&gt;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rFonts&lt;/span&gt; &lt;span style="color: red;"&gt;w:hint&lt;/span&gt;&lt;span style="color: blue;"&gt;=&lt;/span&gt;&lt;span style="color: black;"&gt;"&lt;/span&gt;&lt;span style="color: blue;"&gt;eastAsia&lt;/span&gt;&lt;span style="color: black;"&gt;"&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;rPr&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;21&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515;"&gt;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;t&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;r&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;w&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: #a31515;"&gt;p&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;

&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;&lt;/div&gt;</description><author>bobmyers</author><pubDate>Sun, 13 May 2012 01:11:30 GMT</pubDate><guid isPermaLink="false">New Post: Binaries? 20120513011130A</guid></item><item><title>New Post: Binaries?</title><link>http://powertools.codeplex.com/discussions/355533</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Built it OK, but now I'm wondering if SimplifyMarkup (&lt;a href="http://blogs.msdn.com/b/ericwhite/archive/2010/02/08/enabling-better-transformations-by-simplifying-open-xml-wordprocessingml-markup.aspx"&gt;http://blogs.msdn.com/b/ericwhite/archive/2010/02/08/enabling-better-transformations-by-simplifying-open-xml-wordprocessingml-markup.aspx&lt;/a&gt;)&amp;nbsp;is available as a cmdlet. I'm particularly interested in scrunching together runs, and Remove-OpenXmlMarkup doesn't seem to do this.&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;&lt;/div&gt;</description><author>bobmyers</author><pubDate>Sat, 12 May 2012 06:05:21 GMT</pubDate><guid isPermaLink="false">New Post: Binaries? 20120512060521A</guid></item><item><title>New Post: Binaries?</title><link>http://powertools.codeplex.com/discussions/355533</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Is there somewhere to download pre-compiled binaries from? Looked but couldn't find it.&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;&lt;/div&gt;</description><author>bobmyers</author><pubDate>Sat, 12 May 2012 05:23:46 GMT</pubDate><guid isPermaLink="false">New Post: Binaries? 20120512052346A</guid></item></channel></rss>