Django

Code

Ticket #6587 (closed: fixed)

Opened 2 years ago

Last modified 2 months ago

remove django.templates __path__ hacking

Reported by: oyvind Assigned to: andrewbadr
Milestone: 1.2 Component: Template system
Version: SVN Keywords: path hacking remove
Cc: cgrady@the-magi.us, mathieu.damours@gmail.com, sdeasey@gmail.com, andrewbadr.etc@gmail.com Triage Stage: Accepted
Has patch: 1 Needs documentation: 0
Needs tests: 0 Patch needs improvement: 1

Description

As mentioned in VersionOneFeatures

I made a attempt at fixing it, posting git patch

Attachments

new_template_lib_loader.diff (2.8 kB) - added by oyvind on 02/12/08 10:15:25.
new template library loader
new_template_lib_loader_2.diff (3.3 kB) - added by oyvind on 02/12/08 12:45:30.
better error messages, no conflicting library names, better naming of variables
new_template_lib_loader_3.diff (3.4 kB) - added by oyvind on 02/13/08 07:19:47.
Do not walk subdirs in os.walk
new_template_lib_loader_4.diff (4.5 kB) - added by oyvind on 02/13/08 09:03:08.
get_library no longer uses django.templatetags.module
new_template_lib_loader_5.diff (5.1 kB) - added by oyvind on 02/28/08 10:41:39.
More use of import, tests pass
new_template_lib_loader_6.diff (4.5 kB) - added by oyvind on 02/29/08 04:23:14.
populate app_label in templatetags/init..py, import_library is own function
new_template_lib_loader_7.diff (5.0 kB) - added by oyvind on 03/19/08 12:10:49.
better naming of variables, some code fixes, added some docstrings
new_template_lib_loader_8.diff (4.6 kB) - added by oyvind on 06/16/08 12:24:13.
All tests pass
new_template_lib_loader_9.diff (4.5 kB) - added by oyvind on 06/16/08 17:46:59.
removed os import
new_template_lib_loader_10.diff (70.0 kB) - added by oyvind on 07/01/08 15:03:08.
fixed import to get the correct module, moved defaulttags and defaultfilters to avoid circular imports, fixes #6579
new_template_lib_loader_11.diff (134.6 kB) - added by oyvind on 07/01/08 15:15:27.
forgot to remove some files in the commit, again
new_template_lib_loader_12.diff (135.7 kB) - added by oyvind on 08/05/08 09:32:07.
new loader using imp, may need some cleaup, and decide if add_to_builtins should change, and if a import should use a list instead of the getattr solution
new_template_lib_loader_13.diff (135.6 kB) - added by oyvind on 08/05/08 10:49:51.
removed import using getattr
new_template_lib_loader_14.diff (135.0 kB) - added by oyvind on 08/06/08 09:24:57.
Final patch, i hope :)
template_libs_t6587_r12288_v1.diff (145.9 kB) - added by andrewbadr on 01/24/10 20:47:33.
t6587-r12291.1.diff (4.8 kB) - added by russellm on 01/25/10 10:07:07.
RC1 of template load refactoring

Change History

02/12/08 10:15:25 changed by oyvind

  • attachment new_template_lib_loader.diff added.

new template library loader

02/12/08 12:45:30 changed by oyvind

  • attachment new_template_lib_loader_2.diff added.

better error messages, no conflicting library names, better naming of variables

02/13/08 07:19:47 changed by oyvind

  • attachment new_template_lib_loader_3.diff added.

Do not walk subdirs in os.walk

02/13/08 09:03:08 changed by oyvind

  • attachment new_template_lib_loader_4.diff added.

get_library no longer uses django.templatetags.module

02/13/08 09:37:06 changed by oyvind

  • needs_better_patch changed.
  • needs_tests changed.
  • needs_docs changed.

all tests in runtests.py templates now pass

02/16/08 00:50:47 changed by Simon Greenhill <dev@simon.net.nz>

  • stage changed from Unreviewed to Ready for checkin.

02/18/08 12:44:10 changed by mtredinnick

  • needs_better_patch set to 1.
  • stage changed from Ready for checkin to Accepted.

A good start. Needs a little more tweaking, though.

Line 19 in the new version of templatetags/__init__.py can't be right. It looks like you're trying to replicate Python's import behaviour, but that's not the way to do it. I would be cautious of anything trying to do with this work without using at least some functions from Python's imp module. See below (the "Finally,..." paragraph) for more here: I feel a bit suspicious about the whole approach in this part of the code.

Lines 8 and 9 in the same file cry out for a better solution. One possible, probably for another ticket, is to add a "tags to load always" list in settings. This would help people who are poking into the builtin tags as well. We could add django.templatetags.* to that list.

