How do you include a webpage title as part of a webpage URL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T23:07:15Z http://stackoverflow.com/feeds/question/25259 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url 12 How do you include a webpage title as part of a webpage URL? Maudite 2008-08-24T18:21:11Z 2009-03-14T01:12:39Z <p>What is a good complete Regex or some other process that would take "How do you change a title to be part of the url like Stackoverflow?" and turn it into "how-do-you-change-a-title-to-be-part-of-the-url-like-stackoverflow" that is used in the smart urls?</p> <p>The dev environment is I am using is Rails but if there are some other platform specific solutions (.net, php, django), I would love to see those too. I am sure I (or another reader) will come across the same problem on a different platform down the line. </p> <p>-- edit -- </p> <p>I am using custom routes, I mainly want to know how to alter the string to all special chars are removed, it's all lowercase, and all whitespace is replaced. </p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25263#25263 8 Answer by Dale Ragan for How do you include a webpage title as part of a webpage URL? Dale Ragan 2008-08-24T18:24:10Z 2008-08-24T18:58:12Z <p>You will want to setup a custom route to point the url to the controller that will handle it. Since you are using Rails, here is an <a href="http://manuals.rubyonrails.com/read/chapter/65" rel="nofollow">introduction</a> in using their routing engine.</p> Edit <p>Sorry, I misunderstood your question. In Ruby, you will need a regex like you already know and here is the regex to use:</p> <pre><code>def permalink_for(str) str.gsub(/[^\w\/]|[!\(\)\.]+/, ' ').strip.downcase.gsub(/\ +/, '-') end </code></pre> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25267#25267 1 Answer by Andrew G. Johnson for How do you include a webpage title as part of a webpage URL? Andrew G. Johnson 2008-08-24T18:31:52Z 2008-08-24T18:31:52Z <p>On my LAMP sites I use the mod_rewrite function in .htaccess</p> <p>Read more here: <a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" rel="nofollow">http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html</a></p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25275#25275 2 Answer by Vegard Larsen for How do you include a webpage title as part of a webpage URL? Vegard Larsen 2008-08-24T18:41:43Z 2008-08-24T19:06:20Z <p>I am not familiar with Rails, but the following is (untested) PHP code. You can probably translate this very quickly to Rails if you find it useful.</p> <pre><code>$sURL = "This is a title to convert to URL-format. It has 1 number in it!"; // lower-case $sURL = strtolower($sURL); // replace all non-word characters with spaces $sURL = preg_replace("/\W+/", " ", $sURL); // remove trailing spaces (so we won't end with a separator) $sURL = trim($sURL); // replace spaces with separators (hyphen) $sURL = str_replace(" ", "-", $sURL); echo $sURL; // outputs: this-is-a-title-to-convert-to-url-format-it-has-1-number-in-it </code></pre> <p>Hope this helps.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25279#25279 1 Answer by Brian for How do you include a webpage title as part of a webpage URL? Brian 2008-08-24T18:48:59Z 2008-08-24T18:48:59Z <p>I don't much about Ruby or Rails, but in Perl, this is what I would do:</p> <pre><code>my $title = "How do you change a title to be part of the url like Stackoverflow?"; my $url = lc $title; # Change to lower case and copy to URL. $url =~ s/^\s+//g; # Remove leading spaces. $url =~ s/\s+$//g; # Remove trailing spaces. $url =~ s/\s+/\-/g; # Change one or more spaces to single hyphen. $url =~ s/[^\w\-]//g; # Remove any non-word characters. print "$title\n$url\n"; </code></pre> <p>I just did a quick test and it seems to work. Hopefully this is relatively easy to translate to Ruby.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25280#25280 1 Answer by John Topley for How do you include a webpage title as part of a webpage URL? John Topley 2008-08-24T18:49:42Z 2008-08-24T18:49:42Z <p>Assuming that your model class has a title attribute, you can simply override the to_param method within the model, like this:</p> <pre><code>def to_param title.downcase.gsub(/ /, '-') end </code></pre> <p><a href="http://railscasts.com/episodes/63-model-name-in-url" rel="nofollow">This Railscast episode</a> has all the details. You can also ensure that the title only contains valid characters using this:</p> <pre><code>validates_format_of :title, :with =&gt; /^[a-z0-9-]+$/, :message =&gt; 'can only contain letters, numbers and hyphens' </code></pre> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25283#25283 0 Answer by Daren Thomas for How do you include a webpage title as part of a webpage URL? Daren Thomas 2008-08-24T18:58:51Z 2008-08-24T18:58:51Z <p>What about funny characters? What are you going to do about those? Umlauts? Punctuation? These need to be considered. Basically, I would use a white-list approach, as opposed to the black-list approaches above: Describe which characters you will allow, which characters you will convert (to what?) and then change the rest to something meaningfull (""). I doubt you can do this in one regex... Why not just loop through the characters?</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25285#25285 1 Answer by Sören Kuklau for How do you include a webpage title as part of a webpage URL? Sören Kuklau 2008-08-24T19:03:47Z 2008-08-24T19:03:47Z <p>Brian's code, in Ruby:</p> <pre><code>title.downcase.strip.gsub(/\ /, '-').gsub(/[^\w\-]/, '') </code></pre> <p><code>downcase</code> turns the string to lowercase, <code>strip</code> removes leading and trailing whitespace, the first <code>gsub</code> call <em>g</em>lobally <em>sub</em>stitutes spaces with dashes, and the second removes everything that isn't a letter or a dash.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25486#25486 21 Answer by Jeff Atwood for How do you include a webpage title as part of a webpage URL? Jeff Atwood 2008-08-25T00:11:43Z 2008-12-30T09:19:17Z <p>Here's how we do it. Note that there are probably more edge conditions than you realize at first glance.</p> <p>This is the second version, unrolled for 5x more performance (and yes, I benchmarked it). I figured I'd optimize it because this function can be called hundreds of times per page.</p> <pre><code>if (String.IsNullOrEmpty(title)) return ""; // to lowercase, trim extra spaces title = title.ToLower().Trim(); // remove entities title = entityRegex.Replace(title, ""); var len = title.Length; var sb = new StringBuilder(len); bool prevdash = false; char c; for (int i = 0; i &lt; title.Length; i++) { c = title[i]; if (c == ' ' || c == ',' || c == '.' || c == '/' || c == '\\' || c == '-') { if (!prevdash) { sb.Append('-'); prevdash = true; } } else if ((c &gt;= 'a' &amp;&amp; c &lt;= 'z') || (c &gt;= '0' &amp;&amp; c &lt;= '9')) { sb.Append(c); prevdash = false; } if (i == 80) break; } title = sb.ToString(); // remove trailing dash, if there is one if (title.EndsWith("-")) title = title.Substring(0, title.Length - 1); return title; </code></pre> <p>To see the previous version of the code this replaced (but is functionally equivalent to, and 5x faster), view revision history of this post (click the date link).</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25537#25537 5 Answer by The How-To Geek for How do you include a webpage title as part of a webpage URL? The How-To Geek 2008-08-25T01:20:35Z 2008-08-25T01:20:35Z <p>For good measure, here's the PHP function in WordPress that does it... I'd think that WordPress is one of the more popular platforms that uses fancy links.</p> <pre> function sanitize_title_with_dashes($title) { $title = strip_tags($title); // Preserve escaped octets. $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title); // Remove percent signs that are not part of an octet. $title = str_replace('%', '', $title); // Restore octets. $title = preg_replace('|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title); $title = remove_accents($title); if (seems_utf8($title)) { if (function_exists('mb_strtolower')) { $title = mb_strtolower($title, 'UTF-8'); } $title = utf8_uri_encode($title, 200); } $title = strtolower($title); $title = preg_replace('/&.+?;/', '', $title); // kill entities $title = preg_replace('/[^%a-z0-9 _-]/', '', $title); $title = preg_replace('/\s+/', '-', $title); $title = preg_replace('|-+|', '-', $title); $title = trim($title, '-'); return $title; } </pre> <p>This function as well as some of the supporting functions can be found in wp-includes/formatting.php.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/37886#37886 1 Answer by izb for How do you include a webpage title as part of a webpage URL? izb 2008-09-01T12:55:46Z 2008-09-01T12:55:46Z <p>I'd add to the answers here that this is commonly known as a URL 'slug' if you want to google the term.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/37918#37918 1 Answer by Lau for How do you include a webpage title as part of a webpage URL? Lau 2008-09-01T13:13:39Z 2008-09-01T13:13:39Z <p>There is a small Rails plugin called <a href="http://svn.techno-weenie.net/projects/plugins/permalink_fu/" rel="nofollow">PermalinkFu</a>, that does this.</p> <p>The <a href="http://svn.techno-weenie.net/projects/plugins/permalink_fu/lib/permalink_fu.rb" rel="nofollow">escape method</a> does the transformation into a string that is suitable for a url. Have a look at the code, that method is quite simple.</p> <p>To remove non-ascii chars it uses the iconv lib to translate to 'ascii//ignore//translit' from 'utf-8'. Spaces are then turned into dashes, everything is downcased etc.</p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/37922#37922 2 Answer by D4V360 for How do you include a webpage title as part of a webpage URL? D4V360 2008-09-01T13:16:17Z 2008-09-01T13:16:17Z <p>You can also use this javascript function for in-form generation of the slug's (This one is based on/copied from Django): <code><pre> function makeSlug(urlString, filter) { // changes, e.g., "Petty theft" to "petty_theft" // remove all these words from the string before urlifying</p> <pre><code>if(filter) { removelist = ["a", "an", "as", "at", "before", "but", "by", "for", "from", "is", "in", "into", "like", "of", "off", "on", "onto", "per", "since", "than", "the", "this", "that", "to", "up", "via", "het", "de", "een", "en", "with"]; } else { removelist = []; } s = urlString; r = new RegExp('\\b(' + removelist.join('|') + ')\\b', 'gi'); s = s.replace(r, ''); s = s.replace(/[^-\w\s]/g, ''); // remove unneeded chars s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens s = s.toLowerCase(); // convert to lowercase return s;// trim to first num_chars chars </code></pre> <p>} </code></pre></p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/47633#47633 0 Answer by Sören Kuklau for How do you include a webpage title as part of a webpage URL? Sören Kuklau 2008-09-06T16:29:20Z 2008-09-06T16:29:20Z <p>T-SQL implementation, adapted from <a href="http://www.sqljunkies.com/WebLog/peter_debetta/archive/2007/03/09/28987.aspx" rel="nofollow">dbo.UrlEncode</a>:</p> <pre><code>CREATE FUNCTION dbo.Slug(@string varchar(1024)) RETURNS varchar(3072) AS BEGIN DECLARE @count int, @c char(1), @i int, @slug varchar(3072) SET @string = replace(lower(ltrim(rtrim(@string))),' ','-') SET @count = Len(@string) SET @i = 1 SET @slug = '' WHILE (@i &lt;= @count) BEGIN SET @c = substring(@string, @i, 1) IF @c LIKE '[a-z0-9--]' SET @slug = @slug + @c SET @i = @i +1 END RETURN @slug END </code></pre> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/399903#399903 1 Answer by Thibaut Barrère for How do you include a webpage title as part of a webpage URL? Thibaut Barrère 2008-12-30T09:59:43Z 2008-12-30T09:59:43Z <p>If you are using Rails edge, you can rely on <a href="http://github.com/rails/rails/tree/master/activesupport/lib/active_support/inflector.rb#L244" rel="nofollow">Inflector.parametrize</a> - here's the example from the documentation:</p> <pre><code> class Person def to_param "#{id}-#{name.parameterize}" end end @person = Person.find(1) # =&gt; #&lt;Person id: 1, name: "Donald E. Knuth"&gt; &lt;%= link_to(@person.name, person_path(@person)) %&gt; # =&gt; &lt;a href="/person/1-donald-e-knuth"&gt;Donald E. Knuth&lt;/a&gt; </code></pre> <p>Also if you need to handle more exotic characters such as accents (éphémère) in previous version of Rails, you can use a mixture of <a href="http://github.com/technoweenie/permalink_fu/tree/master" rel="nofollow">PermalinkFu</a> and <a href="http://github.com/thbar/diacritics_fu/tree/master" rel="nofollow">DiacriticsFu</a>:</p> <pre><code>DiacriticsFu::escape("éphémère") =&gt; "ephemere" DiacriticsFu::escape("räksmörgås") =&gt; "raksmorgas" </code></pre> <p>cheers!</p> <p>Thibaut</p> <p>--</p> <p><a href="http://blog.logeek.fr" rel="nofollow">http://blog.logeek.fr</a></p> http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/645130#645130 1 Answer by Colin Thomas-Arnold for How do you include a webpage title as part of a webpage URL? Colin Thomas-Arnold 2009-03-14T01:12:39Z 2009-03-14T01:12:39Z <p>no, no, no. you are all so very wrong. Except for the diacritics-fu stuff, you're getting there, but what about asian characters (shame on ruby developers for not considering their nihonjin brethren)</p> <p>firefox and safari both display non-ascii characters in the url, and frankly they look great. It is nice to support links like '<a href="http://somewhere.com/news/read/" rel="nofollow">http://somewhere.com/news/read/</a>お前たちはアホじゃないかい'</p> <p>so here's some PHP code that'll do it, but I just wrote it, and haven't stress tested it.</p> <pre><code>&lt;?php function slug($str) { $args = func_get_args(); array_filter($args); //remove blanks $slug = mb_strtolower(implode('-', $args)); $real_slug = ''; $hyphen = ''; foreach(SU::mb_str_split($slug) as $c) { if (strlen($c) &gt; 1 &amp;&amp; mb_strlen($c)===1) { $real_slug .= $hyphen . $c; $hyphen = ''; } else { switch($c) { case '&amp;': $hyphen = $real_slug ? '-and-' : ''; break; case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g': case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n': case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u': case 'v': case 'w': case 'x': case 'y': case 'z': case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G': case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': $real_slug .= $hyphen . $c; $hyphen = ''; break; default: $hyphen = $hyphen ? $hyphen : ($real_slug ? '-' : ''); } } } return $real_slug; } </code></pre> <p>Example:</p> <pre><code>$str = "~!@#$%^&amp;*()_+-=[]\{}|;':\",./&lt;&gt;?\n\r\t\x07\x00\x04 コリン ~!@#$%^&amp;*()_+-=[]\{}|;':\",./&lt;&gt;?\n\r\t\x07\x00\x04 トーマス ~!@#$%^&amp;*()_+-=[]\{}|;':\",./&lt;&gt;?\n\r\t\x07\x00\x04 アーノルド ~!@#$%^&amp;*()_+-=[]\{}|;':\",./&lt;&gt;?\n\r\t\x07\x00\x04"; echo slug($str); </code></pre> <p>Outputs: コリン-and-トーマス-and-アーノルド</p> <p>the '-and-' is because &amp;'s get changed to '-and-'.</p>