diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-05-20 07:58:40 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-05-20 08:05:00 +0300 |
commit | bcd5bcc390793791d293d386b2ebefbe683fb4e1 (patch) | |
tree | c93e3b8c847237e7e7626f4a07f1b657bb34f04d /contrib/python/Pygments/py3/pygments/lexers/ldap.py | |
parent | 1a9f1508fe9c8c5927ffebf33197a6108e70501d (diff) | |
download | ydb-bcd5bcc390793791d293d386b2ebefbe683fb4e1.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/ldap.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/lexers/ldap.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/ldap.py b/contrib/python/Pygments/py3/pygments/lexers/ldap.py index a669f79004..17d14b017a 100644 --- a/contrib/python/Pygments/py3/pygments/lexers/ldap.py +++ b/contrib/python/Pygments/py3/pygments/lexers/ldap.py @@ -4,7 +4,7 @@ Pygments lexers for LDAP. - :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -22,8 +22,6 @@ class LdifLexer(RegexLexer): """ Lexer for LDIF - - .. versionadded:: 2.17 """ name = 'LDIF' @@ -31,6 +29,7 @@ class LdifLexer(RegexLexer): filenames = ['*.ldif'] mimetypes = ["text/x-ldif"] url = "https://datatracker.ietf.org/doc/html/rfc2849" + version_added = '2.17' tokens = { 'root': [ @@ -106,8 +105,6 @@ class LdifLexer(RegexLexer): class LdaprcLexer(RegexLexer): """ Lexer for OpenLDAP configuration files. - - .. versionadded:: 2.17 """ name = 'LDAP configuration file' @@ -115,6 +112,7 @@ class LdaprcLexer(RegexLexer): filenames = ['.ldaprc', 'ldaprc', 'ldap.conf'] mimetypes = ["text/x-ldapconf"] url = 'https://www.openldap.org/software//man.cgi?query=ldap.conf&sektion=5&apropos=0&manpath=OpenLDAP+2.4-Release' + version_added = '2.17' _sasl_keywords = r'SASL_(?:MECH|REALM|AUTHCID|AUTHZID|CBINDING)' _tls_keywords = r'TLS_(?:CACERT|CACERTDIR|CERT|ECNAME|KEY|CIPHER_SUITE|PROTOCOL_MIN|RANDFILE|CRLFILE)' |