Even simpler, and probably sufficient for the purposes of this ticket is to iterate over ['django'] + list(settings.INSTALLED_APPS). That avoids having some special list we have to remember to update if we add more tags in there.

Finally, the approach in get_library_names() looks complex. You're doing a lot of computation there in the hope of getting one hit on the returned dictionary when you try to load a tag. Is it possible to let Python do more of the work here. Loop over the list of directories (<app_name>+'.templatetags') and try appending what is being loaded to the end of that and importing. As soon as you don't get an import error, stop with success. That will also mean if you try to load the same template tags in multiple templates in the the same process, Python will just reuse the one already in memory, instead of walking all those directories again. Push less of the work down into get_library_names() and try to use Python's builtin import facilities (esp. __import__() a bit more.

02/22/08 16:30:28 changed by Collin Grady <cgrady@the-magi.us>

  • cc set to cgrady@the-magi.us.

02/28/08 10:41:39 changed by oyvind

  • attachment new_template_lib_loader_5.diff added.

More use of import, tests pass

02/29/08 04:23:14 changed by oyvind

  • attachment new_template_lib_loader_6.diff added.

populate app_label in templatetags/init..py, import_library is own function

03/19/08 12:10:49 changed by oyvind

  • attachment new_template_lib_loader_7.diff added.

better naming of variables, some code fixes, added some docstrings

06/16/08 12:24:13 changed by oyvind

  • attachment new_template_lib_loader_8.diff added.

All tests pass

06/16/08 12:27:55 changed by telenieko

#3349 talks about ImportError? in template loading.

06/16/08 12:36:52 changed by oyvind

This patch shows the tried modules, should the message be less specific, and ask about apps in INSTALLED_APPS as in #3349?

06/16/08 17:46:59 changed by oyvind

  • attachment new_template_lib_loader_9.diff added.

removed os import

06/17/08 05:45:27 changed by telenieko

I prefer to know the tried modules, just pointed out #3349 in case it gets invalidated whe this one gets in. But I doubt it now as I changed #3349 summary (as the patch fixed other places with obscure errors).

06/18/08 05:33:44 changed by oyvind

  • owner changed from nobody to oyvind.

06/18/08 05:36:08 changed by oyvind

  • status changed from new to assigned.
  • needs_better_patch deleted.

06/23/08 13:27:57 changed by ramiro

See also #6579 regarding the use of [''] as the 4th. parameter to ___init__() (with some notes from the Python developers advising against its use.)

07/01/08 15:03:08 changed by oyvind

  • attachment new_template_lib_loader_10.diff added.

fixed import to get the correct module, moved defaulttags and defaultfilters to avoid circular imports, fixes #6579

07/01/08 15:15:27 changed by oyvind

  • attachment new_template_lib_loader_11.diff added.

forgot to remove some files in the commit, again

08/05/08 09:32:07 changed by oyvind

  • attachment new_template_lib_loader_12.diff added.

new loader using imp, may need some cleaup, and decide if add_to_builtins should change, and if a import should use a list instead of the getattr solution

08/05/08 10:49:51 changed by oyvind

  • attachment new_template_lib_loader_13.diff added.

removed import using getattr

08/06/08 09:24:57 changed by oyvind

  • attachment new_template_lib_loader_14.diff added.

Final patch, i hope :)

08/14/08 01:32:26 changed by mtredinnick

  • owner changed from oyvind to mtredinnick.
  • status changed from assigned to new.

08/15/08 02:17:08 changed by Alex

  • milestone changed from 1.0 beta to post-1.0.

1.0 beta has shipped and this was not fixed, will be handled post-1.0.

08/15/08 09:14:58 changed by mtredinnick

  • milestone changed from post-1.0 to 1.0.

I realise people are only trying to help, but can we have a little restraint with triaging tickets off the feature list? Particularly when a maintainer is currently the assigned person. This is still on the 1.0 track. I can do it in a more-or-less backwards-compatible way, with luck.

09/02/08 07:16:40 changed by mtredinnick

  • owner deleted.
  • needs_better_patch set to 1.
  • milestone deleted.

09/26/08 18:48:52 changed by anonymous

  • milestone set to post-1.0.

11/02/08 14:27:23 changed by ramiro

#6579 was related and marked as duplicate.

11/07/08 02:23:25 changed by akaihola

#9413 is a symptom of this and has been marked as duplicate.

01/22/09 10:10:18 changed by matehat

Just a suggestion: if an app (say called 'chunkies') needs only one templatetag module, it would be better to put its content in the 'templatetags/_ _init_ _.py' module instead of forcing it into a new file, say 'templatetags/chunkiestags.py'. This way, we would be able to load it with {% load chunkies %} instead of {% load chunkiestags %}. I looked at the patch and it would only require a short change in 'django/template/_ _init_ _.py'

    if module.endswith("%s.%s" % (library_name, 'templatetags')):
        taglib_module = module
    else:
        taglib_module = str('%s.%s' % (module, library_name))

