equal
deleted
inserted
replaced
97 self.reponame = app.reponame |
97 self.reponame = app.reponame |
98 |
98 |
99 self.archivespecs = archivespecs |
99 self.archivespecs = archivespecs |
100 |
100 |
101 self.maxchanges = self.configint('web', 'maxchanges', 10) |
101 self.maxchanges = self.configint('web', 'maxchanges', 10) |
102 self.stripecount = self.configint('web', 'stripes', 1) |
102 self.stripecount = self.configint('web', 'stripes') |
103 self.maxshortchanges = self.configint('web', 'maxshortchanges', 60) |
103 self.maxshortchanges = self.configint('web', 'maxshortchanges', 60) |
104 self.maxfiles = self.configint('web', 'maxfiles', 10) |
104 self.maxfiles = self.configint('web', 'maxfiles', 10) |
105 self.allowpull = self.configbool('web', 'allowpull', True) |
105 self.allowpull = self.configbool('web', 'allowpull', True) |
106 |
106 |
107 # we use untrusted=False to prevent a repo owner from using |
107 # we use untrusted=False to prevent a repo owner from using |