Archived
1
0
This repository has been archived on 2020-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
rero-ils-graphs/by_json/gen_policies.sh
Olivier DOSSMANN d2c7cda421 by_json: Generate circulation policies
* Generate a new circulation policies file: policies.svg
  * Parses Circulation policies
  * Parses Item Types
2020-02-07 16:30:48 +01:00

28 lines
472 B
Bash
Executable File

#!/usr/bin/env bash
#
# Generate a dot file to create graph of RERO-ils data
#
# CONFIG
RERO_DIR="${HOME}/projets/rero/rero-ils"
# Load commons variables, functions and statements
source commons.sh
# Graph header
title="Circulation policies details."
save "templates/header.tmpl"
# ORGANISATIONS
source process_orgas.sh
# LIBRARIES
source process_lib.sh
# CIRCULATION POLICIES
source process_cp.sh
# Graph footer
save "templates/footer.tmpl"
# END of program
exit 0