Skip to content

Commit c19b682

Browse files
author
ID Bot
committed
Setup repository for draft-todo-yourname-protocol using https://github.com/martinthomson/i-d-template
1 parent 9efe65d commit c19b682

File tree

7 files changed

+114
-0
lines changed

7 files changed

+114
-0
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# See http://editorconfig.org
2+
3+
root = true
4+
5+
[*.{md,xml,org}]
6+
charset = utf-8
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Automatically generated CODEOWNERS
2+
# Regenerate with `make update-codeowners`
3+
draft-todo-yourname-protocol.md [email protected]
4+
draft-wirtgen-bgp-tls.md [email protected] [email protected]

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
*.html
2+
*.pdf
3+
*.redxml
4+
*.swp
5+
*.txt
6+
*.upload
7+
*~
8+
.tags
9+
/*-[0-9][0-9].xml
10+
/.*.mk
11+
/.gems/
12+
/.idea/
13+
/.refcache
14+
/.venv/
15+
/.vscode/
16+
/lib
17+
/node_modules/
18+
/versioned/
19+
Gemfile.lock
20+
archive.json
21+
draft-todo-yourname-protocol.xml
22+
draft-wirtgen-bgp-tls.xml
23+
package-lock.json
24+
report.xml
25+
!requirements.txt

CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Contributing
2+
3+
This repository relates to activities in the Internet Engineering Task Force
4+
([IETF](https://www.ietf.org/)). All material in this repository is considered
5+
Contributions to the IETF Standards Process, as defined in the intellectual
6+
property policies of IETF currently designated as
7+
[BCP 78](https://www.rfc-editor.org/info/bcp78),
8+
[BCP 79](https://www.rfc-editor.org/info/bcp79) and the
9+
[IETF Trust Legal Provisions (TLP) Relating to IETF Documents](http://trustee.ietf.org/trust-legal-provisions.html).
10+
11+
Any edit, commit, pull request, issue, comment or other change made to this
12+
repository constitutes Contributions to the IETF Standards Process
13+
(https://www.ietf.org/).
14+
15+
You agree to comply with all applicable IETF policies and procedures, including,
16+
BCP 78, 79, the TLP, and the TLP rules regarding code components (e.g. being
17+
subject to a Simplified BSD License) in Contributions.

LICENSE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# License
2+
3+
See the
4+
[guidelines for contributions](https://github.com/IPNetworkingLab/draft-bgp-tls/blob/main/CONTRIBUTING.md).

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
LIBDIR := lib
2+
include $(LIBDIR)/main.mk
3+
4+
$(LIBDIR)/main.mk:
5+
ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null))
6+
git submodule sync
7+
git submodule update --init
8+
else
9+
ifneq (,$(wildcard $(ID_TEMPLATE_HOME)))
10+
ln -s "$(ID_TEMPLATE_HOME)" $(LIBDIR)
11+
else
12+
git clone -q --depth 10 -b main \
13+
https://github.com/martinthomson/i-d-template $(LIBDIR)
14+
endif
15+
endif

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!-- regenerate: on (set to off if you edit this file) -->
2+
3+
# YOURNAME Drafts
4+
5+
This is the working area for individual Internet-Drafts.
6+
7+
## TODO - Your title
8+
9+
* [Editor's Copy](https://IPNetworkingLab.github.io/draft-bgp-tls/#go.draft-todo-yourname-protocol.html)
10+
* [Datatracker Page](https://datatracker.ietf.org/doc/draft-todo-yourname-protocol)
11+
* [Individual Draft](https://datatracker.ietf.org/doc/html/draft-todo-yourname-protocol)
12+
* [Compare Editor's Copy to Individual Draft](https://IPNetworkingLab.github.io/draft-bgp-tls/#go.draft-todo-yourname-protocol.diff)
13+
14+
## BGP over TLS/TCP
15+
16+
* [Editor's Copy](https://IPNetworkingLab.github.io/draft-bgp-tls/#go.draft-wirtgen-bgp-tls.html)
17+
* [Datatracker Page](https://datatracker.ietf.org/doc/draft-wirtgen-bgp-tls)
18+
* [Individual Draft](https://datatracker.ietf.org/doc/html/draft-wirtgen-bgp-tls)
19+
* [Compare Editor's Copy to Individual Draft](https://IPNetworkingLab.github.io/draft-bgp-tls/#go.draft-wirtgen-bgp-tls.diff)
20+
21+
22+
## Contributing
23+
24+
See the
25+
[guidelines for contributions](https://github.com/IPNetworkingLab/draft-bgp-tls/blob/main/CONTRIBUTING.md).
26+
27+
Contributions can be made by creating pull requests.
28+
The GitHub interface supports creating pull requests using the Edit (✏) button.
29+
30+
31+
## Command Line Usage
32+
33+
Formatted text and HTML versions of the draft can be built using `make`.
34+
35+
```sh
36+
$ make
37+
```
38+
39+
Command line usage requires that you have the necessary software installed. See
40+
[the instructions](https://github.com/martinthomson/i-d-template/blob/main/doc/SETUP.md).
41+

0 commit comments

Comments
 (0)