From 5cda16021fe61d5d8c5252b80526f8660337f848 Mon Sep 17 00:00:00 2001 From: Andrew Yu Date: Sun, 17 Apr 2022 10:44:33 +0200 Subject: build system complete --- article-template/ahhh.sh | 16 + article-template/configure | 9 +- index.html | 2 +- testing-123/Edfile | 3 - testing-123/Makefile | 13 - testing-123/configure | 64 -- testing-123/testing-123.7 | 50 -- testing-123/testing-123.html | 1333 ------------------------------------------ testing-123/testing-123.md | 76 --- testing-123/testing-123.txt | 112 ---- testing-123/testing-123.xml | 66 --- testing/Edfile | 3 - testing/Makefile | 13 - testing/configure | 65 -- testing/leahrowe-test.7 | 23 - testing/leahrowe-test.html | 1314 ----------------------------------------- testing/leahrowe-test.md | 69 --- testing/leahrowe-test.txt | 56 -- testing/leahrowe-test.xml | 49 -- 19 files changed, 22 insertions(+), 3314 deletions(-) create mode 100644 article-template/ahhh.sh delete mode 100644 testing-123/Edfile delete mode 100644 testing-123/Makefile delete mode 100755 testing-123/configure delete mode 100644 testing-123/testing-123.7 delete mode 100644 testing-123/testing-123.html delete mode 100644 testing-123/testing-123.md delete mode 100644 testing-123/testing-123.txt delete mode 100644 testing-123/testing-123.xml delete mode 100644 testing/Edfile delete mode 100644 testing/Makefile delete mode 100755 testing/configure delete mode 100644 testing/leahrowe-test.7 delete mode 100644 testing/leahrowe-test.html delete mode 100644 testing/leahrowe-test.md delete mode 100644 testing/leahrowe-test.txt delete mode 100644 testing/leahrowe-test.xml diff --git a/article-template/ahhh.sh b/article-template/ahhh.sh new file mode 100644 index 0000000..a2726f5 --- /dev/null +++ b/article-template/ahhh.sh @@ -0,0 +1,16 @@ +(sed 's/FILENAME/'"$FILENAME"'/g' << EOF +update: FILENAME.txt FILENAME.7 FILENAME.html + git add . + git commit + git push + +FILENAME.7: FILENAME.md + mmark --man FILENAME.md > FILENAME.7 +FILENAME.txt FILENAME.html: FILENAME.xml + xml2rfc --text --html FILENAME.xml + sed -i -e '/\f/{n;s/^./RFD 1/}' FILENAME.txt + ed FILENAME.txt < Edfile +FILENAME.xml: FILENAME.md + sed '0,/title =/{s/ ."\$\$/"/}' FILENAME.md | mmark > FILENAME.xml +EOF +) diff --git a/article-template/configure b/article-template/configure index f5d171a..608292d 100755 --- a/article-template/configure +++ b/article-template/configure @@ -38,7 +38,7 @@ mv TEMPLATE.md "$FILENAME".md sed -i 's/RFDN/'"$RFDN"'/g' "$FILENAME".md -sed 's/FILENAME/'"$FILENAME"'/g' > Makefile << EOF +(sed 's/FILENAME/'"$FILENAME"'/g' << EOF update: FILENAME.txt FILENAME.7 FILENAME.html git add . git commit @@ -48,17 +48,18 @@ FILENAME.7: FILENAME.md mmark --man FILENAME.md > FILENAME.7 FILENAME.txt FILENAME.html: FILENAME.xml xml2rfc --text --html FILENAME.xml - sed -i -e '/\f/{n;s/^.\{5\}/RFD 1/}' FILENAME.txt + sed -i -e '/\f/{n;s/^DOTS/RFD RFDN/}' FILENAME.txt ed FILENAME.txt < Edfile FILENAME.xml: FILENAME.md sed '0,/title =/{s/ ."\$\$/"/}' FILENAME.md | mmark > FILENAME.xml EOF +) | sed 's/DOTS/'"$(printf 'RFD %s' "$RFDN" | sed 's/././g')"'/g' > Makefile (sed 's/RFDN/'"$RFDN"'/g' << EOF 6 -s/^DOTNUM/RFD RFDN/ +s/^DOTS/RFD RFDN/ wq EOF -) | sed 's/DOTNUM/'"$(printf 'RFD %s' "$RFDN" | sed 's/././g')"'/g' > Edfile +) | sed 's/DOTS/'"$(printf 'RFD %s' "$RFDN" | sed 's/././g')"'/g' > Edfile printf "$0: Finished generating Makefile and Edfile.\n$0: You MUST now edit $FILENAME.md and replace the <++>s.\n" > /dev/stderr diff --git a/index.html b/index.html index d259153..c198222 100644 --- a/index.html +++ b/index.html @@ -29,7 +29,7 @@

Recent Articles

These are recent articles. Those before April 2022 are not listed, but maybe be listed later.

-

Beginning April 2022, almost all articles are available in mmark markdown, IETF XML, plain text (RFC style), nroff man page, typeset man page, and HTML. man -l <filename> may be used to view nroff man pages (which usually have a numerical file extension).

+

Beginning April 2022, almost all articles are available in mmark markdown, IETF XML, plain text (RFC style), nroff man page, typeset man page, and HTML. man -l <filename> may be used to view nroff man pages (which usually have a numerical file extension). I have a handy utility for generating these documents.

diff --git a/testing-123/Edfile b/testing-123/Edfile deleted file mode 100644 index 7431481..0000000 --- a/testing-123/Edfile +++ /dev/null @@ -1,3 +0,0 @@ -6 -s/^......../RFD 6512/ -wq diff --git a/testing-123/Makefile b/testing-123/Makefile deleted file mode 100644 index 178415e..0000000 --- a/testing-123/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -update: testing-123.txt testing-123.7 testing-123.html - git add . - git commit - git push - -testing-123.7: testing-123.md - mmark --man testing-123.md > testing-123.7 -testing-123.txt testing-123.html: testing-123.xml - xml2rfc --text --html testing-123.xml - sed -i -e '/\f/{n;s/^.\{5\}/RFD 1/}' testing-123.txt - ed testing-123.txt < Edfile -testing-123.xml: testing-123.md - sed '0,/title =/{s/ ."$$/"/}' testing-123.md | mmark > testing-123.xml diff --git a/testing-123/configure b/testing-123/configure deleted file mode 100755 index f5d171a..0000000 --- a/testing-123/configure +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh -# -# A simple shell script for creating new articles -# -# Copyright © 2022 Andrew Yu -# -# This is free and unencumbered software released into the public domain. -# -# Anyone is free to copy, modify, publish, use, compile, sell, or -# distribute this software, either in source code form or as a compiled -# binary, for any purpose, commercial or non-commercial, and by any -# means. -# -# In jurisdictions that recognize copyright laws, the author or authors -# of this software dedicate any and all copyright interest in the -# software to the public domain. We make this dedication for the benefit -# of the public at large and to the detriment of our heirs and -# successors. We intend this dedication to be an overt act of -# relinquishment in perpetuity of all present and future rights to this -# software under copyright law. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -# OTHER DEALINGS IN THE SOFTWARE. - - -[ -z "$2" ] && printf "$0: Not enough arguments.\n$0: You MUST run this script with the following arguments:\n$0: \n" > /dev/stderr && exit 1 -[ "$3" ] && printf "$0: Too many arguments.\n$0: You MUST run this script with the following arguments:\n$0: \n" > /dev/stderr && exit 2 - -FILENAME="$1" -RFDN="$2" - -mv TEMPLATE.md "$FILENAME".md - -sed -i 's/RFDN/'"$RFDN"'/g' "$FILENAME".md - -sed 's/FILENAME/'"$FILENAME"'/g' > Makefile << EOF -update: FILENAME.txt FILENAME.7 FILENAME.html - git add . - git commit - git push - -FILENAME.7: FILENAME.md - mmark --man FILENAME.md > FILENAME.7 -FILENAME.txt FILENAME.html: FILENAME.xml - xml2rfc --text --html FILENAME.xml - sed -i -e '/\f/{n;s/^.\{5\}/RFD 1/}' FILENAME.txt - ed FILENAME.txt < Edfile -FILENAME.xml: FILENAME.md - sed '0,/title =/{s/ ."\$\$/"/}' FILENAME.md | mmark > FILENAME.xml -EOF - -(sed 's/RFDN/'"$RFDN"'/g' << EOF -6 -s/^DOTNUM/RFD RFDN/ -wq -EOF -) | sed 's/DOTNUM/'"$(printf 'RFD %s' "$RFDN" | sed 's/././g')"'/g' > Edfile - -printf "$0: Finished generating Makefile and Edfile.\n$0: You MUST now edit $FILENAME.md and replace the <++>s.\n" > /dev/stderr diff --git a/testing-123/testing-123.7 b/testing-123/testing-123.7 deleted file mode 100644 index 3ec1df9..0000000 --- a/testing-123/testing-123.7 +++ /dev/null @@ -1,50 +0,0 @@ -.\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "TESTING" 123 "April 2022" "Random Testing" "Worldwide Haxxor Industries" - -.SH "ABSTRACT" -.PP -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.SH "STATUS OF THIS MEMO" -.PP -This document is currently in the DRAFT status. - -.PP -This document describes the author's viewpoint. Distribution of this memo is unlimited. - -.SH "INTRODUCTION" -.PP -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.SH "CONCLUSION" -.PP -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.SH "SECURITY CONSIDERATIONS" -.PP -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.SH "ACKNOWLEDGEMENTS" -.PP -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.SH "CONTRIBUTORS" -.PP -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.SH "AUTHORS" -.PP -Written by Andrew Yu. - diff --git a/testing-123/testing-123.html b/testing-123/testing-123.html deleted file mode 100644 index 033e2dc..0000000 --- a/testing-123/testing-123.html +++ /dev/null @@ -1,1333 +0,0 @@ - - - - - - -Testing 123 - - - - - - - - - - - - - - - - - - - - - - - - - -
Testing 123April 2022
YuInformational[Page]
-
-
-
-
Workgroup:
-
Worldwide Haxxor Industries
-
Author:
-
-
-
A. Yu
-
The 2nd School Aff. to FDU
-
-
-
-
-

Testing 123

-
-

Abstract

-

The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog.

-
-
-

-Status of This Memo -

-

This document is currently in the DRAFT status.

-

This document describes the author's viewpoint. Distribution of this memo is unlimited.

-
-
-
-

-Table of Contents -

- -
-
-
-
-

-1. Introduction -

-

The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog.

-
-
-
-
-

-2. Conclusion -

-

The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog.

-
-
-
-
-

-3. Security Considerations -

-

The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog.

-
-
-
-
-

-Acknowledgements -

-

The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog.

-
-
-
-
-

-Contributors -

-

The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog.

-
-
-
-
-

-Author's Address -

-
-
Andrew Yu
-
The 2nd School Aff. to FDU
- - -
-
-
- - - diff --git a/testing-123/testing-123.md b/testing-123/testing-123.md deleted file mode 100644 index 33d86c9..0000000 --- a/testing-123/testing-123.md +++ /dev/null @@ -1,76 +0,0 @@ -%%% -title = "Testing 123" -abbrev = "Testing 123" -area = "Random Testing" -workgroup = "Worldwide Haxxor Industries" -submissiontype = "independent" -ipr = "none" -keyword = ["test"] -#updates = [ <++> ] -#date = 2003-04-01T00:00:00Z - -[seriesInfo] -name = "Internet-Draft" -value = "Request for Discussions 6512" -stream = "independent" -status = "informational" - -[[author]] -initials = "A." -surname = "Yu" -fullname = "Andrew Yu" -#role = "author" -organization = "The 2nd School Aff. to FDU" - [author.address] - email = "andrew@andrewyu.org" - uri = "https://www.andrewyu.org/" -%%% - -.# Abstract - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -.# Status of This Memo - -This document is currently in the DRAFT status. - -This document describes the author's viewpoint. Distribution of this memo is unlimited. - -{mainmatter} - -# Introduction - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -# Conclusion - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -# Security Considerations - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -{backmatter} - -{numbered="false"} -# Acknowledgements - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - -{numbered="false"} -# Contributors - - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. diff --git a/testing-123/testing-123.txt b/testing-123/testing-123.txt deleted file mode 100644 index 5aba0af..0000000 --- a/testing-123/testing-123.txt +++ /dev/null @@ -1,112 +0,0 @@ - - - - -Worldwide Haxxor Industries A. Yu -RFD 6512 The 2nd School Aff. to FDU - 17 April 2022 - - - Testing 123 - Request for Discussions 6512 - -Abstract - - The quick brown fox jumps over the lazy dog. The quick brown fox - jumps over the lazy dog. The quick brown fox jumps over the lazy - dog. - -Status of This Memo - - This document is currently in the DRAFT status. - - This document describes the author's viewpoint. Distribution of this - memo is unlimited. - -Table of Contents - - 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 1 - 2. Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . 1 - 3. Security Considerations . . . . . . . . . . . . . . . . . . . 1 - Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . 2 - Contributors . . . . . . . . . . . . . . . . . . . . . . . . . . 2 - Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 2 - -1. Introduction - - The quick brown fox jumps over the lazy dog. The quick brown fox - jumps over the lazy dog. The quick brown fox jumps over the lazy - dog. - -2. Conclusion - - The quick brown fox jumps over the lazy dog. The quick brown fox - jumps over the lazy dog. The quick brown fox jumps over the lazy - dog. - -3. Security Considerations - - The quick brown fox jumps over the lazy dog. The quick brown fox - jumps over the lazy dog. The quick brown fox jumps over the lazy - dog. - - - - -Yu Informational [Page 1] - -RFD 1 Testing 123 April 2022 - - -Acknowledgements - - The quick brown fox jumps over the lazy dog. The quick brown fox - jumps over the lazy dog. The quick brown fox jumps over the lazy - dog. - -Contributors - - The quick brown fox jumps over the lazy dog. The quick brown fox - jumps over the lazy dog. The quick brown fox jumps over the lazy - dog. - -Author's Address - - Andrew Yu - The 2nd School Aff. to FDU - Email: andrew@andrewyu.org - URI: https://www.andrewyu.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Yu Informational [Page 2] diff --git a/testing-123/testing-123.xml b/testing-123/testing-123.xml deleted file mode 100644 index c84f924..0000000 --- a/testing-123/testing-123.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - -Testing 123 -The 2nd School Aff. to FDU
-andrew@andrewyu.org -https://www.andrewyu.org/ -
-Random Testing -Worldwide Haxxor Industries -test - - -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. - - -Status of This Memo -This document is currently in the DRAFT status. -This document describes the author's viewpoint. Distribution of this memo is unlimited. - - -
- - - -
Introduction -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -
- -
Conclusion -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -
- -
Security Considerations -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -
- -
- - - -
Acknowledgements -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -
- -
Contributors -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -
- -
- -
diff --git a/testing/Edfile b/testing/Edfile deleted file mode 100644 index ca8f541..0000000 --- a/testing/Edfile +++ /dev/null @@ -1,3 +0,0 @@ -6 -s/^......../RFD 1548/ -wq diff --git a/testing/Makefile b/testing/Makefile deleted file mode 100644 index 2acaad2..0000000 --- a/testing/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -update: leahrowe-test.txt leahrowe-test.7 leahrowe-test.html - git add . - git commit - git push - -leahrowe-test.7: leahrowe-test.md - mmark --man leahrowe-test.md > leahrowe-test.7 -leahrowe-test.txt leahrowe-test.html: leahrowe-test.xml - xml2rfc --text --html leahrowe-test.xml - sed -i -e '/\f/{n;s/^......../RFD RFDN/}' leahrowe-test.txt - ed leahrowe-test.txt < Edfile -leahrowe-test.xml: leahrowe-test.md - sed '0,/title =/{s/ ."$$/"/}' leahrowe-test.md | mmark > leahrowe-test.xml diff --git a/testing/configure b/testing/configure deleted file mode 100755 index 608292d..0000000 --- a/testing/configure +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh -# -# A simple shell script for creating new articles -# -# Copyright © 2022 Andrew Yu -# -# This is free and unencumbered software released into the public domain. -# -# Anyone is free to copy, modify, publish, use, compile, sell, or -# distribute this software, either in source code form or as a compiled -# binary, for any purpose, commercial or non-commercial, and by any -# means. -# -# In jurisdictions that recognize copyright laws, the author or authors -# of this software dedicate any and all copyright interest in the -# software to the public domain. We make this dedication for the benefit -# of the public at large and to the detriment of our heirs and -# successors. We intend this dedication to be an overt act of -# relinquishment in perpetuity of all present and future rights to this -# software under copyright law. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -# OTHER DEALINGS IN THE SOFTWARE. - - -[ -z "$2" ] && printf "$0: Not enough arguments.\n$0: You MUST run this script with the following arguments:\n$0: \n" > /dev/stderr && exit 1 -[ "$3" ] && printf "$0: Too many arguments.\n$0: You MUST run this script with the following arguments:\n$0: \n" > /dev/stderr && exit 2 - -FILENAME="$1" -RFDN="$2" - -mv TEMPLATE.md "$FILENAME".md - -sed -i 's/RFDN/'"$RFDN"'/g' "$FILENAME".md - -(sed 's/FILENAME/'"$FILENAME"'/g' << EOF -update: FILENAME.txt FILENAME.7 FILENAME.html - git add . - git commit - git push - -FILENAME.7: FILENAME.md - mmark --man FILENAME.md > FILENAME.7 -FILENAME.txt FILENAME.html: FILENAME.xml - xml2rfc --text --html FILENAME.xml - sed -i -e '/\f/{n;s/^DOTS/RFD RFDN/}' FILENAME.txt - ed FILENAME.txt < Edfile -FILENAME.xml: FILENAME.md - sed '0,/title =/{s/ ."\$\$/"/}' FILENAME.md | mmark > FILENAME.xml -EOF -) | sed 's/DOTS/'"$(printf 'RFD %s' "$RFDN" | sed 's/././g')"'/g' > Makefile - -(sed 's/RFDN/'"$RFDN"'/g' << EOF -6 -s/^DOTS/RFD RFDN/ -wq -EOF -) | sed 's/DOTS/'"$(printf 'RFD %s' "$RFDN" | sed 's/././g')"'/g' > Edfile - -printf "$0: Finished generating Makefile and Edfile.\n$0: You MUST now edit $FILENAME.md and replace the <++>s.\n" > /dev/stderr diff --git a/testing/leahrowe-test.7 b/testing/leahrowe-test.7 deleted file mode 100644 index a983d68..0000000 --- a/testing/leahrowe-test.7 +++ /dev/null @@ -1,23 +0,0 @@ -.\" Generated by Mmark Markdown Processer - mmark.miek.nl -.TH "LEAH IS A ROBOT" 1 "April 2022" "leah is a robot" "leah is a robot" - -.SH "ABSTRACT" -.PP -leah is a cookie - -.SH "STATUS OF THIS MEMO" -.PP -This document is currently in the DRAFT status. - -.PP -This document describes the author's viewpoint. Distribution of this memo is unlimited. - -.SH "INTRODUCTION" -.SH "CONCLUSION" -.SH "LEAH IS A ROBOT CONSIDERATIONS" -.SH "ACKNOWLEDGEMENTS" -.SH "CONTRIBUTORS" -.SH "AUTHORS" -.PP -Written by Andrew Yu. - diff --git a/testing/leahrowe-test.html b/testing/leahrowe-test.html deleted file mode 100644 index aac3ce9..0000000 --- a/testing/leahrowe-test.html +++ /dev/null @@ -1,1314 +0,0 @@ - - - - - - -leah is a robot - - - - - - - - - - - - - - - - - - - - - - - - - -
leah is a robotApril 2022
YuInformational[Page]
-
-
-
-
Workgroup:
-
leah is a robot
-
Author:
-
-
-
A. Yu
-
The 2nd School Aff. to FDU
-
-
-
-
-

leah is a robot

-
-

Abstract

-

leah is a cookie

-
-
-

-Status of This Memo -

-

This document is currently in the DRAFT status.

-

This document describes the author's viewpoint. Distribution of this memo is unlimited.

-
- -
-
-

-1. Introduction -

-
-
-
-
-

-2. Conclusion -

-
-
- -
-
-

-Acknowledgements -

-
-
-
-
-

-Contributors -

-
-
-
-
-

-Author's Address -

-
-
Andrew Yu
-
The 2nd School Aff. to FDU
- - -
-
-
- - - diff --git a/testing/leahrowe-test.md b/testing/leahrowe-test.md deleted file mode 100644 index 2860b9c..0000000 --- a/testing/leahrowe-test.md +++ /dev/null @@ -1,69 +0,0 @@ -%%% -title = "leah is a robot" -abbrev = "leah is a robot" -area = "leah is a robot" -workgroup = "leah is a robot" -submissiontype = "independent" -ipr = "none" -keyword = ["leah is a robot"] -#updates = [ leah is a robot ] -#date = 2003-04-01T00:00:00Z - -[seriesInfo] -name = "Internet-Draft" -value = "Request for Discussions 1548" -stream = "independent" -status = "informational" - -[[author]] -initials = "A." -surname = "Yu" -fullname = "Andrew Yu" -#role = "author" -organization = "The 2nd School Aff. to FDU" - [author.address] - email = "andrew@andrewyu.org" - uri = "https://www.andrewyu.org/" -%%% - -.# Abstract - -leah is a cookie - -.# Status of This Memo - -This document is currently in the DRAFT status. - -This document describes the author's viewpoint. Distribution of this memo is unlimited. - -{mainmatter} - -# Introduction - -# Conclusion - -# leah is a robot Considerations - -{backmatter} - -{numbered="false"} -# Acknowledgements - - -{numbered="false"} -# Contributors - - - - - leah is a robot - - leah is a robot -
- leah is a robot@leah is a robot - https://leah is a robot -
-
- -
-
diff --git a/testing/leahrowe-test.txt b/testing/leahrowe-test.txt deleted file mode 100644 index 1e0907a..0000000 --- a/testing/leahrowe-test.txt +++ /dev/null @@ -1,56 +0,0 @@ - - - - -leah is a robot A. Yu -RFD 1548 The 2nd School Aff. to FDU - 17 April 2022 - - - leah is a robot - Request for Discussions 1548 - -Abstract - - leah is a cookie - -Status of This Memo - - This document is currently in the DRAFT status. - - This document describes the author's viewpoint. Distribution of this - memo is unlimited. - -Table of Contents - - 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 1 - 2. Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . 1 - 3. leah is a robot Considerations . . . . . . . . . . . . . . . 1 - Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . 1 - Contributors . . . . . . . . . . . . . . . . . . . . . . . . . . 1 - Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 1 - -1. Introduction - -2. Conclusion - -3. leah is a robot Considerations - -Acknowledgements - -Contributors - -Author's Address - - Andrew Yu - The 2nd School Aff. to FDU - Email: andrew@andrewyu.org - URI: https://www.andrewyu.org/ - - - - - - - -Yu Informational [Page 1] diff --git a/testing/leahrowe-test.xml b/testing/leahrowe-test.xml deleted file mode 100644 index 5f4f1ab..0000000 --- a/testing/leahrowe-test.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - -leah is a robot -The 2nd School Aff. to FDU
-andrew@andrewyu.org -https://www.andrewyu.org/ -
-leah is a robot -leah is a robot -leah is a robot - - -leah is a cookie - - -Status of This Memo -This document is currently in the DRAFT status. -This document describes the author's viewpoint. Distribution of this memo is unlimited. - - -
- - - -
Introduction -
- -
Conclusion -
- -
leah is a robot Considerations -
- -
- - - -
Acknowledgements -
- -
Contributors -
- -
- -
-- cgit 1.4.1-2-gfad0