<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>DownloadSVN Issue Tracker Rss Feed</title><link>http://www.codeplex.com/DownloadSVN/WorkItem/List.aspx</link><description>DownloadSVN Issue Tracker Rss Description</description><item><title>Created Unassigned: Proxy w/ Authentication [16210]</title><link>http://downloadsvn.codeplex.com/workitem/16210</link><description>I needed a proxy with authentication process, so I created a Form to set it up. The full code is already compiled and compressend in this 7z file.&lt;br /&gt;</description><author>BrumbaZ</author><pubDate>Wed, 22 May 2013 14:15:54 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Proxy w/ Authentication [16210] 20130522021554P</guid></item><item><title>Created Issue: Start and Close buttons should swap places [16082]</title><link>http://downloadsvn.codeplex.com/workitem/16082</link><description>I didn&amp;#39;t read the button&amp;#39;s label and clicked it, but it was the Close button &amp;#58;&amp;#41; I naturally thought it&amp;#39;d be the Start button.&lt;br /&gt;</description><author>halilim</author><pubDate>Sun, 03 Mar 2013 01:16:58 GMT</pubDate><guid isPermaLink="false">Created Issue: Start and Close buttons should swap places [16082] 20130303011658A</guid></item><item><title>Commented Issue: Files with a # in the name return 404 [14996]</title><link>http://downloadsvn.codeplex.com/workitem/14996</link><description>Files with a &amp;#35; in the name give a 404 file not found error and cause an infinite loop&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;tgstation13.googlecode.com&amp;#47;svn&amp;#47;trunk&amp;#47;sound&amp;#47;piano&amp;#47;&lt;br /&gt;Comments: ** Comment from web user: halilim ** &lt;p&gt;Also, second level links like http://hoverzoom.googlecode.com/svn/trunk/ give 404 and an infinite loop too.&lt;/p&gt;</description><author>halilim</author><pubDate>Sun, 03 Mar 2013 01:14:39 GMT</pubDate><guid isPermaLink="false">Commented Issue: Files with a # in the name return 404 [14996] 20130303011439A</guid></item><item><title>Created Issue: Files with a # in the name return 404 [14996]</title><link>http://downloadsvn.codeplex.com/workitem/14996</link><description>Files with a &amp;#35; in the name give a 404 file not found error and cause an infinite loop&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;tgstation13.googlecode.com&amp;#47;svn&amp;#47;trunk&amp;#47;sound&amp;#47;piano&amp;#47;&lt;br /&gt;</description><author>bugmenot2</author><pubDate>Mon, 02 Apr 2012 19:45:58 GMT</pubDate><guid isPermaLink="false">Created Issue: Files with a # in the name return 404 [14996] 20120402074558P</guid></item><item><title>Created Issue: Add support for Credentials [13737]</title><link>http://downloadsvn.codeplex.com/workitem/13737</link><description>Some sites require authentication, to implement this functionality I simply added this line of code.&lt;br /&gt;&lt;br /&gt;        void DownloadFile&amp;#40;string url, string fileName&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            WriteToScreen&amp;#40;&amp;#34;Downloading File&amp;#58; &amp;#34; &amp;#43; url&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            WebRequest webRequest &amp;#61; WebRequest.Create&amp;#40;url&amp;#41;&amp;#59;&lt;br /&gt;            webRequest.Credentials &amp;#61; new NetworkCredential&amp;#40;&amp;#34;SelectUser&amp;#34;, &amp;#34;SelectedPassword&amp;#34;&amp;#41;&amp;#59; &amp;#47;&amp;#47;To-Add by Dreams&lt;br /&gt;            WebResponse webResponse &amp;#61; null&amp;#59;&lt;br /&gt;            Stream responseStream &amp;#61; null&amp;#59;&lt;br /&gt;            try&lt;br /&gt;            &amp;#123;&lt;br /&gt;                webResponse &amp;#61; webRequest.GetResponse&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                responseStream &amp;#61; webResponse.GetResponseStream&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                using &amp;#40;FileStream fs &amp;#61; new FileStream&amp;#40;fileName, FileMode.Create&amp;#41;&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    byte&amp;#91;&amp;#93; buffer &amp;#61; new byte&amp;#91;1024&amp;#93;&amp;#59;&lt;br /&gt;                    int readSize&amp;#59;&lt;br /&gt;                    while &amp;#40;&amp;#40;readSize &amp;#61; responseStream.Read&amp;#40;buffer, 0, buffer.Length&amp;#41;&amp;#41; &amp;#62; 0&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        fs.Write&amp;#40;buffer, 0, readSize&amp;#41;&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                &amp;#125;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            finally&lt;br /&gt;            &amp;#123;&lt;br /&gt;                if &amp;#40;responseStream &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;                    responseStream.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                if &amp;#40;webResponse &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;                    webResponse.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;         DownloadURL string &amp;#40;string url&amp;#41;&lt;br /&gt;         &amp;#123;&lt;br /&gt;             WriteToScreen &amp;#40;&amp;#34;Downloading&amp;#34; &amp;#43; url&amp;#41;&amp;#59;&lt;br /&gt;             using &amp;#40;WebClient client &amp;#61; new WebClient &amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;             &amp;#123;&lt;br /&gt;                 client.Credentials &amp;#61; new NetworkCredential &amp;#40;&amp;#34;SelectedUser&amp;#34;, &amp;#34;SelectedPassword&amp;#34;&amp;#41;&amp;#59;  &amp;#47;&amp;#47;To-Add by Dreams&lt;br /&gt;                 client.DownloadString string data &amp;#61; &amp;#40;url&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                 return date&amp;#59;&lt;br /&gt;             &amp;#125;&lt;br /&gt;         &amp;#125;&lt;br /&gt;</description><author>ldreamsl</author><pubDate>Sat, 25 Jun 2011 22:24:31 GMT</pubDate><guid isPermaLink="false">Created Issue: Add support for Credentials [13737] 20110625102431P</guid></item><item><title>Created Issue: Add support for Proxies</title><link>http://downloadsvn.codeplex.com/WorkItem/View.aspx?WorkItemId=8014</link><description>I need to be able to access svn repositories from behind a proxy. To do this, I hacked the DownloadSVN source code.&lt;br /&gt;&lt;br /&gt;I added a check box &amp;#40;named useDefaultProxyCheckBox&amp;#41; to the form, then the following code in MainForm.buttonGo_Click&amp;#58;&lt;br /&gt;&lt;br /&gt;            if &amp;#40;useDefaultProxyCheckBox.Checked&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                WebRequest.DefaultWebProxy &amp;#61; WebRequest.GetSystemWebProxy&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                WebRequest.DefaultWebProxy.Credentials &amp;#61; CredentialCache.DefaultCredentials&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            else&lt;br /&gt;            &amp;#123;&lt;br /&gt;                WebRequest.DefaultWebProxy &amp;#61; null&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;</description><author>samuel_d_jack</author><pubDate>Tue, 14 Jul 2009 11:52:57 GMT</pubDate><guid isPermaLink="false">Created Issue: Add support for Proxies 20090714115257A</guid></item><item><title>Created Issue: Hi</title><link>http://www.codeplex.com/DownloadSVN/WorkItem/View.aspx?WorkItemId=6075</link><description>Could you please separate business logic from presentation layer&amp;#63;&lt;br /&gt;</description><author>DrWeb</author><pubDate>Sun, 07 Sep 2008 15:18:09 GMT</pubDate><guid isPermaLink="false">Created Issue: Hi 20080907031809P</guid></item></channel></rss>