vote up 0 vote down star

I'm using Django 1.0.3, and django-tagging from SVN (around rev. 156 iirc), and am getting some weird errors when trying to create a tag-cloud based on a subset of tagged items. I'm running on WindowsXP, with Python 2.5 and using sqlite3 for the database.

Basically, I want to use some given tags to get a subset of items, and then generate a tag-cloud that applies to that subset.

Here is my view code:

def browse(request, tags):
    """Display an image browser, optionally narrowed by tags."""
    images = Image.objects.order_by("-popularity")
    if tags:
        images = TaggedItem.objects.get_by_model(images, tags)
    all_tags = Tag.objects.usage_for_queryset(images, counts=True)
    cloud = calculate_cloud(tags)
    return render_to_response('gallery/browse.html', locals(), context_instance=RequestContext(request))

I've confirmed that the problem comes from the line

all_tags = Tag.objects.usage_for_queryset(images, counts=True)

If I comment it out, everything works fine (except I don't get the list of tags that I want).

The exception I get doesn't make much sense to me atleast:

Caught an exception while rendering: 'tagging_taggeditem'

Original Traceback (most recent call last):
    File "C:\Python25\lib\site-packages\django\template\debug.py", line 71, in render_node
        result = node.render(context)
    File "C:\Python25\Lib\site-packages\django\template\defaulttags.py", line 123, in render
        len_values = len(values)
    File "C:\Python25\Lib\site-packages\django\db\models\query.py", line 173, in __len__
        self._result_cache = list(self.iterator())
    File "C:\Python25\Lib\site-packages\django\db\models\query.py", line 288, in iterator
        for row in self.query.results_iter():
    File "C:\Python25\Lib\site-packages\django\db\models\sql\query.py", line 205, in results_iter
        for rows in self.execute_sql(MULTI):
    File "C:\Python25\Lib\site-packages\django\db\models\sql\query.py", line 1810, in execute_sql
        sql, params = self.as_sql()
    File "C:\Python25\Lib\site-packages\django\db\models\sql\query.py", line 260, in as_sql
        ordering = self.get_ordering()
    File "C:\Python25\Lib\site-packages\django\db\models\sql\query.py", line 665, in get_ordering
        self.model._meta, default_order = asc):
    File "C:\Python25\Lib\site-packages\django\db\models\sql\query.py", line 704, in find_ordering_name
        self.alias_map[joins[0]][JOIN_TYPE] == self.LOUTER)
KeyError: 'tagging_taggeditem'

Does anyone have any idea what is going on here?

By popular demand, here is the template that goes with it:

{% extends "gallery/base.html" %}
{% load tagging_tags %}

{% block header %}{{ tagtitle }}{% endblock %}

{% block content %}

<div class="cloud">
    {% for tag in cloud %}
        <a class="cloudsize{{ tag.font_size }}" href="{{ tag }}/">{{ tag }}</a>
    {% endfor %}
</div>

<ul class="browse left">
{% for image in images %}
    {% if forloop.first %}
        <li class="left browse small"><a href="{% url gallery.views.view image.filename %}">
            <img src="{{ image.image.url }}" alt="Small version of {{ image.filename }}"/>
    {% else %}
        <li class="left browse thumb"><a href="{% url gallery.views.view image.filename %}">
            <img src="{{ image.image.url }}" alt="Thumbnail version of {{ image.filename }}"/>
    {% endif %}
    </a></li>
{% endfor %}
</ul>

{% endblock %}s
flag
1  
The traceback is not useful. The template, however, is. – Triptych Aug 12 at 21:05

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.