Rewrite audit-ready briefing: software is not a certificate.
Some checks are pending
ci / markdown (push) Waiting to run
Some checks are pending
ci / markdown (push) Waiting to run
Open with an executive summary that HIPAA, SOC 2, and ISO 27001 are organizational programs. Verae DataCubes supply store, communicate, timestamp, verify, and audit tools for the technical portion only. Chapters cover transit (HPKE, visible routing), rest (IPFS/Peergos hash-verified restore), receipts, EU Peergos evaluations (Cure53 2019, ROS 2024), cross-blockchain timestamping, and write-once Iceberg archive. PDF is branded with the Verae logo top-left and Verae Inc contact in the footer; last chapters are sourced bios for Garfinkel (FINRA CRD 5052743), Haber, and Lambert.
This commit is contained in:
parent
da60402e88
commit
4fcbb9ac95
53 changed files with 6323 additions and 814 deletions
129
source/conf.py
129
source/conf.py
|
|
@ -1,24 +1,141 @@
|
|||
# Sphinx configuration — Making yourself audit-ready with Verae DataCubes
|
||||
# Logo on every page: https://www.verae.com/Assets/VeraeFullLogo.png
|
||||
|
||||
project = "Making yourself audit-ready with Verae DataCubes"
|
||||
copyright = "2026, Verae"
|
||||
author = "Verae / George Lambert"
|
||||
copyright = "2026, Verae Inc"
|
||||
author = "Verae Inc"
|
||||
release = "2026.09"
|
||||
version = "2.0"
|
||||
|
||||
extensions = []
|
||||
templates_path = ["_templates"]
|
||||
exclude_patterns = []
|
||||
exclude_patterns = ["verification.rst"]
|
||||
|
||||
html_theme = "alabaster"
|
||||
html_static_path = ["_static"]
|
||||
html_title = project
|
||||
html_logo = "_static/VeraeFullLogo.png"
|
||||
html_favicon = "_static/VeraeFullLogo.png"
|
||||
html_css_files = ["verae.css"]
|
||||
html_copy_source = False
|
||||
html_show_sourcelink = False
|
||||
html_theme_options = {
|
||||
"logo": "VeraeFullLogo.png",
|
||||
"logo_name": False,
|
||||
"description": "Tools for storage, communications, timestamping, verification, and audit — not a certificate.",
|
||||
"fixed_sidebar": True,
|
||||
"page_width": "980px",
|
||||
"sidebar_width": "240px",
|
||||
"show_powered_by": False,
|
||||
}
|
||||
|
||||
latex_engine = "pdflatex"
|
||||
latex_documents = [
|
||||
(
|
||||
"index",
|
||||
"peergos-making-yourself-audit-ready-with-verae-datacubes.tex",
|
||||
"Making yourself audit-ready with Verae DataCubes",
|
||||
"Verae",
|
||||
r"Making yourself audit-ready with Verae DataCubes",
|
||||
r"Verae Inc",
|
||||
"manual",
|
||||
),
|
||||
]
|
||||
latex_additional_files = ["_static/VeraeFullLogo.png"]
|
||||
latex_show_pagerefs = False
|
||||
latex_show_urls = "footnote"
|
||||
latex_toplevel_sectioning = "chapter"
|
||||
|
||||
_PREAMBLE = r"""
|
||||
\usepackage{graphicx}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{needspace}
|
||||
\DeclareUnicodeCharacter{2014}{---}
|
||||
\DeclareUnicodeCharacter{2013}{--}
|
||||
\DeclareUnicodeCharacter{201C}{``}
|
||||
\DeclareUnicodeCharacter{201D}{''}
|
||||
\DeclareUnicodeCharacter{2018}{`}
|
||||
\DeclareUnicodeCharacter{2019}{'}
|
||||
\DeclareUnicodeCharacter{25BC}{v}
|
||||
\definecolor{veraepurple}{HTML}{5B2C8B}
|
||||
\definecolor{veraedark}{HTML}{1A0A24}
|
||||
\definecolor{veraeink}{HTML}{111111}
|
||||
|
||||
% Extra headroom so the logo never collides with body text.
|
||||
\setlength{\headheight}{44pt}
|
||||
\addtolength{\topmargin}{-14pt}
|
||||
|
||||
\newcommand{\VeraeLogo}{\includegraphics[height=0.92cm]{VeraeFullLogo.png}}
|
||||
\newcommand{\VeraeFooter}{%
|
||||
\footnotesize\color{veraepurple}%
|
||||
Verae Inc \textbullet\ https://www.verae.com \textbullet\
|
||||
Book a call at verae.com \textbullet\ app.verae.com}
|
||||
|
||||
\fancypagestyle{normal}{
|
||||
\fancyhf{}
|
||||
\fancyhead[L]{\colorbox{veraedark}{\VeraeLogo}}
|
||||
\fancyhead[R]{\small\color{veraepurple}Audit-ready with Verae DataCubes}
|
||||
\fancyfoot[L]{\VeraeFooter}
|
||||
\fancyfoot[R]{\footnotesize\color{veraepurple}\thepage}
|
||||
\renewcommand{\headrulewidth}{0.6pt}
|
||||
\renewcommand{\footrulewidth}{0.4pt}
|
||||
\renewcommand{\headrule}{\hbox to\headwidth{\color{veraepurple}\leaders\hrule height \headrulewidth\hfill}}
|
||||
\renewcommand{\footrule}{\hbox to\headwidth{\color{veraepurple}\leaders\hrule height \footrulewidth\hfill}}
|
||||
}
|
||||
\fancypagestyle{plain}{
|
||||
\fancyhf{}
|
||||
\fancyhead[L]{\colorbox{veraedark}{\VeraeLogo}}
|
||||
\fancyfoot[L]{\VeraeFooter}
|
||||
\fancyfoot[R]{\footnotesize\color{veraepurple}\thepage}
|
||||
\renewcommand{\headrulewidth}{0.6pt}
|
||||
\renewcommand{\footrulewidth}{0.4pt}
|
||||
}
|
||||
\pagestyle{normal}
|
||||
|
||||
% Each Sphinx chapter already starts a new page in the manual class.
|
||||
% Keep first-page headers branded as well.
|
||||
\makeatletter
|
||||
\let\sphinx@originalchapter\chapter
|
||||
\renewcommand{\chapter}{\clearpage\thispagestyle{plain}\sphinx@originalchapter}
|
||||
\makeatother
|
||||
"""
|
||||
|
||||
latex_elements = {
|
||||
"papersize": "letterpaper",
|
||||
"pointsize": "11pt",
|
||||
"preamble": r"\usepackage{hyperref}",
|
||||
"preamble": _PREAMBLE,
|
||||
"fncychap": r"\usepackage[Sonny]{fncychap}",
|
||||
"printindex": "",
|
||||
"maketitle": r"""
|
||||
\begin{titlepage}
|
||||
\thispagestyle{empty}
|
||||
\vspace*{1.4cm}
|
||||
\begin{flushleft}
|
||||
\colorbox{veraedark}{\includegraphics[width=7.2cm]{VeraeFullLogo.png}}
|
||||
\end{flushleft}
|
||||
\vspace{1.6cm}
|
||||
{\color{veraepurple}\rule{\textwidth}{1.6pt}}
|
||||
\vspace{0.7cm}
|
||||
{\Huge\bfseries Making yourself audit-ready\\[0.25em] with Verae DataCubes\par}
|
||||
\vspace{0.55cm}
|
||||
{\Large Software is not a HIPAA, SOC 2, or ISO 27001 certificate.\par}
|
||||
\vspace{0.35cm}
|
||||
{\large A technical briefing on what the Verae DataCube Server Solution
|
||||
provides for data in transit and data at rest --- and what every
|
||||
organization must still do itself.\par}
|
||||
\vspace{0.9cm}
|
||||
{\color{veraepurple}\rule{\textwidth}{0.6pt}}
|
||||
\vspace{0.7cm}
|
||||
{\large Verae Inc\\[0.2em]
|
||||
https://www.verae.com\\[0.2em]
|
||||
Book a call at verae.com\\[0.2em]
|
||||
app.verae.com\par}
|
||||
\vfill
|
||||
{\small September 2026 \textbullet\ Document version 2.0\par}
|
||||
\end{titlepage}
|
||||
\clearpage
|
||||
""",
|
||||
"tableofcontents": r"""
|
||||
\tableofcontents
|
||||
\clearpage
|
||||
""",
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue