File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1110,7 +1110,7 @@ def generate_idnits2_rfc_status():
11101110 'unkn' : 'U' ,
11111111 }
11121112
1113- rfcs = Document .objects .filter (type_id = 'rfc' , states__slug = 'published' , states__type = 'rfc' )
1113+ rfcs = Document .objects .filter (type_id = 'rfc' )
11141114 for rfc in rfcs :
11151115 offset = int (rfc .rfc_number )- 1
11161116 blob [offset ] = symbols [rfc .std_level_id ]
Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ def shorten_group_name(name):
409409
410410def ad_dashboard_sort_key (doc ):
411411
412- if doc .type .slug == 'rfc' and doc . get_state_slug ( 'rfc' ) == 'published' :
412+ if doc .type .slug == 'rfc' :
413413 return "21%04d" % int (doc .rfc_number )
414414 if doc .type .slug == 'statchg' and doc .get_state_slug ('statchg' ) == 'appr-sent' :
415415 return "22%d" % 0 # TODO - get the date of the transition into this state here
You can’t perform that action at this time.
0 commit comments