-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This file makes sure that Github Pages doesn't process mdBook's output. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This file is maintained as an up-to-date snapshot of the default | ||
# homeserver.yaml configuration generated by Synapse. You can find a | ||
# complete accounting of possible configuration options at | ||
# https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html | ||
# | ||
# It is *not* intended to be copied and used as the basis for a real | ||
# homeserver.yaml. Instead, if you are starting from scratch, please generate | ||
# a fresh config using Synapse by following the instructions in | ||
# https://element-hq.github.io/synapse/latest/setup/installation.html. | ||
# | ||
################################################################################ | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Admin APIs | ||
========== | ||
|
||
**Note**: The latest documentation can be viewed `here <https://element-hq.github.io/synapse>`_. | ||
See `docs/README.md <../README.md>`_ for more information. | ||
|
||
**Please update links to point to the website instead.** Existing files in this directory | ||
are preserved to maintain historical links, but may be moved in the future. | ||
|
||
This directory includes documentation for the various synapse specific admin | ||
APIs available. Updates to the existing Admin API documentation should still | ||
be made to these files, but any new documentation files should instead be placed under | ||
`docs/usage/administration/admin_api <../usage/administration/admin_api>`_. |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
digraph auth { | ||
nodesep=0.5; | ||
rankdir="RL"; | ||
|
||
C [label="Create (1,1)"]; | ||
|
||
BJ [label="Bob's Join (2,1)", color=red]; | ||
BJ2 [label="Bob's Join (2,2)", color=red]; | ||
BJ2 -> BJ [color=red, dir=none]; | ||
|
||
subgraph cluster_foo { | ||
A1 [label="Alice's invite (4,1)", color=blue]; | ||
A2 [label="Alice's Join (4,2)", color=blue]; | ||
A3 [label="Alice's Join (4,3)", color=blue]; | ||
A3 -> A2 -> A1 [color=blue, dir=none]; | ||
color=none; | ||
} | ||
|
||
PL1 [label="Power Level (3,1)", color=darkgreen]; | ||
PL2 [label="Power Level (3,2)", color=darkgreen]; | ||
PL2 -> PL1 [color=darkgreen, dir=none]; | ||
|
||
{rank = same; C; BJ; PL1; A1;} | ||
|
||
A1 -> C [color=grey]; | ||
A1 -> BJ [color=grey]; | ||
PL1 -> C [color=grey]; | ||
BJ2 -> PL1 [penwidth=2]; | ||
|
||
A3 -> PL2 [penwidth=2]; | ||
A1 -> PL1 -> BJ -> C [penwidth=2]; | ||
} |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
Based off of the Ayu theme | ||
Original by Dempfi (https://github.com/dempfi/ayu) | ||
*/ | ||
|
||
.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
background: #191f26; | ||
color: #e6e1cf; | ||
padding: 0.5em; | ||
} | ||
|
||
.hljs-comment, | ||
.hljs-quote { | ||
color: #5c6773; | ||
font-style: italic; | ||
} | ||
|
||
.hljs-variable, | ||
.hljs-template-variable, | ||
.hljs-attribute, | ||
.hljs-attr, | ||
.hljs-regexp, | ||
.hljs-link, | ||
.hljs-selector-id, | ||
.hljs-selector-class { | ||
color: #ff7733; | ||
} | ||
|
||
.hljs-number, | ||
.hljs-meta, | ||
.hljs-builtin-name, | ||
.hljs-literal, | ||
.hljs-type, | ||
.hljs-params { | ||
color: #ffee99; | ||
} | ||
|
||
.hljs-string, | ||
.hljs-bullet { | ||
color: #b8cc52; | ||
} | ||
|
||
.hljs-title, | ||
.hljs-built_in, | ||
.hljs-section { | ||
color: #ffb454; | ||
} | ||
|
||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-symbol { | ||
color: #ff7733; | ||
} | ||
|
||
.hljs-name { | ||
color: #36a3d9; | ||
} | ||
|
||
.hljs-tag { | ||
color: #00568d; | ||
} | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-strong { | ||
font-weight: bold; | ||
} | ||
|
||
.hljs-addition { | ||
color: #91b362; | ||
} | ||
|
||
.hljs-deletion { | ||
color: #d96c75; | ||
} |