summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-12-10 23:47:00 +0100
committerJules Laplace <julescarbon@gmail.com>2019-12-10 23:47:00 +0100
commit172806caf1785f0618f28aea28f8e0fdce47ca8b (patch)
treeabba0c9f2ca4945d90944762279045ab19765d1f /cli
parent3562a70cccb842becb9a33d867f83e6a00dc3635 (diff)
zeropadding
Diffstat (limited to 'cli')
-rw-r--r--cli/app/settings/app_cfg.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/app/settings/app_cfg.py b/cli/app/settings/app_cfg.py
index bdbbb90..6739da7 100644
--- a/cli/app/settings/app_cfg.py
+++ b/cli/app/settings/app_cfg.py
@@ -73,3 +73,14 @@ bold, bold_{color}, fg_bold_{color}, bg_bold_{color}: Bold/bright colors.
reset: Clear all formatting (both foreground and background colors).
"""
LOGFILE_FORMAT = "%(log_color)s%(levelname)-8s%(reset)s %(cyan)s%(filename)s:%(lineno)s:%(bold_cyan)s%(funcName)s() %(reset)s%(message)s"
+
+# -----------------------------------------------------------------------------
+# Filesystem settings
+# hash trees enforce a maximum number of directories per directory
+# -----------------------------------------------------------------------------
+
+ZERO_PADDING = 6 # padding for enumerated image filenames
+#FRAME_NAME_ZERO_PADDING = 6 # is this active??
+CKPT_ZERO_PADDING = 9
+HASH_TREE_DEPTH = 3
+HASH_BRANCH_SIZE = 3