Skip to content

Commit eae75e1

Browse files
committed
2 parents 4f93056 + e4a63da commit eae75e1

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
*~
88
.tags
99
/*-[0-9][0-9].xml
10+
/.*.mk
1011
/.gems/
1112
/.refcache
12-
/.targets.mk
1313
/.venv/
1414
/.vscode/
1515
/lib

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ subject to a Simplified BSD License) in Contributions.
2020
## Working Group Information
2121

2222
Discussion of this work occurs on the [Virtualized Conversations
23-
Working Group mailing list](mailto:vcon@ietf.org)
23+
mailing list](mailto:vcon@ietf.org)
2424
([archive](https://mailarchive.ietf.org/arch/browse/vcon/),
2525
[subscribe](https://www.ietf.org/mailman/listinfo/vcon)).
2626
In addition to contributions in GitHub, you are encouraged to participate in
@@ -30,4 +30,4 @@ discussions there.
3030
technical issues needs to occur on the mailing list.
3131

3232
You might also like to familiarize yourself with other
33-
[Working Group documents](https://datatracker.ietf.org/wg/vcon/documents/).
33+
[ documents](https://datatracker.ietf.org/wg/vcon/documents/).

Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ include $(LIBDIR)/main.mk
44
$(LIBDIR)/main.mk:
55
ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null))
66
git submodule sync
7-
git submodule update $(CLONE_ARGS) --init
7+
git submodule update --init
88
else
9-
git clone -q --depth 10 $(CLONE_ARGS) \
10-
-b main https://github.com/martinthomson/i-d-template $(LIBDIR)
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
1115
endif

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The JSON format for vCon - Conversation Data Container
22

3-
This is the working area for the IETF [VCON Working Group](https://datatracker.ietf.org/wg/vcon/documents/) Internet-Draft, "The JSON format for vCon - Conversation Data Container".
3+
This is the working area for the IETF [VCON Working Group](https://datatracker.ietf.org/group/vcon/documents/) Internet-Draft, "The JSON format for vCon - Conversation Data Container".
44

55
* [Editor's Copy](https://ietf-wg-vcon.github.io/draft-ietf-vcon-vcon-container/#go.draft-ietf-vcon-vcon-container.html)
66
* [Datatracker Page](https://datatracker.ietf.org/doc/draft-ietf-vcon-vcon-container)

draft-ietf-vcon-vcon-container.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ number:
1010
date:
1111
consensus: true
1212
v: 3
13-
area: "Applications and Real-Time"
13+
area: ""
1414
workgroup: "Virtualized Conversations"
1515
keyword:
1616
- conversation
@@ -26,7 +26,7 @@ keyword:
2626
- conference recording
2727
venue:
2828
group: "Virtualized Conversations"
29-
type: "Working Group"
29+
type: ""
3030
mail: "vcon@ietf.org"
3131
arch: "https://mailarchive.ietf.org/arch/browse/vcon/"
3232
github: "ietf-wg-vcon/draft-ietf-vcon-vcon-container"

0 commit comments

Comments
 (0)