Skip to content

Commit e7f26c7

Browse files
committed
Fix TODO to avoid ezglossary warnings
1 parent 1595e46 commit e7f26c7

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

content/admin/configuration/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ The following `ACLName` are pre-defined:
533533
"^yozhik$": "^example.(com|org)$"
534534
```
535535

536-
<!-- TODO: explain remaining parameters -->
536+
<!-- TODO:: explain remaining parameters -->
537537

538538
- **`user_glob: Glob`**:
539539

content/admin/install/source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Note that you probably need administrative privileges in the system to install e
201201

202202
The created files and directories depend on the options provided to [`./configure`](#configure), by default they are:
203203

204-
<!-- TODO: Check we are up to date -->
204+
<!-- TODO:: Check we are up to date -->
205205

206206
- `/etc/ejabberd/`: Configuration directory:
207207

content/archive/old.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ following syntax:
14681468
node_regexp:
14691469
"^yozhik$": "^example.(com|org)$"
14701470
```
1471-
<!-- TODO: explain remaining parameters -->
1471+
<!-- TODO:: explain remaining parameters -->
14721472

14731473
**`user_glob: Glob`**:
14741474

@@ -2863,7 +2863,7 @@ over BOSH.
28632863

28642864
- **`use_cache: false|true`**: Use this option and related ones as explained in section [Caching](#caching).
28652865

2866-
<!-- TODO Document options:
2866+
<!-- TODO:: Document options
28672867
json, max_concat, max_inactivity, max_pause, prebind, ram_db_type,     queue_type, use_cache, cache_size, cache_missed, cache_life_time
28682868
-->
28692869

@@ -3433,7 +3433,7 @@ Example DNS TXT configuration for Websocket:
34333433

34343434
A test client can be found on Github: [Websocket test client](https://github.com/processone/xmpp-websocket-client)
34353435

3436-
<!-- TODO We should probably embed a test Websocket client on the Websocket info get page. -->
3436+
<!-- TODO:: We should probably embed a test Websocket client on the Websocket info get page. -->
34373437

34383438
## mod_jidprep
34393439

content/developer/ejabberd-api/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ An ejabberd command is defined by an `#ejabberd_commands` Erlang record. The rec
1717

1818
- `session`: For commands related to user XMPP sessions.
1919
- `roster`: Commands related to contact list management.
20-
<!-- TODO: List other tags that we already use. -->
20+
<!-- TODO:: List other tags that we already use. -->
2121

2222
- **desc**: Description of the command for online help.
2323
- **module** and **function**: Module and function to call to execute the command logic.

content/developer/ejabberd-api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ the following:
107107
- [Simple API configuration](simple-configuration.md)
108108
- Using ejabberd client API libraries and tools
109109

110-
<!-- TODO: Using API with ejabberd command-line tool and Go based library -->
110+
<!-- TODO:: Using API with ejabberd command-line tool and Go based library -->
111111

112112
The list of available commands is available in the [API Reference](admin-api.md) section.
113113
Additionally, you can check at runtime what commands are available in your installed server using [ejabberdctl](../../admin/guide/managing.md#ejabberdctl):

content/developer/ejabberd-api/oauth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ Parameters are described in OAuth specification:
172172
- `token_type`: ejabberd supports `bearer` token type.
173173
- `expires_in`: This is the validity duration of the token, in seconds. When the token expires, a new authorization token will need to be generated an approved by the user.
174174

175-
<!--- TODO: Does oauth2 allow token refresh ? Is it implemented or could
175+
<!--- TODO:: Does oauth2 allow token refresh ? Is it implemented or could
176176
it be implemented in ejabberd ? -->
177177
- `scope`: Confirms the granted scope to the requesting application. Several scopes can be passed, separated by '+'.
178178
- `state`: If a state parameter was passed by requesting application in authorization_token URL, it will be passed back to the
179179
application as a parameter of the `redirect_uri` to help with the client workflow.
180180

181-
<!--- TODO: Add Android and iOS examples on how to get the token. -->
181+
<!--- TODO:: Add Android and iOS examples on how to get the token. -->
182182

183183
## Scopes
184184

@@ -189,7 +189,7 @@ Parameters are described in OAuth specification:
189189
For example, there is a scope `registered_users` because there is a command called [registered_users](admin-api.md#registered-users).
190190
Ensure you enable the module that defines the command that you want to use, see [Module configuration](#module-configuration) for details.
191191

192-
<!--- TODO: As scope are generally provided by commands, which are
192+
<!--- TODO:: As scope are generally provided by commands, which are
193193
provided by enabled modules, we need to command to list enabled
194194
scopes. We should also probably support scopes that are categories of
195195
commands (like user for example). Finally, we should probably allow

content/developer/ejabberd-api/simple-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Simple ejabberd Rest API Configuration
22

33
<!--
4-
TODO:
4+
TODO::
55
66
- Link to page showing how to configure TLS on listeners
77
- Link to page showing how to use Go ejabberd API client

content/livebooks/ejabberd-developer-livebook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The ejabberd Developer Livebook
22

33

4-
<!-- WARNING: Don't edit this file. This is generated from the *.livemd, please edit that one instead -->
4+
<!-- WARNING:: Don't edit this file. This is generated from the *.livemd, please edit that one instead -->
55

66
!!! info
77
This page is designed to run interactively using [Livebook](https://livebook.dev/).

content/livebooks/markdown_head.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
<!-- WARNING: Don't edit this file. This is generated from the *.livemd, please edit that one instead -->
2+
<!-- WARNING:: Don't edit this file. This is generated from the *.livemd, please edit that one instead -->
33

44
!!! info
55
This page is designed to run interactively using [Livebook](https://livebook.dev/).

0 commit comments

Comments
 (0)