Skip to content

Commit 8a35c5c

Browse files
committed
Merge remote-tracking branch 'upstream/main' into main
2 parents 5f2a1c7 + 9e7d229 commit 8a35c5c

7 files changed

Lines changed: 58 additions & 4 deletions

File tree

.github/workflows/archive.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
default: false
1313
type: boolean
1414

15+
permissions:
16+
contents: write
17+
issues: read
18+
pull-requests: read
19+
1520
jobs:
1621
build:
1722
name: "Archive Issues and Pull Requests"

.github/workflows/ghpages.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
- LICENSE.md
1515
- .gitignore
1616

17+
permissions:
18+
contents: write
19+
1720
jobs:
1821
build:
1922
name: "Update Editor's Copy"

.github/workflows/update.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: "Update Generated Files"
22

33
on: workflow_dispatch
44

5+
permissions:
6+
contents: write
7+
58
jobs:
69
build:
710
name: "Update Files"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ archive.json
2020
package-lock.json
2121
report.xml
2222
!requirements.txt
23+
.codex

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
LIBDIR := lib
22
include $(LIBDIR)/main.mk
33

4+
.PHONY: check-submission
5+
check-submission:
6+
$(MAKE) latest lint
7+
$(MAKE) idnits idnits_mode=forgive-checklist
8+
9+
.PHONY: submission-checklist
10+
submission-checklist:
11+
@echo "1) make latest"
12+
@echo "2) make lint"
13+
@echo "3) make idnits idnits_mode=forgive-checklist"
14+
@echo "4) Review residual warnings:"
15+
@echo " - POSSIBLE_DOWNREF for active Internet-Drafts when fetch/status lookup fails"
16+
@echo " - LINE_PI when produced by markdown -> XML tooling"
17+
@echo "5) Submit updated draft via Datatracker"
18+
419
$(LIBDIR)/main.mk:
520
ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null))
621
git submodule sync

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,29 @@ $ make
2525

2626
Command line usage requires that you have the necessary software installed. See
2727
[the instructions](https://github.com/martinthomson/i-d-template/blob/main/doc/SETUP.md).
28+
29+
## Submission Checklist
30+
31+
Run the practical pre-submit checks:
32+
33+
```sh
34+
$ make check-submission
35+
```
36+
37+
This runs:
38+
39+
```sh
40+
$ make latest lint
41+
$ make idnits idnits_mode=forgive-checklist
42+
```
43+
44+
Expected residual warnings that can be tooling/environment related:
45+
46+
* `POSSIBLE_DOWNREF` for active Internet-Draft references when status lookup fails.
47+
* `LINE_PI` from generated `<?line ...?>` processing instructions in markdown-to-XML workflows.
48+
49+
For a printed checklist in terminal:
50+
51+
```sh
52+
$ make submission-checklist
53+
```

draft-gregoire-moq-msfts.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ venue:
2828
author:
2929
-
3030
fullname: Paul Gregoire
31-
email: mondain@gmail.com
31+
organization: Red5
32+
email: paul@red5.net
3233
-
3334
fullname: Gwendal Simon
3435
organization: Synamedia
@@ -48,7 +49,7 @@ normative:
4849
BASE64: RFC4648
4950

5051
informative:
51-
SecureObjects: I-D.draft-jennings-moq-secure-objects
52+
SecureObjects: I-D.draft-ietf-moq-secure-objects
5253
C4M: I-D.draft-ietf-moq-c4m
5354
PrivacyPassAuth: I-D.draft-ietf-moq-privacy-pass-auth
5455

@@ -491,7 +492,7 @@ The following examples are non-normative.
491492
}
492493
~~~
493494

494-
## Multi-Program Source Two Programs from One MPTS {#example-mpts}
495+
## Multi-Program Source - Two Programs from One MPTS {#example-mpts}
495496

496497
This example shows a catalog for a publisher that receives a 2-program
497498
transport stream and publishes each program as a separate m2ts track. The
@@ -541,7 +542,7 @@ used because the programs carry different content.
541542
}
542543
~~~
543544

544-
## ABR Alternate Renditions Two Bitrate Tracks {#example-abr}
545+
## ABR Alternate Renditions - Two Bitrate Tracks {#example-abr}
545546

546547
This example shows a catalog for a live channel published at two bitrates as
547548
alternate renditions. Both tracks are in the same `altGroup`; video tracks

0 commit comments

Comments
 (0)