From 1063fe0b2b2c7fd79c4cfaab211dd8b2f3f54d71 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 25 May 2017 09:27:58 -0400 Subject: [PATCH] applied table updates. styling images. --- .../directory-connector/directory-sync.md | 20 +++++++++++++++++++ _sass/_help.scss | 10 ++++++---- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/_articles/directory-connector/directory-sync.md b/_articles/directory-connector/directory-sync.md index db872fda..9fd25a8e 100644 --- a/_articles/directory-connector/directory-sync.md +++ b/_articles/directory-connector/directory-sync.md @@ -62,12 +62,14 @@ Optionally, from the command line: Console.exe login -e -p [-t] [-o] ``` +{% table %} | Description | Argument | Example Value | Required | |-----------------|----------|--------------------------------------|----------| | Email | -e | user@example.com | y | | Password | -p | mypassword123 | y | | 2FA Token | -t | 381119 | n | | Organization Id | -o | acadad98-b666-498d-b89f-f220f21e453f | n | +{% endtable %} You can also log out with the following command: @@ -91,29 +93,36 @@ Optionally, from the command line: Console.exe configdir -t [azure: -i -s -te] [gsuite: -f -u [-d] [-c]] [ad/ldap: -a -path [-port] [-cu] [-u] [-p]] ``` +{% table %} | Description | Argument | Example Value | Required | Notes | |-----------------|----------|--------------------------------------|----------|------------------------------------------| | Type | -t | 1 | y | AD = 0, Azure = 1, Other = 2, GSuite = 3 | +{% endtable %} #### Azure +{% table %} | Description | Argument | Example Value | Required | |----------------|----------|--------------------------------------|----------| | Application Id | -i | 0f82b419-c5b3-4b63-8afc-67d240da85a6 | y | | Secret Key | -s | c2VjcmV0X2tleQ== | y | | Tenant | -te | mycompany.onmicrosoft.com | y | +{% endtable %} #### G Suite +{% table %} | Description | Argument | Example Value | Required | |-------------|----------|--------------------|----------| | Secret File | -f | client_secret.json | y | | Admin User | -u | admin@company.com | y | | Domain | -d | company.com | y | | Customer Id | -c | 39204722352 | n | +{% endtable %} #### Active Directory / Other LDAP +{% table %} | Description | Argument | Example Value | Required | |--------------|----------|---------------------|----------| | Address | -a | company.local | y | @@ -122,6 +131,7 @@ Console.exe configdir -t [azure: -i -s -te] [gsuite: -f -u [-d] [-c]] [ad/ldap: | Current User | -cu | n/a | n | | Username | -u | admin@company.com | n | | Password | -p | mypassword | n | +{% endtable %} {% note %} Any sensitive information such as secret keys and server passwords are encrypted and stored locally in the [settings file](#changing-configurations-manually). @@ -139,6 +149,7 @@ Optionally, from the command line: Console.exe configsync [-g] [-u] [-i] [-uf] [-gf] [-rd] [ad/ldap: [-go] [-gp] [-gn] [-uo] [-up] [-ue] [-m] [-ps] [-ep] [-es] [-c] [-r]] ``` +{% table %} | Description | Argument | Example Value | Required | Notes | |-----------------|----------|------------------------|----------|----------------------------------------------------| | Sync Groups | -g | n/a | n | | @@ -147,6 +158,7 @@ Console.exe configsync [-g] [-u] [-i] [-uf] [-gf] [-rd] [ad/ldap: [-go] [-gp] [- | User Filter | -uf | (&(objectClass=user)) | n | Value syntax is different for each directory type. | | Group Filter | -gf | (&(objectClass=group)) | n | Value syntax is different for each directory type. | | Remove Disabled | -rd | n/a | n | | +{% endtable %} {% note %} The syntax for user and group filters is different for each type of directory. Learn more about how user and group filters work in the following article: @@ -156,6 +168,7 @@ The syntax for user and group filters is different for each type of directory. L #### Active Directory / Other LDAP +{% table %} | Description | Argument | Example Value | Required | |-------------------------|----------|----------------|----------| | Group Object Class | -go | group | y | @@ -170,6 +183,7 @@ The syntax for user and group filters is different for each type of directory. L | Email Suffix | -es | @company.com | n | | Creation Date Attribute | -c | whenCreated | n | | Revision Date Attribute | -r | whenChanged | n | +{% endtable %} ### Manually simulate a sync @@ -185,9 +199,11 @@ Optionally, from the command line: Console.exe sim [-f] ``` +{% table %} | Description | Argument | Example Value | Required | Notes | |-------------|----------|---------------|----------|---------------------| | Force | -f | n/a | n | Forces a full sync. | +{% endtable %} ### Perform a sync @@ -200,9 +216,11 @@ Optionally, from the command line: Console.exe sync [-f] ``` +{% table %} | Description | Argument | Example Value | Required | Notes | |-------------|----------|---------------|----------|---------------------| | Force | -f | n/a | n | Forces a full sync. | +{% endtable %} ### Manage the background service @@ -218,10 +236,12 @@ Optionally, from the command line: Console.exe service [-start] [-stop] ``` +{% table %} | Description | Argument | Example Value | Required | |-------------|----------|---------------|----------| | Start | -start | n/a | n | | Stop | -stop | n/a | n | +{% endtable %} {% note %} The application must be run in administrator mode to be able to manage the background service. diff --git a/_sass/_help.scss b/_sass/_help.scss index a3f9c681..1dec6378 100644 --- a/_sass/_help.scss +++ b/_sass/_help.scss @@ -282,9 +282,11 @@ footer { font-size: 16px; } - .img-tag { - max-width: 600px; - max-height: 600px; + @media (min-width: $screen-sm-min) { + .img-tag { + max-width: 600px; + max-height: 600px; + } } .panel-body > ol { @@ -330,7 +332,7 @@ footer { opacity: 0; margin-left: 5px; - @media (max-width: 767px) { + @media (max-width: $screen-sm-max) { display: none !important; } }