Mercurial > p > roundup > code
view detectors/README.txt @ 7958:fffbaa3f963b
test: revert last commit it broke xapian build
Last commit caused the following error:
/usr/bin/install -c -m 644 xapian/__init__.py
xapian/__pycache__/__init__.cpython-310.pyc
./xapian/__pycache__/__init__. '/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/xapian'
/usr/bin/install: cannot stat './xapian/__pycache__/__init__.': No
such file or directory
with the old code that errored out because of the missing sys import I
got the working:
/usr/bin/install -c -m 644 xapian/__init__.py
xapian/__pycache__/__init__.cpython-310.pyc
xapian/__pycache__/__init__.cpython-310.opt-1.pyc
'/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/xapian'
whatever.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 12 May 2024 21:00:38 -0400 |
| parents | b2eb59ada444 |
| children | e738377b4ffe |
line wrap: on
line source
This directory has some detector examples that you can use to get ideas on implementing your own detectors. These are provides on an as-is basis. When they were added, they worked for somebody and were considered a useful example. The roundup team will attempt to keep them up to date with major changes as they happen, but there are no guarantees that these will work out of the box. If you find them out of date and have patches to make them work against newer versions of roundup, please open an issue at: https://issues.roundup-tracker.org The current inventory is: creator_resolution.py - only allow the creator of the issue to resolve it emailauditor.py - Rename .eml files (from email multi-part bodies) to .mht so they can be downloaded/viewed in Internet Explorer. irker.py - communicate with irkerd to allow roundtup to send announcements to an IRC channel. newissuecopy.py - notify a team email address (hardcoded in the script) when a new issue arrives. newitemcopy.py - email the DISPATCHER address when new issues, users, keywords etc. are created. Kind of an expanded version of newissuecopy.
