retold 1.0.6 → 4.0.2

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.
Files changed (119) hide show
  1. package/.claude/settings.local.json +84 -0
  2. package/CLAUDE.md +52 -0
  3. package/docs/.nojekyll +0 -0
  4. package/docs/README.md +162 -0
  5. package/docs/_sidebar.md +78 -0
  6. package/docs/_topbar.md +6 -0
  7. package/docs/architecture/architecture.md +312 -0
  8. package/docs/architecture/module-architecture.md +234 -0
  9. package/docs/architecture/modules.md +99 -0
  10. package/docs/cover.md +15 -0
  11. package/docs/css/docuserve.css +73 -0
  12. package/docs/examples/examples.md +71 -0
  13. package/docs/examples/todolist/todo-list-cli-client.md +178 -0
  14. package/docs/examples/todolist/todo-list-console-client.md +152 -0
  15. package/docs/examples/todolist/todo-list-model.md +114 -0
  16. package/docs/examples/todolist/todo-list-server.md +128 -0
  17. package/docs/examples/todolist/todo-list-web-client.md +177 -0
  18. package/docs/examples/todolist/todo-list.md +162 -0
  19. package/docs/getting-started.md +273 -0
  20. package/docs/index.html +39 -0
  21. package/docs/modules/fable.md +198 -0
  22. package/docs/modules/meadow.md +209 -0
  23. package/docs/modules/orator.md +165 -0
  24. package/docs/modules/pict.md +235 -0
  25. package/docs/modules/utility.md +54 -0
  26. package/docs/retold-building-documentation.md +33 -0
  27. package/docs/retold-catalog.json +1405 -0
  28. package/docs/retold-keyword-index.json +203389 -0
  29. package/examples/quickstart/README.md +47 -0
  30. package/examples/quickstart/layer1/README.md +21 -0
  31. package/examples/quickstart/layer1/index.js +49 -0
  32. package/examples/quickstart/layer1/package-lock.json +344 -0
  33. package/examples/quickstart/layer1/package.json +12 -0
  34. package/examples/quickstart/layer2/README.md +34 -0
  35. package/examples/quickstart/layer2/index.js +251 -0
  36. package/examples/quickstart/layer2/package-lock.json +4468 -0
  37. package/examples/quickstart/layer2/package.json +17 -0
  38. package/examples/quickstart/layer2/setup-database.js +61 -0
  39. package/examples/quickstart/layer3/README.md +39 -0
  40. package/examples/quickstart/layer3/index.js +91 -0
  41. package/examples/quickstart/layer3/package-lock.json +1936 -0
  42. package/examples/quickstart/layer3/package.json +14 -0
  43. package/examples/quickstart/layer4/README.md +47 -0
  44. package/examples/quickstart/layer4/generate-build-config.js +18 -0
  45. package/examples/quickstart/layer4/html/index.html +17 -0
  46. package/examples/quickstart/layer4/package-lock.json +13206 -0
  47. package/examples/quickstart/layer4/package.json +38 -0
  48. package/examples/quickstart/layer4/server.js +28 -0
  49. package/examples/quickstart/layer4/source/BookStore-Application-Config.json +15 -0
  50. package/examples/quickstart/layer4/source/BookStore-Application.js +54 -0
  51. package/examples/quickstart/layer4/source/providers/Router-Config.json +18 -0
  52. package/examples/quickstart/layer4/source/views/View-About.js +38 -0
  53. package/examples/quickstart/layer4/source/views/View-Home.js +50 -0
  54. package/examples/quickstart/layer4/source/views/View-Layout.js +60 -0
  55. package/examples/quickstart/layer5/README.md +26 -0
  56. package/examples/quickstart/layer5/index.js +121 -0
  57. package/examples/quickstart/layer5/package-lock.json +345 -0
  58. package/examples/quickstart/layer5/package.json +13 -0
  59. package/examples/todo-list/Dockerfile +45 -0
  60. package/examples/todo-list/README.md +394 -0
  61. package/examples/todo-list/cli-client/package-lock.json +418 -0
  62. package/examples/todo-list/cli-client/package.json +19 -0
  63. package/examples/todo-list/cli-client/source/TodoCLI-CLIProgram.js +30 -0
  64. package/examples/todo-list/cli-client/source/TodoCLI-Run.js +3 -0
  65. package/examples/todo-list/cli-client/source/commands/add/TodoCLI-Command-Add.js +74 -0
  66. package/examples/todo-list/cli-client/source/commands/complete/TodoCLI-Command-Complete.js +84 -0
  67. package/examples/todo-list/cli-client/source/commands/list/TodoCLI-Command-List.js +110 -0
  68. package/examples/todo-list/cli-client/source/commands/remove/TodoCLI-Command-Remove.js +49 -0
  69. package/examples/todo-list/cli-client/source/services/TodoCLI-Service-API.js +92 -0
  70. package/examples/todo-list/console-client/console-client.cjs +913 -0
  71. package/examples/todo-list/console-client/package-lock.json +426 -0
  72. package/examples/todo-list/console-client/package.json +19 -0
  73. package/examples/todo-list/console-client/views/PictView-TUI-Header.cjs +43 -0
  74. package/examples/todo-list/console-client/views/PictView-TUI-Layout.cjs +58 -0
  75. package/examples/todo-list/console-client/views/PictView-TUI-StatusBar.cjs +41 -0
  76. package/examples/todo-list/console-client/views/PictView-TUI-TaskList.cjs +104 -0
  77. package/examples/todo-list/docker-motd.sh +36 -0
  78. package/examples/todo-list/docker-run.sh +2 -0
  79. package/examples/todo-list/docker-shell.sh +2 -0
  80. package/examples/todo-list/model/MeadowSchema-Task.json +152 -0
  81. package/examples/todo-list/model/Task-Compiled.json +25 -0
  82. package/examples/todo-list/model/Task.mddl +15 -0
  83. package/examples/todo-list/model/data/seeded_todo_events.csv +1001 -0
  84. package/examples/todo-list/server/database-initialization-service.cjs +273 -0
  85. package/examples/todo-list/server/package-lock.json +6113 -0
  86. package/examples/todo-list/server/package.json +19 -0
  87. package/examples/todo-list/server/server.cjs +138 -0
  88. package/examples/todo-list/web-client/css/todolist-theme.css +235 -0
  89. package/examples/todo-list/web-client/generate-build-config.cjs +18 -0
  90. package/examples/todo-list/web-client/html/index.html +18 -0
  91. package/examples/todo-list/web-client/package-lock.json +12030 -0
  92. package/examples/todo-list/web-client/package.json +43 -0
  93. package/examples/todo-list/web-client/source/TodoList-Application-Config.json +12 -0
  94. package/examples/todo-list/web-client/source/TodoList-Application.cjs +383 -0
  95. package/examples/todo-list/web-client/source/providers/Provider-TaskData.cjs +243 -0
  96. package/examples/todo-list/web-client/source/providers/Router-Config.json +32 -0
  97. package/examples/todo-list/web-client/source/views/View-Layout.cjs +75 -0
  98. package/examples/todo-list/web-client/source/views/View-TaskForm.cjs +87 -0
  99. package/examples/todo-list/web-client/source/views/View-TaskList.cjs +127 -0
  100. package/examples/todo-list/web-client/source/views/calendar/View-MonthView.cjs +293 -0
  101. package/examples/todo-list/web-client/source/views/calendar/View-WeekView.cjs +149 -0
  102. package/examples/todo-list/web-client/source/views/calendar/View-YearView.cjs +226 -0
  103. package/modules/.claude/settings.local.json +52 -0
  104. package/modules/CLAUDE.md +60 -0
  105. package/modules/Checkout.sh +42 -0
  106. package/modules/Include-Retold-Module-List.sh +15 -0
  107. package/modules/Retold-Modules.md +24 -0
  108. package/modules/Status.sh +59 -0
  109. package/modules/Update.sh +45 -0
  110. package/modules/fable/Fable.md +2 -0
  111. package/modules/meadow/Meadow.md +1 -0
  112. package/modules/orator/Orator.md +1 -0
  113. package/modules/pict/Pict.md +1 -0
  114. package/package.json +30 -35
  115. package/source/Retold.cjs +2 -0
  116. package/test/Retold_tests.js +23 -41
  117. package/.travis.yml +0 -13
  118. package/source/Retold-Meadow-Macros.js +0 -269
  119. package/source/Retold.js +0 -48
@@ -0,0 +1,1405 @@
1
+ {
2
+ "Generated": "2026-02-16T20:23:11.431Z",
3
+ "GitHubOrg": "stevenvelozo",
4
+ "DefaultBranch": "master",
5
+ "Groups": [
6
+ {
7
+ "Name": "Dist",
8
+ "Key": "dist",
9
+ "Description": "",
10
+ "Modules": [
11
+ {
12
+ "Name": "indoctrinate_content_staging",
13
+ "Repo": "indoctrinate_content_staging",
14
+ "Group": "dist",
15
+ "Branch": "master",
16
+ "HasDocs": false,
17
+ "HasCover": false,
18
+ "Sidebar": [],
19
+ "DocFiles": []
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "Name": "Docs",
25
+ "Key": "docs",
26
+ "Description": "",
27
+ "Modules": [
28
+ {
29
+ "Name": "architecture",
30
+ "Repo": "architecture",
31
+ "Group": "docs",
32
+ "Branch": "master",
33
+ "HasDocs": true,
34
+ "HasCover": false,
35
+ "Sidebar": [],
36
+ "DocFiles": [
37
+ "architecture/architecture.md",
38
+ "architecture/module-architecture.md",
39
+ "architecture/modules.md"
40
+ ]
41
+ },
42
+ {
43
+ "Name": "css",
44
+ "Repo": "css",
45
+ "Group": "docs",
46
+ "Branch": "master",
47
+ "HasDocs": true,
48
+ "HasCover": false,
49
+ "Sidebar": [],
50
+ "DocFiles": [
51
+ "css/docuserve.css"
52
+ ]
53
+ },
54
+ {
55
+ "Name": "examples",
56
+ "Repo": "examples",
57
+ "Group": "docs",
58
+ "Branch": "master",
59
+ "HasDocs": true,
60
+ "HasCover": false,
61
+ "Sidebar": [],
62
+ "DocFiles": [
63
+ "examples/examples.md",
64
+ "examples/todolist/todo-list-cli-client.md",
65
+ "examples/todolist/todo-list-console-client.md",
66
+ "examples/todolist/todo-list-model.md",
67
+ "examples/todolist/todo-list-server.md",
68
+ "examples/todolist/todo-list-web-client.md",
69
+ "examples/todolist/todo-list.md"
70
+ ]
71
+ },
72
+ {
73
+ "Name": "js",
74
+ "Repo": "js",
75
+ "Group": "docs",
76
+ "Branch": "master",
77
+ "HasDocs": true,
78
+ "HasCover": false,
79
+ "Sidebar": [],
80
+ "DocFiles": [
81
+ "js/pict-docuserve.min.js",
82
+ "js/pict-docuserve.min.js.map"
83
+ ]
84
+ },
85
+ {
86
+ "Name": "modules",
87
+ "Repo": "modules",
88
+ "Group": "docs",
89
+ "Branch": "master",
90
+ "HasDocs": true,
91
+ "HasCover": false,
92
+ "Sidebar": [],
93
+ "DocFiles": [
94
+ "modules/fable.md",
95
+ "modules/meadow.md",
96
+ "modules/orator.md",
97
+ "modules/pict.md",
98
+ "modules/utility.md"
99
+ ]
100
+ }
101
+ ]
102
+ },
103
+ {
104
+ "Name": "Examples",
105
+ "Key": "examples",
106
+ "Description": "",
107
+ "Modules": [
108
+ {
109
+ "Name": "quickstart",
110
+ "Repo": "quickstart",
111
+ "Group": "examples",
112
+ "Branch": "master",
113
+ "HasDocs": false,
114
+ "HasCover": false,
115
+ "Sidebar": [],
116
+ "DocFiles": []
117
+ },
118
+ {
119
+ "Name": "todo-list",
120
+ "Repo": "todo-list",
121
+ "Group": "examples",
122
+ "Branch": "master",
123
+ "HasDocs": false,
124
+ "HasCover": false,
125
+ "Sidebar": [],
126
+ "DocFiles": []
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "Name": "Modules",
132
+ "Key": "modules",
133
+ "Description": "",
134
+ "Modules": [
135
+ {
136
+ "Name": ".claude",
137
+ "Repo": ".claude",
138
+ "Group": "modules",
139
+ "Branch": "master",
140
+ "HasDocs": false,
141
+ "HasCover": false,
142
+ "Sidebar": [],
143
+ "DocFiles": []
144
+ },
145
+ {
146
+ "Name": "dist",
147
+ "Repo": "dist",
148
+ "Group": "modules",
149
+ "Branch": "master",
150
+ "HasDocs": false,
151
+ "HasCover": false,
152
+ "Sidebar": [],
153
+ "DocFiles": []
154
+ },
155
+ {
156
+ "Name": "fable",
157
+ "Repo": "fable",
158
+ "Group": "modules",
159
+ "Branch": "master",
160
+ "HasDocs": true,
161
+ "HasCover": true,
162
+ "Sidebar": [
163
+ {
164
+ "Title": "Getting Started",
165
+ "Children": [
166
+ {
167
+ "Title": "Introduction",
168
+ "Path": "README.md"
169
+ },
170
+ {
171
+ "Title": "Configuration",
172
+ "Path": "configuration.md"
173
+ }
174
+ ]
175
+ },
176
+ {
177
+ "Title": "Reference",
178
+ "Children": [
179
+ {
180
+ "Title": "API Reference",
181
+ "Path": "api.md"
182
+ },
183
+ {
184
+ "Title": "Browser Support",
185
+ "Path": "browser-support.md"
186
+ }
187
+ ]
188
+ },
189
+ {
190
+ "Title": "Project",
191
+ "Children": [
192
+ {
193
+ "Title": "Resources",
194
+ "Path": "resources.md"
195
+ },
196
+ {
197
+ "Title": "Contributing",
198
+ "Path": "contributing.md"
199
+ },
200
+ {
201
+ "Title": "Changelog",
202
+ "Path": "changelog.md"
203
+ }
204
+ ]
205
+ }
206
+ ],
207
+ "DocFiles": [
208
+ ".nojekyll",
209
+ "README.md",
210
+ "_sidebar.md",
211
+ "architecture.md",
212
+ "cover.md",
213
+ "index.html",
214
+ "services/README.md",
215
+ "services/anticipate.md",
216
+ "services/csv-parser.md",
217
+ "services/data-format.md",
218
+ "services/data-generation.md",
219
+ "services/dates.md",
220
+ "services/environment-data.md",
221
+ "services/expression-parser-functions/README.md",
222
+ "services/expression-parser-functions/abs.md",
223
+ "services/expression-parser-functions/aggregationhistogram.md",
224
+ "services/expression-parser-functions/aggregationhistogrambyobject.md",
225
+ "services/expression-parser-functions/arrayconcat.md",
226
+ "services/expression-parser-functions/avg.md",
227
+ "services/expression-parser-functions/bucketset.md",
228
+ "services/expression-parser-functions/ceil.md",
229
+ "services/expression-parser-functions/cleanvaluearray.md",
230
+ "services/expression-parser-functions/cleanvalueobject.md",
231
+ "services/expression-parser-functions/compare.md",
232
+ "services/expression-parser-functions/concat.md",
233
+ "services/expression-parser-functions/concatraw.md",
234
+ "services/expression-parser-functions/cos.md",
235
+ "services/expression-parser-functions/count.md",
236
+ "services/expression-parser-functions/countset.md",
237
+ "services/expression-parser-functions/countsetelements.md",
238
+ "services/expression-parser-functions/createarrayfromabsolutevalues.md",
239
+ "services/expression-parser-functions/createvalueobjectbyhashes.md",
240
+ "services/expression-parser-functions/cumulativesummation.md",
241
+ "services/expression-parser-functions/dateadddays.md",
242
+ "services/expression-parser-functions/dateaddhours.md",
243
+ "services/expression-parser-functions/dateaddmilliseconds.md",
244
+ "services/expression-parser-functions/dateaddminutes.md",
245
+ "services/expression-parser-functions/dateaddmonths.md",
246
+ "services/expression-parser-functions/dateaddseconds.md",
247
+ "services/expression-parser-functions/dateaddweeks.md",
248
+ "services/expression-parser-functions/dateaddyears.md",
249
+ "services/expression-parser-functions/datedaydifference.md",
250
+ "services/expression-parser-functions/datefromparts.md",
251
+ "services/expression-parser-functions/datehourdifference.md",
252
+ "services/expression-parser-functions/datemathadd.md",
253
+ "services/expression-parser-functions/datemilliseconddifference.md",
254
+ "services/expression-parser-functions/dateminutedifference.md",
255
+ "services/expression-parser-functions/datemonthdifference.md",
256
+ "services/expression-parser-functions/dateseconddifference.md",
257
+ "services/expression-parser-functions/dateweekdifference.md",
258
+ "services/expression-parser-functions/dateyeardifference.md",
259
+ "services/expression-parser-functions/distributionhistogram.md",
260
+ "services/expression-parser-functions/distributionhistogrambyobject.md",
261
+ "services/expression-parser-functions/entryinset.md",
262
+ "services/expression-parser-functions/euler.md",
263
+ "services/expression-parser-functions/exp.md",
264
+ "services/expression-parser-functions/findfirstvaluebyexactmatch.md",
265
+ "services/expression-parser-functions/findfirstvaluebystringincludes.md",
266
+ "services/expression-parser-functions/flatten.md",
267
+ "services/expression-parser-functions/floor.md",
268
+ "services/expression-parser-functions/gaussianelimination.md",
269
+ "services/expression-parser-functions/generatearrayofobjectsfromsets.md",
270
+ "services/expression-parser-functions/getvalue.md",
271
+ "services/expression-parser-functions/getvaluearray.md",
272
+ "services/expression-parser-functions/getvalueobject.md",
273
+ "services/expression-parser-functions/if.md",
274
+ "services/expression-parser-functions/iterativeseries.md",
275
+ "services/expression-parser-functions/join.md",
276
+ "services/expression-parser-functions/joinraw.md",
277
+ "services/expression-parser-functions/largestinset.md",
278
+ "services/expression-parser-functions/leastsquares.md",
279
+ "services/expression-parser-functions/linest.md",
280
+ "services/expression-parser-functions/log.md",
281
+ "services/expression-parser-functions/match.md",
282
+ "services/expression-parser-functions/matrixinverse.md",
283
+ "services/expression-parser-functions/matrixmultiply.md",
284
+ "services/expression-parser-functions/matrixtranspose.md",
285
+ "services/expression-parser-functions/matrixvectormultiply.md",
286
+ "services/expression-parser-functions/max.md",
287
+ "services/expression-parser-functions/mean.md",
288
+ "services/expression-parser-functions/median.md",
289
+ "services/expression-parser-functions/min.md",
290
+ "services/expression-parser-functions/mode.md",
291
+ "services/expression-parser-functions/objectkeystoarray.md",
292
+ "services/expression-parser-functions/objectvaluessortbyexternalobjectarray.md",
293
+ "services/expression-parser-functions/objectvaluestoarray.md",
294
+ "services/expression-parser-functions/percent.md",
295
+ "services/expression-parser-functions/pi.md",
296
+ "services/expression-parser-functions/polynomialregression.md",
297
+ "services/expression-parser-functions/predict.md",
298
+ "services/expression-parser-functions/rad.md",
299
+ "services/expression-parser-functions/randomfloat.md",
300
+ "services/expression-parser-functions/randomfloatbetween.md",
301
+ "services/expression-parser-functions/randomfloatupto.md",
302
+ "services/expression-parser-functions/randominteger.md",
303
+ "services/expression-parser-functions/randomintegerbetween.md",
304
+ "services/expression-parser-functions/randomintegerupto.md",
305
+ "services/expression-parser-functions/resolvehtmlentities.md",
306
+ "services/expression-parser-functions/round.md",
307
+ "services/expression-parser-functions/setconcatenate.md",
308
+ "services/expression-parser-functions/sin.md",
309
+ "services/expression-parser-functions/slice.md",
310
+ "services/expression-parser-functions/smallestinset.md",
311
+ "services/expression-parser-functions/sorthistogram.md",
312
+ "services/expression-parser-functions/sorthistogrambykeys.md",
313
+ "services/expression-parser-functions/sortset.md",
314
+ "services/expression-parser-functions/sqrt.md",
315
+ "services/expression-parser-functions/stdev.md",
316
+ "services/expression-parser-functions/stdeva.md",
317
+ "services/expression-parser-functions/stdevp.md",
318
+ "services/expression-parser-functions/stringcountsegments.md",
319
+ "services/expression-parser-functions/stringgetsegments.md",
320
+ "services/expression-parser-functions/subtractingsummation.md",
321
+ "services/expression-parser-functions/sum.md",
322
+ "services/expression-parser-functions/tan.md",
323
+ "services/expression-parser-functions/tofixed.md",
324
+ "services/expression-parser-functions/var.md",
325
+ "services/expression-parser-functions/vara.md",
326
+ "services/expression-parser-functions/varp.md",
327
+ "services/expression-parser-functions/when.md",
328
+ "services/expression-parser.md",
329
+ "services/file-persistence.md",
330
+ "services/logging.md",
331
+ "services/logic.md",
332
+ "services/manifest.md",
333
+ "services/math.md",
334
+ "services/meta-template.md",
335
+ "services/object-cache.md",
336
+ "services/operation.md",
337
+ "services/progress-time.md",
338
+ "services/progress-tracker-set.md",
339
+ "services/rest-client.md",
340
+ "services/settings-manager.md",
341
+ "services/template.md",
342
+ "services/utility.md",
343
+ "services/uuid.md",
344
+ ".nojekyll",
345
+ "README.md",
346
+ "_sidebar.md",
347
+ "advanced-usage.md",
348
+ "api-reference.md",
349
+ "browser-usage.md",
350
+ "configuration.md",
351
+ "cover.md",
352
+ "custom-providers.md",
353
+ "getting-started.md",
354
+ "index.html",
355
+ "providers.md",
356
+ ".nojekyll",
357
+ "README.md",
358
+ "_sidebar.md",
359
+ "_topbar.md",
360
+ "api.md",
361
+ "cover.md",
362
+ "css/docuserve.css",
363
+ "index.html",
364
+ "retold-catalog.json",
365
+ "retold-keyword-index.json",
366
+ "README.md",
367
+ "_sidebar.md",
368
+ "_topbar.md",
369
+ "api.md",
370
+ "cover.md",
371
+ "initialization-patterns.md",
372
+ ".nojekyll",
373
+ "README.md",
374
+ "_sidebar.md",
375
+ "_topbar.md",
376
+ "api.md",
377
+ "cover.md",
378
+ "css/docuserve.css",
379
+ "environment-variables.md",
380
+ "index.html",
381
+ "retold-catalog.json",
382
+ "retold-keyword-index.json",
383
+ ".nojekyll",
384
+ "README.md",
385
+ "_sidebar.md",
386
+ "api.md",
387
+ "browser-support.md",
388
+ "changelog.md",
389
+ "configuration.md",
390
+ "contributing.md",
391
+ "cover.md",
392
+ "index.html",
393
+ "resources.md"
394
+ ]
395
+ },
396
+ {
397
+ "Name": "meadow",
398
+ "Repo": "meadow",
399
+ "Group": "modules",
400
+ "Branch": "master",
401
+ "HasDocs": true,
402
+ "HasCover": true,
403
+ "Sidebar": [
404
+ {
405
+ "Title": "Getting Started",
406
+ "Children": [
407
+ {
408
+ "Title": "Overview",
409
+ "Path": "README.md"
410
+ },
411
+ {
412
+ "Title": "Quick Start",
413
+ "Path": "quickstart.md"
414
+ },
415
+ {
416
+ "Title": "Docker Setup",
417
+ "Path": "docker.md"
418
+ }
419
+ ]
420
+ },
421
+ {
422
+ "Title": "Data Model",
423
+ "Children": [
424
+ {
425
+ "Title": "Schema Overview",
426
+ "Path": "schema.md"
427
+ },
428
+ {
429
+ "Title": "Entity Reference",
430
+ "Path": "entities.md"
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ "Title": "API",
436
+ "Children": [
437
+ {
438
+ "Title": "REST Endpoints",
439
+ "Path": "endpoints.md"
440
+ },
441
+ {
442
+ "Title": "Filtering & Pagination",
443
+ "Path": "filtering.md"
444
+ }
445
+ ]
446
+ },
447
+ {
448
+ "Title": "Customization",
449
+ "Children": [
450
+ {
451
+ "Title": "Behavior Injection",
452
+ "Path": "behavior-injection.md"
453
+ },
454
+ {
455
+ "Title": "Configuration",
456
+ "Path": "configuration.md"
457
+ }
458
+ ]
459
+ },
460
+ {
461
+ "Title": "Development",
462
+ "Children": [
463
+ {
464
+ "Title": "Testing",
465
+ "Path": "testing.md"
466
+ },
467
+ {
468
+ "Title": "Luxury Code IDE",
469
+ "Path": "luxury-code.md"
470
+ }
471
+ ]
472
+ }
473
+ ],
474
+ "DocFiles": [
475
+ "README.md",
476
+ "_sidebar.md",
477
+ "_topbar.md",
478
+ "api.md",
479
+ "architecture.md",
480
+ "cli.md",
481
+ "configuration.md",
482
+ "cover.md",
483
+ "index.html",
484
+ "operations/delete.md",
485
+ "operations/diff-and-deltas.md",
486
+ "operations/exists.md",
487
+ "operations/metadata.md",
488
+ "operations/read.md",
489
+ "operations/record-keys.md",
490
+ "operations/sources.md",
491
+ "operations/write.md",
492
+ "quick-start.md",
493
+ "storage-providers.md",
494
+ ".nojekyll",
495
+ "README.md",
496
+ "_sidebar.md",
497
+ "architecture.md",
498
+ "configuration.md",
499
+ "cover.md",
500
+ "dialects/README.md",
501
+ "dialects/alasql.md",
502
+ "dialects/mssql.md",
503
+ "dialects/mysql.md",
504
+ "dialects/sqlite.md",
505
+ "filters.md",
506
+ "index.html",
507
+ "joins.md",
508
+ "pagination.md",
509
+ "query/README.md",
510
+ "query/count.md",
511
+ "query/create.md",
512
+ "query/delete.md",
513
+ "query/read.md",
514
+ "query/update.md",
515
+ "query-overrides.md",
516
+ "schema.md",
517
+ "sorting.md",
518
+ "README.md",
519
+ "_sidebar.md",
520
+ "index.html",
521
+ "providers/README.md",
522
+ "providers/alasql.md",
523
+ "providers/mssql.md",
524
+ "providers/mysql.md",
525
+ "providers/sqlite.md",
526
+ "query/README.md",
527
+ "query/count.md",
528
+ "query/create.md",
529
+ "query/delete.md",
530
+ "query/read.md",
531
+ "query/update.md",
532
+ "schema/README.md",
533
+ ".nojekyll",
534
+ "README.md",
535
+ "_sidebar.md",
536
+ "_topbar.md",
537
+ "api.md",
538
+ "cover.md",
539
+ "css/docuserve.css",
540
+ "index.html",
541
+ "retold-catalog.json",
542
+ "retold-keyword-index.json",
543
+ "schema.md",
544
+ ".nojekyll",
545
+ "README.md",
546
+ "_sidebar.md",
547
+ "_topbar.md",
548
+ "api.md",
549
+ "cover.md",
550
+ "css/docuserve.css",
551
+ "index.html",
552
+ "retold-catalog.json",
553
+ "retold-keyword-index.json",
554
+ "schema.md",
555
+ ".nojekyll",
556
+ "README.md",
557
+ "_sidebar.md",
558
+ "_topbar.md",
559
+ "api.md",
560
+ "cover.md",
561
+ "css/docuserve.css",
562
+ "examples-pipeline.md",
563
+ "index.html",
564
+ "retold-catalog.json",
565
+ "retold-keyword-index.json",
566
+ "README.md",
567
+ "_sidebar.md",
568
+ "crud/README.md",
569
+ "crud/count.md",
570
+ "crud/create.md",
571
+ "crud/delete.md",
572
+ "crud/read.md",
573
+ "crud/schema.md",
574
+ "crud/update.md",
575
+ "index.html",
576
+ ".nojekyll",
577
+ "README.md",
578
+ "_sidebar.md",
579
+ "_topbar.md",
580
+ "cli-reference.md",
581
+ "comprehensions.md",
582
+ "cover.md",
583
+ "examples/bookstore/.gitignore",
584
+ "examples/bookstore/BookData.md",
585
+ "examples/bookstore/Generate_Bookstore_Comprehension.sh",
586
+ "examples/bookstore/mapping_books_Author.json",
587
+ "examples/bookstore/mapping_books_Book.json",
588
+ "examples/bookstore/mapping_books_BookAuthorJoin.json",
589
+ "examples/data/books.csv",
590
+ "examples/data/seattle_neighborhoods/Seattle_Data_Information.md",
591
+ "examples/data/seattle_neighborhoods/housing_characteristics_Neighborhoods.csv",
592
+ "examples/data/seattle_neighborhoods/housing_costs_Neighborhoods.csv",
593
+ "examples/data/seattle_neighborhoods/race_ethnicity_Neighborhoods.csv",
594
+ "examples/multi_set_integration/multi_set_step_by_step.md",
595
+ "examples/multi_set_integration/multi_set_step_by_step_overview_diagram.excalidraw.svg",
596
+ "examples/multi_set_integration/part_1_getting_data.md",
597
+ "examples-walkthrough.md",
598
+ "index.html",
599
+ "integration-adapter.md",
600
+ "mapping-files.md",
601
+ "programmatic-api.md",
602
+ "rest-api-reference.md",
603
+ "vocabulary/Column.md",
604
+ "vocabulary/Comprehension.md",
605
+ "vocabulary/Confidence.md",
606
+ "vocabulary/Data Capture Date.md",
607
+ "vocabulary/Data Entry Date.md",
608
+ "vocabulary/Entity.md",
609
+ "vocabulary/Format.md",
610
+ "vocabulary/GUID.md",
611
+ "vocabulary/Join.md",
612
+ "vocabulary/Record.md",
613
+ "vocabulary/Schema.md",
614
+ "vocabulary/Set.md",
615
+ "vocabulary/Snapshot.md",
616
+ "vocabulary/Source.md",
617
+ "vocabulary/Version.md",
618
+ ".nojekyll",
619
+ "README.md",
620
+ "_sidebar.md",
621
+ "architecture.md",
622
+ "binary-lakes.md",
623
+ "combined-lakes.md",
624
+ "configuration.md",
625
+ "cover.md",
626
+ "css/docuserve.css",
627
+ "index.html",
628
+ "quick-start.md",
629
+ "record-lakes.md",
630
+ "retold-catalog.json",
631
+ "retold-keyword-index.json",
632
+ "websocket.md",
633
+ ".nojekyll",
634
+ "README.md",
635
+ "_sidebar.md",
636
+ "architecture.md",
637
+ "behavior-injection.md",
638
+ "configuration.md",
639
+ "cover.md",
640
+ "dal-access.md",
641
+ "endpoints.md",
642
+ "index.html",
643
+ "initialization.md",
644
+ "lifecycle-hooks.md",
645
+ "schema-definition.md",
646
+ "storage-providers.md",
647
+ ".nojekyll",
648
+ "README.md",
649
+ "_coverpage.md",
650
+ "_sidebar.md",
651
+ "behavior-injection.md",
652
+ "configuration.md",
653
+ "docker.md",
654
+ "endpoints.md",
655
+ "entities.md",
656
+ "filtering.md",
657
+ "index.html",
658
+ "luxury-code.md",
659
+ "quickstart.md",
660
+ "schema.md",
661
+ "testing.md",
662
+ "Command-Authorization.md",
663
+ "Command-Compile.md",
664
+ "Command-DataDictionary.md",
665
+ "Command-DictionaryCSV.md",
666
+ "Command-Documentation.md",
667
+ "Command-Full.md",
668
+ "Command-Info.md",
669
+ "Command-Meadow.md",
670
+ "Command-MySQL-Migrate.md",
671
+ "Command-MySQL.md",
672
+ "Command-Pict.md",
673
+ "Command-Relationships.md",
674
+ "Command-RelationshipsFull.md",
675
+ "Command-TestObjectContainers.md",
676
+ "Docuserve-Configuration.md",
677
+ "MicroDDL-Syntax.md",
678
+ "Stricture-Legacy-Compiler.md"
679
+ ]
680
+ },
681
+ {
682
+ "Name": "orator",
683
+ "Repo": "orator",
684
+ "Group": "modules",
685
+ "Branch": "master",
686
+ "HasDocs": true,
687
+ "HasCover": true,
688
+ "Sidebar": [
689
+ {
690
+ "Title": "Getting Started",
691
+ "Children": [
692
+ {
693
+ "Title": "Overview",
694
+ "Path": "README.md"
695
+ },
696
+ {
697
+ "Title": "Rendering Pipeline",
698
+ "Path": "rendering-pipeline.md"
699
+ },
700
+ {
701
+ "Title": "Rasterizers",
702
+ "Path": "rasterizers.md"
703
+ }
704
+ ]
705
+ },
706
+ {
707
+ "Title": "Reference",
708
+ "Children": [
709
+ {
710
+ "Title": "API Reference",
711
+ "Path": "api.md"
712
+ }
713
+ ]
714
+ },
715
+ {
716
+ "Title": "Retold Ecosystem",
717
+ "Children": [
718
+ {
719
+ "Title": "Orator",
720
+ "Path": "orator/orator/README.md"
721
+ },
722
+ {
723
+ "Title": "Fable",
724
+ "Path": "fable/fable/README.md"
725
+ },
726
+ {
727
+ "Title": "FoxHound",
728
+ "Path": "meadow/foxhound/README.md"
729
+ },
730
+ {
731
+ "Title": "Meadow",
732
+ "Path": "meadow/meadow/README.md"
733
+ },
734
+ {
735
+ "Title": "Indoctrinate",
736
+ "Path": "utility/indoctrinate/README.md"
737
+ }
738
+ ]
739
+ }
740
+ ],
741
+ "DocFiles": [
742
+ ".nojekyll",
743
+ "README.md",
744
+ "_sidebar.md",
745
+ "architecture.md",
746
+ "configuration.md",
747
+ "cover.md",
748
+ "getting-started.md",
749
+ "http-proxy.md",
750
+ "index.html",
751
+ "ipc-server.md",
752
+ "lifecycle-hooks.md",
753
+ "restify-server.md",
754
+ "service-servers.md",
755
+ "static-files.md",
756
+ ".nojekyll",
757
+ "README.md",
758
+ "_sidebar.md",
759
+ "api-reference.md",
760
+ "configuration.md",
761
+ "cover.md",
762
+ "endpoints/001-jpg-to-png.md",
763
+ "endpoints/002-png-to-jpg.md",
764
+ "endpoints/003-pdf-to-page-png.md",
765
+ "endpoints/004-pdf-to-page-jpg.md",
766
+ "endpoints/README.md",
767
+ "getting-started.md",
768
+ "index.html",
769
+ ".nojekyll",
770
+ "README.md",
771
+ "_sidebar.md",
772
+ "configuration.md",
773
+ "cover.md",
774
+ "getting-started.md",
775
+ "index.html",
776
+ ".nojekyll",
777
+ "README.md",
778
+ "_sidebar.md",
779
+ "api-reference.md",
780
+ "cover.md",
781
+ "custom-server.md",
782
+ "index.html",
783
+ "template-method.md",
784
+ ".nojekyll",
785
+ "README.md",
786
+ "_sidebar.md",
787
+ "body-parsing.md",
788
+ "configuration.md",
789
+ "cover.md",
790
+ "getting-started.md",
791
+ "index.html",
792
+ "middleware.md",
793
+ ".nojekyll",
794
+ "README.md",
795
+ "_sidebar.md",
796
+ "api-reference.md",
797
+ "cover.md",
798
+ "getting-started.md",
799
+ "index.html",
800
+ "subdomain-routing.md",
801
+ "README.md",
802
+ "_sidebar.md",
803
+ "_topbar.md",
804
+ "api.md",
805
+ "cover.md",
806
+ "rasterizers.md",
807
+ "rendering-pipeline.md"
808
+ ]
809
+ },
810
+ {
811
+ "Name": "pict",
812
+ "Repo": "pict",
813
+ "Group": "modules",
814
+ "Branch": "master",
815
+ "HasDocs": true,
816
+ "HasCover": true,
817
+ "Sidebar": [
818
+ {
819
+ "Title": "Getting Started",
820
+ "Children": [
821
+ {
822
+ "Title": "Introduction",
823
+ "Path": "README.md"
824
+ },
825
+ {
826
+ "Title": "Pict Views",
827
+ "Path": "Pict-Views.md"
828
+ },
829
+ {
830
+ "Title": "Renderables",
831
+ "Path": "Pict%20View%20Renderables.md"
832
+ }
833
+ ]
834
+ },
835
+ {
836
+ "Title": "Examples",
837
+ "Children": [
838
+ {
839
+ "Title": "Historical Events App",
840
+ "Path": "Historical%20Events%20Example%20App.md"
841
+ }
842
+ ]
843
+ },
844
+ {
845
+ "Title": "Customization",
846
+ "Children": [
847
+ {
848
+ "Title": "Configuration",
849
+ "Path": "configuration.md"
850
+ },
851
+ {
852
+ "Title": "Themes & Styling",
853
+ "Path": "themes.md"
854
+ },
855
+ {
856
+ "Title": "Custom Navbar",
857
+ "Path": "custom-navbar.md"
858
+ }
859
+ ]
860
+ },
861
+ {
862
+ "Title": "Reference",
863
+ "Children": [
864
+ {
865
+ "Title": "Resources",
866
+ "Path": "resources.md"
867
+ },
868
+ {
869
+ "Title": "Contributing",
870
+ "Path": "contributing.md"
871
+ },
872
+ {
873
+ "Title": "Changelog",
874
+ "Path": "changelog.md"
875
+ }
876
+ ]
877
+ }
878
+ ],
879
+ "DocFiles": [
880
+ ".nojekyll",
881
+ "README.md",
882
+ "_sidebar.md",
883
+ "_topbar.md",
884
+ "api.md",
885
+ "cover.md",
886
+ "css/docuserve.css",
887
+ "index.html",
888
+ "retold-catalog.json",
889
+ "retold-keyword-index.json",
890
+ ".nojekyll",
891
+ "README.md",
892
+ "_sidebar.md",
893
+ "_topbar.md",
894
+ "api.md",
895
+ "cover.md",
896
+ "css/docuserve.css",
897
+ "index.html",
898
+ "lifecycle.md",
899
+ ".nojekyll",
900
+ "README.md",
901
+ "_sidebar.md",
902
+ "application_lifecycle/README.md",
903
+ "applications/README.md",
904
+ "cover.md",
905
+ "design_philosophy/applications_providers_views_and_solvers.md",
906
+ "design_philosophy/config.json",
907
+ "design_philosophy/model_view_controller_ohmy.md",
908
+ "design_philosophy/overall_design_philosophy.md",
909
+ "design_philosophy/state_management_and_lifecycle_coupling.md",
910
+ "design_philosophy/traditional_application_shape.excalidraw.svg",
911
+ "development/building_pict.md",
912
+ "development/pict_luxury_code.md",
913
+ "development/pict_virtual_environments.md",
914
+ "development/testing_pict.md",
915
+ "examples/complex_example_seattle_data/data/Seattle_Data_Information.md",
916
+ "examples/complex_example_seattle_data/data/housing_characteristics_Neighborhoods_4965628210524256870.csv",
917
+ "examples/complex_example_seattle_data/data/housing_costs_Neighborhoods_-8848403750169343217.csv",
918
+ "examples/complex_example_seattle_data/data/race_ethnicity_Neighborhoods_-7085838689260358328.csv",
919
+ "examples/hello_world/.babelrc",
920
+ "examples/hello_world/.browserslistrc",
921
+ "examples/hello_world/.browserslistrc-BACKUP",
922
+ "examples/hello_world/.gulpfile-quackage-config.json",
923
+ "examples/hello_world/.gulpfile-quackage.js",
924
+ "examples/hello_world/.quackage.json",
925
+ "examples/hello_world/README.md",
926
+ "examples/hello_world/dist/.gitignore",
927
+ "examples/hello_world/dist/hello_world.js",
928
+ "examples/hello_world/dist/hello_world.js.map",
929
+ "examples/hello_world/dist/hello_world.min.js",
930
+ "examples/hello_world/dist/hello_world.min.js.map",
931
+ "examples/hello_world/dist/index.html",
932
+ "examples/hello_world/index.js",
933
+ "examples/hello_world/package-lock.json",
934
+ "examples/hello_world/package.json",
935
+ "examples/quickstart.js",
936
+ "index.html",
937
+ "pict_keyconcepts.md",
938
+ "pict_quickstart.md",
939
+ "providers/README.md",
940
+ "solvers/README.md",
941
+ "state_management/README.md",
942
+ "templating/pict_metatemplate_manager.md",
943
+ "templating/pict_template_expressions.md",
944
+ "views/README.md",
945
+ ".nojekyll",
946
+ "CONFIGURATION.md",
947
+ "EXAMPLES.md",
948
+ "GETTING_STARTED.md",
949
+ "README.md",
950
+ "_sidebar.md",
951
+ "cover.md",
952
+ "index.html",
953
+ ".nojekyll",
954
+ "README.md",
955
+ "_sidebar.md",
956
+ "_topbar.md",
957
+ "architecture.md",
958
+ "configuration.md",
959
+ "content-authoring.md",
960
+ "cover.md",
961
+ "deployment.md",
962
+ "diagrams.md",
963
+ "example_applications/contacts-app/README.md",
964
+ "example_applications/contacts-app/_sidebar.md",
965
+ "example_applications/contacts-app/_topbar.md",
966
+ "example_applications/contacts-app/api.md",
967
+ "example_applications/contacts-app/configuration.md",
968
+ "example_applications/contacts-app/cover.md",
969
+ "example_applications/contacts-app/data-model.md",
970
+ "example_applications/contacts-app/errorpage.md",
971
+ "example_applications/contacts-app/quick-start.md",
972
+ "example_applications/contacts-app/relationships.md",
973
+ "example_applications/sports-stats-api/README.md",
974
+ "example_applications/sports-stats-api/_sidebar.md",
975
+ "example_applications/sports-stats-api/_topbar.md",
976
+ "example_applications/sports-stats-api/api.md",
977
+ "example_applications/sports-stats-api/authentication.md",
978
+ "example_applications/sports-stats-api/cover.md",
979
+ "example_applications/sports-stats-api/errorpage.md",
980
+ "example_applications/sports-stats-api/games.md",
981
+ "example_applications/sports-stats-api/leagues-teams.md",
982
+ "example_applications/sports-stats-api/players.md",
983
+ "example_applications/sports-stats-api/quick-start.md",
984
+ "example_applications/sports-stats-api/standings.md",
985
+ "example_applications/sports-stats-api/websocket.md",
986
+ "example_applications/todo-app/README.md",
987
+ "example_applications/todo-app/_sidebar.md",
988
+ "example_applications/todo-app/_topbar.md",
989
+ "example_applications/todo-app/api.md",
990
+ "example_applications/todo-app/configuration.md",
991
+ "example_applications/todo-app/cover.md",
992
+ "example_applications/todo-app/errorpage.md",
993
+ "example_applications/todo-app/lists.md",
994
+ "example_applications/todo-app/quick-start.md",
995
+ "example_applications/todo-app/tags.md",
996
+ "example_applications/todo-app/tasks.md",
997
+ "index.html",
998
+ "latex.md",
999
+ "retold-catalog.json",
1000
+ "retold-keyword-index.json",
1001
+ "README.md",
1002
+ "_sidebar.md",
1003
+ "_topbar.md",
1004
+ "api.md",
1005
+ "configuration.md",
1006
+ "cover.md",
1007
+ "data-model.md",
1008
+ "errorpage.md",
1009
+ "quick-start.md",
1010
+ "relationships.md",
1011
+ "README.md",
1012
+ "_sidebar.md",
1013
+ "_topbar.md",
1014
+ "api.md",
1015
+ "authentication.md",
1016
+ "cover.md",
1017
+ "errorpage.md",
1018
+ "games.md",
1019
+ "leagues-teams.md",
1020
+ "players.md",
1021
+ "quick-start.md",
1022
+ "standings.md",
1023
+ "websocket.md",
1024
+ "README.md",
1025
+ "_sidebar.md",
1026
+ "_topbar.md",
1027
+ "api.md",
1028
+ "configuration.md",
1029
+ "cover.md",
1030
+ "errorpage.md",
1031
+ "lists.md",
1032
+ "quick-start.md",
1033
+ "tags.md",
1034
+ "tasks.md",
1035
+ ".nojekyll",
1036
+ "README.md",
1037
+ "_sidebar.md",
1038
+ "_topbar.md",
1039
+ "api.md",
1040
+ "cover.md",
1041
+ "css/docuserve.css",
1042
+ "index.html",
1043
+ "lifecycle.md",
1044
+ "retold-catalog.json",
1045
+ "retold-keyword-index.json",
1046
+ ".nojekyll",
1047
+ "README.md",
1048
+ "_sidebar.md",
1049
+ "_topbar.md",
1050
+ "api.md",
1051
+ "cover.md",
1052
+ "css/docuserve.css",
1053
+ "index.html",
1054
+ "retold-catalog.json",
1055
+ "retold-keyword-index.json",
1056
+ "README.md",
1057
+ "_sidebar.md",
1058
+ "_topbar.md",
1059
+ "api.md",
1060
+ "cover.md",
1061
+ "extending.md",
1062
+ "link-resolver.md",
1063
+ ".nojekyll",
1064
+ "Configuration.md",
1065
+ "Getting_Started.md",
1066
+ "Input_Types.md",
1067
+ "Layouts.md",
1068
+ "Pict_Section_Form_Architecture.md",
1069
+ "Providers.md",
1070
+ "README.md",
1071
+ "Solvers.md",
1072
+ "Templates.md",
1073
+ "_sidebar.md",
1074
+ "cover.md",
1075
+ "examples/README.md",
1076
+ "examples/complex_table/README.md",
1077
+ "examples/complex_tuigrid/README.md",
1078
+ "examples/gradebook/README.md",
1079
+ "examples/manyfest_editor/README.md",
1080
+ "examples/postcard_example/README.md",
1081
+ "examples/simple_distill/README.md",
1082
+ "examples/simple_form/README.md",
1083
+ "examples/simple_table/README.md",
1084
+ "index.html",
1085
+ "input_providers/001-select.md",
1086
+ "input_providers/002-datetime.md",
1087
+ "input_providers/003-markdown.md",
1088
+ "input_providers/004-html.md",
1089
+ "input_providers/005-precise-number.md",
1090
+ "input_providers/006-link.md",
1091
+ "input_providers/007-templated.md",
1092
+ "input_providers/008-templated-entity-lookup.md",
1093
+ "input_providers/009-chart.md",
1094
+ "input_providers/010-entity-bundle-request.md",
1095
+ "input_providers/011-autofill-trigger-group.md",
1096
+ "input_providers/012-tab-group-selector.md",
1097
+ "input_providers/013-tab-section-selector.md",
1098
+ "input_providers/README.md",
1099
+ ".nojekyll",
1100
+ "README.md",
1101
+ "_sidebar.md",
1102
+ "api-reference.md",
1103
+ "cover.md",
1104
+ "filters.md",
1105
+ "index.html",
1106
+ "record-providers.md",
1107
+ "views/create/README.md",
1108
+ "views/dashboard/README.md",
1109
+ "views/list/README.md",
1110
+ "views/read/README.md",
1111
+ ".nojekyll",
1112
+ "README.md",
1113
+ "_sidebar.md",
1114
+ "_topbar.md",
1115
+ "api.md",
1116
+ "configuration.md",
1117
+ "cover.md",
1118
+ "css/docuserve.css",
1119
+ "index.html",
1120
+ "retold-catalog.json",
1121
+ "retold-keyword-index.json",
1122
+ ".nojekyll",
1123
+ "README.md",
1124
+ "_sidebar.md",
1125
+ "api-reference.md",
1126
+ "configuration.md",
1127
+ "cover.md",
1128
+ "creating-commands.md",
1129
+ "index.html",
1130
+ ".nojekyll",
1131
+ "README.md",
1132
+ "_sidebar.md",
1133
+ "api-reference.md",
1134
+ "cover.md",
1135
+ "creating-services.md",
1136
+ "fable-relationship.md",
1137
+ "index.html",
1138
+ "README.md",
1139
+ "_sidebar.md",
1140
+ "_topbar.md",
1141
+ "api.md",
1142
+ "cover.md",
1143
+ "examples-conditionals-and-logic.md",
1144
+ "examples-custom-expressions.md",
1145
+ "examples-data-and-lists.md",
1146
+ ".nojekyll",
1147
+ "README.md",
1148
+ "_sidebar.md",
1149
+ "_topbar.md",
1150
+ "building-an-app.md",
1151
+ "cover.md",
1152
+ "index.html",
1153
+ "retold-catalog.json",
1154
+ "retold-keyword-index.json",
1155
+ "widgets/box.md",
1156
+ "widgets/button.md",
1157
+ "widgets/checkbox.md",
1158
+ "widgets/filemanager.md",
1159
+ "widgets/form.md",
1160
+ "widgets/list.md",
1161
+ "widgets/listbar.md",
1162
+ "widgets/listtable.md",
1163
+ "widgets/loading.md",
1164
+ "widgets/log.md",
1165
+ "widgets/message.md",
1166
+ "widgets/progressbar.md",
1167
+ "widgets/prompt.md",
1168
+ "widgets/question.md",
1169
+ "widgets/radiobutton.md",
1170
+ "widgets/scrollablebox.md",
1171
+ "widgets/table.md",
1172
+ "widgets/text.md",
1173
+ "widgets/textarea.md",
1174
+ "widgets/textbox.md",
1175
+ ".nojekyll",
1176
+ "Historical Events Example App.md",
1177
+ "Pict View Renderables.md",
1178
+ "Pict-Views.md",
1179
+ "README.md",
1180
+ "_sidebar.md",
1181
+ "changelog.md",
1182
+ "configuration.md",
1183
+ "contributing.md",
1184
+ "cover.md",
1185
+ "custom-navbar.md",
1186
+ "index.html",
1187
+ "resources.md",
1188
+ "themes.md"
1189
+ ]
1190
+ },
1191
+ {
1192
+ "Name": "utility",
1193
+ "Repo": "utility",
1194
+ "Group": "modules",
1195
+ "Branch": "master",
1196
+ "HasDocs": true,
1197
+ "HasCover": true,
1198
+ "Sidebar": [
1199
+ {
1200
+ "Title": "Getting Started",
1201
+ "Children": [
1202
+ {
1203
+ "Title": "Overview",
1204
+ "Path": "overview.md"
1205
+ },
1206
+ {
1207
+ "Title": "Quick Start",
1208
+ "Path": "quickstart.md"
1209
+ },
1210
+ {
1211
+ "Title": "Architecture",
1212
+ "Path": "architecture.md"
1213
+ }
1214
+ ]
1215
+ },
1216
+ {
1217
+ "Title": "Features",
1218
+ "Children": [
1219
+ {
1220
+ "Title": "Tasks",
1221
+ "Path": "features/tasks.md"
1222
+ },
1223
+ {
1224
+ "Title": "Operations",
1225
+ "Path": "features/operations.md"
1226
+ },
1227
+ {
1228
+ "Title": "Scheduling",
1229
+ "Path": "features/scheduling.md"
1230
+ },
1231
+ {
1232
+ "Title": "Manifests",
1233
+ "Path": "features/manifests.md"
1234
+ }
1235
+ ]
1236
+ },
1237
+ {
1238
+ "Title": "Reference",
1239
+ "Children": [
1240
+ {
1241
+ "Title": "API Server",
1242
+ "Path": "features/api.md"
1243
+ },
1244
+ {
1245
+ "Title": "CLI Commands",
1246
+ "Path": "features/cli.md"
1247
+ },
1248
+ {
1249
+ "Title": "Configuration",
1250
+ "Path": "features/configuration.md"
1251
+ }
1252
+ ]
1253
+ }
1254
+ ],
1255
+ "DocFiles": [
1256
+ ".nojekyll",
1257
+ "README.md",
1258
+ "_sidebar.md",
1259
+ "architecture.md",
1260
+ "commands/README.md",
1261
+ "commands/compile.md",
1262
+ "commands/extended-process.md",
1263
+ "commands/generate-catalog.md",
1264
+ "commands/generate-keyword-index.md",
1265
+ "compiler/040_generate/Dot.md",
1266
+ "compiler/040_generate/KaTeX.md",
1267
+ "compiler/040_generate/LaTeX.md",
1268
+ "compiler/040_generate/Mermaid.md",
1269
+ "compiler/040_generate/NodePackageDescription.md",
1270
+ "compiler/040_generate/Shiki.md",
1271
+ "concepts/catalog-filtering.md",
1272
+ "concepts/content-descriptions.md",
1273
+ "concepts/labels.md",
1274
+ "configuration/README.md",
1275
+ "configuration/special-files.md",
1276
+ "configuration/structures-targets.md",
1277
+ "cover.md",
1278
+ "design/labels.md",
1279
+ "design/overview.md",
1280
+ "examples/README.md",
1281
+ "examples/book/README.md",
1282
+ "examples/book/Vocabulary.md",
1283
+ "examples/book/chapters/01/000-Fish.md",
1284
+ "examples/book/chapters/02/000-FreshwaterFish.md",
1285
+ "examples/book/chapters/02/Salmon.md",
1286
+ "examples/book/chapters/03/000-SaltwaterFish.md",
1287
+ "examples/book/chapters/04/000-FishThatWorkInBoth.md",
1288
+ "examples/book/chapters/05/000-FishAsFood.md",
1289
+ "examples/book/chapters/06/000-FishAsFriends.md",
1290
+ "examples/book/frontmatter/Fish-Clipart.png",
1291
+ "examples/book/frontmatter/Foreward.md",
1292
+ "examples/book/indoctrinate-structure.json",
1293
+ "examples/data_model/Platform.md",
1294
+ "examples/data_model/indoctrinate.json",
1295
+ "examples/data_model/model/MeadowModel-Extended.json",
1296
+ "examples/data_model/model/entity/animals/Author.md",
1297
+ "examples/data_model/model/entity/animals/Cat.md",
1298
+ "examples/data_model/model/entity/clinics/Book.md",
1299
+ "examples/data_model/model/entity/clinics/Vet.md",
1300
+ "examples/data_model/model/entity_abstractions/animals.md",
1301
+ "examples/document/Body.md",
1302
+ "examples/document/Introduction.md",
1303
+ "examples/document/indoctrinate.json",
1304
+ "examples/monorepo/indoctrinate-extrafolders.json",
1305
+ "index.html",
1306
+ "license.md",
1307
+ "pipeline/README.md",
1308
+ "pipeline/input.md",
1309
+ "pipeline/output.md",
1310
+ "pipeline/processing.md",
1311
+ "quickstart.md",
1312
+ "retold/README.md",
1313
+ "retold/catalog-generation.md",
1314
+ "retold/keyword-index.md",
1315
+ "vocabulary.md",
1316
+ "README.md",
1317
+ "_sidebar.md",
1318
+ "configuration.md",
1319
+ "cover.md",
1320
+ "getting-started.md",
1321
+ "README.md",
1322
+ "_sidebar.md",
1323
+ "api/crud.md",
1324
+ "api/schema.md",
1325
+ "architecture.md",
1326
+ ".nojekyll",
1327
+ "README.md",
1328
+ "_sidebar.md",
1329
+ "address-notation.md",
1330
+ "cover.md",
1331
+ "hash-translation.md",
1332
+ "index.html",
1333
+ "quickstart.md",
1334
+ "reading.md",
1335
+ "schema-manipulation.md",
1336
+ "schema.md",
1337
+ "validating.md",
1338
+ "writing.md",
1339
+ ".nojekyll",
1340
+ "README.md",
1341
+ "_sidebar.md",
1342
+ "_topbar.md",
1343
+ "api.md",
1344
+ "cover.md",
1345
+ "css/docuserve.css",
1346
+ "examples.md",
1347
+ "index.html",
1348
+ "retold-catalog.json",
1349
+ "retold-keyword-index.json",
1350
+ ".nojekyll",
1351
+ "README.md",
1352
+ "_sidebar.md",
1353
+ "_topbar.md",
1354
+ "commands/boilerplate/README.md",
1355
+ "commands/boilerplate/boilerplate.md",
1356
+ "commands/boilerplate/buildtemplates.md",
1357
+ "commands/boilerplate/listtemplates.md",
1358
+ "commands/building/README.md",
1359
+ "commands/building/build.md",
1360
+ "commands/building/copy-files-from-to.md",
1361
+ "commands/building/run-mocha-tests.md",
1362
+ "commands/compiling/README.md",
1363
+ "commands/compiling/assemble_json_views.md",
1364
+ "commands/compiling/stricture-compile.md",
1365
+ "commands/compiling/stricture-legaacy.md",
1366
+ "commands/documentation/README.md",
1367
+ "commands/documentation/docs-serve.md",
1368
+ "commands/documentation/docuserve-inject.md",
1369
+ "commands/documentation/generate-documentation.md",
1370
+ "commands/documentation/indoctrinate-index.md",
1371
+ "commands/documentation/indoctrinate.md",
1372
+ "commands/documentation/prepare-docs.md",
1373
+ "commands/documentation/prepare-local.md",
1374
+ "commands/package-management/README.md",
1375
+ "commands/package-management/lint.md",
1376
+ "commands/package-management/luxuryupdatepackage.md",
1377
+ "commands/package-management/updatepackage.md",
1378
+ "cover.md",
1379
+ "errorpage.md",
1380
+ "index.html",
1381
+ "retold-catalog.json",
1382
+ "retold-keyword-index.json",
1383
+ ".nojekyll",
1384
+ "_sidebar.md",
1385
+ "_topbar.md",
1386
+ "architecture.md",
1387
+ "cover.md",
1388
+ "features/api.md",
1389
+ "features/cli.md",
1390
+ "features/configuration.md",
1391
+ "features/manifests.md",
1392
+ "features/operations.md",
1393
+ "features/scheduling.md",
1394
+ "features/tasks.md",
1395
+ "index.html",
1396
+ "overview.md",
1397
+ "quickstart.md",
1398
+ "retold-catalog.json",
1399
+ "retold-keyword-index.json"
1400
+ ]
1401
+ }
1402
+ ]
1403
+ }
1404
+ ]
1405
+ }