|
| |
7 |
7 |
# 002 Set some variables |
|
| |
8 |
8 |
# 003 We want to put something like username@openacs.org as the sender email. |
|
| |
9 |
9 |
# (too bad we don't have LDAP, actually) |
|
| |
|
10 |
# 004 Reduced size of sent emails |
|
| |
10 |
11 |
|
|
| |
11 |
12 |
"""Apply checkin actions dictated by traffic_table.py, as checkins occur. |
|
| |
12 |
13 |
|
|
|
| |
76 |
77 |
|
|
| |
77 |
78 |
# Ceiling on number of lines per file report (diff or "added"), at which point |
|
| |
78 |
79 |
# we go to excerpts from the beginning and end: |
|
| |
79 |
|
FILE_LINES_LIMIT = 1500 |
|
| |
|
80 |
# 004 |
|
| |
|
81 |
#FILE_LINES_LIMIT = 1500 |
|
| |
|
82 |
FILE_LINES_LIMIT = 500 |
|
| |
80 |
83 |
# Number of lines in beginning and end excerpts when FILE_LINES_LIMIT is hit: |
|
| |
81 |
|
FILE_EXCERPTS_LINES = 200 |
|
| |
|
84 |
#FILE_EXCERPTS_LINES = 200 |
|
| |
|
85 |
FILE_EXCERPTS_LINES = 50 |
|
| |
82 |
86 |
|
|
| |
83 |
87 |
CUSTOM_TRAFFIC_TABLE = "%s/custom_traffic_table.py" % CVSROOT |
|
| |
84 |
88 |
|