No description
Find a file
2023-03-29 22:26:49 +02:00
.gitignore Fix dependencies. 2023-03-22 20:45:48 +01:00
ansi.scm Finish alignment. 2023-03-29 09:00:12 +02:00
bbstool.scm Rename to members-print. 2023-03-29 22:26:49 +02:00
bbstool.sh Make it run again. 2023-03-25 21:18:42 +01:00
cards.scm Convert spaces in card aliases to underscores. 2023-03-24 22:07:59 +01:00
command-line.scm Document the command-line module. 2023-03-20 22:07:06 +01:00
configuration.scm Stream line highlights queries. 2023-03-28 11:55:14 +02:00
dictionary.scm Start work on new member record handling. 2023-03-25 15:08:06 +01:00
listing.scm Parametric highlight styles. 2023-03-28 18:58:32 +02:00
Makefile Rename to members-print. 2023-03-29 22:26:49 +02:00
member-fees.scm Fix member-record tests. 2023-03-29 19:15:24 +02:00
member-parser.scm Fix basic info. 2023-03-29 18:35:26 +02:00
member-record.scm Fix member-record tests. 2023-03-29 19:15:24 +02:00
members-base-stats.gp Fix handling joined in the base. 2023-03-19 19:32:56 +01:00
members-base.scm Dependencies cleanup. 2023-03-29 20:38:37 +02:00
members-dir.scm Move more into dir. 2023-03-29 20:37:30 +02:00
members-print.scm Rename to members-print. 2023-03-29 22:26:49 +02:00
MEMBERS.md Improve keys documentation. 2023-03-26 21:34:46 +02:00
MODULES.md Update documentation. 2023-03-29 20:25:32 +02:00
month.scm Work on calendar formatting. 2023-03-27 21:18:11 +02:00
period.scm Make joined/destroyed member period. 2023-03-29 18:21:25 +02:00
primes.scm Document the primes module. 2023-03-22 23:00:02 +01:00
progress.scm Document the progress module. 2023-03-20 21:02:05 +01:00
README.md Split modules documentation from readme. 2023-03-23 16:59:09 +01:00
table.scm Correct col0 for row delimiters. 2023-03-29 14:22:17 +02:00
testing.scm Finish testing module documentation. 2023-03-20 20:48:23 +01:00
utils.scm Parsing of month comments. 2023-03-27 17:05:56 +02:00

BrmBuro

Brmlab Bureacratic system.

License

ISC License

Copyright 2023 Brmlab, z.s. Dominik Pantůček dominik.pantucek@trustica.cz

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Features

  • members base management
    • member files parsing and validation
    • member ids validation
    • generating new member id
    • information about active, suspended, destroyed and student members
      • current status
      • historical data
    • detailed member information
    • querying members by id or nick

Requirements

There are no runtime requirements, it is possible to build binary that requires only libc.

Build requirements:

  • Chicken Scheme 5
  • make (tested with GNU make)

Building

Building a shared binary with .so modules:

make shared

Building static binary:

make static

It is possible to run the main tool as script with Chicken Scheme interpreter and POSIX-compatible shell for the purpose of development.

Development requirements:

  • POSIX shell

Preparing module import files for running as script:

make

Cleaning the built files from the build directory:

make clean

Building the import module files, shared and static binaries together:

make all