Skip to content

Commit faa3efd

Browse files
evynckeNGPixelrjsparks
authored
fix: Missing button text for PostScript (ietf-tools#7200)
* ci: Update build-base-app.yml workflow * Do not list PS in build_file_urls * Update ietf/doc/utils.py Co-authored-by: Robert Sparks <rjsparks@nostrum.com> --------- Co-authored-by: Nicolas Giard <github@ngpixel.com> Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
1 parent 68c3e65 commit faa3efd

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/doc/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,6 +1062,8 @@ def build_file_urls(doc: Union[Document, DocHistory]):
10621062
base = settings.IETF_ID_ARCHIVE_URL
10631063
file_urls = []
10641064
for t in found_types:
1065+
if t == "ps": # Postscript might have been submitted but should not be displayed in the list of URLs
1066+
continue
10651067
label = "plain text" if t == "txt" else t
10661068
file_urls.append((label, base + doc.name + "-" + doc.rev + "." + t))
10671069

0 commit comments

Comments
 (0)