- 8 DB models (services, incidents, monitors, subscribers, etc.) - Full CRUD API for services, incidents, monitors - Public status page with live data - Incident detail page with timeline - API key authentication - Uptime monitoring scheduler - 13 tests passing - TECHNICAL_DESIGN.md with full spec
32 lines
752 B
Python
32 lines
752 B
Python
"""
|
|
pygments.styles.abap
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
ABAP workbench like style.
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
from pygments.style import Style
|
|
from pygments.token import Keyword, Name, Comment, String, Error, \
|
|
Number, Operator
|
|
|
|
|
|
__all__ = ['AbapStyle']
|
|
|
|
|
|
class AbapStyle(Style):
|
|
name = 'abap'
|
|
|
|
styles = {
|
|
Comment: 'italic #888',
|
|
Comment.Special: '#888',
|
|
Keyword: '#00f',
|
|
Operator.Word: '#00f',
|
|
Name: '#000',
|
|
Number: '#3af',
|
|
String: '#5a2',
|
|
|
|
Error: '#F00',
|
|
}
|