No description
Find a file
2023-03-31 09:44:50 +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
bank-account.scm Load messages and handle table string with single tab inside. 2023-03-31 09:37:08 +02:00
bank-fio.scm Load messages and handle table string with single tab inside. 2023-03-31 09:37:08 +02:00
bbstool.scm Start with small tweaks as proof of concept. 2023-03-30 19:09:55 +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 Finish total debit milestone. 2023-03-29 23:16:45 +02:00
csv-simple.scm Add testing of CSV lines parsing. 2023-03-30 21:42:43 +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 Add new dependencies. 2023-03-30 20:35:02 +02:00
member-fees.scm Prepare for balances in totals table. 2023-03-30 19:18:48 +02:00
member-parser.scm Finish total debit milestone. 2023-03-29 23:16:45 +02:00
member-record.scm Add to total table. 2023-03-30 19:37:53 +02:00
members-base-stats.gp Fix handling joined in the base. 2023-03-19 19:32:56 +01:00
members-base.scm Keep track of last displayed value. 2023-03-30 21:15:00 +02:00
members-dir.scm Move more into dir. 2023-03-29 20:37:30 +02:00
members-payments.scm Split out member id extraction. 2023-03-31 09:44:50 +02:00
members-print.scm Improve fees table display. 2023-03-30 22:02:33 +02:00
MEMBERS.md Improve keys documentation. 2023-03-26 21:34:46 +02:00
MODULES.md Document CSV simple module. 2023-03-30 21:37:20 +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 Add testing of CSV lines parsing. 2023-03-30 21:42:43 +02:00
README.md Split modules documentation from readme. 2023-03-23 16:59:09 +01:00
table.scm Much faster payments processing. 2023-03-31 09:43:12 +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