#1963: Pages of quickstarted TG 1.1 app do not validate
-------------------------+--------------------------------------------------
Reporter: chrisz | Owner: Chris Arndt
Type: defect | Status: assigned
Priority: high | Milestone: 1.1
Component: TurboGears | Version: 1.1 HEAD
Severity: major | Resolution:
Keywords: needs tests |
-------------------------+--------------------------------------------------
Comment (by chrisz):
The only problem in r6759 was that `_execute_func` is called two times in
`turbogears.controllers`, and we forgot to adapt the first of these calls
(in the `_build_rules` function). There, we need to change
{{{
_execute_func(_func, "json", "json", "application/json",
None, False, args, kw))
}}}
to
{{{
_execute_func(_func, "json", "json", "application/json",
False, {}, args, kw))
}}}
If you like, I can check the patch in again with this fix. As explained
above, I would also remove the special casing for the "mapping" parameter.
--
Ticket URL: <http://trac.turbogears.org/ticket/1963#comment:36>
TurboGears <http://www.turbogears.org/>
TurboGears front-to-back web development
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "TurboGears Tickets" group.
This group is read-only. No posting by normal members allowed.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/turbogears-tickets?hl=en?hl=en
-~----------~----~----~----~------~----~------~--~---