File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 3737 between encoded parts, we always removed the space. Note that this bug
3838 was present before mail gateway refactoring :-) Thanks for thorough
3939 testing of mail gateway code by Rafal Bisingier. (Ralf)
40+ - The "Retire" permission was not being registered. (Richard)
41+
4042
41432011-05-29 1.4.18 (r4610)
4244
Original file line number Diff line number Diff line change @@ -236,6 +236,8 @@ def addclass(self, cl):
236236 description = "User is allowed to edit " + cn )
237237 self .security .addPermission (name = "View" , klass = cn ,
238238 description = "User is allowed to access " + cn )
239+ self .security .addPermission (name = "Reture" , klass = cn ,
240+ description = "User is allowed to retire " + cn )
239241
240242 def getclasses (self ):
241243 """Return a list of the names of all existing classes."""
Original file line number Diff line number Diff line change @@ -812,6 +812,8 @@ def addclass(self, cl):
812812 description = "User is allowed to edit " + cn )
813813 self .security .addPermission (name = "View" , klass = cn ,
814814 description = "User is allowed to access " + cn )
815+ self .security .addPermission (name = "Retire" , klass = cn ,
816+ description = "User is allowed to retire " + cn )
815817
816818 def getclasses (self ):
817819 """ Return a list of the names of all existing classes.
You can’t perform that action at this time.
0 commit comments