Login

Substitute hyphens with spaces to enale URLs to reference to multi-word tags

Author:
miernik
Posted:
November 12, 2009
Language:
SQL
Version:
Not specified
Score:
0 (after 0 ratings)

Substitute hyphens with spaces to enale URLs to reference to multi-word tags

1
2
3
4
5
6
def list_tag(request, tag):
    from re import sub
    tag = sub('-',' ',tag)
    query_tag = Tag.objects.get(name=tag)
    events = TaggedItem.objects.get_by_model(Event, query_tag)
    events = events.order_by('-start')

More like this

  1. create_template_postgis-ubuntu_lucid by clawlor 14 years, 1 month ago
  2. PostgreSQL fulltext with language translations by diverman 14 years, 2 months ago
  3. Drop all tables in MySQL database by mpasternacki 14 years, 9 months ago
  4. grep and delete sqlite tables by kifkif 14 years, 10 months ago
  5. oneliner to delete SQLite tables by kifkif 14 years, 12 months ago

Comments

Please login first before commenting.