﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
28688	Unicode slugs are not properly slugified due to javascript limitations	Sævar Öfjörð Magnússon	Sævar Öfjörð Magnússon	"When using unicode slugs, and the slug contains a unicode character and a word from the removelist in urlify.js right after it (e.g. the letter ""a""), the unicode character is detected as a word boundary in javascript and the text that matches the removelist is stripped from the slug...
The removelist contains the following words:

  var 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"", ""with""
  ];

And when I try to slugify this text: ""Kaupa miða""
The result becomes: ""kaupa-mið""

This can be tested using the following line in console:
URLify(""Kaupa miða"", 255, true)


(only when urlify.js is loaded, of course)"	Bug	closed	contrib.admin	1.11	Normal	fixed			Ready for checkin	1	0	0	0	0	0
