Closed GoogleCodeExporter closed 9 years ago
This is rather strange, as "it shouldn't happen". If you're running Rosetta off
SVN, could you please svn up to r75
and see if you can still reproduce?
Original comment by mbonetti
on 21 Sep 2009 at 3:13
I agree that it's strange. But it can happen. You have several choices here but
no
choice by default (views.py):
if 'query' in request.REQUEST and request.REQUEST.get('query','').strip():
query=request.REQUEST.get('query').strip()
rx=re.compile(query, re.IGNORECASE)
paginator = Paginator([e for e in rosetta_i18n_pofile if
rx.search(smart_unicode(e.msgstr)+smart_unicode(e.msgid)+u''.join([o[0] for o in
e.occurrences]))], rosetta_settings.MESSAGES_PER_PAGE)
else:
if rosetta_i18n_filter == 'all':
paginator = Paginator([e for e in rosetta_i18n_pofile if not
e.obsolete], rosetta_settings.MESSAGES_PER_PAGE)
elif rosetta_i18n_filter == 'untranslated':
paginator = Paginator(rosetta_i18n_pofile.untranslated_entries(),
rosetta_settings.MESSAGES_PER_PAGE)
elif rosetta_i18n_filter == 'translated':
paginator = Paginator(rosetta_i18n_pofile.translated_entries(),
rosetta_settings.MESSAGES_PER_PAGE)
elif rosetta_i18n_filter == 'fuzzy':
paginator = Paginator(rosetta_i18n_pofile.fuzzy_entries(),
rosetta_settings.MESSAGES_PER_PAGE)
Just to try: I added two lines
else:
paginator = Paginator([e for e in rosetta_i18n_pofile if not
e.obsolete], rosetta_settings.MESSAGES_PER_PAGE)
and now it works.
P.S. I updated to the revision 75
Original comment by pakhomov...@yandex.ru
on 22 Sep 2009 at 12:37
thank you, fixing this as suggested as soon as I get a moment.
Original comment by mbonetti
on 22 Sep 2009 at 12:54
Fixed in r76, thanks for spotting this.
Original comment by mbonetti
on 23 Sep 2009 at 3:52
Original issue reported on code.google.com by
pakhomov...@yandex.ru
on 21 Sep 2009 at 10:53