Tagged Questions

0
votes
2answers
48 views

Permalink/slug best practices

I'm about to setup permalinks on a website and I'm wondering what sort of conventions I should follow in regards to generating them from the existing table of news articles. So fa …
1
vote
1answer
72 views

Java code/library for generating slugs (for use in pretty URLs)

Web frameworks such as Rails and Django has built-in support for "slugs" which are used to generate readable and SEO-friendly URLs: Slugs in Rails Slugs in Django A slug string …
0
votes
1answer
49 views

Enable sluggified URLs in Django

I am trying to enable sluggified URLs in Django of the form that SO uses: example.com/id/slug. I have no problem enabling slugs, and have URLs currently set up of the form: http:// …
1
vote
3answers
56 views

Better to save a slug to the DB or generate dynamically?

Hi - I am working on a django project and would like to include a slug at the end of the url, as is done here on stackoverflow.com: http://example.com/object/1/my-slug-generated-fr …
0
votes
1answer
48 views

Django: Slug in Vietnamese

A site in Vietnamese, it is virtually no different to English. However, there is a problem that is slug. When I type characters such as "ư", "ơ", "á",... Django is not identified. …
1
vote
2answers
45 views

Complex htaccess rewrite rules - where do i start ?

Hi I have asked on here before about mod_rewrite and got the perfect answer but now I need to do something more complex and really needed the advice of someone who knows mod_rewri …
8
votes
10answers
886 views

How can I create a SEO friendly dash-delimited url from a string?

Take a string such as: In C#: How do I add "Quotes" around string in a comma delimited list of strings? and convert it to: in-c-how-do-i-add-quotes-around-string-in-a-co …
2
votes
3answers
153 views

Django slugified urls - how to handle collisions?

I'm currently working on a toy project in Django. Part of my app allows users to leave reviews. I'd like to take the title of the review and slugify it to create a url. So, if …
4
votes
4answers
1k views

how to use a slug in django

I am trying to create a SlugField in Django. I created this simple model: from django.db import models class test(models.Model): q = models.CharField(max_length=30) s = …
0
votes
2answers
154 views

django auto slug in model forms like prepopulated-fields in django admin.

is there a way to get the same results of using pre-populated fields in django's admin site for slug fields in a standard modelform
0
votes
1answer
98 views

Friendly URL Question, with a Twist

I have a user model and a profile model. user has_one :profile profile belongs_to :user Because of this relationship, I pull up my profiles by calling the user id. So my urls lo …
0
votes
1answer
141 views

ASP.NET MVC - Regex for a URL Slug

hello, I am writing a URL Slug for routing. Should I leave the slug constraint blank or what? Here is my code: routes.MapRoute( null, "q/{slug}/{i …
1
vote
3answers
251 views

Best way to generate slugs (human-readable IDs) in Rails

You know, like myblog.com/posts/donald-e-knuth. Should I do this with the built in parameterize method? What about a plugin? I could imagine a plugin being nice for handling dupl …
12
votes
5answers
2k views

In django, what is a “slug”?

When I read django code I often see in models what is called a "slug". I am not quite sure what this is but I do know it has something to do with URL:s. How and when is this slug-t …
0
votes
2answers
138 views

Where to store the complete url in a cms?

I'm creating a cms and have not yet settled on the matter of where to store the complete url for a given page in the structure. Every page have a slug (url friendly name of the pa …

1 2 3 next
15 30 50 per page