mirror of https://github.com/zulip/zulip.git
docs: Add missing spaces around code spans.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
10ef308848
commit
a13e42f18a
|
@ -24,8 +24,8 @@ format used by the Zulip server that they are interacting with.
|
|||
|
||||
* [`PATCH /realm/user_settings_defaults`](/api/update-realm-user-settings-defaults),
|
||||
[`POST /register`](/api/register-queue), [`PATCH /settings`](/api/update-settings):
|
||||
Added a new user setting,`automatically_follow_topics_where_mentioned`
|
||||
that allows user to automatically follow topics where the user is mentioned.
|
||||
Added a new user setting, `automatically_follow_topics_where_mentioned`,
|
||||
that allows the user to automatically follow topics where the user is mentioned.
|
||||
|
||||
**Feature level 234**
|
||||
|
||||
|
|
|
@ -747,7 +747,7 @@ integration](../production/scim.md).
|
|||
`https://authentik.company/application/saml/<application slug>/sso/binding/redirect/` where `<application slug>`
|
||||
is the application slug you've assigned to this application in Authentik settings (e.g `zulip`).
|
||||
1. Update the attribute mapping in your new entry in `SOCIAL_AUTH_SAML_ENABLED_IDPS` to match how
|
||||
Authentik specifies attributes in its`SAMLResponse`:
|
||||
Authentik specifies attributes in its `SAMLResponse`:
|
||||
|
||||
```
|
||||
"attr_user_permanent_id": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
|
||||
|
@ -791,7 +791,7 @@ this with another IdP.
|
|||
Disable `Force POST Binding`, as Zulip only supports the Redirect binding.
|
||||
1. In `Fine Grain SAML Endpoint Configuration`, set `Logout Service Redirect Binding URL`
|
||||
to the same value you provided for `SSO URL` above.
|
||||
1. Add the IdP's `Redirect Binding URL`for `SingleLogoutService` to
|
||||
1. Add the IdP's `Redirect Binding URL` for `SingleLogoutService` to
|
||||
your IdP configuration dict in `SOCIAL_AUTH_SAML_ENABLED_IDPS` in
|
||||
`/etc/zulip/settings.py` as `slo_url`. For example it may look like
|
||||
this:
|
||||
|
|
|
@ -568,7 +568,7 @@ Apache requires you use the hostname, not the IP address; see
|
|||
### HAProxy configuration
|
||||
|
||||
Below is a working example of a HAProxy configuration. It assumes that
|
||||
your Zulip server sits at `https://10.10.10.10:443`see
|
||||
your Zulip server sits at `https://10.10.10.10:443`; see
|
||||
[above](#configuring-zulip-to-allow-http) to switch to HTTP.
|
||||
|
||||
1. Follow the instructions to [configure Zulip to trust
|
||||
|
|
|
@ -341,7 +341,7 @@ def get_caches_to_be_purged(
|
|||
# and threshold days, this function return a list of caches
|
||||
# which can be purged. Remove the cache only if it is:
|
||||
# 1: Not in use by the current installation(in dev as well as in prod).
|
||||
# 2: Not in use by a deployment not older than `threshold_days`(in prod).
|
||||
# 2: Not in use by a deployment not older than `threshold_days` (in prod).
|
||||
# 3: Not in use by '/root/zulip'.
|
||||
# 4: Not older than `threshold_days`.
|
||||
caches_to_purge = set()
|
||||
|
|
|
@ -66,7 +66,7 @@ Also pass the following as environment variables in `.github/workflows/update-on
|
|||
- Delete the test droplet `oneclickapp-{release_version}-test` after you have completed testing
|
||||
by going to the [DigitalOcean Zulip team account](https://cloud.digitalocean.com/droplets?i=0242e0).
|
||||
If there are other existing test droplets with the same name format but with with older release versions
|
||||
feel free to delete them as well. These droplets are also tagged with `github-action` and`temporary`
|
||||
feel free to delete them as well. These droplets are also tagged with the `github-action` and `temporary`
|
||||
tags.
|
||||
|
||||
**Errors**
|
||||
|
|
|
@ -54,6 +54,6 @@ export function save_pre_narrow_offset_for_reload() {
|
|||
|
||||
export function initialize() {
|
||||
// For users with automatic color scheme, we need to detect change
|
||||
// in `prefers-color-scheme`as it changes based on time.
|
||||
// in `prefers-color-scheme` as it changes based on time.
|
||||
ui_util.listener_for_preferred_color_scheme_change(update_recipient_bar_background_color);
|
||||
}
|
||||
|
|
|
@ -744,7 +744,7 @@ export function get_search_result(query) {
|
|||
// Display the default first
|
||||
// `has` and `is` operators work only on predefined categories. Default suggestion
|
||||
// is not displayed in that case. e.g. `messages that contain abc` as
|
||||
// a suggestion for `has:abc`does not make sense.
|
||||
// a suggestion for `has:abc` does not make sense.
|
||||
if (last.operator === "search") {
|
||||
suggestion = {
|
||||
search_string: last.operand,
|
||||
|
|
|
@ -39,7 +39,7 @@ const isaac = {
|
|||
full_name: "Isaac Newton",
|
||||
};
|
||||
|
||||
// The `people`object is a very fundamental object in the
|
||||
// The `people` object is a very fundamental object in the
|
||||
// Zulip app. You can learn a lot more about it by reading
|
||||
// the tests in people.test.js in the same directory as this file.
|
||||
|
||||
|
|
Loading…
Reference in New Issue