diff --git a/openr/docs/CFM_RULES b/openr/docs/CFM_RULES index 873156caf8c..474c80be0da 100644 --- a/openr/docs/CFM_RULES +++ b/openr/docs/CFM_RULES @@ -1,34 +1,5 @@ publish( - wiki_root_path = "Network_Routing_Control/Routing_Protocol/Open-R/Operator_Guide", - srcs = [ - "CLI.md", - "Configuration.md", - "Control_Plane_IO.md", - "Drain_OSS.md", - "Route_Representation.md", - "Version.md", - ], - oncall = "routing_protocol", -) - -publish( - wiki_root_path = "Network_Routing_Control/Routing_Protocol/Open-R/Protocol_Guide", - srcs = [ - "Architecture.md", - "Config.md", - "Decision.md", - "Dispatcher.md", - "Fib.md", - "Initialization_Process.md", - "KvStore.md", - "LinkMonitor.md", - "Messaging.md", - "Miscellaneous.md", - "Monitor.md", - "Netlink.md", - "Platform.md", - "PrefixManager.md", - "Spark.md", - ], + wiki_root_path = "Network_Routing_Control/Routing_Protocol/Open-R", + folder = "./", oncall = "routing_protocol", ) diff --git a/openr/docs/Features/BgpSpeaker.md b/openr/docs/Features/BgpSpeaker.md deleted file mode 100644 index fd83dc06ab4..00000000000 --- a/openr/docs/Features/BgpSpeaker.md +++ /dev/null @@ -1,11 +0,0 @@ -# Bgp Speaker - -Open/R implemented a plugin module to support BGP Protocol. This module can -establish a BGP session with external BGP daemon to import routes. This works -very similar as route redistribution but with the capability to get route -attributes information. - -- There can only be one bgp peer configured in `bgp_config`. -- There's no policy support for this bgp session. - -![Bgp Plugin](https://user-images.githubusercontent.com/5740745/102545893-1ce3b080-4074-11eb-82b6-5b46a58f5d18.png) diff --git a/openr/docs/Features/index.rst b/openr/docs/Features/index.rst deleted file mode 100644 index 020ba64b47a..00000000000 --- a/openr/docs/Features/index.rst +++ /dev/null @@ -1,15 +0,0 @@ -Features -================================== - -Here we explain in detail all the features of Open/R. - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - Area - BgpSpeaker - FIB-ACK - FloodOptimization - RibPolicy - SourceRouting diff --git a/openr/docs/Makefile b/openr/docs/Makefile deleted file mode 100644 index ed88099027f..00000000000 --- a/openr/docs/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -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) diff --git a/openr/docs/make.bat b/openr/docs/make.bat deleted file mode 100644 index 34903f9d342..00000000000 --- a/openr/docs/make.bat +++ /dev/null @@ -1,40 +0,0 @@ -@REM Copyright (c) Meta Platforms, Inc. and affiliates. -@REM -@REM This source code is licensed under the MIT license found in the -@REM LICENSE file in the root directory of this source tree. - -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=. -set BUILDDIR=build - -if "%1" == "" goto help - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 -) - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd