summaryrefslogtreecommitdiff
path: root/make-setup-generated.sh
diff options
context:
space:
mode:
authormstsirkin <mstsirkin@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652>2014-04-07 11:29:03 +0000
committermstsirkin <mstsirkin@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652>2014-04-07 11:29:03 +0000
commit917a0be909db46ec20e6acbd724cde7e22cc43d9 (patch)
treedd803aa59b13bc6236c8344b5cfeb87e56832a22 /make-setup-generated.sh
parent83521d7b9dc872cba4ab3cdc8da5b8eb1bca0926 (diff)
make-setup: prefix "OASIS"
Note that “OASIS” is also added before “Committee Specification Draft 02” for the csd and before "Committee Specification Draft 02 / Public Review Draft 02" for the csprd. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio@348 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
Diffstat (limited to 'make-setup-generated.sh')
-rwxr-xr-xmake-setup-generated.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/make-setup-generated.sh b/make-setup-generated.sh
index c432a4d..62fe8ec 100755
--- a/make-setup-generated.sh
+++ b/make-setup-generated.sh
@@ -10,7 +10,7 @@ fi
case "$1" in
*-wd*)
STAGE=wd
- STAGENAME="Working Draft"
+ STAGENAME="OASIS Working Draft"
WORKINGDRAFT=`basename "$1" | sed 's/.*-wd//'`
;;
*-os*)
@@ -21,18 +21,18 @@ case "$1" in
*-csd*)
STAGE=csd
WORKINGDRAFT=`basename "$1" | sed 's/.*-csd//'`
- STAGENAME="Committee Specification Draft $WORKINGDRAFT"
+ STAGENAME="OASIS Committee Specification Draft $WORKINGDRAFT"
;;
*-csprd*)
STAGE=csprd
WORKINGDRAFT=`basename "$1" | sed 's/.*-csprd//'`
- STAGENAME="Committee Specification Draft $WORKINGDRAFT"
+ STAGENAME="OASIS Committee Specification Draft $WORKINGDRAFT"
STAGEEXTRATITLE=" / \newline Public Review Draft $WORKINGDRAFT"
STAGEEXTRA=" / Public Review Draft $WORKINGDRAFT"
;;
*-cs*)
STAGE=cs
- STAGENAME="Committee Specification"
+ STAGENAME="OASIS Committee Specification"
WORKINGDRAFT=""
;;
*)