01/22/09 10:11:33 changed by matehat

  • cc changed from cgrady@the-magi.us to cgrady@the-magi.us, mathieu.damours@gmail.com.

02/25/09 13:51:44 changed by

  • milestone deleted.

Milestone post-1.0 deleted

02/28/09 13:45:56 changed by jacob

  • milestone set to 1.1 beta.

03/22/09 21:47:26 changed by mtredinnick

  • milestone deleted.

No actual progress on this since 1.0 (yeah, we suck). We'll get to it one day, but not this time around.

03/23/09 05:21:50 changed by groks

  • cc changed from cgrady@the-magi.us, mathieu.damours@gmail.com to cgrady@the-magi.us, mathieu.damours@gmail.com, sdeasey@gmail.com.

03/31/09 06:31:41 changed by mrts

  • milestone set to 1.2.

Re-targeting for 1.2.

12/03/09 14:46:21 changed by andrewbadr

  • owner set to andrewbadr.

can take a look for 1.2

(follow-up: ↓ 27 ) 12/19/09 20:08:10 changed by andrewbadr

Oyvind, or anyone: how do I use the latest patch? What's up with the /dev/null stuff?

(in reply to: ↑ 26 ) 12/20/09 16:33:12 changed by ramiro

Replying to andrewbadr:

What's up with the /dev/null stuff?

Download the patch using the 'Original Format' link at the bottom of the page and examine it with your preferred text editor. The fact you see /dev/null files is because of an interaction between a) Behavior of some tools (like Git, Mercurial, ...?) that generate diffs containing a /dev/null path for the original file in the header when a new file has been added and b) Trac patch HTML renderer that picks and shows that specific header piece.

Patch should apply cleanly using GNU patch though.

01/24/10 20:47:33 changed by andrewbadr

  • attachment template_libs_t6587_r12288_v1.diff added.

01/24/10 20:51:58 changed by andrewbadr

Here's a version of new_template_lib_loader_14.diff updated to work against trunk. This is my first time using git for patches so hopefully I didn't mess anything up.

Two important notes:

  • The defaulttags module isn't just moved; it is patched and moved at the same time. There is a one-line difference in the "load" function.
  • The templatetag admindocs break. I'll be getting to that later tonight. It was previously pretty tightly coupled to the internals, so I'll assume that's ok for the new version if I can't find a better solution.

It would be great if a committer could confirm that this patch's general approach is correct.

01/24/10 21:19:40 changed by andrewbadr

If you are looking at this patch...

  • Should get_templatetags_modules be using import_module or something besides a manual import? I don't know too much about that stuff.
  • The division of code feels wrong. I want to at least move get_templatetags_modules from django.templatetags to django.template (the only place it's used) and maybe even rename it to "get_templatelibrary_modules" (matching the terminology used in django.template). At that point, the django/templatetags folder would only contain libraries, so I'd want to move the directory to django/template/templatetags. (The first change has a stronger case.) Thoughts?

01/25/10 09:39:53 changed by russellm

@andrewbadr - Yes, you should be making better use of importlib.import_module. Essentially, any code where you are using imp directly and splitting on '.' - replace it with a call to import_module('full.qualified.module.name')

You need to be careful about moving big blocks of code around, though. The template tests currently fail, for example, because "from django.templatetags.defaultfilters import stringfilter" no longer works. I have plenty of code that imports and uses templates filters as functions. These tests may still have been passing for you if you had a stale .pyc file. django.template may not be the best place for this code, but its a location with historical significance; it can't be changed lightly.

I'll upload an updated patch shortly, which I'll probably commit tomorrow when my head is a little clearer. Other than the import_module and code relocation issues, I'm happy with the approach that has been taken.

01/25/10 10:07:07 changed by russellm

  • attachment t6587-r12291.1.diff added.

RC1 of template load refactoring

01/25/10 14:46:35 changed by andrewbadr

  • cc changed from cgrady@the-magi.us, mathieu.damours@gmail.com, sdeasey@gmail.com to cgrady@the-magi.us, mathieu.damours@gmail.com, sdeasey@gmail.com, andrewbadr.etc@gmail.com.

Before committing, note the admindoc breakage I mentioned above and that Øyvind should get credit for writing the patch (I just translated it to trunk). I can work on the admindoc issue tomorrow.

01/25/10 19:38:51 changed by russellm

  • status changed from new to closed.
  • resolution set to fixed.

(In [12295]) Fixed #6587 -- Removed nasty path hacking in templatetag loading. Thanks to Øyvind Satvik and Andrew Badr for their work on this patch.


Add/Change #6587 (remove django.templates __path__ hacking)




Change Properties
Action