~hardware-certification/zope3/certify-trunk-2.5

« back to all changes in this revision

Viewing changes to src/zope/app/publisher/xmlrpc/.svn/text-base/metaconfigure.py.svn-base

  • Committer: Marc Tardif
  • Date: 2008-09-29 21:51:27 UTC
  • Revision ID: marc.tardif@canonical.com-20080929215127-avhwhbli3ene811e
Migrated from trunk to 3.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
            # of the original class
78
78
            def proxyView(context, request, class_=class_):
79
79
                view = class_(context, request)
80
 
                view.__Security_checker__ = getCheckerForInstancesOf(original_class)
 
80
                view.__Security_checker__ = getCheckerForInstancesOf(
 
81
                    original_class)
81
82
                return view
82
83
            class_ = proxyView
83
84
            class_.factory = original_class