GH-234: rename Broxygen to Zeexygen along with roles/directives

* All "Broxygen" usages have been replaced in
  code, documentation, filenames, etc.

* Sphinx roles/directives like ":bro:see" are now ":zeek:see"

* The "--broxygen" command-line option is now "--zeexygen"
This commit is contained in:
Jon Siwek 2019-04-22 19:42:52 -07:00
parent 5ba46eaa71
commit aebcb1415d
254 changed files with 2675 additions and 2656 deletions

View file

@ -7,16 +7,16 @@
module FTP;
export {
## Creates a URL from an :bro:type:`FTP::Info` record.
## Creates a URL from an :zeek:type:`FTP::Info` record.
##
## rec: An :bro:type:`FTP::Info` record.
## rec: An :zeek:type:`FTP::Info` record.
##
## Returns: A URL, not prefixed by ``"ftp://"``.
global build_url: function(rec: Info): string;
## Creates a URL from an :bro:type:`FTP::Info` record.
## Creates a URL from an :zeek:type:`FTP::Info` record.
##
## rec: An :bro:type:`FTP::Info` record.
## rec: An :zeek:type:`FTP::Info` record.
##
## Returns: A URL prefixed with ``"ftp://"``.
global build_url_ftp: function(rec: Info): string;