├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .meta.toml ├── CHANGES.rst ├── CONTRIBUTING.md ├── MANIFEST.in ├── README.rst ├── bobodoctestumentation ├── README.txt ├── setup.py └── src │ └── bobodoctestumentation │ ├── Makefile │ ├── __init__.py │ ├── annotations.test │ ├── bobo.png │ ├── bobo.svg │ ├── bobocalc.html │ ├── bobocalc.py │ ├── bobocalc.test │ ├── boboserver.test │ ├── conf.py │ ├── contents.txt │ ├── decorator.test │ ├── edit.html │ ├── examples.txt │ ├── fswiki.py │ ├── fswiki.test │ ├── fswikia.ini │ ├── fswikia.py │ ├── fswikia.test │ ├── htpasswd │ ├── index.txt │ ├── main.test │ ├── make.bat │ ├── more.txt │ ├── reference.txt │ ├── static.py │ ├── static.test │ ├── tests.py │ └── who.ini ├── docs ├── setup.cfg ├── setup.py ├── src ├── bobo.py └── boboserver.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/.gitignore -------------------------------------------------------------------------------- /.meta.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/.meta.toml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/README.rst -------------------------------------------------------------------------------- /bobodoctestumentation/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/README.txt -------------------------------------------------------------------------------- /bobodoctestumentation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/setup.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/Makefile -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/annotations.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/annotations.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/bobo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/bobo.png -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/bobo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/bobo.svg -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/bobocalc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/bobocalc.html -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/bobocalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/bobocalc.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/bobocalc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/bobocalc.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/boboserver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/boboserver.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/conf.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/contents.txt -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/decorator.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/decorator.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/edit.html -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/examples.txt -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/fswiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/fswiki.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/fswiki.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/fswiki.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/fswikia.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/fswikia.ini -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/fswikia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/fswikia.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/fswikia.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/fswikia.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/htpasswd: -------------------------------------------------------------------------------- 1 | jim:X6Htwq7jlZPPQ 2 | -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/index.txt -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/main.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/main.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/make.bat -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/more.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/more.txt -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/reference.txt -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/static.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/static.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/static.test -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/tests.py -------------------------------------------------------------------------------- /bobodoctestumentation/src/bobodoctestumentation/who.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/bobodoctestumentation/src/bobodoctestumentation/who.ini -------------------------------------------------------------------------------- /docs: -------------------------------------------------------------------------------- 1 | ./bobodoctestumentation/src/bobodoctestumentation -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/setup.py -------------------------------------------------------------------------------- /src/bobo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/src/bobo.py -------------------------------------------------------------------------------- /src/boboserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/src/boboserver.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/bobo/HEAD/tox.ini --------------------------------------------------------------------------------