Skip to content

Commit

Permalink
Merged from the ZopeX3-3.0-broken branch:
Browse files Browse the repository at this point in the history
  ------------------------------------------------------------------------
  r27300 | srichter | 2004-08-27 12:24:30 -0400 (Fri, 27 Aug 2004) | 3 lines

  Gave SkinDocumentation and LayerDocumentation a location upon creation. 
  Now the ftests pass again.

  ------------------------------------------------------------------------
  r27299 | jim | 2004-08-27 12:19:47 -0400 (Fri, 27 Aug 2004) | 5 lines

  Added logic to set adapter __parent__ attr to allow acquisition of
  grants.

  We need to find a way to automate setting adapter __parent__ attrs.

  ------------------------------------------------------------------------
  r27298 | jim | 2004-08-27 11:48:28 -0400 (Fri, 27 Aug 2004) | 5 lines

  Changed to use the global test manager, who has global grants.

  Really, only global users with global grants can use the application
  controller.  This needs some refinement in the future.

  ------------------------------------------------------------------------
  r27297 | jim | 2004-08-27 11:48:00 -0400 (Fri, 27 Aug 2004) | 5 lines

  Changed to use the global test manager, who has global grants.

  Really, only global users with global grants can use the application
  controller.  This needs some refinement in the future.

  ------------------------------------------------------------------------
  r27296 | jim | 2004-08-27 11:43:53 -0400 (Fri, 27 Aug 2004) | 5 lines

  Changed to use the global test manager, who has global grants.

  Really, only global users with global grants can use the application
  controller.  This needs some refinement in the future.

  ------------------------------------------------------------------------
  r27295 | jim | 2004-08-27 11:01:18 -0400 (Fri, 27 Aug 2004) | 3 lines

  Have annotation security maps parents, so that they can acquire
  permission grants.

  ------------------------------------------------------------------------
  r27294 | jim | 2004-08-27 11:01:16 -0400 (Fri, 27 Aug 2004) | 3 lines

  Made security-setting attributes public. There's nothing woth
  protecting there.

  ------------------------------------------------------------------------
  r27293 | jim | 2004-08-27 10:47:24 -0400 (Fri, 27 Aug 2004) | 44 lines

  Removed the global grant for the test manager.  This *should* have no
  effect, since there is a local grant.  But thre are a number of
  protected objects that don't get location information and, thus, can't
  acquire local grants.

  This change causes the following 12 tests to fail:

  ...
  • Loading branch information
Jim Fulton committed Aug 27, 2004
1 parent bf01f6c commit bbdd86a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions browser/ftests/test_translationdomaincontrol.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ class ZODBControlTest(BrowserTestCase):
def testDomainOverview(self):
response = self.publish(
'/++etc++process/@@TranslationDomain.html',
basic='mgr:mgrpw')
basic='globalmgr:globalmgrpw')

body = response.getBody()
self.checkForBrokenLinks(body,
'/++etc++process/@@TranslationDomain.html',
basic='mgr:mgrpw')
basic='globalmgr:globalmgrpw')

def testReload(self):
response = self.publish('/++etc++process/@@TranslationDomain.html',
basic='mgr:mgrpw',
basic='globalmgr:globalmgrpw',
form={'language': u'de',
'domain': u'zope',
'RELOAD': u'Reload'})
Expand Down
2 changes: 1 addition & 1 deletion browser/ftests/test_zodbcontrol.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ZODBControlTest(BrowserTestCase):

def testZODBControlOverview(self):
response = self.publish('/++etc++process/@@ZODBControl.html',
basic='mgr:mgrpw',
basic='globalmgr:globalmgrpw',
form={'days': u'3'})
body = response.getBody()
self.assert_('value="3"' in body)
Expand Down

0 comments on commit bbdd86a

Please sign in to comment.