<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/wordpress-mu-1.0" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Generating permalinks</title>
	<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/</link>
	<description>Symfony, PHP and web development directly from the horse's mouth</description>
	<pubDate>Fri, 09 Jan 2009 03:51:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.0</generator>

	<item>
		<title>by: Skiff</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-3820</link>
		<pubDate>Wed, 12 Nov 2008 19:15:05 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-3820</guid>
					<description>&lt;p&gt;More thank's.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>More thank&#8217;s.</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Buka</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-1387</link>
		<pubDate>Sun, 04 May 2008 11:47:34 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-1387</guid>
					<description>&lt;p&gt;I badly understand English, but in general I have understood this clause
, also I wish to tell that in my head that that has exchanged. Now I shall think on another. Actually I shall try it, and I hope to me it will help. And I consider that in some moments you are really right. But not on 100 %, excuse&lt;/p&gt;

&lt;p&gt;Thanks, prosperities to you!&lt;/p&gt;

&lt;p&gt;P.S. Excuse for that that badly I write on English&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I badly understand English, but in general I have understood this clause<br />
, also I wish to tell that in my head that that has exchanged. Now I shall think on another. Actually I shall try it, and I hope to me it will help. And I consider that in some moments you are really right. But not on 100 %, excuse</p>
<p>Thanks, prosperities to you!</p>
<p>P.S. Excuse for that that badly I write on English</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Krof Drakula</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-833</link>
		<pubDate>Fri, 22 Feb 2008 12:03:24 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-833</guid>
					<description>&lt;p&gt;Ah, true, thanks - I'll update the code.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ah, true, thanks - I&#8217;ll update the code.</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Alon</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-832</link>
		<pubDate>Fri, 22 Feb 2008 11:38:01 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-832</guid>
					<description>&lt;p&gt;class Strings {
  public static function CreateSlug($title) {
    $match = array(
      "/[^a-zA-Z0-9\-.,+’ ]/",
      "/ +/",
      "/-+/",
      "/^-/",
      "/-$/"
    );
    $replace = array(
      "",
      "-",
      "-",
      "",
      ""
    );
    return preg_replace($match, $replace, strtolower($title));
  }
); &#60;&#60;&#60;&#60;
^^^^^&lt;/p&gt;

&lt;p&gt;to :
}&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>class Strings {<br />
  public static function CreateSlug($title) {<br />
    $match = array(<br />
      &#8220;/[^a-zA-Z0-9\-.,+’ ]/&#8221;,<br />
      &#8220;/ +/&#8221;,<br />
      &#8220;/-+/&#8221;,<br />
      &#8220;/^-/&#8221;,<br />
      &#8220;/-$/&#8221;<br />
    );<br />
    $replace = array(<br />
      &#8220;&#8221;,<br />
      &#8220;-&#8221;,<br />
      &#8220;-&#8221;,<br />
      &#8220;&#8221;,<br />
      &#8220;&#8221;<br />
    );<br />
    return preg_replace($match, $replace, strtolower($title));<br />
  }<br />
); &lt;&lt;&lt;&lt;<br />
^^^^^</p>
<p>to :<br />
}</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: fat</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-15</link>
		<pubDate>Wed, 24 Jan 2007 11:03:10 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-15</guid>
					<description>&lt;p&gt;Shiflett has a &lt;a href="http://shiflett.org/archive/289" rel="nofollow"&gt;similar post&lt;/a&gt; on the subject. He has a good point on using month name (or abbreviation) instead of a number, keeps it more friendly.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Shiflett has a <a href="http://shiflett.org/archive/289" >similar post</a> on the subject. He has a good point on using month name (or abbreviation) instead of a number, keeps it more friendly.</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Krof Drakula</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-10</link>
		<pubDate>Mon, 22 Jan 2007 12:53:00 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-10</guid>
					<description>&lt;p&gt;Good point, I haven't thought about that.&lt;/p&gt;

&lt;p&gt;The case in point here was just to show the alternative to a behaviour found in other application and how that can be achieved with Symfony.&lt;/p&gt;

&lt;p&gt;But I do agree with you on that point, but discussing the whole SEO theory and practice would take a lot more than just the one post.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Good point, I haven&#8217;t thought about that.</p>
<p>The case in point here was just to show the alternative to a behaviour found in other application and how that can be achieved with Symfony.</p>
<p>But I do agree with you on that point, but discussing the whole SEO theory and practice would take a lot more than just the one post.</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Pierre</title>
		<link>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-9</link>
		<pubDate>Mon, 22 Jan 2007 12:48:37 +0000</pubDate>
		<guid>http://symfony.sopca.com/2007/01/20/generating-permalinks/#comment-9</guid>
					<description>&lt;p&gt;You forgot about the archive browsing ability with those date-time URLs. Stripping the $day out of the URL gives me the archive of year 2007 and month 01, stripping out the month gives me the archive of year 2007. That's much more SEO-friendly in my eyes.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You forgot about the archive browsing ability with those date-time URLs. Stripping the $day out of the URL gives me the archive of year 2007 and month 01, stripping out the month gives me the archive of year 2007. That&#8217;s much more SEO-friendly in my eyes.</p>
]]></content:encoded>
				</item>
</channel>
</rss>
