Changes between Initial Version and Version 1 of Ticket #4626


Ignore:
Timestamp:
Jun 19, 2007, 7:36:05 PM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

(Fixed description formatting.)

What file are you trying to change here? What is an example use-case?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4626 – Description

    initial v1  
    11I found it helpful for extra_context functions to have access to the context.
    22The change is in line 80:
    3 
     3{{{
    44<        if callable(value):
    55<            c[key] = value()
     
    77>        if callable(value):
    88>            c[key] = value(c)
    9 
     9}}}
    1010I'm not sure who decides on whether it should go to the version - it does changes the API
Back to Top