aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rename README → README.orgHEADmasterBrian Cully2022-06-261-0/+0
| | | | This makes it easier to know how to format it on the server side.
* Add eval at top level to log exceptions.Brian Cully2017-11-161-17/+21
|
* Use named logging routines.Brian Cully2017-11-161-6/+16
| | | | | * error/warning/verbose * All logs dump timestamps and PID.
* Use named capture groups for thunks in match step.Brian Cully2017-11-161-5/+7
| | | | | This allows the use of normal capture groups in templates without the use of the ?: modifier.
* Move verbose logging to function.Brian Cully2017-11-131-12/+13
|
* Print process id in verbose output.Brian Cully2017-11-131-3/+3
|
* Rename 'config' to 'env'.Brian Cully2017-11-136-15/+14
| | | | | | | "Environment" more accurately reflects its usage, and this opens up "config" for global configuration. * Flags -c -> -e (-config -> -env).
* Swap to Module::Build from ExtUtils::MakeMaker.Brian Cully2017-11-133-11/+8
|
* Perl 5.10.1 compatibility.Brian Cully2017-11-131-3/+5
|
* Fix lib require for older perls.Brian Cully2017-11-131-1/+1
| | | | | | Don't do the require inside a package block, since that syntax is not supported on at at least 5.10.1. Since 'require' is lexical scope anyway, this wasn't required.
* Config file is utf8.Brian Cully2017-11-131-0/+2
|
* README grammar.Brian Cully2017-11-131-5/+2
|
* Allow UTF8 source code.Brian Cully2017-11-131-0/+1
|
* Add -l option to require libraries during eval.Brian Cully2017-11-121-7/+7
| | | | oops
* Add -l option to require libraries during eval.Brian Cully2017-11-123-9/+14
|
* Dump matcher on timeout.Brian Cully2017-11-121-1/+1
|
* Update README to reflect sample file movement.Brian Cully2017-11-121-1/+1
|
* Have git ignore Makefile.old.Brian Cully2017-11-121-0/+1
| | | | | If you re-run 'perl Makefile.PL', it caches a copy of the old Makefile here.
* Add comment blocks to templates.Brian Cully2017-11-122-1/+6
| | | | Comments are {# some comment} syntax for documentation purposes.
* Use global autoflush.Brian Cully2017-11-121-1/+2
|
* Add tests.Brian Cully2017-11-128-1/+56
| | | | | | | | * Add simple INSTALL document. * Add Makefile.PL for make support. * Moved sample files to t/fixtures. * Add version to xmpt executable.xmpt * Add tests for sample CLI run.
* Remove child handling, replace with pipe signal handling.Brian Cully2017-11-121-8/+12
| | | | | | | | | | We don't actually care about the child, really, just ability to read and write, so SIGPIPE is more appropriate. Currently, ignore SIGPIPE during write operations, to support just spamming input for protocol dump testing. This should be a flag in the future, but for now, as long as there's a match step with a thunk, it'll get caught there.
* Use qualified stream tag when expecting stream close.Brian Cully2017-11-124-4/+8
|
* Initial commit.Brian Cully2017-11-1018-0/+485