Skip to content

Commit

Permalink
fix small bigs
Browse files Browse the repository at this point in the history
  • Loading branch information
ElNiak committed Dec 15, 2024
1 parent 77d2593 commit f2a79e7
Show file tree
Hide file tree
Showing 8 changed files with 322 additions and 189 deletions.
3 changes: 2 additions & 1 deletion docs-gen/mkdocs/gen_ref_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
for src in srcs:
print(f"Generating reference pages for {src}")
for path in sorted(src.rglob("*.py")):
if "/panther_ivy/" not in path.as_posix():
if ("/panther_ivy/" not in path.as_posix() or
("/panther_ivy/panther_ivy.py" in path.as_posix() or "/panther_ivy/config_schema.py" in path.as_posix())):
module_path = (
path.relative_to(root).with_suffix("").as_posix().replace("/", ".")
)
Expand Down
2 changes: 1 addition & 1 deletion experiment-config/experiment_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ tests:
name: "quic"
version: "rfc9000"
role: "client"
target: "ivy_client"
target: "ivy_server"
ports:
- "4443:4443"
- "8080:8080" # Health check endpoint
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: Panther Documentation
site_name: Panther-Ivy Documentation
site_description: "Protocol formal Analysis and formal Network Threat Evaluation Resources."
repo_url: https://github.com/ElNiak/PANTHER
repo_url: https://github.com/ElNiak/PANTHER-Ivy
edit_uri: edit/gh-pages/docs/
docs_dir: "docs/"
watch: [mkdocs.yaml, README.md, CONTRIBUTING.md, CHANGELOG.md, panther]
Expand Down
Loading

0 comments on commit f2a79e7

Please sign in to comment.