##// END OF EJS Templates
configitems: register the 'web.maxchanges' config
Boris Feld -
r34591:95f4e5b1 default
parent child Browse files
Show More
@@ -730,6 +730,9 b" coreconfigitem('web', 'errorlog',"
730 coreconfigitem('web', 'ipv6',
730 coreconfigitem('web', 'ipv6',
731 default=False,
731 default=False,
732 )
732 )
733 coreconfigitem('web', 'maxchanges',
734 default=10,
735 )
733 coreconfigitem('web', 'maxfiles',
736 coreconfigitem('web', 'maxfiles',
734 default=10,
737 default=10,
735 )
738 )
@@ -110,7 +110,7 b' class requestcontext(object):'
110
110
111 self.archivespecs = archivespecs
111 self.archivespecs = archivespecs
112
112
113 self.maxchanges = self.configint('web', 'maxchanges', 10)
113 self.maxchanges = self.configint('web', 'maxchanges')
114 self.stripecount = self.configint('web', 'stripes')
114 self.stripecount = self.configint('web', 'stripes')
115 self.maxshortchanges = self.configint('web', 'maxshortchanges')
115 self.maxshortchanges = self.configint('web', 'maxshortchanges')
116 self.maxfiles = self.configint('web', 'maxfiles')
116 self.maxfiles = self.configint('web', 'maxfiles')
General Comments 0
You need to be logged in to leave comments. Login now