Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
botocore /
docs /
bcdoc /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
588
B
-rw-r--r--
2017-04-04 16:39
__init__.pyc
182
B
-rw-r--r--
2017-04-04 16:40
docevents.py
4.62
KB
-rw-r--r--
2017-04-04 16:39
docevents.pyc
2.39
KB
-rw-r--r--
2017-04-04 16:40
docstringparser.py
5.75
KB
-rw-r--r--
2017-04-04 16:39
docstringparser.pyc
9.53
KB
-rw-r--r--
2017-04-04 16:40
restdoc.py
7.06
KB
-rw-r--r--
2017-04-04 16:39
restdoc.pyc
9.34
KB
-rw-r--r--
2017-04-04 16:40
style.py
10.85
KB
-rw-r--r--
2017-04-04 16:39
style.pyc
17.66
KB
-rw-r--r--
2017-04-04 16:40
textwriter.py
20.13
KB
-rw-r--r--
2017-04-04 16:39
textwriter.pyc
43.76
KB
-rw-r--r--
2017-04-04 16:40
Save
Rename
# Copyright 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. DOC_EVENTS = { 'doc-breadcrumbs': '.%s', 'doc-title': '.%s', 'doc-description': '.%s', 'doc-synopsis-start': '.%s', 'doc-synopsis-option': '.%s.%s', 'doc-synopsis-end': '.%s', 'doc-options-start': '.%s', 'doc-option': '.%s.%s', 'doc-option-example': '.%s.%s', 'doc-options-end': '.%s', 'doc-examples': '.%s', 'doc-output': '.%s', 'doc-subitems-start': '.%s', 'doc-subitem': '.%s.%s', 'doc-subitems-end': '.%s', 'doc-relateditems-start': '.%s', 'doc-relateditem': '.%s.%s', 'doc-relateditems-end': '.%s' } def generate_events(session, help_command): # Now generate the documentation events session.emit('doc-breadcrumbs.%s' % help_command.event_class, help_command=help_command) session.emit('doc-title.%s' % help_command.event_class, help_command=help_command) session.emit('doc-description.%s' % help_command.event_class, help_command=help_command) session.emit('doc-synopsis-start.%s' % help_command.event_class, help_command=help_command) if help_command.arg_table: for arg_name in help_command.arg_table: # An argument can set an '_UNDOCUMENTED' attribute # to True to indicate a parameter that exists # but shouldn't be documented. This can be used # for backwards compatibility of deprecated arguments. if getattr(help_command.arg_table[arg_name], '_UNDOCUMENTED', False): continue session.emit( 'doc-synopsis-option.%s.%s' % (help_command.event_class, arg_name), arg_name=arg_name, help_command=help_command) session.emit('doc-synopsis-end.%s' % help_command.event_class, help_command=help_command) session.emit('doc-options-start.%s' % help_command.event_class, help_command=help_command) if help_command.arg_table: for arg_name in help_command.arg_table: if getattr(help_command.arg_table[arg_name], '_UNDOCUMENTED', False): continue session.emit('doc-option.%s.%s' % (help_command.event_class, arg_name), arg_name=arg_name, help_command=help_command) session.emit('doc-option-example.%s.%s' % (help_command.event_class, arg_name), arg_name=arg_name, help_command=help_command) session.emit('doc-options-end.%s' % help_command.event_class, help_command=help_command) session.emit('doc-subitems-start.%s' % help_command.event_class, help_command=help_command) if help_command.command_table: for command_name in sorted(help_command.command_table.keys()): if hasattr(help_command.command_table[command_name], '_UNDOCUMENTED'): continue session.emit('doc-subitem.%s.%s' % (help_command.event_class, command_name), command_name=command_name, help_command=help_command) session.emit('doc-subitems-end.%s' % help_command.event_class, help_command=help_command) session.emit('doc-examples.%s' % help_command.event_class, help_command=help_command) session.emit('doc-output.%s' % help_command.event_class, help_command=help_command) session.emit('doc-relateditems-start.%s' % help_command.event_class, help_command=help_command) if help_command.related_items: for related_item in sorted(help_command.related_items): session.emit('doc-relateditem.%s.%s' % (help_command.event_class, related_item), help_command=help_command, related_item=related_item) session.emit('doc-relateditems-end.%s' % help_command.event_class, help_command=help_command)