Skip to content

Commit 85c9d22

Browse files
Merge pull request #552 from adobe-dmeservices/feature/sign-sync
Post-sync and Sign Sync Connector
2 parents 2707f52 + a43ddc8 commit 85c9d22

File tree

24 files changed

+1439
-41
lines changed

24 files changed

+1439
-41
lines changed

.build/pre_build.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def cd():
2727
os.chdir(os.path.realpath(os.path.join(os.path.dirname(__file__), '..')))
2828

2929

30-
def bundle_example_config():
31-
examples_dir = os.path.join('examples', 'config files - basic')
30+
def bundle_example_config(subdir):
31+
examples_dir = os.path.join('examples', subdir)
3232
files = [os.path.join(examples_dir, f) for f in os.listdir(examples_dir) if
3333
os.path.isfile(os.path.join(examples_dir, f))]
3434
bundle_dir = os.path.join('user_sync', 'resources', 'examples')
@@ -63,5 +63,5 @@ def bundle_feature_flag_config():
6363

6464
if __name__ == '__main__':
6565
cd()
66-
bundle_example_config()
67-
bundle_feature_flag_config()
66+
bundle_example_config('config files - basic')
67+
bundle_example_config('sign')

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ __pycache__/
88

99
# Distribution / packaging
1010
.Python
11+
venv*
12+
test-config
1113
env/
1214
/build/
1315
develop-eggs/
@@ -24,6 +26,7 @@ var/
2426
.installed.cfg
2527
*.egg
2628

29+
2730
# PyInstaller
2831
# Usually these files are written by a python script from a template
2932
# before PyInstaller builds the exe, so as to inject date/other infos into it.
@@ -105,3 +108,4 @@ user_sync/resources/*
105108
.DS_Store
106109
!user_sync/resources/default_flags.cfg
107110
test_config/
111+
*.swp

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ github_username: adobe-apiplatform
2525
# Build settings
2626
markdown: kramdown
2727
theme: minima
28-
gems:
28+
plugins:
2929
- jekyll-feed
3030
exclude:
3131
- Gemfile

docs/_sass/_base.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
border-collapse: collapse;
33

44
> table, td, th {
5-
border: 1px solid black;
6-
padding: 1px;
5+
border: 1px solid #000;
6+
padding: 1px;
77
}
88
}

docs/_sass/minima/_base.scss

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,21 @@ pre {
218218
*/
219219
.bordertablestyle {
220220
border-collapse: collapse;
221+
margin-bottom: 10px !IMPORTANT;
221222

222-
> table, td, th {
223-
border: 1px solid black;
224-
padding: 2px;
225-
}
223+
th {
224+
background-color: #666;
225+
color: #fff;
226+
}
227+
228+
td {
229+
background-color: #ddd;
230+
}
231+
232+
233+
table, td, th {
234+
border: 3px solid #fff;
235+
border-radius: 5px;
236+
padding: 3px 6px;
237+
}
226238
}
48.2 KB
Loading
16.8 KB
Loading
9.77 KB
Loading

docs/en/success-guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ action.
3232
10. [Monitoring the User Sync Process](monitoring.md)
3333
11. [Choose Final Command Line Options](command_line_options.md)
3434
12. [Setup Scheduled Ongoing Execution of User Sync](scheduling.md)
35-
35+
13. [Adobe Sign Sync Connector](sync_adobe_sign.md)

0 commit comments

Comments
 (0)