mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
7ccb4a0e24
|
|
@ -1,5 +1,12 @@
|
||||||
{% extends "defindex.html" %}
|
{% extends "layout.html" %}
|
||||||
{% block tables %}
|
{%- block htmltitle -%}
|
||||||
|
<title>{{ html_title }}</title>
|
||||||
|
{%- endblock -%}
|
||||||
|
{% block body %}
|
||||||
|
<h1>{{ docstitle|e }}</h1>
|
||||||
|
<p>
|
||||||
|
{% trans %}Welcome! This is the documentation for Apache Cassandra {{ version }}.{% endtrans %}
|
||||||
|
</p>
|
||||||
<div id="wipwarning">This documentation is a work-in-progress.
|
<div id="wipwarning">This documentation is a work-in-progress.
|
||||||
<a href="{{ pathto("bugs") }}">Contributions</a> are welcome.</div>
|
<a href="{{ pathto("bugs") }}">Contributions</a> are welcome.</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,6 @@ from pygments.lexer import Lexer, RegexLexer, do_insertions, bygroups, words
|
||||||
from pygments.token import Punctuation, Whitespace, Error, \
|
from pygments.token import Punctuation, Whitespace, Error, \
|
||||||
Text, Comment, Operator, Keyword, Name, String, Number, Generic, Literal
|
Text, Comment, Operator, Keyword, Name, String, Number, Generic, Literal
|
||||||
from pygments.lexers import get_lexer_by_name, ClassNotFound
|
from pygments.lexers import get_lexer_by_name, ClassNotFound
|
||||||
from pygments.util import iteritems
|
|
||||||
|
|
||||||
__all__ = [ 'CQLLexer' ]
|
__all__ = [ 'CQLLexer' ]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue