Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created March 28, 2020 14:54
Show Gist options
  • Save r-ryantm/ee7ad7ea41719beb6a1eff2942b9190f to your computer and use it in GitHub Desktop.
Save r-ryantm/ee7ad7ea41719beb6a1eff2942b9190f to your computer and use it in GitHub Desktop.
/nix/store/flwnn1qcas95k2if9mv7vd6fbqmn7a5g-python3.7-xml2rfc-2.41.0
├── bin
│   └── xml2rfc
├── lib
│   └── python3.7
│   └── site-packages
│   ├── xml2rfc
│   │   ├── boilerplate_id_guidelines.py
│   │   ├── boilerplate_rfc_7841.py
│   │   ├── boilerplate_tlp.py
│   │   ├── data
│   │   │   ├── br2.patch
│   │   │   ├── br.patch
│   │   │   ├── metadata.js
│   │   │   ├── metadata.min.js
│   │   │   ├── mt.css
│   │   │   ├── mt.js
│   │   │   ├── reference.rnc
│   │   │   ├── reference.rng
│   │   │   ├── Scripts.txt
│   │   │   ├── security_any.rnc
│   │   │   ├── security_any.rng
│   │   │   ├── Strict-Signature.rnc
│   │   │   ├── Strict-Signature.rng
│   │   │   ├── SVG-1.2-RFC.rnc
│   │   │   ├── SVG-1.2-RFC.rng
│   │   │   ├── v2.rnc
│   │   │   ├── v2.rng
│   │   │   ├── v3compat.dtd
│   │   │   ├── v3compat.rnc
│   │   │   ├── v3.rnc
│   │   │   ├── v3.rng
│   │   │   ├── xml2rfc.css
│   │   │   ├── xml2rfc.js
│   │   │   ├── xml2rfc-v3-emacs-nxml.rnc
│   │   │   ├── xml2rfc-v3-emacs-nxml.rng
│   │   │   ├── xmldsig-core-schema.rnc
│   │   │   ├── xmldsig-core-schema.rnc.1
│   │   │   ├── xmldsig-core-schema.rng
│   │   │   └── xmldsig-core-schema.rng.1
│   │   ├── debug.py
│   │   ├── __init__.py
│   │   ├── log.py
│   │   ├── parser.py
│   │   ├── __pycache__
│   │   │   ├── boilerplate_id_guidelines.cpython-37.pyc
│   │   │   ├── boilerplate_rfc_7841.cpython-37.pyc
│   │   │   ├── boilerplate_tlp.cpython-37.pyc
│   │   │   ├── debug.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── log.cpython-37.pyc
│   │   │   ├── parser.cpython-37.pyc
│   │   │   ├── run.cpython-37.pyc
│   │   │   ├── scripts.cpython-37.pyc
│   │   │   ├── strings.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── walkpdf.cpython-37.pyc
│   │   ├── run.py
│   │   ├── scripts.py
│   │   ├── strings.py
│   │   ├── templates
│   │   │   ├── address_card.html
│   │   │   ├── base.html
│   │   │   ├── rfc2629.dtd
│   │   │   ├── rfc2629-other.ent
│   │   │   └── rfc2629-xhtml.ent
│   │   ├── uniscripts
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── unidata.cpython-37.pyc
│   │   │   └── unidata.py
│   │   ├── util
│   │   │   ├── date.py
│   │   │   ├── fonts.py
│   │   │   ├── __init__.py
│   │   │   ├── name.py
│   │   │   ├── num.py
│   │   │   ├── postal.py
│   │   │   ├── __pycache__
│   │   │   │   ├── date.cpython-37.pyc
│   │   │   │   ├── fonts.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── name.cpython-37.pyc
│   │   │   │   ├── num.cpython-37.pyc
│   │   │   │   ├── postal.cpython-37.pyc
│   │   │   │   └── unicode.cpython-37.pyc
│   │   │   └── unicode.py
│   │   ├── utils.py
│   │   ├── walkpdf.py
│   │   └── writers
│   │   ├── base.py
│   │   ├── debug.py
│   │   ├── expanded_xml.py
│   │   ├── expand.py
│   │   ├── html.py
│   │   ├── __init__.py
│   │   ├── legacy_html.py
│   │   ├── nroff.py
│   │   ├── paginated_txt.py
│   │   ├── pdf.py
│   │   ├── preptool.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── debug.cpython-37.pyc
│   │   │   ├── expand.cpython-37.pyc
│   │   │   ├── expanded_xml.cpython-37.pyc
│   │   │   ├── html.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── legacy_html.cpython-37.pyc
│   │   │   ├── nroff.cpython-37.pyc
│   │   │   ├── paginated_txt.cpython-37.pyc
│   │   │   ├── pdf.cpython-37.pyc
│   │   │   ├── preptool.cpython-37.pyc
│   │   │   ├── raw_txt.cpython-37.pyc
│   │   │   ├── text.cpython-37.pyc
│   │   │   └── v2v3.cpython-37.pyc
│   │   ├── raw_txt.py
│   │   ├── text.py
│   │   └── v2v3.py
│   └── xml2rfc-2.41.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
16 directories, 113 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment