@adobe/acc-js-sdk 1.1.9 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1960
- package/docs/404.html +11 -0
- package/docs/Gemfile +35 -0
- package/docs/Gemfile.lock +270 -0
- package/docs/_config.yml +55 -0
- package/docs/_data/navigation.yml +119 -0
- package/docs/_includes/navigation.html +33 -0
- package/docs/_layouts/default.html +21 -0
- package/docs/_layouts/home.html +4 -0
- package/docs/_layouts/page.html +5 -0
- package/docs/_layouts/post.html +7 -0
- package/docs/_posts/2022-10-14-welcome.html +149 -0
- package/docs/application.html +366 -0
- package/docs/architecture.html +24 -0
- package/docs/assets/css/styles.css +362 -0
- package/docs/assets/images/adobe-campaign-256.png +0 -0
- package/docs/assets/images/architecture.png +0 -0
- package/docs/assets/images/ref.svg +6 -0
- package/docs/badgerFish.html +14 -0
- package/docs/bestPractices.html +189 -0
- package/docs/blog.html +18 -0
- package/docs/buildAndRun.html +96 -0
- package/docs/caches.html +68 -0
- package/docs/changeLog.html +256 -0
- package/docs/checkList.html +168 -0
- package/docs/concepts.html +130 -0
- package/docs/connecting.html +210 -0
- package/docs/connectionParameters.html +109 -0
- package/docs/contribute.html +54 -0
- package/docs/dataTypes.html +124 -0
- package/docs/differences.html +4 -0
- package/docs/documentation.html +21 -0
- package/docs/domHelper.html +88 -0
- package/docs/dynamicInvoke.html +36 -0
- package/docs/entityAccessor.html +22 -0
- package/docs/errors.html +47 -0
- package/docs/escaping.html +76 -0
- package/docs/favicon.png +0 -0
- package/docs/healthCheck.html +66 -0
- package/docs/httpHeaders.html +78 -0
- package/docs/index.html +64 -0
- package/docs/installation.html +34 -0
- package/docs/license.html +208 -0
- package/docs/messageCenter.html +80 -0
- package/docs/methodLevelRepresentation.html +12 -0
- package/docs/midSourcing.html +19 -0
- package/docs/observability.html +169 -0
- package/docs/passwords.html +27 -0
- package/docs/profiles.html +103 -0
- package/docs/pushDown.html +13 -0
- package/docs/quickstart.html +69 -0
- package/docs/release.html +52 -0
- package/docs/samples.html +82 -0
- package/docs/simpleJson.html +88 -0
- package/docs/soapAPIs.html +234 -0
- package/docs/timeouts.html +23 -0
- package/docs/transport.html +45 -0
- package/docs/troubleshooting.html +17 -0
- package/docs/writeDoc.html +208 -0
- package/docs/xml2json.html +96 -0
- package/docs/xtkCaster.html +67 -0
- package/docs/xtkInterface.html +20 -0
- package/docs/xtkOption.html +54 -0
- package/docs/xtkPackage.html +16 -0
- package/docs/xtkPersist.html +213 -0
- package/docs/xtkQueryDef.html +245 -0
- package/docs/xtkSchema.html +39 -0
- package/docs/xtkSession.html +29 -0
- package/docs/xtkWorkflow.html +28 -0
- package/docs/xtkWrite.html +51 -0
- package/package-lock.json +843 -5820
- package/package.json +1 -1
- package/samples/005 - basics - persist.js +160 -0
- package/src/application.js +5 -0
- package/src/campaign.js +1 -1
- package/src/client.js +68 -25
- package/src/methodCache.js +24 -13
- package/src/soap.js +16 -4
- package/src/xtkCaster.js +61 -3
- package/test/application.test.js +23 -0
- package/test/caches.test.js +1 -1
- package/test/client.test.js +118 -3
- package/test/mock.js +41 -4
- package/test/soap.test.js +13 -0
- package/test/xtkCaster.test.js +62 -0
- package/test/xtkPersist.test.js +97 -0
- package/test/xtkProxy.test.js +81 -0
- package/CHANGELOG.md +0 -245
package/docs/404.html
ADDED
package/docs/Gemfile
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
source "https://rubygems.org"
|
|
2
|
+
# Hello! This is where you manage which Jekyll version is used to run.
|
|
3
|
+
# When you want to use a different version, change it below, save the
|
|
4
|
+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
|
5
|
+
#
|
|
6
|
+
# bundle exec jekyll serve
|
|
7
|
+
#
|
|
8
|
+
# This will help ensure the proper Jekyll version is running.
|
|
9
|
+
# Happy Jekylling!
|
|
10
|
+
gem "jekyll", "~> 3.9.2"
|
|
11
|
+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
|
|
12
|
+
gem "minima", "~> 2.5"
|
|
13
|
+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
|
14
|
+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
|
15
|
+
gem "github-pages", "~> 227", group: :jekyll_plugins
|
|
16
|
+
# If you have any plugins, put them here!
|
|
17
|
+
group :jekyll_plugins do
|
|
18
|
+
gem "jekyll-feed", "~> 0.12"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
22
|
+
# and associated library.
|
|
23
|
+
platforms :mingw, :x64_mingw, :mswin, :jruby do
|
|
24
|
+
gem "tzinfo", "~> 1.2"
|
|
25
|
+
gem "tzinfo-data"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Performance-booster for watching directories on Windows
|
|
29
|
+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
|
30
|
+
|
|
31
|
+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
|
|
32
|
+
# do not have a Java counterpart.
|
|
33
|
+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
|
|
34
|
+
|
|
35
|
+
gem "webrick", "~> 1.7"
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
activesupport (6.0.6)
|
|
5
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
6
|
+
i18n (>= 0.7, < 2)
|
|
7
|
+
minitest (~> 5.1)
|
|
8
|
+
tzinfo (~> 1.1)
|
|
9
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
|
10
|
+
addressable (2.8.1)
|
|
11
|
+
public_suffix (>= 2.0.2, < 6.0)
|
|
12
|
+
coffee-script (2.4.1)
|
|
13
|
+
coffee-script-source
|
|
14
|
+
execjs
|
|
15
|
+
coffee-script-source (1.11.1)
|
|
16
|
+
colorator (1.1.0)
|
|
17
|
+
commonmarker (0.23.6)
|
|
18
|
+
concurrent-ruby (1.1.10)
|
|
19
|
+
dnsruby (1.61.9)
|
|
20
|
+
simpleidn (~> 0.1)
|
|
21
|
+
em-websocket (0.5.3)
|
|
22
|
+
eventmachine (>= 0.12.9)
|
|
23
|
+
http_parser.rb (~> 0)
|
|
24
|
+
ethon (0.15.0)
|
|
25
|
+
ffi (>= 1.15.0)
|
|
26
|
+
eventmachine (1.2.7)
|
|
27
|
+
execjs (2.8.1)
|
|
28
|
+
faraday (2.6.0)
|
|
29
|
+
faraday-net_http (>= 2.0, < 3.1)
|
|
30
|
+
ruby2_keywords (>= 0.0.4)
|
|
31
|
+
faraday-net_http (3.0.1)
|
|
32
|
+
ffi (1.15.5)
|
|
33
|
+
forwardable-extended (2.6.0)
|
|
34
|
+
gemoji (3.0.1)
|
|
35
|
+
github-pages (227)
|
|
36
|
+
github-pages-health-check (= 1.17.9)
|
|
37
|
+
jekyll (= 3.9.2)
|
|
38
|
+
jekyll-avatar (= 0.7.0)
|
|
39
|
+
jekyll-coffeescript (= 1.1.1)
|
|
40
|
+
jekyll-commonmark-ghpages (= 0.2.0)
|
|
41
|
+
jekyll-default-layout (= 0.1.4)
|
|
42
|
+
jekyll-feed (= 0.15.1)
|
|
43
|
+
jekyll-gist (= 1.5.0)
|
|
44
|
+
jekyll-github-metadata (= 2.13.0)
|
|
45
|
+
jekyll-include-cache (= 0.2.1)
|
|
46
|
+
jekyll-mentions (= 1.6.0)
|
|
47
|
+
jekyll-optional-front-matter (= 0.3.2)
|
|
48
|
+
jekyll-paginate (= 1.1.0)
|
|
49
|
+
jekyll-readme-index (= 0.3.0)
|
|
50
|
+
jekyll-redirect-from (= 0.16.0)
|
|
51
|
+
jekyll-relative-links (= 0.6.1)
|
|
52
|
+
jekyll-remote-theme (= 0.4.3)
|
|
53
|
+
jekyll-sass-converter (= 1.5.2)
|
|
54
|
+
jekyll-seo-tag (= 2.8.0)
|
|
55
|
+
jekyll-sitemap (= 1.4.0)
|
|
56
|
+
jekyll-swiss (= 1.0.0)
|
|
57
|
+
jekyll-theme-architect (= 0.2.0)
|
|
58
|
+
jekyll-theme-cayman (= 0.2.0)
|
|
59
|
+
jekyll-theme-dinky (= 0.2.0)
|
|
60
|
+
jekyll-theme-hacker (= 0.2.0)
|
|
61
|
+
jekyll-theme-leap-day (= 0.2.0)
|
|
62
|
+
jekyll-theme-merlot (= 0.2.0)
|
|
63
|
+
jekyll-theme-midnight (= 0.2.0)
|
|
64
|
+
jekyll-theme-minimal (= 0.2.0)
|
|
65
|
+
jekyll-theme-modernist (= 0.2.0)
|
|
66
|
+
jekyll-theme-primer (= 0.6.0)
|
|
67
|
+
jekyll-theme-slate (= 0.2.0)
|
|
68
|
+
jekyll-theme-tactile (= 0.2.0)
|
|
69
|
+
jekyll-theme-time-machine (= 0.2.0)
|
|
70
|
+
jekyll-titles-from-headings (= 0.5.3)
|
|
71
|
+
jemoji (= 0.12.0)
|
|
72
|
+
kramdown (= 2.3.2)
|
|
73
|
+
kramdown-parser-gfm (= 1.1.0)
|
|
74
|
+
liquid (= 4.0.3)
|
|
75
|
+
mercenary (~> 0.3)
|
|
76
|
+
minima (= 2.5.1)
|
|
77
|
+
nokogiri (>= 1.13.6, < 2.0)
|
|
78
|
+
rouge (= 3.26.0)
|
|
79
|
+
terminal-table (~> 1.4)
|
|
80
|
+
github-pages-health-check (1.17.9)
|
|
81
|
+
addressable (~> 2.3)
|
|
82
|
+
dnsruby (~> 1.60)
|
|
83
|
+
octokit (~> 4.0)
|
|
84
|
+
public_suffix (>= 3.0, < 5.0)
|
|
85
|
+
typhoeus (~> 1.3)
|
|
86
|
+
html-pipeline (2.14.3)
|
|
87
|
+
activesupport (>= 2)
|
|
88
|
+
nokogiri (>= 1.4)
|
|
89
|
+
http_parser.rb (0.8.0)
|
|
90
|
+
i18n (0.9.5)
|
|
91
|
+
concurrent-ruby (~> 1.0)
|
|
92
|
+
jekyll (3.9.2)
|
|
93
|
+
addressable (~> 2.4)
|
|
94
|
+
colorator (~> 1.0)
|
|
95
|
+
em-websocket (~> 0.5)
|
|
96
|
+
i18n (~> 0.7)
|
|
97
|
+
jekyll-sass-converter (~> 1.0)
|
|
98
|
+
jekyll-watch (~> 2.0)
|
|
99
|
+
kramdown (>= 1.17, < 3)
|
|
100
|
+
liquid (~> 4.0)
|
|
101
|
+
mercenary (~> 0.3.3)
|
|
102
|
+
pathutil (~> 0.9)
|
|
103
|
+
rouge (>= 1.7, < 4)
|
|
104
|
+
safe_yaml (~> 1.0)
|
|
105
|
+
jekyll-avatar (0.7.0)
|
|
106
|
+
jekyll (>= 3.0, < 5.0)
|
|
107
|
+
jekyll-coffeescript (1.1.1)
|
|
108
|
+
coffee-script (~> 2.2)
|
|
109
|
+
coffee-script-source (~> 1.11.1)
|
|
110
|
+
jekyll-commonmark (1.4.0)
|
|
111
|
+
commonmarker (~> 0.22)
|
|
112
|
+
jekyll-commonmark-ghpages (0.2.0)
|
|
113
|
+
commonmarker (~> 0.23.4)
|
|
114
|
+
jekyll (~> 3.9.0)
|
|
115
|
+
jekyll-commonmark (~> 1.4.0)
|
|
116
|
+
rouge (>= 2.0, < 4.0)
|
|
117
|
+
jekyll-default-layout (0.1.4)
|
|
118
|
+
jekyll (~> 3.0)
|
|
119
|
+
jekyll-feed (0.15.1)
|
|
120
|
+
jekyll (>= 3.7, < 5.0)
|
|
121
|
+
jekyll-gist (1.5.0)
|
|
122
|
+
octokit (~> 4.2)
|
|
123
|
+
jekyll-github-metadata (2.13.0)
|
|
124
|
+
jekyll (>= 3.4, < 5.0)
|
|
125
|
+
octokit (~> 4.0, != 4.4.0)
|
|
126
|
+
jekyll-include-cache (0.2.1)
|
|
127
|
+
jekyll (>= 3.7, < 5.0)
|
|
128
|
+
jekyll-mentions (1.6.0)
|
|
129
|
+
html-pipeline (~> 2.3)
|
|
130
|
+
jekyll (>= 3.7, < 5.0)
|
|
131
|
+
jekyll-optional-front-matter (0.3.2)
|
|
132
|
+
jekyll (>= 3.0, < 5.0)
|
|
133
|
+
jekyll-paginate (1.1.0)
|
|
134
|
+
jekyll-readme-index (0.3.0)
|
|
135
|
+
jekyll (>= 3.0, < 5.0)
|
|
136
|
+
jekyll-redirect-from (0.16.0)
|
|
137
|
+
jekyll (>= 3.3, < 5.0)
|
|
138
|
+
jekyll-relative-links (0.6.1)
|
|
139
|
+
jekyll (>= 3.3, < 5.0)
|
|
140
|
+
jekyll-remote-theme (0.4.3)
|
|
141
|
+
addressable (~> 2.0)
|
|
142
|
+
jekyll (>= 3.5, < 5.0)
|
|
143
|
+
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
|
|
144
|
+
rubyzip (>= 1.3.0, < 3.0)
|
|
145
|
+
jekyll-sass-converter (1.5.2)
|
|
146
|
+
sass (~> 3.4)
|
|
147
|
+
jekyll-seo-tag (2.8.0)
|
|
148
|
+
jekyll (>= 3.8, < 5.0)
|
|
149
|
+
jekyll-sitemap (1.4.0)
|
|
150
|
+
jekyll (>= 3.7, < 5.0)
|
|
151
|
+
jekyll-swiss (1.0.0)
|
|
152
|
+
jekyll-theme-architect (0.2.0)
|
|
153
|
+
jekyll (> 3.5, < 5.0)
|
|
154
|
+
jekyll-seo-tag (~> 2.0)
|
|
155
|
+
jekyll-theme-cayman (0.2.0)
|
|
156
|
+
jekyll (> 3.5, < 5.0)
|
|
157
|
+
jekyll-seo-tag (~> 2.0)
|
|
158
|
+
jekyll-theme-dinky (0.2.0)
|
|
159
|
+
jekyll (> 3.5, < 5.0)
|
|
160
|
+
jekyll-seo-tag (~> 2.0)
|
|
161
|
+
jekyll-theme-hacker (0.2.0)
|
|
162
|
+
jekyll (> 3.5, < 5.0)
|
|
163
|
+
jekyll-seo-tag (~> 2.0)
|
|
164
|
+
jekyll-theme-leap-day (0.2.0)
|
|
165
|
+
jekyll (> 3.5, < 5.0)
|
|
166
|
+
jekyll-seo-tag (~> 2.0)
|
|
167
|
+
jekyll-theme-merlot (0.2.0)
|
|
168
|
+
jekyll (> 3.5, < 5.0)
|
|
169
|
+
jekyll-seo-tag (~> 2.0)
|
|
170
|
+
jekyll-theme-midnight (0.2.0)
|
|
171
|
+
jekyll (> 3.5, < 5.0)
|
|
172
|
+
jekyll-seo-tag (~> 2.0)
|
|
173
|
+
jekyll-theme-minimal (0.2.0)
|
|
174
|
+
jekyll (> 3.5, < 5.0)
|
|
175
|
+
jekyll-seo-tag (~> 2.0)
|
|
176
|
+
jekyll-theme-modernist (0.2.0)
|
|
177
|
+
jekyll (> 3.5, < 5.0)
|
|
178
|
+
jekyll-seo-tag (~> 2.0)
|
|
179
|
+
jekyll-theme-primer (0.6.0)
|
|
180
|
+
jekyll (> 3.5, < 5.0)
|
|
181
|
+
jekyll-github-metadata (~> 2.9)
|
|
182
|
+
jekyll-seo-tag (~> 2.0)
|
|
183
|
+
jekyll-theme-slate (0.2.0)
|
|
184
|
+
jekyll (> 3.5, < 5.0)
|
|
185
|
+
jekyll-seo-tag (~> 2.0)
|
|
186
|
+
jekyll-theme-tactile (0.2.0)
|
|
187
|
+
jekyll (> 3.5, < 5.0)
|
|
188
|
+
jekyll-seo-tag (~> 2.0)
|
|
189
|
+
jekyll-theme-time-machine (0.2.0)
|
|
190
|
+
jekyll (> 3.5, < 5.0)
|
|
191
|
+
jekyll-seo-tag (~> 2.0)
|
|
192
|
+
jekyll-titles-from-headings (0.5.3)
|
|
193
|
+
jekyll (>= 3.3, < 5.0)
|
|
194
|
+
jekyll-watch (2.2.1)
|
|
195
|
+
listen (~> 3.0)
|
|
196
|
+
jemoji (0.12.0)
|
|
197
|
+
gemoji (~> 3.0)
|
|
198
|
+
html-pipeline (~> 2.2)
|
|
199
|
+
jekyll (>= 3.0, < 5.0)
|
|
200
|
+
kramdown (2.3.2)
|
|
201
|
+
rexml
|
|
202
|
+
kramdown-parser-gfm (1.1.0)
|
|
203
|
+
kramdown (~> 2.0)
|
|
204
|
+
liquid (4.0.3)
|
|
205
|
+
listen (3.7.1)
|
|
206
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
207
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
208
|
+
mercenary (0.3.6)
|
|
209
|
+
minima (2.5.1)
|
|
210
|
+
jekyll (>= 3.5, < 5.0)
|
|
211
|
+
jekyll-feed (~> 0.9)
|
|
212
|
+
jekyll-seo-tag (~> 2.1)
|
|
213
|
+
minitest (5.16.3)
|
|
214
|
+
nokogiri (1.13.8-x86_64-darwin)
|
|
215
|
+
racc (~> 1.4)
|
|
216
|
+
octokit (4.25.1)
|
|
217
|
+
faraday (>= 1, < 3)
|
|
218
|
+
sawyer (~> 0.9)
|
|
219
|
+
pathutil (0.16.2)
|
|
220
|
+
forwardable-extended (~> 2.6)
|
|
221
|
+
public_suffix (4.0.7)
|
|
222
|
+
racc (1.6.0)
|
|
223
|
+
rb-fsevent (0.11.2)
|
|
224
|
+
rb-inotify (0.10.1)
|
|
225
|
+
ffi (~> 1.0)
|
|
226
|
+
rexml (3.2.5)
|
|
227
|
+
rouge (3.26.0)
|
|
228
|
+
ruby2_keywords (0.0.5)
|
|
229
|
+
rubyzip (2.3.2)
|
|
230
|
+
safe_yaml (1.0.5)
|
|
231
|
+
sass (3.7.4)
|
|
232
|
+
sass-listen (~> 4.0.0)
|
|
233
|
+
sass-listen (4.0.0)
|
|
234
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
235
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
236
|
+
sawyer (0.9.2)
|
|
237
|
+
addressable (>= 2.3.5)
|
|
238
|
+
faraday (>= 0.17.3, < 3)
|
|
239
|
+
simpleidn (0.2.1)
|
|
240
|
+
unf (~> 0.1.4)
|
|
241
|
+
terminal-table (1.8.0)
|
|
242
|
+
unicode-display_width (~> 1.1, >= 1.1.1)
|
|
243
|
+
thread_safe (0.3.6)
|
|
244
|
+
typhoeus (1.4.0)
|
|
245
|
+
ethon (>= 0.9.0)
|
|
246
|
+
tzinfo (1.2.10)
|
|
247
|
+
thread_safe (~> 0.1)
|
|
248
|
+
unf (0.1.4)
|
|
249
|
+
unf_ext
|
|
250
|
+
unf_ext (0.0.8.2)
|
|
251
|
+
unicode-display_width (1.8.0)
|
|
252
|
+
webrick (1.7.0)
|
|
253
|
+
zeitwerk (2.6.1)
|
|
254
|
+
|
|
255
|
+
PLATFORMS
|
|
256
|
+
x86_64-darwin-21
|
|
257
|
+
|
|
258
|
+
DEPENDENCIES
|
|
259
|
+
github-pages (~> 227)
|
|
260
|
+
http_parser.rb (~> 0.6.0)
|
|
261
|
+
jekyll (~> 3.9.2)
|
|
262
|
+
jekyll-feed (~> 0.12)
|
|
263
|
+
minima (~> 2.5)
|
|
264
|
+
tzinfo (~> 1.2)
|
|
265
|
+
tzinfo-data
|
|
266
|
+
wdm (~> 0.1.1)
|
|
267
|
+
webrick (~> 1.7)
|
|
268
|
+
|
|
269
|
+
BUNDLED WITH
|
|
270
|
+
2.3.23
|
package/docs/_config.yml
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Welcome to Jekyll!
|
|
2
|
+
#
|
|
3
|
+
# This config file is meant for settings that affect your whole blog, values
|
|
4
|
+
# which you are expected to set up once and rarely edit after that. If you find
|
|
5
|
+
# yourself editing this file very often, consider using Jekyll's data files
|
|
6
|
+
# feature for the data you need to update frequently.
|
|
7
|
+
#
|
|
8
|
+
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
|
9
|
+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
|
10
|
+
#
|
|
11
|
+
# If you need help with YAML syntax, here are some quick references for you:
|
|
12
|
+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
|
13
|
+
# https://learnxinyminutes.com/docs/yaml/
|
|
14
|
+
#
|
|
15
|
+
# Site settings
|
|
16
|
+
# These are used to personalize your new site. If you look in the HTML files,
|
|
17
|
+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
|
18
|
+
# You can create any custom variable you would like, and they will be accessible
|
|
19
|
+
# in the templates via {{ site.myvariable }}.
|
|
20
|
+
|
|
21
|
+
title: Adobe Campaign Javascript SDK
|
|
22
|
+
email: amorin@adobe.com
|
|
23
|
+
description: >- # this means to ignore newlines until "baseurl:"
|
|
24
|
+
The ACC JS SDK is an isomorphic Javascript SDK to access the Adobe Campaign
|
|
25
|
+
API from a node.js or a browser environment, with a syntax which is as
|
|
26
|
+
close as possible as Campaign internal JavaScript SDK
|
|
27
|
+
baseurl: "/acc-js-sdk" # the subpath of your site, e.g. /blog
|
|
28
|
+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
|
29
|
+
#twitter_username: jekyllrb
|
|
30
|
+
github_username: mkiki
|
|
31
|
+
|
|
32
|
+
# Build settings
|
|
33
|
+
#theme: minima
|
|
34
|
+
plugins:
|
|
35
|
+
- jekyll-feed
|
|
36
|
+
|
|
37
|
+
# Exclude from processing.
|
|
38
|
+
# The following items will not be processed, by default.
|
|
39
|
+
# Any item listed under the `exclude:` key here will be automatically added to
|
|
40
|
+
# the internal "default list".
|
|
41
|
+
#
|
|
42
|
+
# Excluded items can be processed by explicitly listing the directories or
|
|
43
|
+
# their entries' file path in the `include:` list.
|
|
44
|
+
#
|
|
45
|
+
# exclude:
|
|
46
|
+
# - .sass-cache/
|
|
47
|
+
# - .jekyll-cache/
|
|
48
|
+
# - gemfiles/
|
|
49
|
+
# - Gemfile
|
|
50
|
+
# - Gemfile.lock
|
|
51
|
+
# - node_modules/
|
|
52
|
+
# - vendor/bundle/
|
|
53
|
+
# - vendor/cache/
|
|
54
|
+
# - vendor/gems/
|
|
55
|
+
# - vendor/ruby/
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
- name: Home
|
|
2
|
+
link: index.html
|
|
3
|
+
- name: Quick Start
|
|
4
|
+
link: quickstart.html
|
|
5
|
+
- name: Installation
|
|
6
|
+
link: installation.html
|
|
7
|
+
- name: Sample Code
|
|
8
|
+
link: samples.html
|
|
9
|
+
- name: Best Practices
|
|
10
|
+
link: bestPractices.html
|
|
11
|
+
- name: Troubleshooting
|
|
12
|
+
link: troubleshooting.html
|
|
13
|
+
- name: --
|
|
14
|
+
- name: Blog (latest posts)
|
|
15
|
+
link: blog.html
|
|
16
|
+
- name: --
|
|
17
|
+
- name: Documentation
|
|
18
|
+
link: documentation.html
|
|
19
|
+
children:
|
|
20
|
+
- name: Connecting to Campaign
|
|
21
|
+
link: connecting.html
|
|
22
|
+
- name: Concepts
|
|
23
|
+
link: concepts.html
|
|
24
|
+
- name: SOAP APIs
|
|
25
|
+
link: soapAPIs.html
|
|
26
|
+
- name: Data Types
|
|
27
|
+
link: dataTypes.html
|
|
28
|
+
- name: Type conversion (XtkCaster)
|
|
29
|
+
link: xtkCaster.html
|
|
30
|
+
- name: Escaping
|
|
31
|
+
link: escaping.html
|
|
32
|
+
- name: Handling Errors
|
|
33
|
+
link: errors.html
|
|
34
|
+
- name: Architecture
|
|
35
|
+
link: architecture.html
|
|
36
|
+
- name: --
|
|
37
|
+
- name: Campaign API
|
|
38
|
+
children:
|
|
39
|
+
- name: xtk:session API
|
|
40
|
+
link: xtkSession.html
|
|
41
|
+
- name: xtk:queryDef API
|
|
42
|
+
link: xtkQueryDef.html
|
|
43
|
+
- name: Profiles & Subscriptions
|
|
44
|
+
link: profiles.html
|
|
45
|
+
- name: Writer API
|
|
46
|
+
link: xtkWrite.html
|
|
47
|
+
- name: xtk:option API
|
|
48
|
+
link: xtkOption.html
|
|
49
|
+
- name: Packages
|
|
50
|
+
link: xtkPackage.html
|
|
51
|
+
- name: xtk:persist (CRUD operations)
|
|
52
|
+
link: xtkPersist.html
|
|
53
|
+
- name: The Schema API
|
|
54
|
+
link: xtkSchema.html
|
|
55
|
+
- name: The Application object
|
|
56
|
+
link: application.html
|
|
57
|
+
- name: Workflow API
|
|
58
|
+
link: xtkWorkflow.html
|
|
59
|
+
- name: Health Check
|
|
60
|
+
link: healthCheck.html
|
|
61
|
+
- name: Mid-sourcing
|
|
62
|
+
link: midSourcing.html
|
|
63
|
+
- name: Message Center
|
|
64
|
+
link: messageCenter.html
|
|
65
|
+
- name: --
|
|
66
|
+
- name: Advanced Topics
|
|
67
|
+
children:
|
|
68
|
+
- name: Working with XML, DOM Helper
|
|
69
|
+
link: domHelper.html
|
|
70
|
+
- name: Connection Parameters
|
|
71
|
+
link: connectionParameters
|
|
72
|
+
- name: XML <-> JSON conversion
|
|
73
|
+
link: xml2json
|
|
74
|
+
- name: SimpleJson format
|
|
75
|
+
link: simpleJson.html
|
|
76
|
+
- name: BadgerFish format
|
|
77
|
+
link: badgerFish.html
|
|
78
|
+
- name: Caches
|
|
79
|
+
link: caches.html
|
|
80
|
+
- name: Method-level representation
|
|
81
|
+
link: methodLevelRepresentation.html
|
|
82
|
+
- name: XTK Interfaces
|
|
83
|
+
link: xtkInterface.html
|
|
84
|
+
- name: Handling timeouts
|
|
85
|
+
link: timeouts.html
|
|
86
|
+
- name: HTTP Headers
|
|
87
|
+
link: httpHeaders.html
|
|
88
|
+
- name: The Transport Protocol
|
|
89
|
+
link: transport.html
|
|
90
|
+
- name: Observability
|
|
91
|
+
link: observability.html
|
|
92
|
+
- name: Dynamic Invocation
|
|
93
|
+
link: dynamicInvoke.html
|
|
94
|
+
- name: Push down mechanism
|
|
95
|
+
link: pushDown.html
|
|
96
|
+
- name: The Entity Accessor
|
|
97
|
+
link: entityAccessor.html
|
|
98
|
+
- name: Passwords
|
|
99
|
+
link: passwords.html
|
|
100
|
+
- name: Differences between the SDK and Campaign
|
|
101
|
+
link: differences.html
|
|
102
|
+
- name: --
|
|
103
|
+
- name: Contributing
|
|
104
|
+
children:
|
|
105
|
+
- name: Contributing
|
|
106
|
+
link: contribute.html
|
|
107
|
+
- name: Build & Run
|
|
108
|
+
link: buildAndRun.html
|
|
109
|
+
- name: Writing documentation
|
|
110
|
+
link: writeDoc.html
|
|
111
|
+
- name: Commit Checklist
|
|
112
|
+
link: checkList.html
|
|
113
|
+
- name: Releasing a new version
|
|
114
|
+
link: release.html
|
|
115
|
+
- name: --
|
|
116
|
+
- name: License
|
|
117
|
+
link: license.html
|
|
118
|
+
- name: Change log
|
|
119
|
+
link: changeLog.html
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<nav>
|
|
2
|
+
<ul>
|
|
3
|
+
{% for item in site.data.navigation %}
|
|
4
|
+
<li>
|
|
5
|
+
{% if item.link %}
|
|
6
|
+
<a href="{{ site.baseurl }}/{{ item.link }}" {% if page.url == item.link %}style="color: red;"{% endif %}>
|
|
7
|
+
{{ item.name }}
|
|
8
|
+
</a>
|
|
9
|
+
{% else %}
|
|
10
|
+
{% if item.name == '--' %}
|
|
11
|
+
|
|
12
|
+
{% else %}
|
|
13
|
+
{{ item.name }}
|
|
14
|
+
{% endif %}
|
|
15
|
+
{% endif %}
|
|
16
|
+
|
|
17
|
+
{% if item.children %}
|
|
18
|
+
<ul>
|
|
19
|
+
|
|
20
|
+
{% for child in item.children %}
|
|
21
|
+
<li>
|
|
22
|
+
<a href="{{ site.baseurl }}/{{ child.link }}" {% if page.url == child.link %}style="color: red;"{% endif %}>
|
|
23
|
+
{{ child.name }}
|
|
24
|
+
</a>
|
|
25
|
+
</li>
|
|
26
|
+
{% endfor %}
|
|
27
|
+
|
|
28
|
+
</ul>
|
|
29
|
+
{% endif %}
|
|
30
|
+
</li>
|
|
31
|
+
{% endfor %}
|
|
32
|
+
</ul>
|
|
33
|
+
</nav>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>{{ page.title }}</title>
|
|
6
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/styles.css">
|
|
7
|
+
<link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/favicon.png">
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div class="header">
|
|
11
|
+
<div class="logo" onclick="location.href='./index.html'"><img src="{{ site.baseurl }}/assets/images/adobe-campaign-256.png"></img></div>
|
|
12
|
+
<h1 onclick="location.href='{{ site.baseurl }}/index.html'">Adobe Campaign JavaScript SDK</h1>
|
|
13
|
+
</div>
|
|
14
|
+
{% include navigation.html %}
|
|
15
|
+
<div class="body">
|
|
16
|
+
{{ content }}
|
|
17
|
+
</div>
|
|
18
|
+
<div class="footer">
|
|
19
|
+
</div>
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|