Remove "contents" Sphinx directive usages

Seems redundant: same info is always available in RTD theme's
floating sidebar.
This commit is contained in:
Jon Siwek 2018-12-19 17:28:17 -06:00
parent a46967bad8
commit 5ebe47ec23
23 changed files with 0 additions and 53 deletions

View file

@ -5,8 +5,6 @@
Cluster Configuration Cluster Configuration
===================== =====================
.. contents::
A *Bro Cluster* is a set of systems jointly analyzing the traffic of A *Bro Cluster* is a set of systems jointly analyzing the traffic of
a network link in a coordinated fashion. You can operate such a setup from a network link in a coordinated fashion. You can operate such a setup from
a central manager system easily using BroControl because BroControl a central manager system easily using BroControl because BroControl

View file

@ -29,8 +29,6 @@ Broker-Enabled Communication/Cluster Framework
also gives examples of Broker and the new cluster framework that also gives examples of Broker and the new cluster framework that
show off all the new features and capabilities. show off all the new features and capabilities.
.. contents::
Porting Guide Porting Guide
============= =============

View file

@ -14,10 +14,6 @@ ability to specify input files to enable changing the value of options at
runtime, a couple of functions, and a log file "config.log" runtime, a couple of functions, and a log file "config.log"
which contains information about every change to option values. which contains information about every change to option values.
.. contents::
Introduction Introduction
------------ ------------

View file

@ -21,8 +21,6 @@ File Analysis
provide analysis specifically for files that is analogous to the provide analysis specifically for files that is analogous to the
analysis Bro provides for network connections. analysis Bro provides for network connections.
.. contents::
File Lifecycle Events File Lifecycle Events
===================== =====================

View file

@ -17,8 +17,6 @@ GeoLocation
software, and then install the GeoLite2 city database before building software, and then install the GeoLite2 city database before building
Bro. Bro.
.. contents::
Install libmaxminddb Install libmaxminddb
-------------------- --------------------

View file

@ -15,8 +15,6 @@ Input Framework
worthwhile to take a look at the unit tests in worthwhile to take a look at the unit tests in
``testing/btest/scripts/base/frameworks/input/``. ``testing/btest/scripts/base/frameworks/input/``.
.. contents::
Reading Data into Tables Reading Data into Tables
======================== ========================

View file

@ -14,8 +14,6 @@ Logging To and Reading From SQLite Databases
they can, for example, be used to make data that changes regularly available they can, for example, be used to make data that changes regularly available
to Bro on a continuing basis. to Bro on a continuing basis.
.. contents::
Warning Warning
======= =======

View file

@ -12,8 +12,6 @@ Logging Framework
logged. This document describes how logging can be customized and logged. This document describes how logging can be customized and
extended. extended.
.. contents::
Terminology Terminology
=========== ===========

View file

@ -17,8 +17,6 @@ NetControl Framework
it can be used in practice, it might be worthwhile to take a look at it can be used in practice, it might be worthwhile to take a look at
the unit tests. the unit tests.
.. contents::
NetControl Architecture NetControl Architecture
======================= =======================

View file

@ -14,8 +14,6 @@ Notice Framework
alarm emails. This page gives an introduction into writing such a notice alarm emails. This page gives an introduction into writing such a notice
policy. policy.
.. contents::
Overview Overview
-------- --------

View file

@ -14,9 +14,6 @@ Signature Framework
other NIDS. This page gives a brief overview on Bro's signatures other NIDS. This page gives a brief overview on Bro's signatures
and covers some of their technical subtleties. and covers some of their technical subtleties.
.. contents::
:depth: 2
Basics Basics
====== ======

View file

@ -17,8 +17,6 @@ Summary Statistics
data sets and making them measurable in practice on large clustered and data sets and making them measurable in practice on large clustered and
non-clustered Bro deployments. non-clustered Bro deployments.
.. contents::
Overview Overview
======== ========

View file

@ -3,8 +3,6 @@
Detailed Version History Detailed Version History
======================== ========================
.. contents::
--- ---
Bro Bro
--- ---

View file

@ -5,8 +5,6 @@
Cross Compiling Bro Cross Compiling Bro
=================== ===================
.. contents::
Prerequisites Prerequisites
============= =============

View file

@ -12,8 +12,6 @@
Installing Bro Installing Bro
============== ==============
.. contents::
Prerequisites Prerequisites
============= =============

View file

@ -5,8 +5,6 @@
Release Notes Release Notes
============= =============
.. contents::
.. include:: NEWS.rst .. include:: NEWS.rst

View file

@ -3,8 +3,6 @@
Introduction Introduction
============ ============
.. contents::
Overview Overview
-------- --------

View file

@ -5,8 +5,6 @@
Bro Logging Bro Logging
=========== ===========
.. contents::
Once Bro has been deployed in an environment and monitoring live Once Bro has been deployed in an environment and monitoring live
traffic, it will, in its default configuration, begin to produce traffic, it will, in its default configuration, begin to produce
human-readable ASCII logs. Each log file, produced by Bro's human-readable ASCII logs. Each log file, produced by Bro's

View file

@ -7,8 +7,6 @@
Quick Start Guide Quick Start Guide
================= =================
.. contents::
Bro works on most modern, Unix-based systems and requires no custom Bro works on most modern, Unix-based systems and requires no custom
hardware. It can be downloaded in either pre-built binary package or hardware. It can be downloaded in either pre-built binary package or
source code forms. See :ref:`installing-bro` for instructions on how to source code forms. See :ref:`installing-bro` for instructions on how to

View file

@ -1,9 +1,6 @@
File Analyzers File Analyzers
============== ==============
.. contents::
:depth: 2
.. bro:type:: Files::Tag .. bro:type:: Files::Tag
:Type: :bro:type:`enum` :Type: :bro:type:`enum`

View file

@ -1,9 +1,6 @@
Protocol Analyzers Protocol Analyzers
================== ==================
.. contents::
:depth: 2
.. bro:type:: Analyzer::Tag .. bro:type:: Analyzer::Tag
:Type: :bro:type:`enum` :Type: :bro:type:`enum`

View file

@ -5,8 +5,6 @@
Writing Bro Scripts Writing Bro Scripts
=================== ===================
.. contents::
Understanding Bro Scripts Understanding Bro Scripts
========================= =========================

View file

@ -260,8 +260,6 @@ void ProtoAnalyzerTarget::DoCreateAnalyzerDoc(FILE* f) const
{ {
fprintf(f, "Protocol Analyzers\n"); fprintf(f, "Protocol Analyzers\n");
fprintf(f, "==================\n\n"); fprintf(f, "==================\n\n");
fprintf(f, ".. contents::\n");
fprintf(f, " :depth: 2\n\n");
WriteAnalyzerTagDefn(f, "Analyzer"); WriteAnalyzerTagDefn(f, "Analyzer");
@ -288,8 +286,6 @@ void FileAnalyzerTarget::DoCreateAnalyzerDoc(FILE* f) const
{ {
fprintf(f, "File Analyzers\n"); fprintf(f, "File Analyzers\n");
fprintf(f, "==============\n\n"); fprintf(f, "==============\n\n");
fprintf(f, ".. contents::\n");
fprintf(f, " :depth: 2\n\n");
WriteAnalyzerTagDefn(f, "Files"); WriteAnalyzerTagDefn(f, "Files");