- Add mdBook configuration (book.toml) for documentation - Create new docs style guide appendix for conversation examples - Add WhatsApp-style chat CSS for consistent doc formatting - Replace flow diagram references with screen mockup SVGs - Create comprehensive SVG interface mockups for all Suite apps: - Main suite layout and individual app screens - Analytics, Calendar, Chat, Compliance, Designer - Drive, Mail, Meet, Paper, Player, Research - Sources, Tasks interfaces - Implement certificate pinning module (cert_pinning.rs) with: - SPKI fingerprint validation using SHA-256 - Support for primary and backup pins - Pin rotation with expiration tracking - Report-only mode for testing - Validation caching for performance - Add ring crate dependency for cryptographic operations
19 lines
389 B
TOML
19 lines
389 B
TOML
[book]
|
|
title = "General Bots Documentation"
|
|
authors = ["General Bots Team"]
|
|
language = "en"
|
|
multilingual = false
|
|
src = "src"
|
|
|
|
[build]
|
|
build-dir = "book"
|
|
|
|
[output.html]
|
|
default-theme = "light"
|
|
preferred-dark-theme = "navy"
|
|
smart-punctuation = true
|
|
additional-css = ["src/custom.css", "src/whatsapp-chat.css"]
|
|
additional-js = ["src/theme-sync.js"]
|
|
|
|
[output.html.favicon]
|
|
png = "favicon.png"
|