Skip to content

Commit

Permalink
Release 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Adspect committed Jan 30, 2024
0 parents commit 5b05203
Show file tree
Hide file tree
Showing 33 changed files with 3,666 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*~
*.swp

_build
25 changes: 25 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: conf.py

# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf

# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: requirements.txt
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
111 changes: 111 additions & 0 deletions _static/adspect.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/bot-rule.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/credentials1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/credentials2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/installation.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/chaining-ru.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/keitaro/filter.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/keitaro/flows.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 73 additions & 0 deletions _static/overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
body {
background: #fff !important;
color: #000 !important;
}
*, h1, h2, h3, h4, h5 {
font-family: Inter, -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}
a {
color: #295ada;
}
a:hover {
color: #214cbc;
}
.wy-menu-vertical a:hover {
background-color: #dfebff !important;
}
.wy-menu-vertical li.current>a, .wy-menu-vertical li.on a {
background-color: #fff !important;
}
.wy-nav-side {
background: linear-gradient(#181818, #1f1f1f) !important;
padding-bottom: 0 !important;
}
.wy-nav-top {
background: #181818 !important;
}
.wy-nav-top a {
font-family: "Space Mono", sans-serif !important;
}
.wy-side-nav-search {
background: transparent !important;
}
.wy-menu.wy-menu-vertical > .caption {
display: none !important;
}
.wy-breadcrumbs-aside {
display: none !important;
}
.wy-side-nav-search input[type=text] {
border: none !important;
border-radius: 6px !important;
}
.wy-nav-content, .wy-nav-content-wrap {
background: transparent !important;
}
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: initial !important;
}
code, code *, pre, pre * {
font-family: "Space Mono", monospace !important;
}
.rst-content code, .rst-content tt, code {
color: #dc3545 !important;
background: initial !important;
border: initial !important;
padding: initial !important;
}
table.docutils {
width: 100% !important;
}
table.docutils caption {
font: initial !important;
font-weight: bold !important;
}
.rst-versions {
display: none !important;
}
.ethical-rtd {
visibility: hidden !important;
}
footer {
display: none !important;
}

0 comments on commit 5b05203

Please sign in to comment.