No description
Find a file
2023-03-29 20:22:32 +02:00
.gitignore
ansi.scm Finish alignment. 2023-03-29 09:00:12 +02:00
bbstool.scm Finish splitting dir from base. 2023-03-29 20:22:32 +02:00
bbstool.sh
cards.scm
command-line.scm
configuration.scm Stream line highlights queries. 2023-03-28 11:55:14 +02:00
dictionary.scm
listing.scm Parametric highlight styles. 2023-03-28 18:58:32 +02:00
Makefile Finish splitting dir from base. 2023-03-29 20:22:32 +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-print.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
members-base.scm Finish splitting dir from base. 2023-03-29 20:22:32 +02:00
members-dir.scm Finish splitting dir from base. 2023-03-29 20:22:32 +02:00
MEMBERS.md
MODULES.md Implement row0-border. 2023-03-29 14:08:35 +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
progress.scm
README.md
table.scm Correct col0 for row delimiters. 2023-03-29 14:22:17 +02:00
testing.scm
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