├── .github └── workflows │ └── main.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── palaver.cpp ├── test-regex.cpp └── test ├── __init__.py ├── conftest.py ├── fixtures └── configs │ └── znc.conf ├── test_palaver.py └── utils.py /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | palaver.so 2 | test-regex 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/README.md -------------------------------------------------------------------------------- /palaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/palaver.cpp -------------------------------------------------------------------------------- /test-regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/test-regex.cpp -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/fixtures/configs/znc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/test/fixtures/configs/znc.conf -------------------------------------------------------------------------------- /test/test_palaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/test/test_palaver.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocodelabs/znc-palaver/HEAD/test/utils.py --------------------------------------------------------------------------------