diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
commit | c04b663c7bb4b750deeb8f48f620497ec13da8fa (patch) | |
tree | 151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/lexers/dsls.py | |
parent | 0d55ca22c507d18c2f35718687e0b06d9915397b (diff) | |
download | ydb-c04b663c7bb4b750deeb8f48f620497ec13da8fa.tar.gz |
intermediate changes
ref:2d4f292087954c9344efdabb7b2a67f466263c65
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/dsls.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/lexers/dsls.py | 41 |
1 files changed, 25 insertions, 16 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/dsls.py b/contrib/python/Pygments/py3/pygments/lexers/dsls.py index b6847d0447..0b51341a81 100644 --- a/contrib/python/Pygments/py3/pygments/lexers/dsls.py +++ b/contrib/python/Pygments/py3/pygments/lexers/dsls.py @@ -4,7 +4,7 @@ Lexers for various domain-specific languages. - :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -22,13 +22,13 @@ __all__ = ['ProtoBufLexer', 'ZeekLexer', 'PuppetLexer', 'RslLexer', class ProtoBufLexer(RegexLexer): """ - Lexer for `Protocol Buffer <http://code.google.com/p/protobuf/>`_ - definition files. + Lexer for Protocol Buffer definition files. .. versionadded:: 1.4 """ name = 'Protocol Buffer' + url = 'https://developers.google.com/protocol-buffers/' aliases = ['protobuf', 'proto'] filenames = ['*.proto'] @@ -84,11 +84,12 @@ class ProtoBufLexer(RegexLexer): class ThriftLexer(RegexLexer): """ - For `Thrift <https://thrift.apache.org/>`__ interface definitions. + For Thrift interface definitions. .. versionadded:: 2.1 """ name = 'Thrift' + url = 'https://thrift.apache.org/' aliases = ['thrift'] filenames = ['*.thrift'] mimetypes = ['application/x-thrift'] @@ -189,11 +190,12 @@ class ThriftLexer(RegexLexer): class ZeekLexer(RegexLexer): """ - For `Zeek <https://www.zeek.org/>`_ scripts. + For Zeek scripts. .. versionadded:: 2.5 """ name = 'Zeek' + url = 'https://www.zeek.org/' aliases = ['zeek', 'bro'] filenames = ['*.zeek', '*.bro'] @@ -350,11 +352,12 @@ BroLexer = ZeekLexer class PuppetLexer(RegexLexer): """ - For `Puppet <http://puppetlabs.com/>`__ configuration DSL. + For Puppet configuration DSL. .. versionadded:: 1.6 """ name = 'Puppet' + url = 'https://puppet.com/' aliases = ['puppet'] filenames = ['*.pp'] @@ -437,13 +440,14 @@ class PuppetLexer(RegexLexer): class RslLexer(RegexLexer): """ - `RSL <http://en.wikipedia.org/wiki/RAISE>`_ is the formal specification + RSL is the formal specification language used in RAISE (Rigorous Approach to Industrial Software Engineering) method. .. versionadded:: 2.0 """ name = 'RSL' + url = 'http://en.wikipedia.org/wiki/RAISE' aliases = ['rsl'] filenames = ['*.rsl'] mimetypes = ['text/rsl'] @@ -500,11 +504,12 @@ class RslLexer(RegexLexer): class MscgenLexer(RegexLexer): """ - For `Mscgen <http://www.mcternan.me.uk/mscgen/>`_ files. + For Mscgen files. .. versionadded:: 1.6 """ name = 'Mscgen' + url = 'http://www.mcternan.me.uk/mscgen/' aliases = ['mscgen', 'msc'] filenames = ['*.msc'] @@ -549,12 +554,12 @@ class MscgenLexer(RegexLexer): class VGLLexer(RegexLexer): """ - For `SampleManager VGL <http://www.thermoscientific.com/samplemanager>`_ - source code. + For SampleManager VGL source code. .. versionadded:: 1.6 """ name = 'VGL' + url = 'http://www.thermoscientific.com/samplemanager' aliases = ['vgl'] filenames = ['*.rpf'] @@ -583,12 +588,13 @@ class VGLLexer(RegexLexer): class AlloyLexer(RegexLexer): """ - For `Alloy <http://alloy.mit.edu>`_ source code. + For Alloy source code. .. versionadded:: 2.0 """ name = 'Alloy' + url = 'http://alloy.mit.edu' aliases = ['alloy'] filenames = ['*.als'] mimetypes = ['text/x-alloy'] @@ -643,7 +649,7 @@ class AlloyLexer(RegexLexer): class PanLexer(RegexLexer): """ - Lexer for `pan <https://github.com/quattor/pan/>`_ source files. + Lexer for pan source files. Based on tcsh lexer. @@ -651,6 +657,7 @@ class PanLexer(RegexLexer): """ name = 'Pan' + url = 'https://github.com/quattor/pan/' aliases = ['pan'] filenames = ['*.pan'] @@ -711,12 +718,12 @@ class PanLexer(RegexLexer): class CrmshLexer(RegexLexer): """ - Lexer for `crmsh <http://crmsh.github.io/>`_ configuration files - for Pacemaker clusters. + Lexer for crmsh configuration files for Pacemaker clusters. .. versionadded:: 2.1 """ name = 'Crmsh' + url = 'http://crmsh.github.io/' aliases = ['crmsh', 'pcmk'] filenames = ['*.crmsh', '*.pcmk'] mimetypes = [] @@ -781,11 +788,12 @@ class CrmshLexer(RegexLexer): class FlatlineLexer(RegexLexer): """ - Lexer for `Flatline <https://github.com/bigmlcom/flatline>`_ expressions. + Lexer for Flatline expressions. .. versionadded:: 2.2 """ name = 'Flatline' + url = 'https://github.com/bigmlcom/flatline' aliases = ['flatline'] filenames = [] mimetypes = ['text/x-flatline'] @@ -857,12 +865,13 @@ class FlatlineLexer(RegexLexer): class SnowballLexer(ExtendedRegexLexer): """ - Lexer for `Snowball <http://snowballstem.org/>`_ source code. + Lexer for Snowball source code. .. versionadded:: 2.2 """ name = 'Snowball' + url = 'http://snowballstem.org/' aliases = ['snowball'] filenames = ['*.sbl'] |