<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>{ Dev Farm }</title>
	<atom:link href="http://www.devfarm.it/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devfarm.it</link>
	<description>Web &#38; Windows Development</description>
	<lastBuildDate>Wed, 19 Jun 2013 09:30:27 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Correct Link SEO Migration from old Asp.Net WebForm to new Asp.Net Mvc Website</title>
		<link>http://www.devfarm.it/senza-categoria/correct-link-seo-migration-webform-mvc-website/</link>
		<comments>http://www.devfarm.it/senza-categoria/correct-link-seo-migration-webform-mvc-website/#comments</comments>
		<pubDate>Wed, 19 Jun 2013 09:20:39 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[WebForm]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=22821</guid>
		<description><![CDATA[When you are designing a new website you have to think about old website links migration. This is very important to avoid tons of 404 errors and losing massive traffic. First of all you&#8217;ll have to find out all your &#8230; <a href="http://www.devfarm.it/senza-categoria/correct-link-seo-migration-webform-mvc-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>When you are designing a new website you have to think about old website links migration.</p>
<p>This is very important to avoid tons of 404 errors and losing massive traffic.</p>
<p>First of all you&#8217;ll have to find out all your old link. Such as</p>
<p>/news/Default.aspx<br />
/news/Default.aspx?id=123<br />
/news/Default.aspx?id=456<br />
etc..</p>
<p>and map them to</p>
<p>/news/<br />
/news/new-website<br />
/news/dismiss-old-website<br />
etc..</p>
<p>Fortunately ASP.NET MVC made this translation quite simple.</p>
<p>In your global.asax (or RegisterRutes function) add the code to handle the 301 redirect</p>
<pre class="brush:c#">    routes.MapRoute(
        name: "News Redirect",
        url: "news/Default.aspx",
        defaults: new { controller = "Redirect", action = "News" }
    );</pre>
<p>Than, I suppose you have a Redirect Controller, just convert the old link in the new website url system.</p>
<pre class="brush:c#">    public class RedirectController : Controller
    {

        public ActionResult News(int? id)
        {
            if (id &gt; 0)
            {
                // your code to find out your new permalink
                var permalink = "xxxxxxxxxxxxxxxxxxxx";
                // your code to find out your new permalink
                return RedirectPermanent("/News/" + permalink);
            }
            return RedirectPermanent("/News");
        }

    }</pre>
<p>RedirectPermanent function will set301 as Response Status Code.<br />
Http Status Code 301 means &#8220;Moved Permanently&#8221;, in this way the search engine will replace the old link with the new one without losing traffic and throwing annoying 404 errors.</p>
<p>Other Resources:</p>
<p><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html">http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html</a></p>
<p><a href="http://msdn.microsoft.com/it-it/library/system.web.httpresponse.redirectpermanent.aspx">http://msdn.microsoft.com/it-it/library/system.web.httpresponse.redirectpermanent.aspx</a></p>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcorrect-link-seo-migration-webform-mvc-website%2F&amp;t=Correct+Link+SEO+Migration+from+old+Asp.Net+WebForm+to+new+Asp.Net+Mvc+Website" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=Correct+Link+SEO+Migration+from+old+Asp.Net+WebForm+to+new+Asp.Net+Mvc+Website%20-%20http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcorrect-link-seo-migration-webform-mvc-website%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcorrect-link-seo-migration-webform-mvc-website%2F&amp;title=Correct+Link+SEO+Migration+from+old+Asp.Net+WebForm+to+new+Asp.Net+Mvc+Website&amp;notes=When+you+are+designing+a+new+website+you+have+to+think+about+old+website+links+migration.%0D%0A%0D%0AThis+is+very+important+to+avoid+tons+of+404+errors+and+losing+massive+traffic.%0D%0A%0D%0AFirst+of+all+you%27ll+have+to+find+out+all+your+old+link.+Such+as%0D%0A%0D%0A%2Fnews%2FDe" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcorrect-link-seo-migration-webform-mvc-website%2F&amp;title=Correct+Link+SEO+Migration+from+old+Asp.Net+WebForm+to+new+Asp.Net+Mvc+Website&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=When+you+are+designing+a+new+website+you+have+to+think+about+old+website+links+migration.%0D%0A%0D%0AThis+is+very+important+to+avoid+tons+of+404+errors+and+losing+massive+traffic.%0D%0A%0D%0AFirst+of+all+you%27ll+have+to+find+out+all+your+old+link.+Such+as%0D%0A%0D%0A%2Fnews%2FDe" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcorrect-link-seo-migration-webform-mvc-website%2F&amp;title=Correct+Link+SEO+Migration+from+old+Asp.Net+WebForm+to+new+Asp.Net+Mvc+Website" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/senza-categoria/correct-link-seo-migration-webform-mvc-website/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=Correct+Link+SEO+Migration+from+old+Asp.Net+WebForm+to+new+Asp.Net+Mvc+Website&amp;body=When+you+are+designing+a+new+website+you+have+to+think+about+old+website+links+migration.%0D%0A%0D%0AThis+is+very+important+to+avoid+tons+of+404+errors+and+losing+massive+traffic.%0D%0A%0D%0AFirst+of+all+you%27ll+have+to+find+out+all+your+old+link.+Such+as%0D%0A%0D%0A%2Fnews%2FDe%20-%20http://www.devfarm.it/senza-categoria/correct-link-seo-migration-webform-mvc-website/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/senza-categoria/correct-link-seo-migration-webform-mvc-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Internet Explorer Flat Scrollbars &#8211; Win 8 style</title>
		<link>http://www.devfarm.it/senza-categoria/css-internet-explorer-flat-scrollbars/</link>
		<comments>http://www.devfarm.it/senza-categoria/css-internet-explorer-flat-scrollbars/#comments</comments>
		<pubDate>Thu, 30 May 2013 14:21:10 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=22382</guid>
		<description><![CDATA[Result screenshot: &#160; &#160; Very simple css: body { scrollbar-3dlight-color: #eaeaea; /* LightGray */ scrollbar-arrow-color: #cfcfcf; /* Gray */ scrollbar-darkshadow-color: #eaeaea; /* LightGray */ scrollbar-face-color: #cfcfcf; /* Gray */ scrollbar-highlight-color: #cfcfcf; /* Gray */ scrollbar-shadow-color: #cfcfcf; /* Gray */ scrollbar-track-color: &#8230; <a href="http://www.devfarm.it/senza-categoria/css-internet-explorer-flat-scrollbars/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Result screenshot:<br />
&nbsp;<br />
<img class="size-full wp-image-22387 aligncenter" alt="win8-scrolls" src="http://www.devfarm.it/wp-content/uploads/2013/05/win8-scrolls.png" width="165" height="135" /><br />
&nbsp;</p>
<p>Very simple css:</p>
<pre class="brush:css">body {
scrollbar-3dlight-color: #eaeaea; /* LightGray */
scrollbar-arrow-color: #cfcfcf; /* Gray */
scrollbar-darkshadow-color: #eaeaea; /* LightGray */
scrollbar-face-color: #cfcfcf; /* Gray */
scrollbar-highlight-color: #cfcfcf; /* Gray */
scrollbar-shadow-color: #cfcfcf; /* Gray */
scrollbar-track-color: #eaeaea; /* LightGray */
}</pre>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcss-internet-explorer-flat-scrollbars%2F&amp;t=CSS+Internet+Explorer+Flat+Scrollbars+-+Win+8+style" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=CSS+Internet+Explorer+Flat+Scrollbars+-+Win+8+style%20-%20http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcss-internet-explorer-flat-scrollbars%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcss-internet-explorer-flat-scrollbars%2F&amp;title=CSS+Internet+Explorer+Flat+Scrollbars+-+Win+8+style&amp;notes=Result+screenshot%3A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AVery+simple+css%3A%0D%0Abody+%7B%0D%0Ascrollbar-3dlight-color%3A+%23eaeaea%3B+%2F%2A+LightGray+%2A%2F%0D%0Ascrollbar-arrow-color%3A+%23cfcfcf%3B+%2F%2A+Gray+%2A%2F%0D%0Ascrollbar-darkshadow-color%3A+%23eaeaea%3B+%2F%2A+LightGray+%2A%2F%0D%0Ascrollbar-face-color%3A+%23cfcfcf%3B+%2F%2A+G" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcss-internet-explorer-flat-scrollbars%2F&amp;title=CSS+Internet+Explorer+Flat+Scrollbars+-+Win+8+style&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=Result+screenshot%3A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AVery+simple+css%3A%0D%0Abody+%7B%0D%0Ascrollbar-3dlight-color%3A+%23eaeaea%3B+%2F%2A+LightGray+%2A%2F%0D%0Ascrollbar-arrow-color%3A+%23cfcfcf%3B+%2F%2A+Gray+%2A%2F%0D%0Ascrollbar-darkshadow-color%3A+%23eaeaea%3B+%2F%2A+LightGray+%2A%2F%0D%0Ascrollbar-face-color%3A+%23cfcfcf%3B+%2F%2A+G" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fcss-internet-explorer-flat-scrollbars%2F&amp;title=CSS+Internet+Explorer+Flat+Scrollbars+-+Win+8+style" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/senza-categoria/css-internet-explorer-flat-scrollbars/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=CSS+Internet+Explorer+Flat+Scrollbars+-+Win+8+style&amp;body=Result+screenshot%3A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AVery+simple+css%3A%0D%0Abody+%7B%0D%0Ascrollbar-3dlight-color%3A+%23eaeaea%3B+%2F%2A+LightGray+%2A%2F%0D%0Ascrollbar-arrow-color%3A+%23cfcfcf%3B+%2F%2A+Gray+%2A%2F%0D%0Ascrollbar-darkshadow-color%3A+%23eaeaea%3B+%2F%2A+LightGray+%2A%2F%0D%0Ascrollbar-face-color%3A+%23cfcfcf%3B+%2F%2A+G%20-%20http://www.devfarm.it/senza-categoria/css-internet-explorer-flat-scrollbars/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/senza-categoria/css-internet-explorer-flat-scrollbars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF &#8211; Running long tasks without freezing the UI</title>
		<link>http://www.devfarm.it/senza-categoria/wpf-running-long-tasks-freezing-ui/</link>
		<comments>http://www.devfarm.it/senza-categoria/wpf-running-long-tasks-freezing-ui/#comments</comments>
		<pubDate>Fri, 03 May 2013 10:38:12 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Senza categoria]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=20220</guid>
		<description><![CDATA[In orther to avoid freezed ui and annoing &#8220;Application is Not Responding&#8221; messages I made this very easy helper. It simply set the cursor in Waiting mode and call your function on anoter task, without freezing your wpf app. When &#8230; <a href="http://www.devfarm.it/senza-categoria/wpf-running-long-tasks-freezing-ui/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In orther to avoid freezed ui and annoing &#8220;Application is Not Responding&#8221; messages I made this very easy helper.<br />
It simply set the cursor in Waiting mode and call your function on anoter task, without freezing your wpf app. When the function is done, cursor return to default.</p>
<pre class="brush:csharp">using System;
using System.Windows;
using System.Windows.Media;
using System.Windows.Input;
using System.Threading.Tasks;
using System.Windows.Controls;

public static class UIHelper
{

  public static void callAsync(UserControl el, Action&lt;Object&gt; action)
  {
    el.Cursor = Cursors.Wait;
    var uiScheduler = TaskScheduler.FromCurrentSynchronizationContext();
    Task.Factory.StartNew(action, TaskCreationOptions.LongRunning).ContinueWith(_ => el.Cursor = Cursors.Arrow, uiScheduler);
  }

}</pre>
<p>You can call the function from your UserColtrols like this:</p>
<pre class="brush:csharp">

  UIHelper.callAsync(this, o => test("hello"));

</pre>
<p>Than, if you want to update your UI from the task, you have to ask the Dispatcher, here a sample:</p>
<pre class="brush:csharp">
  private void test(string msg)
  {
    // your code...
    // your code...
    // your code...

    this.Dispatcher.Invoke(DispatcherPriority.Normal, (Action)(() => {
      yourTextBox1.Text = msg;
    }));
  }
</pre>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fwpf-running-long-tasks-freezing-ui%2F&amp;t=WPF+-+Running+long+tasks+without+freezing+the+UI" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=WPF+-+Running+long+tasks+without+freezing+the+UI%20-%20http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fwpf-running-long-tasks-freezing-ui%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fwpf-running-long-tasks-freezing-ui%2F&amp;title=WPF+-+Running+long+tasks+without+freezing+the+UI&amp;notes=In+orther+to+avoid+freezed+ui+and+annoing+%22Application+is+Not+Responding%22+messages+I+made+this+very+easy+helper.%0D%0AIt+simply+set+the+cursor+in+Waiting+mode+and+call+your+function+on+anoter+task%2C+without+freezing+your+wpf+app.+When+the+function+is+done" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fwpf-running-long-tasks-freezing-ui%2F&amp;title=WPF+-+Running+long+tasks+without+freezing+the+UI&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=In+orther+to+avoid+freezed+ui+and+annoing+%22Application+is+Not+Responding%22+messages+I+made+this+very+easy+helper.%0D%0AIt+simply+set+the+cursor+in+Waiting+mode+and+call+your+function+on+anoter+task%2C+without+freezing+your+wpf+app.+When+the+function+is+done" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fwpf-running-long-tasks-freezing-ui%2F&amp;title=WPF+-+Running+long+tasks+without+freezing+the+UI" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/senza-categoria/wpf-running-long-tasks-freezing-ui/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=WPF+-+Running+long+tasks+without+freezing+the+UI&amp;body=In+orther+to+avoid+freezed+ui+and+annoing+%22Application+is+Not+Responding%22+messages+I+made+this+very+easy+helper.%0D%0AIt+simply+set+the+cursor+in+Waiting+mode+and+call+your+function+on+anoter+task%2C+without+freezing+your+wpf+app.+When+the+function+is+done%20-%20http://www.devfarm.it/senza-categoria/wpf-running-long-tasks-freezing-ui/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/senza-categoria/wpf-running-long-tasks-freezing-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ready to use 301 Redirect with Http Module</title>
		<link>http://www.devfarm.it/senza-categoria/ready-to-use-301-redirect-with-http-module/</link>
		<comments>http://www.devfarm.it/senza-categoria/ready-to-use-301-redirect-with-http-module/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 08:39:59 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Modules]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[web.config]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=83</guid>
		<description><![CDATA[Download&#160; Just open the web.config and edit the appsetting newSite with your new site. That&#8217;s all! All the requests will be forwarded with &#8220;301 Moved Permanently&#8221; status code. Example: Your site is published at http://www.currentsite.com and you want to redirect &#8230; <a href="http://www.devfarm.it/senza-categoria/ready-to-use-301-redirect-with-http-module/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id='wpdm_file_2' class='wpdm_file wpdm-only-button'><div class='cont'><div class='btn_outer'><div class='btn_outer_c' style=''><a class='btn_left  ' rel='2' title='301 Redirect with Http Module  ' href='http://www.devfarm.it/?wpdmact=process&did=Mi5ob3RsaW5r'  >Download</a><span class='btn_right'>&nbsp;</span></div></div><div class='clear'></div></div></div>
<p>Just open the web.config and edit the appsetting newSite with your new site. That&#8217;s all!</p>
<p>All the requests will be forwarded with &#8220;301 Moved Permanently&#8221; status code.</p>
<p><strong>Example: </strong>Your site is published at <em>http://www.currentsite.com</em> and you want to redirect at http://www.newsite.com</p>
<p>upload the files at <em>http://www.currentsite.com</em> and edit the web.config like:</p>
<pre>www.newsite.com"/&gt;</pre>
<p>All request will be forwarded like:</p>
<p>http://www.currentsite.com<br />
-&gt; http://www.newsite.com</p>
<p>http://www.currentsite.com/helloworld<br />
-&gt; http://www.newsite.com/helloworld</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The site is tested on <strong>iis7</strong>, <strong>framework 4</strong> Integrated pipeline mode (standard configuration in most of cases).</p>
<p><strong>Source Code:</strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Web.config</p>
<pre></pre>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Module.cs</p>
<pre>using System;
using System.Web;
using System.Configuration;

namespace Redirect
{
public class Module : IHttpModule
{

public void Dispose()
{
}

public void Init(HttpApplication context)
{
context.BeginRequest += new EventHandler(Application_BeginRequest);
context.EndRequest += (new EventHandler(Application_EndRequest));
}

private void Application_BeginRequest(Object source, EventArgs e)
{
HttpApplication hap = (HttpApplication)source;
HttpContext hc = (HttpContext)hap.Context;
string newSite = ConfigurationManager.AppSettings["newSite"];
string strUrl = newSite + hc.Request.Url.PathAndQuery;
hc.Response.Clear();
hc.Response.Status = "301 Moved Permanently";
hc.Response.Headers.Add("Location", strUrl);
}

private void Application_EndRequest(Object source, EventArgs e)
{

}

}
}</pre>
<p>&nbsp;</p>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fready-to-use-301-redirect-with-http-module%2F&amp;t=Ready+to+use+301+Redirect+with+Http+Module" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=Ready+to+use+301+Redirect+with+Http+Module%20-%20http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fready-to-use-301-redirect-with-http-module%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fready-to-use-301-redirect-with-http-module%2F&amp;title=Ready+to+use+301+Redirect+with+Http+Module&amp;notes=Just+open+the+web.config+and+edit+the+appsetting+newSite+with+your+new+site.+That%27s+all%21%0D%0A%0D%0AAll+the+requests+will+be+forwarded+with+%22301+Moved+Permanently%22+status+code.%0D%0A%0D%0AExample%3A+Your+site+is+published+at+http%3A%2F%2Fwww.currentsite.com+and+you+want" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fready-to-use-301-redirect-with-http-module%2F&amp;title=Ready+to+use+301+Redirect+with+Http+Module&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=Just+open+the+web.config+and+edit+the+appsetting+newSite+with+your+new+site.+That%27s+all%21%0D%0A%0D%0AAll+the+requests+will+be+forwarded+with+%22301+Moved+Permanently%22+status+code.%0D%0A%0D%0AExample%3A+Your+site+is+published+at+http%3A%2F%2Fwww.currentsite.com+and+you+want" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fsenza-categoria%2Fready-to-use-301-redirect-with-http-module%2F&amp;title=Ready+to+use+301+Redirect+with+Http+Module" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/senza-categoria/ready-to-use-301-redirect-with-http-module/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=Ready+to+use+301+Redirect+with+Http+Module&amp;body=Just+open+the+web.config+and+edit+the+appsetting+newSite+with+your+new+site.+That%27s+all%21%0D%0A%0D%0AAll+the+requests+will+be+forwarded+with+%22301+Moved+Permanently%22+status+code.%0D%0A%0D%0AExample%3A+Your+site+is+published+at+http%3A%2F%2Fwww.currentsite.com+and+you+want%20-%20http://www.devfarm.it/senza-categoria/ready-to-use-301-redirect-with-http-module/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/senza-categoria/ready-to-use-301-redirect-with-http-module/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Randoms System.Data.SqlClient.SqlException Timeout</title>
		<link>http://www.devfarm.it/errors/fixing-randoms-system-data-sqlclient-sqlexception-timeout/</link>
		<comments>http://www.devfarm.it/errors/fixing-randoms-system-data-sqlclient-sqlexception-timeout/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 17:18:08 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Errors]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=61</guid>
		<description><![CDATA[If you are fighting against randoms System.Data.SqlClient.SqlException Timeout and you&#8217;re using sql express you can try to disable the Auto Close feature: Right click on the database -&#62; Properties Those are a couple of errors I was having: Excpetion: Type: &#8230; <a href="http://www.devfarm.it/errors/fixing-randoms-system-data-sqlclient-sqlexception-timeout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you are fighting against randoms <strong>System.Data.SqlClient.SqlException Timeout</strong> and you&#8217;re using <strong>sql express</strong> you can try to disable the <strong>Auto Close</strong> feature:</p>
<p>Right click on the database -&gt; Properties</p>
<p><a href="http://www.devfarm.it/wp-content/uploads/2011/12/Untitled-12.jpg"><img class="alignnone size-full wp-image-63" title="Untitled-1" src="http://www.devfarm.it/wp-content/uploads/2011/12/Untitled-12.jpg" alt="" width="660" height="594" /></a></p>
<p>Those are a couple of errors I was having:</p>
<p><em>Excpetion:</em><br />
<em>Type: System.Data.SqlClient.</em></p>
<div id=":10k"><wbr><em>SqlException</em><br />
<em>  Message: Timeout. Il tempo disponibile è scaduto prima del completamento dell&#8217;operazione o il server non risponde.</em><br />
<em>  Stack trace:</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlInternalConnection.OnError(</em><wbr><em>SqlException exception, Boolean breakConnection)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>TdsParser.</em><wbr><em>ThrowExceptionAndWarning()</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>TdsParserStateObject.</em><wbr><em>ReadSniError(</em><wbr><em>TdsParserStateObject stateObj, UInt32 error)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>TdsParserStateObject.ReadSni(</em><wbr><em>DbAsyncResult asyncResult, TdsParserStateObject stateObj)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>TdsParserStateObject.</em><wbr><em>ReadNetworkPacket()</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>TdsParserStateObject.ReadByte(</em><wbr><em>)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlInternalConnectionTds.</em><wbr><em>CompleteLogin(Boolean enlistOK)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlInternalConnectionTds.</em><wbr><em>LoginNoFailover(ServerInfo serverInfo, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, TimeoutTimer timeout)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlInternalConnectionTds.</em><wbr><em>OpenLoginEnlist(SqlConnection owningObject, TimeoutTimer timeout, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlInternalConnectionTds..</em><wbr><em>ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlConnectionFactory.</em><wbr><em>CreateConnection(</em><wbr><em>DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)</em><br />
<em>   in System.Data.ProviderBase.</em><wbr><em>DbConnectionFactory.</em><wbr><em>CreatePooledConnection(</em><wbr><em>DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions options)</em><br />
<em>   in System.Data.ProviderBase.</em><wbr><em>DbConnectionPool.CreateObject(</em><wbr><em>DbConnection owningObject)</em><br />
<em>   in System.Data.ProviderBase.</em><wbr><em>DbConnectionPool.</em><wbr><em>UserCreateRequest(DbConnection owningObject)</em><br />
<em>   in System.Data.ProviderBase.</em><wbr><em>DbConnectionPool.</em><wbr><em>GetConnection(DbConnection owningObject)</em><br />
<em>   in System.Data.ProviderBase.</em><wbr><em>DbConnectionFactory.</em><wbr><em>GetConnection(DbConnection owningConnection)</em><br />
<em>   in System.Data.ProviderBase.</em><wbr><em>DbConnectionClosed.</em><wbr><em>OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)</em><br />
<em>   in System.Data.SqlClient.</em><wbr><em>SqlConnection.Open()</em><br />
<em>   in System.Data.Linq.SqlClient.</em><wbr><em>SqlConnectionManager.</em><wbr><em>UseConnection(IConnectionUser user)</em><br />
<em>   in System.Data.Linq.SqlClient.</em><wbr><em>SqlProvider.get_IsSqlCe()</em><br />
<em>   in System.Data.Linq.SqlClient.</em><wbr><em>SqlProvider.</em><wbr><em>InitializeProviderMode()</em><br />
<em>   in System.Data.Linq.SqlClient.</em><wbr><em>SqlProvider.System.Data.Linq.</em><wbr><em>Provider.IProvider.Execute(</em><wbr><em>Expression query)</em><br />
<em>   in System.Data.Linq.DataQuery`1.</em><wbr><em>System.Linq.IQueryProvider.</em><wbr><em>Execute<del class="d4pbbc-strikethrough"></del>(Expression expression)</em><br />
<em>   in System.Linq.Queryable.</em><wbr><em>FirstOrDefault[TSource](</em><wbr><em>IQueryable`1 source)</em><br />
<em>   in SecurDPS.RoleProvider.</em><wbr><em>GetRolesForUser(String username) in xxxxxxxxxxxxx</em><em>.cs:riga 20</em><br />
<em>   in System.Web.Security.</em><wbr><em>RolePrincipal.IsInRole(String role)</em><br />
<em>   in System.Web.Configuration.</em><wbr><em>AuthorizationRule.</em><wbr><em>IsTheUserInAnyRole(</em><wbr><em>StringCollection roles, IPrincipal principal)</em><br />
<em>   in System.Web.Configuration.</em><wbr><em>AuthorizationRule.</em><wbr><em>IsUserAllowed(IPrincipal user, String verb)</em><br />
<em>   in System.Web.Configuration.</em><wbr><em>AuthorizationRuleCollection.</em><wbr><em>IsUserAllowed(IPrincipal user, String verb)</em><br />
<em>   in System.Web.Security.</em><wbr><em>UrlAuthorizationModule.</em><wbr><em>OnEnter(Object source, EventArgs eventArgs)</em><br />
<em>   in System.Web.HttpApplication.</em><wbr><em>SyncEventExecutionStep.System.</em><wbr><em>Web.HttpApplication.</em><wbr><em>IExecutionStep.Execute()</em><br />
<em>   in System.Web.HttpApplication.</em><wbr><em>ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously)</em></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></div>
<div></div>
<div></div>
<div></div>
<div>Excpetion:<br />
Type: System.Data.SqlClient.</p>
<div id=":1fa"><wbr>SqlException<br />
Message: Timeout. Il tempo disponibile è scaduto prima del completamento dell&#8217;operazione o il server non risponde.<br />
Stack trace:<br />
in System.Data.ProviderBase.<wbr>DbConnectionPool.<wbr>GetConnection(DbConnection owningObject)<br />
in System.Data.ProviderBase.<wbr>DbConnectionFactory.<wbr>GetConnection(DbConnection owningConnection)<br />
in System.Data.ProviderBase.<wbr>DbConnectionClosed.<wbr>OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)<br />
in System.Data.SqlClient.<wbr>SqlConnection.Open()<br />
in System.Data.Linq.SqlClient.<wbr>SqlConnectionManager.<wbr>UseConnection(IConnectionUser user)<br />
in System.Data.Linq.SqlClient.<wbr>SqlProvider.get_IsSqlCe()<br />
in System.Data.Linq.SqlClient.<wbr>SqlProvider.<wbr>InitializeProviderMode()<br />
in System.Data.Linq.SqlClient.<wbr>SqlProvider.System.Data.Linq.<wbr>Provider.IProvider.Execute(<wbr>Expression query)<br />
in System.Data.Linq.DataQuery`1.<wbr>System.Linq.IQueryProvider.<wbr>Execute<del class="d4pbbc-strikethrough"></del>(Expression expression)<br />
in System.Linq.Queryable.<wbr>FirstOrDefault[TSource](<wbr>IQueryable`1 source)<br />
in SecurDPS.RoleProvider.<wbr>GetRolesForUser(String username) in <em>xxxxxxxxxxxxx</em><em></em>.cs:riga 20<br />
in System.Web.Security.<wbr>RolePrincipal.IsInRole(String role)<br />
in System.Web.Configuration.<wbr>AuthorizationRule.<wbr>IsTheUserInAnyRole(<wbr>StringCollection roles, IPrincipal principal)<br />
in System.Web.Configuration.<wbr>AuthorizationRule.<wbr>IsUserAllowed(IPrincipal user, String verb)<br />
in System.Web.Configuration.<wbr>AuthorizationRuleCollection.<wbr>IsUserAllowed(IPrincipal user, String verb)<br />
in System.Web.Security.<wbr>UrlAuthorizationModule.<wbr>OnEnter(Object source, EventArgs eventArgs)<br />
in System.Web.HttpApplication.<wbr>SyncEventExecutionStep.System.<wbr>Web.HttpApplication.<wbr>IExecutionStep.Execute()<br />
in System.Web.HttpApplication.<wbr>ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously)</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></div>
</div>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Ferrors%2Ffixing-randoms-system-data-sqlclient-sqlexception-timeout%2F&amp;t=Fixing+Randoms+System.Data.SqlClient.SqlException+Timeout" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=Fixing+Randoms+System.Data.SqlClient.SqlException+Timeout%20-%20http%3A%2F%2Fwww.devfarm.it%2Ferrors%2Ffixing-randoms-system-data-sqlclient-sqlexception-timeout%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Ferrors%2Ffixing-randoms-system-data-sqlclient-sqlexception-timeout%2F&amp;title=Fixing+Randoms+System.Data.SqlClient.SqlException+Timeout&amp;notes=If+you+are+fighting+against+randoms+System.Data.SqlClient.SqlException+Timeout+and+you%27re+using+sql+express+you+can+try+to+disable+the+Auto+Close+feature%3A%0D%0A%0D%0ARight+click+on+the+database+-%26gt%3B+Properties%0D%0A%0D%0A%0D%0A%0D%0AThose+are+a+couple+of+errors+I+was+havin" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Ferrors%2Ffixing-randoms-system-data-sqlclient-sqlexception-timeout%2F&amp;title=Fixing+Randoms+System.Data.SqlClient.SqlException+Timeout&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=If+you+are+fighting+against+randoms+System.Data.SqlClient.SqlException+Timeout+and+you%27re+using+sql+express+you+can+try+to+disable+the+Auto+Close+feature%3A%0D%0A%0D%0ARight+click+on+the+database+-%26gt%3B+Properties%0D%0A%0D%0A%0D%0A%0D%0AThose+are+a+couple+of+errors+I+was+havin" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Ferrors%2Ffixing-randoms-system-data-sqlclient-sqlexception-timeout%2F&amp;title=Fixing+Randoms+System.Data.SqlClient.SqlException+Timeout" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/errors/fixing-randoms-system-data-sqlclient-sqlexception-timeout/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=Fixing+Randoms+System.Data.SqlClient.SqlException+Timeout&amp;body=If+you+are+fighting+against+randoms+System.Data.SqlClient.SqlException+Timeout+and+you%27re+using+sql+express+you+can+try+to+disable+the+Auto+Close+feature%3A%0D%0A%0D%0ARight+click+on+the+database+-%26gt%3B+Properties%0D%0A%0D%0A%0D%0A%0D%0AThose+are+a+couple+of+errors+I+was+havin%20-%20http://www.devfarm.it/errors/fixing-randoms-system-data-sqlclient-sqlexception-timeout/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/errors/fixing-randoms-system-data-sqlclient-sqlexception-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP GPX Maps</title>
		<link>http://www.devfarm.it/featured/wp-gpx-maps/</link>
		<comments>http://www.devfarm.it/featured/wp-gpx-maps/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 16:18:33 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[WP GPX Maps]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=47</guid>
		<description><![CDATA[This plugin has, as input, the GPX file with the track you&#8217;ve made and as output it shows the map of the track and an interactive altitude graph (where available). Fully configurable: Custom colors Custom icons Multiple language support NextGen &#8230; <a href="http://www.devfarm.it/featured/wp-gpx-maps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img src="/wp-content/uploads/banner-772x250.jpg" alt="" /></p>
<p>This plugin has, as input, the GPX file with the track you&#8217;ve made and as output it shows the map of the track and an interactive altitude graph (where available).</p>
<p>Fully configurable:</p>
<ul>
<li>Custom colors</li>
<li>Custom icons</li>
<li>Multiple language support</li>
</ul>
<p>NextGen Gallery Integration:</p>
<p>Display your NextGen Gallery images inside the map! Even if you don&#8217;t have a gps camera, this plugin can retrive the image position starting from the image date and you gpx file.</p>
<p>Old NGGallery Images (without gps data) and gpx: <a href="http://www.pedemontanadelgrappa.it/mappe/itinerario-3-alta-via-degli-eroi/" rel="nofollow">http://www.pedemontanadelgrappa.it/mappe/itinerario-3-alta-via-degli-eroi/</a></p>
<p>Translated into 7 languages:</p>
<ul>
<li>English (default)</li>
<li>Italian it_IT</li>
<li>German de_DE</li>
<li>Spanish es_ES</li>
<li>Dutch nl_NL</li>
<li>Swedish sv_SE</li>
<li>Turkish tr_TR</li>
</ul>
<p>(many thanks to all the guys who helped me with the translations)</p>
<ul>
<li>iphone/ipad/ipod Compatible</li>
</ul>
<p>Try this plugin: <a href="http://www.pedemontanadelgrappa.it/category/mappe/" rel="nofollow">http://www.pedemontanadelgrappa.it/category/mappe/</a></p>
<p><a href="http://www.devfarm.it/forums/forum/wp-gpx-maps/" rel="nofollow">Support Forum</a></p>
<p>Supported gpx namespaces are:</p>
<ol>
<li><a href="http://www.topografix.com/GPX/1/0" rel="nofollow">http://www.topografix.com/GPX/1/0</a></li>
<li><a href="http://www.topografix.com/GPX/1/1" rel="nofollow">http://www.topografix.com/GPX/1/1</a></li>
<li><a href="http://www.garmin.com/xmlschemas/GpxExtensions/v3" rel="nofollow">http://www.garmin.com/xmlschemas/GpxExtensions/v3</a></li>
<li><a href="http://www.garmin.com/xmlschemas/TrackPointExtension/v1" rel="nofollow">http://www.garmin.com/xmlschemas/TrackPointExtension/v1</a></li>
</ol>
<p>Thanks to: <a href="http://www.securcube.net/" rel="nofollow">http://www.securcube.net</a>, <a href="http://www.devfarm.it/" rel="nofollow">http://www.devfarm.it</a>, <a href="http://www.pedemontanadelgrappa.it/" rel="nofollow">http://www.pedemontanadelgrappa.it</a></p>
<p>Up to version 1.1.15 <a href="http://www.highcharts.com/" rel="nofollow">Highcharts-API</a> is the only available rendering engine. Please respect their license and pricing (only Free for Non-Commercial usage).</p>
<p><strong>Changelog</strong></p>
<div>
<h4>1.1.35</h4>
<ul>
<li>Fix: In the post list, sometime, the maps was not displaying correctly ( the php rand() function was not working?? )</li>
<li>Various improvements for multi track gpx. Thanks to GPSracks.tv</li>
<li>Summary table is now avaiable even without chart. Thanks to David</li>
</ul>
<h4>1.1.34</h4>
<ul>
<li>2 decimals for unit of measure min/km and min/mi</li>
<li>translation file updated (a couple of phrases added)</li>
<li>File list reverse order (from the newer to the older)</li>
<li>nggallery integration: division by zero fixed</li>
</ul>
<h4>1.1.33</h4>
<ul>
<li>Decimals reducted to 1 for unit of measure min/km and min/mi</li>
<li>map zoom and center position is working with waypoints only files</li>
<li>automatic scale works again (thanks to MArkus)</li>
</ul>
<h4>1.1.32</h4>
<ul>
<li>You can exclude cache (slower and not recommended)</li>
<li>You can decide what show in the summary table</li>
<li>German translation (thanks to Ali)</li>
</ul>
<h4>1.1.31</h4>
<ul>
<li>Fixed fullscreen map image slideshow</li>
</ul>
<h4>1.1.30</h4>
<ul>
<li>Multi track gpx support</li>
<li>Next Gen Gallery images positions derived from date. You can adjust the date with the shortcode attribute dtoffset</li>
<li>If you set Chart Height (shortcode gheight) = 0 means hide the graph</li>
<li>Fix: All images should work, independent from browser cache</li>
</ul>
<h4>1.1.29</h4>
<ul>
<li>Decimal separator is working with all the browsers</li>
<li>minutes per mile and minutes per kilometer was wrong</li>
</ul>
<h4>1.1.28</h4>
<ul>
<li>Decimal and thousand separator derived from browser language</li>
<li>Added summary table (see settings): Total distance, Max elevation, Min elevation, Total climbing, Total descent, Average speed</li>
<li>Added 2 speed units of measure: minutes per mile and minutes per kilometer</li>
</ul>
<h4>1.1.26</h4>
<ul>
<li>Multilanguage implementation (only front-end). I&#8217;ve implemented the italian one, I hope somebody will help me with other languages..</li>
<li>Map Full screen mode (I&#8217;m sure it&#8217;s not working in ie6. don&#8217;t even ask!)</li>
<li>Added waypoint custom icon</li>
</ul>
<h4>1.1.25</h4>
<ul>
<li>Added possibility to download your gpx</li>
</ul>
<h4>1.1.23</h4>
<ul>
<li>Security fix, please update!</li>
</ul>
<h4>1.1.22</h4>
<ul>
<li>enable map zoom on scroll wheel (check settings)</li>
<li>test attributes in get params</li>
</ul>
<h4>1.1.21</h4>
<ul>
<li>google maps images fixed (templates with bad css)</li>
<li>upgrade to google maps 3.9</li>
</ul>
<h4>1.1.20</h4>
<ul>
<li>google maps images fixed in <a href="http://wordpress.org/extend/themes/yoko" rel="nofollow">Yoko theme</a></li>
</ul>
<h4>1.1.19</h4>
<ul>
<li>include jQuery if needed</li>
</ul>
<h4>1.1.17</h4>
<ul>
<li>Remove zero values from cadence and heart rate charts</li>
<li>nextgen gallery improvement</li>
</ul>
<h4>1.1.16</h4>
<ul>
<li>Cadence chart (where available)</li>
<li>minor bug fixes</li>
</ul>
<h4>1.1.15</h4>
<ul>
<li>migration from google chart to highcharts. Highcharts are much better than google chart! This is the base for a new serie of improvements. Stay in touch for the next releases!</li>
<li>heart rate chart (where available)</li>
</ul>
<h4>1.1.14</h4>
<ul>
<li>added css to avoid map bars display issue</li>
</ul>
<h4>1.1.13</h4>
<ul>
<li>added new types of maps: Open Street Map, Open Cycle Map, Hike &amp; Bike.</li>
<li>fixed nextgen gallery caching problem</li>
</ul>
<h4>1.1.12</h4>
<ul>
<li>nextgen gallery display bug fixes</li>
</ul>
</div>
<p>&nbsp;</p>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Ffeatured%2Fwp-gpx-maps%2F&amp;t=WP+GPX+Maps" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=WP+GPX+Maps%20-%20http%3A%2F%2Fwww.devfarm.it%2Ffeatured%2Fwp-gpx-maps%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Ffeatured%2Fwp-gpx-maps%2F&amp;title=WP+GPX+Maps&amp;notes=This+plugin+has%2C+as+input%2C+the+GPX+file+with+the+track+you%27ve+made+and+as+output+it+shows+the+map+of+the+track+and+an+interactive+altitude+graph+%28where+available%29.%0D%0A%0D%0AFully+configurable%3A%0D%0A%0D%0A%09Custom+colors%0D%0A%09Custom+icons%0D%0A%09Multiple+language+suppor" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Ffeatured%2Fwp-gpx-maps%2F&amp;title=WP+GPX+Maps&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=This+plugin+has%2C+as+input%2C+the+GPX+file+with+the+track+you%27ve+made+and+as+output+it+shows+the+map+of+the+track+and+an+interactive+altitude+graph+%28where+available%29.%0D%0A%0D%0AFully+configurable%3A%0D%0A%0D%0A%09Custom+colors%0D%0A%09Custom+icons%0D%0A%09Multiple+language+suppor" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Ffeatured%2Fwp-gpx-maps%2F&amp;title=WP+GPX+Maps" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/featured/wp-gpx-maps/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=WP+GPX+Maps&amp;body=This+plugin+has%2C+as+input%2C+the+GPX+file+with+the+track+you%27ve+made+and+as+output+it+shows+the+map+of+the+track+and+an+interactive+altitude+graph+%28where+available%29.%0D%0A%0D%0AFully+configurable%3A%0D%0A%0D%0A%09Custom+colors%0D%0A%09Custom+icons%0D%0A%09Multiple+language+suppor%20-%20http://www.devfarm.it/featured/wp-gpx-maps/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/featured/wp-gpx-maps/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>Terza mail dopo hacking Sony</title>
		<link>http://www.devfarm.it/hacking-sony/terza-mail-dopo-hacking-sony/</link>
		<comments>http://www.devfarm.it/hacking-sony/terza-mail-dopo-hacking-sony/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 15:32:17 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[hacking Sony]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=44</guid>
		<description><![CDATA[Bentornato su PlayStation Store Questa e-mail ti è stata inviata da Sony Computer Entertainment Europe. Visualizza online. Gentile utente PlayStation Network, Siamo lieti di annunciarti che l&#8217;accesso a PlayStation®Store da PlayStation®3, PSP™ (PlayStation®Portable) e da PC tramite Media Go è &#8230; <a href="http://www.devfarm.it/hacking-sony/terza-mail-dopo-hacking-sony/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><b>Bentornato su PlayStation Store</b></p>
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td align="center" valign="middle"><a><span>Questa e-mail ti è stata inviata da Sony Computer Entertainment Europe.</span></a> <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/Z01WYJ/PN/h?a=TP396B7&amp;b=6M6ERM&amp;c=4VDNWOD&amp;d=O1HXO4&amp;e=1" target="_blank">Visualizza online</a>.</td>
</tr>
<tr>
<td height="5" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="5" height="5" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="69" align="left" valign="top" bgcolor="#008bf6"><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/FEMUHC/PN/h" target="_blank"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_header.jpg" border="0" alt="Playstation Network" width="650" height="69" /></a></td>
</tr>
<tr>
<td width="650" height="343" align="left" valign="top" bgcolor="#008bf6"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/IT/img_hero_IT.jpg" border="0" alt="Welcome Back" width="650" height="343" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="650" align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="20" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="20" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="20" /></td>
</tr>
<tr>
<td width="33" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top"><a><span>Gentile utente PlayStation Network</span></a>,</td>
<td width="26" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="10" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top"><a><span>Siamo lieti di annunciarti che l&#8217;accesso a PlayStation®Store da PlayStation®3, PSP™ (PlayStation®Portable) e da PC tramite Media Go è stato ripristinato.</span></a></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="10" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="312" align="left" valign="top" bgcolor="#e1e1e1"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_content1.jpg" border="0" alt="Welcome Back" width="312" height="241" /></td>
<td align="left" valign="top"><a><span>Come ringraziamento della pazienza durante il ripristino del servizio, tutti i titolari di un account di PlayStation®Network* aventi diritto possono partecipare al nostro programma Welcome Back** (Bentornato), che comprende:</p>
<p>Una selezione di giochi per PS3™ e PSP™ scaricabili gratuitamente da PlayStation Store.</span></a></p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td align="center" valign="middle">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="9" height="39" align="right" valign="middle" bgcolor="#d50001" background="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/cta_bg2.gif"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_CTA_L.gif" border="0" alt="Qriocity TM" width="9" height="39" /></td>
<td height="39" align="center" valign="middle" bgcolor="#d50001" background="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/cta_bg2.gif">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td height="2" align="center" valign="top" bgcolor="#ff0000"><img src="http://img.ed4.net/spacer50.gif" alt="" width="14" height="2" /></td>
</tr>
<tr>
<td height="35" align="center" valign="middle"><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/6M6QRT/PN/h" target="_blank">Scopri di più</a></td>
</tr>
<tr>
<td height="2" align="center" valign="top" bgcolor="#ff0000"><img src="http://img.ed4.net/spacer50.gif" alt="" width="14" height="2" /></td>
</tr>
</tbody>
</table>
</td>
<td width="9" height="39" align="left" valign="middle" bgcolor="#d50001" background="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/cta_bg2.gif"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_CTA_R.gif" border="0" alt="Qriocity TM" width="9" height="39" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td width="26" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="1" align="left" valign="top" bgcolor="#fafafa"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_divider1_1.gif" border="0" alt="Welcome Back" width="650" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="33" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
</tr>
<tr>
<td align="left" valign="top"><a><span>Inoltre,  i membri di Music Unlimited hanno diritto a un periodo aggiuntivo di  accesso gratuito a Music Unlimited***. Per maggiori informazioni, visita  il sito</span></a> <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/KRKBO5/PN/h" target="_blank">www.qriocity.com</a>.</td>
</tr>
</tbody>
</table>
</td>
<td width="14" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="14" height="1" /></td>
<td width="312" align="right" valign="top" bgcolor="#e1e1e1"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_content2.jpg" border="0" alt="Qriocity TM" width="312" height="203" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="1" align="left" valign="top" bgcolor="#fafafa"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_divider2.gif" border="0" alt="Welcome Back" width="650" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="312" align="left" valign="top" bgcolor="#e1e1e1"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/IT/img_content3_IT.jpg" border="0" alt="Welcome Back, 30-Day Free Membership" width="312" height="205" /></td>
<td width="14" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="14" height="1" /></td>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
</tr>
<tr>
<td align="left" valign="top"><a><span>30 giorni di accesso gratuito a PlayStation®Plus**** per coloro che non sono membri di PlayStation®Plus*****</span></a></td>
</tr>
</tbody>
</table>
</td>
<td width="33" align="right" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="1" align="left" valign="top" bgcolor="#fafafa"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_divider1_1.gif" border="0" alt="Welcome Back" width="650" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="33" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
</tr>
<tr>
<td align="left" valign="top"><a><span>Presto in arrivo su PlayStation®Home: minigioco Go Fish!,  Green Ticket per tutti gli utenti, nParty Big Bash Bundle e tanto altro ancora.</span></a></td>
</tr>
</tbody>
</table>
</td>
<td width="14" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="14" height="1" /></td>
<td width="312" align="right" valign="top" bgcolor="#e1e1e1"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_content4.jpg" border="0" alt="Playstation Home" width="312" height="210" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="1" align="left" valign="top" bgcolor="#fafafa"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_divider2.gif" border="0" alt="Welcome Back" width="650" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="312" align="left" valign="top" bgcolor="#e1e1e1"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_content6.jpg" border="0" alt="Playstation Network Welcome Back" width="312" height="204" /></td>
<td width="14" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="14" height="1" /></td>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
</tr>
<tr>
<td align="left" valign="top">Per ulteriori dettagli sul programma Welcome Back (Bentornato) nel tuo Paese, visita <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/YOU4DN/PN/h" target="_blank">eu.playstation.com/welcomeback</a></td>
</tr>
</tbody>
</table>
</td>
<td width="33" align="right" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="1" align="left" valign="top" bgcolor="#fafafa"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_divider1_1.gif" border="0" alt="Welcome Back" width="650" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="30" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="30" /></td>
</tr>
<tr>
<td width="33" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top">Fraud Protect (protezione dalle frodi)</td>
<td width="26" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="10" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top"><a><span>In aggiunta, gli esperti sulla protezione dell&#8217;identità di Affinion International Limited offrono ai titolari di un account di PlayStation  Network e di Qriocity™ aventi diritto un anno di sottoscrizione  gratuita al servizio Fraud Protect (Protezione dalle frodi). Per  ulteriori dettagli sulla protezione dalle frodi e sulle condizioni di  partecipazione, visita il sito </span></a><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/BK2FUC/PN/h" target="_blank">www.fraudprotect.it</a>. Offerta disponibile per 60 giorni.</p>
<p>Abbiamo apportato significativi miglioramenti relativi al  sistema di sicurezza di PSN: per conoscere gli ultimi aggiornamenti,  visita <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/GQ51BM/PN/h" target="_blank">eu.playstation.com/psnlatest</a> e il PlayStation.Blog all&#8217;indirizzo <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/RLSV7S/PN/h" target="_blank">blog.eu.playstation.com</a>.</td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="20" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="20" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="20" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="650" height="1" align="left" valign="top" bgcolor="#fafafa"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/img_divider3.gif" border="0" alt="Welcome Back" width="650" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#fafafa">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="30" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="30" /></td>
</tr>
<tr>
<td width="33" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top"><a><span>Prima di iniziare a usare nuovamente PlayStation Network&#8230;</span></a></td>
<td width="26" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="10" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="10" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="1" /></td>
<td align="left" valign="top"><a><span>Con il ripristino di PSN è stata introdotta una misura di sicurezza che richiede l&#8217;aggiornamento della password dell&#8217;account di PlayStation Network prima che tu possa iniziare a usare nuovamente PSN.</p>
<p>Se possiedi una PlayStation 3, puoi farlo eseguendo l&#8217;aggiornamento alla versione 3.61 del software di sistema e accedendo a PlayStation Network dal menu XMB™ (XrossMediaBar). Per ulteriori informazioni, visita </span></a><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/AXVRP2/PN/h" target="_blank">eu.playstation.com/ps3psn</a>.</p>
<p>In alternativa, puoi modificare la password visitando la pagina <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/LFDG0I/PN/h" target="_blank">https://store.playstation.com/login.gvm</a> dal tuo PC. Questa operazione dovrebbe richiedere pochi minuti. Se  desideri ulteriore assistenza, consulta la guida dettagliata  all&#8217;indirizzo <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/UBFZWP/PN/h" target="_blank">eu.playstation.com/psppsn</a>.</p>
<p>Cogliamo l&#8217;occasione per ringraziarti nuovamente della tua  pazienza e del tuo supporto mentre i nostri team in tutto il mondo  lavorano per ripristinare il servizio PSN completo.</p>
<p><span><a><span>Il team PlayStation Network</span></a></span></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="1" /></td>
</tr>
<tr>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="33" height="30" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="30" /></td>
<td align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="26" height="30" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#000000">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td height="36" align="left" valign="top"><img src="http://img.ed4.net/spacer50.gif" alt="" width="1" height="36" /></td>
<td width="109" height="36" align="right" valign="top"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q1/SONYPLAYSTN_PROJ_11Q1_NGP_Launch/html/sony_make_believe.gif" border="0" alt="Playstation. Sony. make.believe" width="109" height="36" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="650">
<tbody>
<tr>
<td width="219" height="93" align="left" valign="top"><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/9WCJPZ/PN/h" target="_blank"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/psNetwork1.gif" border="0" alt="Playstation Network" width="219" height="93" /></a></td>
<td height="93" align="center" valign="middle"><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/578ERV/PN/h" target="_blank">eu.playstation.com</a></td>
<td width="219" height="93" align="right" valign="top"><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/9WCJPM/PN/h" target="_blank"><img src="http://images.eu.playstation.com/fsimages/sonyplaystation/2011_Q2/SONYPLAYSTN_11Q2_Welcome_Back/html/psStore1.gif" border="0" alt="Playstation Store" width="219" height="93" /></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top" bgcolor="#acacac"><a><span>*Offerta limitata ai titolari di un account di PlayStation®Network in data 20 aprile 2011.<br />
**I titolari di un account di PlayStation®Network idonei hanno 30 giorni di tempo dal lancio del programma Welcome Back (Bentornato) per fruire dell&#8217;offerta.<br />
***Inoltre, se in data 20 aprile 2011 eri un membro di Music Unlimited,  riceverai automaticamente 60 giorni di abbonamento gratuiti. Se invece,  in data 20 aprile 2011, avevi iniziato il periodo di prova gratuito  dell&#8217;Abbonamento speciale di Music Unlimited, riceverai automaticamente  un&#8217;estensione di 30 giorni del periodo di prova. Per maggiori  informazioni, visita il sito www.qriocity.com.<br />
****L&#8217;accesso gratuito a PlayStation®Plus è disponibile esclusivamente nei Paesi in cui è disponibile PlayStation®Plus.<br />
*****Fino a 70 giorni di accesso gratuito a PlayStation®Plus se eri un membro di PlayStation®Plus in data 20 aprile 2011.</p>
<table>
<tbody>
<tr>
<td width="100%" height="250" align="center" valign="center"><span style="color: #808080; font-family: Arial; font-size: xx-small;">Questa e-mail viene inviata automaticamente. Eventuali messaggi inviati a questo indirizzo non potranno pertanto essere evasi.</span></p>
<p><span style="color: #808080; font-family: Arial; font-size: xx-small;">©2011 Sony Computer Entertainment Europe.</span></p>
<p><a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/W83MK4/PN/h?a=&amp;b=_" target="_blank"><span style="color: #808080; font-family: Arial; font-size: xx-small;">eu.playstation.com</span></a></p>
<p><span style="color: #808080; font-family: Arial; font-size: xx-small;">&#8220;<img src="http://newsletters.eu.playstation.com/common/newfamilylogo.gif" alt="" />&#8220;, &#8220;PlayStation&#8221;, &#8220;PlayStation Network&#8221;, &#8220;PlayStation Store&#8221;, &#8220;PlayStation Home&#8221;, &#8220;PS3&#8243;, &#8220;PSP&#8221;, &#8220;PS2&#8243; and &#8220;<img src="http://newsletters.eu.playstation.com/common/newpsplogo.gif" alt="" />&#8221;  are registered trademarks of Sony Computer Entertainment Inc. All  titles, content, publisher names, trademarks, artwork, and associated  imagery  are trademarks and/or copyright material of their respective owners. All  rights reserved.</span></p>
<p><span style="color: #808080; font-family: Arial; font-size: xx-small;">Prezzi, contenuti,  promozioni e servizi possono essere modificati o rimossi in qualunque  momento. I contenuti potrebbero non essere disponibili in tutti i  territori.</span></p>
<p><span style="color: #808080; font-family: Arial; font-size: xx-small;">I titoli sono classificati  in base ai requisiti d&#8217;età dell&#8217;organizzazione indipendente PEGI. Per  saperne di più, visita www.pegi.info. Il sistema di classificazione  indica la fascia d&#8217;età per la quale il gioco è considerato idoneo.</span></p>
<p><span style="color: #808080; font-family: Arial; font-size: xx-small;">Se possiedi un account PlayStation®Network,  dal tuo account potrai modificare il tuo profilo e le preferenze per le  notifiche, incluso l&#8217;annullamento della sottoscrizione. <a href="http://link.eu.playstation.com/r/TP396B7/65324/V6C97E/5R8YL/Q19C7A/PN/h?a=&amp;b=_" target="_blank"><span style="color: #808080; font-family: Arial;">Accedi qui</span></a>.</span> <span style="color: #808080; font-family: Arial; font-size: xx-small;">Se non possiedi un account PlayStation®Network e desideri annullare la tua iscrizione, <a href="mailto:unsubscribe@eu.playstationmail.com?subject=Unsubscribe" target="_blank"><span style="color: #808080; font-family: Arial; font-size: xx-small;">clicca qui per inviarci un&#8217;e-mail</span></a>.</span></p>
<p><span style="color: #808080; font-family: Arial; font-size: xx-small;">PlayStation®Network, PlayStation®Store e PlayStation®Home sono soggetti a specifici termini di utilizzo e non sono disponibili in tutti i Paesi e in tutte le lingue (eu.playstation.com/terms).  È necessaria una connessione Internet a banda larga. I costi di accesso  alla connessione a banda larga sono a carico dell&#8217;utente. Alcuni  contenuti sono a pagamento. Gli utenti devono avere almeno 7 anni e per i  minorenni è richiesto il consenso dei  genitori.</span></td>
</tr>
</tbody>
</table>
<p></span></a></td>
</tr>
</tbody>
</table>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fterza-mail-dopo-hacking-sony%2F&amp;t=Terza+mail+dopo+hacking+Sony" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=Terza+mail+dopo+hacking+Sony%20-%20http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fterza-mail-dopo-hacking-sony%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fterza-mail-dopo-hacking-sony%2F&amp;title=Terza+mail+dopo+hacking+Sony&amp;notes=Bentornato+su+PlayStation+Store%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AQuesta+e-mail+ti+%C3%A8+stata+inviata+da+Sony+Computer+Entertainment+Europe.+Visualizza+online.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AGentile+utente+PlayStation+Network%2C" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fterza-mail-dopo-hacking-sony%2F&amp;title=Terza+mail+dopo+hacking+Sony&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=Bentornato+su+PlayStation+Store%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AQuesta+e-mail+ti+%C3%A8+stata+inviata+da+Sony+Computer+Entertainment+Europe.+Visualizza+online.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AGentile+utente+PlayStation+Network%2C" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fterza-mail-dopo-hacking-sony%2F&amp;title=Terza+mail+dopo+hacking+Sony" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/hacking-sony/terza-mail-dopo-hacking-sony/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=Terza+mail+dopo+hacking+Sony&amp;body=Bentornato+su+PlayStation+Store%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AQuesta+e-mail+ti+%C3%A8+stata+inviata+da+Sony+Computer+Entertainment+Europe.+Visualizza+online.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AGentile+utente+PlayStation+Network%2C%20-%20http://www.devfarm.it/hacking-sony/terza-mail-dopo-hacking-sony/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/hacking-sony/terza-mail-dopo-hacking-sony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seconda mail dopo hacking Sony</title>
		<link>http://www.devfarm.it/hacking-sony/seconda-mail-dopo-hacking-sony/</link>
		<comments>http://www.devfarm.it/hacking-sony/seconda-mail-dopo-hacking-sony/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 15:29:18 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[hacking Sony]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=42</guid>
		<description><![CDATA[Aggiornamento sullo stato del servizio PSN: alcune funzionalità sono state ripristinate Gentile utente PlayStation®Network, come saprai, il 20 aprile 2011 PlayStation®Network ha subito un&#8217;interruzione a livello mondiale a causa di un attacco cibernetico a uno dei nostri server. Siamo lieti &#8230; <a href="http://www.devfarm.it/hacking-sony/seconda-mail-dopo-hacking-sony/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><strong>Aggiornamento sullo stato del servizio PSN: alcune funzionalità sono state ripristinate</strong></p>
<p>Gentile utente PlayStation®Network,</p>
<p>come saprai, il 20 aprile 2011 PlayStation®Network  ha subito un&#8217;interruzione a livello mondiale a causa di un attacco  cibernetico a uno dei nostri server. Siamo lieti di annunciare che  alcuni servizi PlayStation Network sono stati ripristinati. Nei prossimi giorni verranno riattivate ulteriori funzionalità. Controlla con regolarità <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/1VT4Z1/K9/h" target="_blank">eu.playstation.com/psnlatest</a> e PlayStation.Blog all&#8217;indirizzo <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/BK2SIV/K9/h" target="_blank">blog.eu.playstation.com</a> per seguire gli ultimi sviluppi.</p>
<p><strong>Prima di iniziare a usare nuovamente PlayStation Network&#8230;</strong></p>
<p>Con il ripristino di PSN è stata introdotta una misura di sicurezza  che richiede l&#8217;aggiornamento della password dell&#8217;account di PlayStation Network prima che tu possa iniziare a usare nuovamente PSN.</p>
<p>Se possiedi una PlayStation®3, puoi farlo eseguendo l&#8217;aggiornamento alla versione 3.61 del software di sistema e accedendo a PlayStation Network dal menu XMB™ (XrossMediaBar). Per ulteriori informazioni, consulta la pagina <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/22HW7H/K9/h" target="_blank">eu.playstation.com/ps3psn</a>. In alternativa, puoi modificare la password visitando la pagina <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/ISWUFX/K9/h" target="_blank">https://store.playstation.com/login.gvm</a> duo PC. Questa operazione dovrebbe richiedere pochi minuti. Se desideri  ulteriore assistenza, consulta la guida dettagliata all&#8217;indirizzo <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/4ZGK56/K9/h" target="_blank">eu.playstation.com/psppsn</a>.</p>
<p><strong>Giochi in regalo&#8230;</strong></p>
<p>Per ringraziarti della tua pazienza durante l&#8217;interruzione di PSN, a  breve lanceremo il programma Welcome Back (Bentornato) per tutti gli  utenti PSN, che include titoli gratuiti da scaricare e un mese di  abbonamento gratuito a PlayStation®Plus (o un  mese gratuito per coloro che sono già iscritti). A breve pubblicheremo  l&#8217;elenco completo delle offerte Welcome Back (Bentornato) nel tuo Paese  all&#8217;indirizzo <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/3ABX56/K9/h" target="_blank">eu.playstation.com/welcomeback</a>.</p>
<p>Cogliamo l&#8217;occasione per ringraziarti nuovamente della tua pazienza e  del tuo supporto mentre i nostri team in tutto il mondo lavorano per  ripristinare il servizio PSN completo. Ricorda: per aggiornamenti  dell&#8217;ultimo minuto, visita <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/STJ083/K9/h" target="_blank">eu.playstation.com/psnlatest</a>, PlayStation.Blog alla pagina <a href="http://link.eu.playstation.com/r/JIY53RG/AKPWL/F9CEEA/LCG39/VGN20L/K9/h" target="_blank">blog.eu.playstation.com</a> e seguici su <a href="http://www.twitter.com/PlayStationEU" target="_blank">twitter.com/PlayStationEU</a>.</p>
<p>Ti aspettiamo presto, online,<br />
Il team PlayStation Network</p>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fseconda-mail-dopo-hacking-sony%2F&amp;t=Seconda+mail+dopo+hacking+Sony" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=Seconda+mail+dopo+hacking+Sony%20-%20http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fseconda-mail-dopo-hacking-sony%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fseconda-mail-dopo-hacking-sony%2F&amp;title=Seconda+mail+dopo+hacking+Sony&amp;notes=Aggiornamento+sullo+stato+del+servizio+PSN%3A+alcune+funzionalit%C3%A0+sono+state+ripristinate%0D%0A%0D%0AGentile+utente+PlayStation%C2%AENetwork%2C%0D%0A%0D%0Acome+saprai%2C+il+20+aprile+2011+PlayStation%C2%AENetwork++ha+subito+un%27interruzione+a+livello+mondiale+a+causa+di+un+attacc" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fseconda-mail-dopo-hacking-sony%2F&amp;title=Seconda+mail+dopo+hacking+Sony&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=Aggiornamento+sullo+stato+del+servizio+PSN%3A+alcune+funzionalit%C3%A0+sono+state+ripristinate%0D%0A%0D%0AGentile+utente+PlayStation%C2%AENetwork%2C%0D%0A%0D%0Acome+saprai%2C+il+20+aprile+2011+PlayStation%C2%AENetwork++ha+subito+un%27interruzione+a+livello+mondiale+a+causa+di+un+attacc" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fseconda-mail-dopo-hacking-sony%2F&amp;title=Seconda+mail+dopo+hacking+Sony" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/hacking-sony/seconda-mail-dopo-hacking-sony/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=Seconda+mail+dopo+hacking+Sony&amp;body=Aggiornamento+sullo+stato+del+servizio+PSN%3A+alcune+funzionalit%C3%A0+sono+state+ripristinate%0D%0A%0D%0AGentile+utente+PlayStation%C2%AENetwork%2C%0D%0A%0D%0Acome+saprai%2C+il+20+aprile+2011+PlayStation%C2%AENetwork++ha+subito+un%27interruzione+a+livello+mondiale+a+causa+di+un+attacc%20-%20http://www.devfarm.it/hacking-sony/seconda-mail-dopo-hacking-sony/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/hacking-sony/seconda-mail-dopo-hacking-sony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prima mail dopo hacking Sony</title>
		<link>http://www.devfarm.it/hacking-sony/prima-mail-dopo-hacking-sony/</link>
		<comments>http://www.devfarm.it/hacking-sony/prima-mail-dopo-hacking-sony/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 15:28:14 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[hacking Sony]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=40</guid>
		<description><![CDATA[Aggiornamento del Servizio &#8211; Avviso importante per gli utenti registrati al PlayStation Network e ai servizi Qriocity Stimato Cliente PlayStation Network/Qriocity: Abbiamo scoperto che tra il 17 e il 19 Aprile 2011, alcune informazioni relative agli account di utenti di &#8230; <a href="http://www.devfarm.it/hacking-sony/prima-mail-dopo-hacking-sony/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><strong>Aggiornamento del Servizio &#8211; Avviso importante per gli utenti registrati al PlayStation Network e ai servizi Qriocity</strong></p>
<p><strong></strong><br />
Stimato Cliente PlayStation Network/Qriocity:</p>
<p>Abbiamo scoperto che tra il 17 e il 19 Aprile 2011,  alcune  informazioni relative agli account di utenti di servizi PlayStation   Network e Qriocity sono state compromesse in relazione a intrusioni  illegali e  non autorizzate nel nostro sistema. Di conseguenza a quanto  riscontrato finora,  abbiamo:</p>
<p>1) Temporaneamente disattivato i servizi PlayStation  Network e Qriocity;</p>
<p>2) Ingaggiato una competente agenzia esterna per la  sicurezza, per  condurre una completa ed estesa indagine su quanto accaduto;</p>
<p>3) Tempestivamente preso misure per migliorare la  sicurezza e  rafforzare l&#8217;infrastruttura del nostro network, ricostruendo  l&#8217;intero  sistema per fornire una maggiore protezione dei vostri dati personali.</p>
<p>Apprezziamo la vostra pazienza e buona volontà mentre  lavoriamo intensivamente per risolvere questi problemi.</p>
<p>Mentre indaghiamo sui dettagli di questo incidente,  riteniamo che un  soggetto non autorizzato abbia ottenuto le seguenti  informazioni da voi  fornite in precedenza: nome, indirizzo (città,  stato/provincia, codice  postale), nazione, indirizzo email, data di nascita,  password, login e  online ID di PSN/portatile. Inoltre è possibile che i dati  del vostro  profilo siano stati rilevati, inclusi la cronologia degli acquisti e   l&#8217;indirizzo di addebito (città,  stato/provincia, codice postale).  Se  avete autorizzato un sub-account  per un vostro familiare, vi informiamo che gli  stessi dati relativi  possono essere stati rilevati. Nonostante non ci sia prova  che i dati  della vostra carta di credito siano stati presi in questa  circostanza,  non possiamo escludere tale possibilita&#8217;. Se avete fornito i dati  della  vostra carta di credito tramite PlayStation Network o Qriocity,  per   sicurezza vi informiamo che il numero della vostra carta di  credito (escluso il  codice di sicurezza) e la data di scadenza possono  essere stati rilevati.</p>
<p>Per la vostra sicurezza, vi invitiamo a essere  particolarmente vigili  nei confronti di truffe via email, telefono, e posta  cartacea che  chiedano informazioni personali o dati sensibili. Sony non vi   contatterà in nessun modo, incluso via email, chiedendovi il numero di  carta di  credito, numero di previdenza sociale, o altri simili dati o  informazioni che  siano personalmente identificabili con voi. Se vi  vengono richieste tali  informazioni, potete avere la certezza che non  si  tratta di Sony. Inoltre, se  usate gli stessi nome utente e password per  il vostro account dei servizi  PlayStation Network o Qriocity e per  altri servizi o account a essi non  collegati, vi invitiamo fortemente a  modificarli.  Quando i servizi  PlayStation Network e Qriocity saranno  nuovamente operativi del tutto, vi  raccomandiamo inoltre ad accedervi  per modificare le vostre password.</p>
<p>Per proteggervi contro possibili furti di dati  personali o danni  finanziari, vi incoraggiamo a rimanere vigili per controllare  lo stato  dei vostri account e monitorare i movimenti del vostro credito.</p>
<p>Vi ringraziamo della vostra pazienza mentre  completiamo le indagini  su questo incidente, e ci dispiace per ogni inconveniente  causato. I  nostri team stanno lavorando senza sosta a questo proposito, e ogni   servizio tornerà disponibile il più presto possibile. Sony tratta la  protezione  delle informazioni molto seriamente e continuerà a lavorare  per garantire che  ulteriori misure vengano prese al fine di proteggere  informazioni relative  all&#8217;identificazione  personale. Fornire servizi di intrattenimento di qualità e  nella  sicurezza dei nostri clienti è la nostra massima priorità. Siete pregati   di contattarci presso <span style="text-decoration: underline;"><a href="http://link.eu.playstation.com/r/A7ZOIKN/JRHTL/KNUMBZ/4931U/VGNC9R/7Z/h" target="_blank">it.playstation.com/psnoutage</a></span> in caso abbiate ulteriori  domande.</p>
<p>Cordialmente,<br />
Sony Network Entertainment and Sony Computer  Entertainment Teams</p>
<p>Sony Network Entertainment Europe Ltd  (precedentemente conosciuta come  PlayStation Network Europe Ltd) è una  subsidiaria di Sony Computer  Entertainment Ltd, controller dati per le  informazioni personali di PlayStation  Network/Qriocity</p>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fprima-mail-dopo-hacking-sony%2F&amp;t=Prima+mail+dopo+hacking+Sony" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=Prima+mail+dopo+hacking+Sony%20-%20http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fprima-mail-dopo-hacking-sony%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fprima-mail-dopo-hacking-sony%2F&amp;title=Prima+mail+dopo+hacking+Sony&amp;notes=Aggiornamento+del+Servizio+-+Avviso+importante+per+gli+utenti+registrati+al+PlayStation+Network+e+ai+servizi+Qriocity%0D%0A%0D%0A%0D%0AStimato+Cliente+PlayStation+Network%2FQriocity%3A%0D%0A%0D%0AAbbiamo+scoperto+che+tra+il+17+e+il+19+Aprile+2011%2C++alcune++informazioni+rela" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fprima-mail-dopo-hacking-sony%2F&amp;title=Prima+mail+dopo+hacking+Sony&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=Aggiornamento+del+Servizio+-+Avviso+importante+per+gli+utenti+registrati+al+PlayStation+Network+e+ai+servizi+Qriocity%0D%0A%0D%0A%0D%0AStimato+Cliente+PlayStation+Network%2FQriocity%3A%0D%0A%0D%0AAbbiamo+scoperto+che+tra+il+17+e+il+19+Aprile+2011%2C++alcune++informazioni+rela" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fhacking-sony%2Fprima-mail-dopo-hacking-sony%2F&amp;title=Prima+mail+dopo+hacking+Sony" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/hacking-sony/prima-mail-dopo-hacking-sony/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=Prima+mail+dopo+hacking+Sony&amp;body=Aggiornamento+del+Servizio+-+Avviso+importante+per+gli+utenti+registrati+al+PlayStation+Network+e+ai+servizi+Qriocity%0D%0A%0D%0A%0D%0AStimato+Cliente+PlayStation+Network%2FQriocity%3A%0D%0A%0D%0AAbbiamo+scoperto+che+tra+il+17+e+il+19+Aprile+2011%2C++alcune++informazioni+rela%20-%20http://www.devfarm.it/hacking-sony/prima-mail-dopo-hacking-sony/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/hacking-sony/prima-mail-dopo-hacking-sony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Silverlight GPX ver 0.1</title>
		<link>http://www.devfarm.it/wordpress-plugin/wp-silverlight-gpx-ver-0-1/</link>
		<comments>http://www.devfarm.it/wordpress-plugin/wp-silverlight-gpx-ver-0-1/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 07:05:28 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[WP Silverlight GPX]]></category>

		<guid isPermaLink="false">http://www.devfarm.it/?p=21</guid>
		<description><![CDATA[File /web/htdocs/www.devfarm.it/home&lt;relative path to file.gpx&gt; not found!File /web/htdocs/www.devfarm.it/home/wp-content/gpx/somefile.gpx not found!New plugin at: http://www.devfarm.it/wordpress-plugin/wp-gpx-maps/wp-gpx-maps/ WP Silverlight GPX shows your trak in the map with altitude graph from a gpx file. You can also move the mouse over the altitude graph and check the position in the map. &#160; Installation: Install &#8230; <a href="http://www.devfarm.it/wordpress-plugin/wp-silverlight-gpx-ver-0-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
	File /web/htdocs/www.devfarm.it/home&lt;relative path to file.gpx&gt; not found!File /web/htdocs/www.devfarm.it/home/wp-content/gpx/somefile.gpx not found!			<content:encoded><![CDATA[<h1>New plugin at: <a href="http://www.devfarm.it/wordpress-plugin/wp-gpx-maps/wp-gpx-maps/">http://www.devfarm.it/wordpress-plugin/wp-gpx-maps/wp-gpx-maps/</a></h1>
<p><del datetime="2011-12-13T15:58:17+00:00">WP Silverlight GPX shows your trak in the map with altitude graph from a gpx file.</p>
<p>You can also move the mouse over the altitude graph and check the position in the map.</p>
<p><a href="http://www.devfarm.it/wp-content/uploads/2011/06/map.jpg"><img class="alignnone size-medium wp-image-24" title="map" src="http://www.devfarm.it/wp-content/uploads/2011/06/map-300x202.jpg" alt="" width="300" height="202" /></a> <a href="http://www.devfarm.it/wp-content/uploads/2011/06/settings.jpg"><img class="alignnone size-medium wp-image-25" title="settings" src="http://www.devfarm.it/wp-content/uploads/2011/06/settings-300x252.jpg" alt="" width="300" height="252" /></a></p>
<p>&nbsp;</p>
<p><strong>Installation:</strong></p>
<p>Install the plugin as usual and set your <a href="http://www.bing.com/toolbox/bingdeveloper/" target="_blank">Bing Maps Apy Key</a> in the settings.</p>
<p>&nbsp;</p>
<p><strong>Usage:</strong></p>
<p>Upload your gpx file and then add the shortcode in the articles 
		<div id="wpgpxmaps_21_350770" class="wpgpxmaps">
			<div id="map_21_350770" style="width:100%; height:450px"></div>
			<div id="hchart_21_350770" class="plot" style="width:100%; height:200px"></div>
			<div id="ngimages_21_350770" class="ngimages" style="display:none"></div>
			<div id="report_21_350770" class="report"></div>
		</div>
		
		<script type="text/javascript">
		    jQuery(document).ready(function() {
				wpgpxmaps({ targetId    : "21_350770",
							mapType     : "HYBRID",
							mapData     : [],
							graphDist   : [],
							graphEle    : [],
							graphSpeed  : [],
							graphHr     : [],
							graphCad    : [],
							graphGrade  : [],
							waypoints   : [],
							unit        : "0",
							unitspeed   : "0",
							color1      : ["#000000"],
							color2      : "#3366cc",
							color3      : "#ff0000",
							color4      : "#ff77bd",
							color5      : "#beecff",
							color6      : "#beecff",
							chartFrom1  : "",
							chartTo1    : "",
							chartFrom2  : "",
							chartTo2    : "",
							startIcon   : "",
							endIcon     : "",
							currentIcon : "",
							waypointIcon : "",
							zoomOnScrollWheel : "", 
							pluginUrl : "http://www.devfarm.it/wp-content/plugins",
							langs : { altitude              : "Altitudine",
									  currentPosition       : "Posizione Corrente",
									  speed                 : "Velocità", 
									  grade                 : "Grade", 
									  heartRate             : "Battito Cardiaco", 
									  cadence               : "Cadenza",
									  goFullScreen          : "Schermo intero",
									  exitFullFcreen        : "Torna a dimensioni originali",
									  hideImages            : "Nascondi immagini",
									  showImages            : "Mostra immagini",
									  backToCenter		    : "Ritorna al centro della mappa"
									}
						   });
			});
		</script>:</p>
<p><strong>
		<div id="wpgpxmaps_21_2846194" class="wpgpxmaps">
			<div id="map_21_2846194" style="width:100%; height:450px"></div>
			<div id="hchart_21_2846194" class="plot" style="width:100%; height:200px"></div>
			<div id="ngimages_21_2846194" class="ngimages" style="display:none"></div>
			<div id="report_21_2846194" class="report"></div>
		</div>
		
		<script type="text/javascript">
		    jQuery(document).ready(function() {
				wpgpxmaps({ targetId    : "21_2846194",
							mapType     : "HYBRID",
							mapData     : [],
							graphDist   : [],
							graphEle    : [],
							graphSpeed  : [],
							graphHr     : [],
							graphCad    : [],
							graphGrade  : [],
							waypoints   : [],
							unit        : "0",
							unitspeed   : "0",
							color1      : ["#000000"],
							color2      : "#3366cc",
							color3      : "#ff0000",
							color4      : "#ff77bd",
							color5      : "#beecff",
							color6      : "#beecff",
							chartFrom1  : "",
							chartTo1    : "",
							chartFrom2  : "",
							chartTo2    : "",
							startIcon   : "",
							endIcon     : "",
							currentIcon : "",
							waypointIcon : "",
							zoomOnScrollWheel : "", 
							pluginUrl : "http://www.devfarm.it/wp-content/plugins",
							langs : { altitude              : "Altitudine",
									  currentPosition       : "Posizione Corrente",
									  speed                 : "Velocità", 
									  grade                 : "Grade", 
									  heartRate             : "Battito Cardiaco", 
									  cadence               : "Cadenza",
									  goFullScreen          : "Schermo intero",
									  exitFullFcreen        : "Torna a dimensioni originali",
									  hideImages            : "Nascondi immagini",
									  showImages            : "Mostra immagini",
									  backToCenter		    : "Ritorna al centro della mappa"
									}
						   });
			});
		</script></strong></p>
<p><strong><br />
</strong></p>
<p><strong>See in action:</strong></p>
<p><a href="http://www.pedemontanadelgrappa.it/mappe/attraversata-del-grappa-da-s-liberale-ad-alano-di-piave/" target="_blank">http://www.pedemontanadelgrappa.it/mappe/attraversata-del-grappa-da-s-liberale-ad-alano-di-piave/</a></p>
<p>&nbsp;</p>
<p><strong>Download</strong></p>
<p><a href="http://www.pedemontanadelgrappa.it/downloads/wp-silverlight-gpx.zip">wp-silverlight-gpx.zip</a></p>
<p>&nbsp;</p>
<p><strong>Other</strong></p>
<p>In order to save bandwidth and speed up the map loading time, the original GPX file is reduced server side and then sent to the application.</p>
<p>You need a Bing Maps Api Key, you can generate here: <a href="http://www.bing.com/toolbox/bingdeveloper/" target="_blank">http://www.bing.com/toolbox/bingdeveloper/</a></p>
<p>This plugin uses <a title="silverlight 4" href="http://www.silverlight.net/getstarted/silverlight-4/" target="_blank">Microsoft Silverlight 4</a> and Bing <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=beb29d27-6f0c-494f-b028-1e0e3187e830" target="_blank">Maps Silverlight Control</a>.</p>
<p>&nbsp;</p>
<p>If you find a bug or if you have a request, feel free to contact me..<br />
</del></p>
<h3>Share and Enjoy</h3>

<!-- Start WP Socializer - Social Buttons - Output -->
 &bull; <a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-silverlight-gpx-ver-0-1%2F&amp;t=WP+Silverlight+GPX+ver+0.1" title="Share this on Facebook" target="_blank" rel="nofollow">Facebook</a> &bull; <a href="http://twitter.com/home?status=WP+Silverlight+GPX+ver+0.1%20-%20http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-silverlight-gpx-ver-0-1%2F%20" title="Tweet this !" target="_blank" rel="nofollow">Twitter</a> &bull; <a href="http://delicious.com/post?url=http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-silverlight-gpx-ver-0-1%2F&amp;title=WP+Silverlight+GPX+ver+0.1&amp;notes=New+plugin+at%3A+http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-gpx-maps%2Fwp-gpx-maps%2F%0D%0A%0D%0AWP+Silverlight+GPX+shows+your+trak+in+the+map+with+altitude+graph+from+a+gpx+file.%0D%0A%0D%0AYou+can+also+move+the+mouse+over+the+altitude+graph+and+check+the+position+in+the" title="Post this on Delicious" target="_blank" rel="nofollow">Delicious</a> &bull; <a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-silverlight-gpx-ver-0-1%2F&amp;title=WP+Silverlight+GPX+ver+0.1&amp;source=%7B+Dev+Farm+%7D+-+Web+%26amp%3B+Windows+Development&amp;summary=New+plugin+at%3A+http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-gpx-maps%2Fwp-gpx-maps%2F%0D%0A%0D%0AWP+Silverlight+GPX+shows+your+trak+in+the+map+with+altitude+graph+from+a+gpx+file.%0D%0A%0D%0AYou+can+also+move+the+mouse+over+the+altitude+graph+and+check+the+position+in+the" title="Share this on LinkedIn" target="_blank" rel="nofollow">LinkedIn</a> &bull; <a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-silverlight-gpx-ver-0-1%2F&amp;title=WP+Silverlight+GPX+ver+0.1" title="Submit this to StumbleUpon" target="_blank" rel="nofollow">StumbleUpon</a> &bull; <a href="http://www.devfarm.it/wordpress-plugin/wp-silverlight-gpx-ver-0-1/" onclick="addBookmark(event);" title="Add to favorites" target="_blank" rel="nofollow">Add to favorites</a> &bull; <a href="mailto:?to=&amp;subject=WP+Silverlight+GPX+ver+0.1&amp;body=New+plugin+at%3A+http%3A%2F%2Fwww.devfarm.it%2Fwordpress-plugin%2Fwp-gpx-maps%2Fwp-gpx-maps%2F%0D%0A%0D%0AWP+Silverlight+GPX+shows+your+trak+in+the+map+with+altitude+graph+from+a+gpx+file.%0D%0A%0D%0AYou+can+also+move+the+mouse+over+the+altitude+graph+and+check+the+position+in+the%20-%20http://www.devfarm.it/wordpress-plugin/wp-silverlight-gpx-ver-0-1/" title="Email this" target="_blank" rel="nofollow">Email</a> &bull; <a href="http://www.devfarm.it/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow">RSS</a>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://www.devfarm.it/wordpress-plugin/wp-silverlight-gpx-ver-0-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
