﻿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
20422	"makemessages ignores ""ignore patterns"""	Vsevolod Novikov	Claude Paroz	"The default ignore pattern set contains '.*','*~', and 'CVS' patterns. As I was expecting, it should mean that any file having file NAME like these patterns, should be ignored.

Really, the makemessages management command ignores only project root files having file names like these.

As a result, the makemessages makes such unexpected things like walking through all .svn directories except root, or trying to analyze binary Mac OS X - specific file descriptors like '._adminoverride.js'

The reason for such inconsistency is a function is_ignored() defined in the makemessages.py.

While the django 1.5 declares this function in a module context, the current trunk defines it in a context of the find_files() function (it is not important, but makes creating ready-to-use patch harder).

Anyway, the only line required to be fixed is:
{{{
        if fnmatch.fnmatchcase(path, pattern):
}}}
which should be replaced by:
{{{
        if fnmatch.fnmatchcase(os.path.split(path)[-1], pattern):
}}}
This simple change makes makemessages command working with ignore patterns as expected.

The applied patch has been created for django version 1.5.1-final:
{{{
>>> import django
>>> django.VERSION
(1, 5, 1, 'final', 0)
}}}
"	Bug	closed	Core (Management commands)	1.5	Normal	fixed	ignore,pattern	bmispelon@…	Ready for checkin	1	0	0	0	0	0
