Errata for "The repoze.bfg Web Framework, Version 1.2" Printed Edition ====================================================================== pp. 66 ------ The sentence: "Technically, traversal is a repoze.bfg subsystem that is separated from traversal entirely." Should read: "Technically, view lookup is a repoze.bfg subsystem that is separated from traversal entirely." pp. 103 ------- The sentence: "The Context Finding and View Lookup (pp. 57) describes how a context and a view name are computed using information from the request. " Should read: "The chapter named Context Finding and View Lookup (pp. 57) describes how, using information from the request, a context and a view name are computed ." pp. 106 ------- The enumeration: 2. Classes that have an ``__init__`` method that accepts ``context, request``, e.g.: .. code-block:: python :linenos: from webob import Response class view(object): def __init__(self, context, request): return Response('OK') Should read: 2. Classes that have an ``__init__`` method that accepts ``context, request``, and a ``__call__`` which accepts no arguments, e.g.: .. code-block:: python :linenos: from webob import Response class view(object): def __init__(self, context, request): self.context = context self.request = request def __call__(self): return Response('OK')