@@ -3078,20 +3078,25 @@
3078 3078 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** command.
3079 3079 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
**
3080 3080 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** var is the name of the internal configuration name for db_(un)set.
3081 3081 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** If var is 0, the settings name is used.
3082 3082 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
**
3083 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
- ** width is the length for the edit field on the behavior page, 0
3084 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
- ** is used for on/off checkboxes.
3083 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** width is the length for the edit field on the behavior page, 0 is
3084 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** used for on/off checkboxes. A negative value indicates that that
3085 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** page should not render this setting. Such values may be rendered
3086 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** separately/manually on another page, e.g., /setup_access, and are
3087 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** exposed via the CLI settings command.
3085 3088 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
**
3086 3089 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** The behaviour page doesn't use a special layout. It lists all
3087 3090 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** set-commands and displays the 'set'-help as info.
3088 3091 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
*/
3089 3092 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
struct Setting {
3090 3093 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
const char *name; /* Name of the setting */
3091 3094 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
const char *var; /* Internal variable name used by db_set() */
3092 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
- int width; /* Width of display. 0 for boolean values. */
3095 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ int width; /* Width of display. 0 for boolean values and
3096 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** negative for values which should not appear
3097 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** on the /setup_settings page. */
3093 3098 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
int versionable; /* Is this setting versionable? */
3094 3099 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
int forceTextArea; /* Force using a text area for display? */
3095 3100 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
const char *def; /* Default value */
3096 3101 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
};
3097 3102 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
#endif /* INTERFACE */
@@ -3466,10 +3471,17 @@
3466 3471 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** URL of the HTTP proxy. If undefined or "off" then
3467 3472 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** the "http_proxy" environment variable is consulted.
3468 3473 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** If the http_proxy environment variable is undefined
3469 3474 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** then a direct HTTP connection is used.
3470 3475 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
*/
3476 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ /*
3477 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** SETTING: redirect-to-https default=0 width=-1
3478 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** Specifies whether or not to redirect http:// requests to
3479 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** https:// URIs. A value of 0 (the default) means not to
3480 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** redirect, 1 means to redirect only the /login page, and 2
3481 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ ** means to always redirect.
3482 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
+ */
3471 3483 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
/*
3472 3484 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** SETTING: relative-paths boolean default=on
3473 3485 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** When showing changes and extras, report paths relative
3474 3486 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
** to the current working directory.
3475 3487 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!
*/
3476 3488 { copied = false; pop = false }, 1000)" :class="copied && 'copied'">Copy link Copied!