retold 4.0.1 → 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 (75) hide show
  1. package/.claude/settings.local.json +27 -1
  2. package/docs/README.md +7 -6
  3. package/docs/_sidebar.md +34 -21
  4. package/docs/_topbar.md +2 -2
  5. package/docs/architecture/module-architecture.md +234 -0
  6. package/docs/{modules.md → architecture/modules.md} +25 -22
  7. package/docs/cover.md +2 -2
  8. package/docs/css/docuserve.css +6 -6
  9. package/docs/examples/examples.md +71 -0
  10. package/docs/examples/todolist/todo-list-cli-client.md +178 -0
  11. package/docs/examples/todolist/todo-list-console-client.md +152 -0
  12. package/docs/examples/todolist/todo-list-model.md +114 -0
  13. package/docs/examples/todolist/todo-list-server.md +128 -0
  14. package/docs/examples/todolist/todo-list-web-client.md +177 -0
  15. package/docs/examples/todolist/todo-list.md +162 -0
  16. package/docs/getting-started.md +8 -7
  17. package/docs/index.html +4 -4
  18. package/docs/{meadow.md → modules/meadow.md} +4 -6
  19. package/docs/{orator.md → modules/orator.md} +1 -0
  20. package/docs/{pict.md → modules/pict.md} +30 -8
  21. package/docs/{utility.md → modules/utility.md} +0 -9
  22. package/docs/retold-catalog.json +896 -2317
  23. package/docs/retold-keyword-index.json +162327 -120227
  24. package/examples/todo-list/Dockerfile +45 -0
  25. package/examples/todo-list/README.md +394 -0
  26. package/examples/todo-list/cli-client/package-lock.json +418 -0
  27. package/examples/todo-list/cli-client/package.json +19 -0
  28. package/examples/todo-list/cli-client/source/TodoCLI-CLIProgram.js +30 -0
  29. package/examples/todo-list/cli-client/source/TodoCLI-Run.js +3 -0
  30. package/examples/todo-list/cli-client/source/commands/add/TodoCLI-Command-Add.js +74 -0
  31. package/examples/todo-list/cli-client/source/commands/complete/TodoCLI-Command-Complete.js +84 -0
  32. package/examples/todo-list/cli-client/source/commands/list/TodoCLI-Command-List.js +110 -0
  33. package/examples/todo-list/cli-client/source/commands/remove/TodoCLI-Command-Remove.js +49 -0
  34. package/examples/todo-list/cli-client/source/services/TodoCLI-Service-API.js +92 -0
  35. package/examples/todo-list/console-client/console-client.cjs +913 -0
  36. package/examples/todo-list/console-client/package-lock.json +426 -0
  37. package/examples/todo-list/console-client/package.json +19 -0
  38. package/examples/todo-list/console-client/views/PictView-TUI-Header.cjs +43 -0
  39. package/examples/todo-list/console-client/views/PictView-TUI-Layout.cjs +58 -0
  40. package/examples/todo-list/console-client/views/PictView-TUI-StatusBar.cjs +41 -0
  41. package/examples/todo-list/console-client/views/PictView-TUI-TaskList.cjs +104 -0
  42. package/examples/todo-list/docker-motd.sh +36 -0
  43. package/examples/todo-list/docker-run.sh +2 -0
  44. package/examples/todo-list/docker-shell.sh +2 -0
  45. package/examples/todo-list/model/MeadowSchema-Task.json +152 -0
  46. package/examples/todo-list/model/Task-Compiled.json +25 -0
  47. package/examples/todo-list/model/Task.mddl +15 -0
  48. package/examples/todo-list/model/data/seeded_todo_events.csv +1001 -0
  49. package/examples/todo-list/server/database-initialization-service.cjs +273 -0
  50. package/examples/todo-list/server/package-lock.json +6113 -0
  51. package/examples/todo-list/server/package.json +19 -0
  52. package/examples/todo-list/server/server.cjs +138 -0
  53. package/examples/todo-list/web-client/css/todolist-theme.css +235 -0
  54. package/examples/todo-list/web-client/generate-build-config.cjs +18 -0
  55. package/examples/todo-list/web-client/html/index.html +18 -0
  56. package/examples/todo-list/web-client/package-lock.json +12030 -0
  57. package/examples/todo-list/web-client/package.json +43 -0
  58. package/examples/todo-list/web-client/source/TodoList-Application-Config.json +12 -0
  59. package/examples/todo-list/web-client/source/TodoList-Application.cjs +383 -0
  60. package/examples/todo-list/web-client/source/providers/Provider-TaskData.cjs +243 -0
  61. package/examples/todo-list/web-client/source/providers/Router-Config.json +32 -0
  62. package/examples/todo-list/web-client/source/views/View-Layout.cjs +75 -0
  63. package/examples/todo-list/web-client/source/views/View-TaskForm.cjs +87 -0
  64. package/examples/todo-list/web-client/source/views/View-TaskList.cjs +127 -0
  65. package/examples/todo-list/web-client/source/views/calendar/View-MonthView.cjs +293 -0
  66. package/examples/todo-list/web-client/source/views/calendar/View-WeekView.cjs +149 -0
  67. package/examples/todo-list/web-client/source/views/calendar/View-YearView.cjs +226 -0
  68. package/modules/Include-Retold-Module-List.sh +2 -2
  69. package/package.json +5 -5
  70. package/docs/js/pict.min.js +0 -12
  71. package/docs/js/pict.min.js.map +0 -1
  72. package/docs/pict-docuserve.min.js +0 -58
  73. package/docs/pict-docuserve.min.js.map +0 -1
  74. /package/docs/{architecture.md → architecture/architecture.md} +0 -0
  75. /package/docs/{fable.md → modules/fable.md} +0 -0
@@ -1,17 +1,161 @@
1
1
  {
2
- "Generated": "2026-02-11T01:22:53.073Z",
2
+ "Generated": "2026-02-16T20:23:11.431Z",
3
3
  "GitHubOrg": "stevenvelozo",
4
4
  "DefaultBranch": "master",
5
5
  "Groups": [
6
6
  {
7
- "Name": "Fable",
8
- "Key": "fable",
9
- "Description": "Core framework: DI, config, logging, UUID, expressions",
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": "",
10
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
+ },
11
155
  {
12
156
  "Name": "fable",
13
157
  "Repo": "fable",
14
- "Group": "fable",
158
+ "Group": "modules",
15
159
  "Branch": "master",
16
160
  "HasDocs": true,
17
161
  "HasCover": true,
@@ -24,125 +168,38 @@
24
168
  "Path": "README.md"
25
169
  },
26
170
  {
27
- "Title": "Architecture",
28
- "Path": "architecture.md"
29
- }
30
- ]
31
- },
32
- {
33
- "Title": "Core Services",
34
- "Children": [
35
- {
36
- "Title": "Services Overview",
37
- "Path": "services/README.md"
38
- },
39
- {
40
- "Title": "Logging",
41
- "Path": "services/logging.md"
42
- },
43
- {
44
- "Title": "Settings Manager",
45
- "Path": "services/settings-manager.md"
46
- },
47
- {
48
- "Title": "UUID",
49
- "Path": "services/uuid.md"
50
- }
51
- ]
52
- },
53
- {
54
- "Title": "Data Services",
55
- "Children": [
56
- {
57
- "Title": "Dates",
58
- "Path": "services/dates.md"
59
- },
60
- {
61
- "Title": "Data Format",
62
- "Path": "services/data-format.md"
63
- },
64
- {
65
- "Title": "Data Generation",
66
- "Path": "services/data-generation.md"
67
- },
68
- {
69
- "Title": "Math",
70
- "Path": "services/math.md"
71
- },
72
- {
73
- "Title": "Logic",
74
- "Path": "services/logic.md"
75
- },
76
- {
77
- "Title": "Utility",
78
- "Path": "services/utility.md"
79
- }
80
- ]
81
- },
82
- {
83
- "Title": "Templating",
84
- "Children": [
85
- {
86
- "Title": "Template",
87
- "Path": "services/template.md"
88
- },
89
- {
90
- "Title": "Meta-Template",
91
- "Path": "services/meta-template.md"
171
+ "Title": "Configuration",
172
+ "Path": "configuration.md"
92
173
  }
93
174
  ]
94
175
  },
95
176
  {
96
- "Title": "Advanced Services",
177
+ "Title": "Reference",
97
178
  "Children": [
98
179
  {
99
- "Title": "Anticipate",
100
- "Path": "services/anticipate.md"
101
- },
102
- {
103
- "Title": "Operation",
104
- "Path": "services/operation.md"
105
- },
106
- {
107
- "Title": "REST Client",
108
- "Path": "services/rest-client.md"
109
- },
110
- {
111
- "Title": "Expression Parser",
112
- "Path": "services/expression-parser.md"
113
- },
114
- {
115
- "Title": "CSV Parser",
116
- "Path": "services/csv-parser.md"
180
+ "Title": "API Reference",
181
+ "Path": "api.md"
117
182
  },
118
183
  {
119
- "Title": "File Persistence",
120
- "Path": "services/file-persistence.md"
184
+ "Title": "Browser Support",
185
+ "Path": "browser-support.md"
121
186
  }
122
187
  ]
123
188
  },
124
189
  {
125
- "Title": "Utilities",
190
+ "Title": "Project",
126
191
  "Children": [
127
192
  {
128
- "Title": "Manifest",
129
- "Path": "services/manifest.md"
130
- },
131
- {
132
- "Title": "Object Cache",
133
- "Path": "services/object-cache.md"
134
- },
135
- {
136
- "Title": "Environment Data",
137
- "Path": "services/environment-data.md"
193
+ "Title": "Resources",
194
+ "Path": "resources.md"
138
195
  },
139
196
  {
140
- "Title": "Progress Time",
141
- "Path": "services/progress-time.md"
197
+ "Title": "Contributing",
198
+ "Path": "contributing.md"
142
199
  },
143
200
  {
144
- "Title": "Progress Tracker Set",
145
- "Path": "services/progress-tracker-set.md"
201
+ "Title": "Changelog",
202
+ "Path": "changelog.md"
146
203
  }
147
204
  ]
148
205
  }
@@ -283,13 +340,63 @@
283
340
  "services/settings-manager.md",
284
341
  "services/template.md",
285
342
  "services/utility.md",
286
- "services/uuid.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"
287
394
  ]
288
395
  },
289
396
  {
290
- "Name": "fable-log",
291
- "Repo": "fable-log",
292
- "Group": "fable",
397
+ "Name": "meadow",
398
+ "Repo": "meadow",
399
+ "Group": "modules",
293
400
  "Branch": "master",
294
401
  "HasDocs": true,
295
402
  "HasCover": true,
@@ -298,1752 +405,283 @@
298
405
  "Title": "Getting Started",
299
406
  "Children": [
300
407
  {
301
- "Title": "Introduction",
408
+ "Title": "Overview",
302
409
  "Path": "README.md"
303
410
  },
304
411
  {
305
412
  "Title": "Quick Start",
306
- "Path": "getting-started.md"
413
+ "Path": "quickstart.md"
414
+ },
415
+ {
416
+ "Title": "Docker Setup",
417
+ "Path": "docker.md"
307
418
  }
308
419
  ]
309
420
  },
310
421
  {
311
- "Title": "Configuration",
422
+ "Title": "Data Model",
312
423
  "Children": [
313
424
  {
314
- "Title": "Configuration",
315
- "Path": "configuration.md"
425
+ "Title": "Schema Overview",
426
+ "Path": "schema.md"
427
+ },
428
+ {
429
+ "Title": "Entity Reference",
430
+ "Path": "entities.md"
316
431
  }
317
432
  ]
318
433
  },
319
434
  {
320
- "Title": "Log Providers",
435
+ "Title": "API",
321
436
  "Children": [
322
437
  {
323
- "Title": "Overview",
324
- "Path": "providers.md"
438
+ "Title": "REST Endpoints",
439
+ "Path": "endpoints.md"
325
440
  },
326
441
  {
327
- "Title": "Custom Providers",
328
- "Path": "custom-providers.md"
442
+ "Title": "Filtering & Pagination",
443
+ "Path": "filtering.md"
329
444
  }
330
445
  ]
331
446
  },
332
447
  {
333
- "Title": "API Reference",
448
+ "Title": "Customization",
334
449
  "Children": [
335
450
  {
336
- "Title": "API Reference",
337
- "Path": "api-reference.md"
451
+ "Title": "Behavior Injection",
452
+ "Path": "behavior-injection.md"
453
+ },
454
+ {
455
+ "Title": "Configuration",
456
+ "Path": "configuration.md"
338
457
  }
339
458
  ]
340
459
  },
341
460
  {
342
- "Title": "Advanced Usage",
461
+ "Title": "Development",
343
462
  "Children": [
344
463
  {
345
- "Title": "Browser Usage",
346
- "Path": "browser-usage.md"
464
+ "Title": "Testing",
465
+ "Path": "testing.md"
347
466
  },
348
467
  {
349
- "Title": "Advanced Usage",
350
- "Path": "advanced-usage.md"
468
+ "Title": "Luxury Code IDE",
469
+ "Path": "luxury-code.md"
351
470
  }
352
471
  ]
353
472
  }
354
473
  ],
355
474
  "DocFiles": [
356
- ".nojekyll",
357
475
  "README.md",
358
476
  "_sidebar.md",
359
- "advanced-usage.md",
360
- "api-reference.md",
361
- "browser-usage.md",
477
+ "_topbar.md",
478
+ "api.md",
479
+ "architecture.md",
480
+ "cli.md",
362
481
  "configuration.md",
363
482
  "cover.md",
364
- "custom-providers.md",
365
- "getting-started.md",
366
483
  "index.html",
367
- "providers.md"
368
- ]
369
- },
370
- {
371
- "Name": "fable-log-logger-bunyan",
372
- "Repo": "fable-log-logger-bunyan",
373
- "Group": "fable",
374
- "Branch": "master",
375
- "HasDocs": false,
376
- "HasCover": false,
377
- "Sidebar": [],
378
- "DocFiles": []
379
- },
380
- {
381
- "Name": "fable-operationstep",
382
- "Repo": "fable-operationstep",
383
- "Group": "fable",
384
- "Branch": "master",
385
- "HasDocs": false,
386
- "HasCover": false,
387
- "Sidebar": [],
388
- "DocFiles": []
389
- },
390
- {
391
- "Name": "fable-serviceproviderbase",
392
- "Repo": "fable-serviceproviderbase",
393
- "Group": "fable",
394
- "Branch": "master",
395
- "HasDocs": false,
396
- "HasCover": false,
397
- "Sidebar": [],
398
- "DocFiles": []
399
- },
400
- {
401
- "Name": "fable-settings",
402
- "Repo": "fable-settings",
403
- "Group": "fable",
404
- "Branch": "master",
405
- "HasDocs": false,
406
- "HasCover": false,
407
- "Sidebar": [],
408
- "DocFiles": []
409
- },
410
- {
411
- "Name": "fable-uuid",
412
- "Repo": "fable-uuid",
413
- "Group": "fable",
414
- "Branch": "master",
415
- "HasDocs": true,
416
- "HasCover": true,
417
- "Sidebar": [
418
- {
419
- "Title": "Getting Started",
420
- "Children": [
421
- {
422
- "Title": "Introduction",
423
- "Path": "README.md"
424
- },
425
- {
426
- "Title": "Configuration",
427
- "Path": "configuration.md"
428
- }
429
- ]
430
- },
431
- {
432
- "Title": "Reference",
433
- "Children": [
434
- {
435
- "Title": "API Reference",
436
- "Path": "api.md"
437
- },
438
- {
439
- "Title": "Browser Support",
440
- "Path": "browser-support.md"
441
- }
442
- ]
443
- },
444
- {
445
- "Title": "Project",
446
- "Children": [
447
- {
448
- "Title": "Resources",
449
- "Path": "resources.md"
450
- },
451
- {
452
- "Title": "Contributing",
453
- "Path": "contributing.md"
454
- },
455
- {
456
- "Title": "Changelog",
457
- "Path": "changelog.md"
458
- }
459
- ]
460
- }
461
- ],
462
- "DocFiles": [
463
- ".nojekyll",
464
- "README.md",
465
- "_sidebar.md",
466
- "api.md",
467
- "browser-support.md",
468
- "changelog.md",
469
- "configuration.md",
470
- "contributing.md",
471
- "cover.md",
472
- "index.html",
473
- "resources.md"
474
- ]
475
- }
476
- ]
477
- },
478
- {
479
- "Name": "Meadow",
480
- "Key": "meadow",
481
- "Description": "Data access layer: ORM, query DSL, schema, DB connectors",
482
- "Modules": [
483
- {
484
- "Name": "bibliograph",
485
- "Repo": "bibliograph",
486
- "Group": "meadow",
487
- "Branch": "master",
488
- "HasDocs": false,
489
- "HasCover": false,
490
- "Sidebar": [],
491
- "DocFiles": []
492
- },
493
- {
494
- "Name": "bibliograph-storage-leveldb",
495
- "Repo": "bibliograph-storage-leveldb",
496
- "Group": "meadow",
497
- "Branch": "master",
498
- "HasDocs": false,
499
- "HasCover": false,
500
- "Sidebar": [],
501
- "DocFiles": []
502
- },
503
- {
504
- "Name": "bibliograph-storage-lmdb",
505
- "Repo": "bibliograph-storage-lmdb",
506
- "Group": "meadow",
507
- "Branch": "master",
508
- "HasDocs": false,
509
- "HasCover": false,
510
- "Sidebar": [],
511
- "DocFiles": []
512
- },
513
- {
514
- "Name": "bibliograph-storage-rocksdb",
515
- "Repo": "bibliograph-storage-rocksdb",
516
- "Group": "meadow",
517
- "Branch": "master",
518
- "HasDocs": false,
519
- "HasCover": false,
520
- "Sidebar": [],
521
- "DocFiles": []
522
- },
523
- {
524
- "Name": "foxhound",
525
- "Repo": "foxhound",
526
- "Group": "meadow",
527
- "Branch": "master",
528
- "HasDocs": true,
529
- "HasCover": true,
530
- "Sidebar": [
531
- {
532
- "Title": "Getting Started",
533
- "Children": [
534
- {
535
- "Title": "Introduction",
536
- "Path": "README.md"
537
- },
538
- {
539
- "Title": "Architecture",
540
- "Path": "architecture.md"
541
- }
542
- ]
543
- },
544
- {
545
- "Title": "Query Building",
546
- "Children": [
547
- {
548
- "Title": "Query Overview",
549
- "Path": "query/README.md"
550
- },
551
- {
552
- "Title": "Create",
553
- "Path": "query/create.md"
554
- },
555
- {
556
- "Title": "Read",
557
- "Path": "query/read.md"
558
- },
559
- {
560
- "Title": "Update",
561
- "Path": "query/update.md"
562
- },
563
- {
564
- "Title": "Delete",
565
- "Path": "query/delete.md"
566
- },
567
- {
568
- "Title": "Count",
569
- "Path": "query/count.md"
570
- }
571
- ]
572
- },
573
- {
574
- "Title": "Filtering & Sorting",
575
- "Children": [
576
- {
577
- "Title": "Filters",
578
- "Path": "filters.md"
579
- },
580
- {
581
- "Title": "Sorting",
582
- "Path": "sorting.md"
583
- },
584
- {
585
- "Title": "Joins",
586
- "Path": "joins.md"
587
- },
588
- {
589
- "Title": "Pagination",
590
- "Path": "pagination.md"
591
- }
592
- ]
593
- },
594
- {
595
- "Title": "Dialects",
596
- "Children": [
597
- {
598
- "Title": "Dialects Overview",
599
- "Path": "dialects/README.md"
600
- },
601
- {
602
- "Title": "MySQL",
603
- "Path": "dialects/mysql.md"
604
- },
605
- {
606
- "Title": "MSSQL",
607
- "Path": "dialects/mssql.md"
608
- },
609
- {
610
- "Title": "SQLite",
611
- "Path": "dialects/sqlite.md"
612
- },
613
- {
614
- "Title": "ALASQL",
615
- "Path": "dialects/alasql.md"
616
- }
617
- ]
618
- },
619
- {
620
- "Title": "Advanced",
621
- "Children": [
622
- {
623
- "Title": "Schema Integration",
624
- "Path": "schema.md"
625
- },
626
- {
627
- "Title": "Query Overrides",
628
- "Path": "query-overrides.md"
629
- },
630
- {
631
- "Title": "Configuration Reference",
632
- "Path": "configuration.md"
633
- }
634
- ]
635
- }
636
- ],
637
- "DocFiles": [
638
- ".nojekyll",
639
- "README.md",
640
- "_sidebar.md",
641
- "architecture.md",
642
- "configuration.md",
643
- "cover.md",
644
- "dialects/README.md",
645
- "dialects/alasql.md",
646
- "dialects/mssql.md",
647
- "dialects/mysql.md",
648
- "dialects/sqlite.md",
649
- "filters.md",
650
- "index.html",
651
- "joins.md",
652
- "pagination.md",
653
- "query/README.md",
654
- "query/count.md",
655
- "query/create.md",
656
- "query/delete.md",
657
- "query/read.md",
658
- "query/update.md",
659
- "query-overrides.md",
660
- "schema.md",
661
- "sorting.md"
662
- ]
663
- },
664
- {
665
- "Name": "meadow",
666
- "Repo": "meadow",
667
- "Group": "meadow",
668
- "Branch": "master",
669
- "HasDocs": true,
670
- "HasCover": false,
671
- "Sidebar": [
672
- {
673
- "Title": "Getting Started",
674
- "Children": [
675
- {
676
- "Title": "Introduction",
677
- "Path": "README.md"
678
- },
679
- {
680
- "Title": "Architecture",
681
- "Path": "architecture.md"
682
- }
683
- ]
684
- },
685
- {
686
- "Title": "Core Concepts",
687
- "Children": [
688
- {
689
- "Title": "Schema",
690
- "Path": "schema/README.md"
691
- },
692
- {
693
- "Title": "CRUD Operations",
694
- "Path": "crud-operations.md"
695
- },
696
- {
697
- "Title": "Query DSL",
698
- "Path": "query-dsl.md"
699
- },
700
- {
701
- "Title": "Raw Queries",
702
- "Path": "raw-queries.md"
703
- }
704
- ]
705
- },
706
- {
707
- "Title": "Schema",
708
- "Children": [
709
- {
710
- "Title": "Schema Overview",
711
- "Path": "schema/README.md"
712
- }
713
- ]
714
- },
715
- {
716
- "Title": "Query Operations",
717
- "Children": [
718
- {
719
- "Title": "Query Overview",
720
- "Path": "query/README.md"
721
- },
722
- {
723
- "Title": "Create",
724
- "Path": "query/create.md"
725
- },
726
- {
727
- "Title": "Read",
728
- "Path": "query/read.md"
729
- },
730
- {
731
- "Title": "Update",
732
- "Path": "query/update.md"
733
- },
734
- {
735
- "Title": "Delete",
736
- "Path": "query/delete.md"
737
- },
738
- {
739
- "Title": "Count",
740
- "Path": "query/count.md"
741
- }
742
- ]
743
- },
744
- {
745
- "Title": "Providers",
746
- "Children": [
747
- {
748
- "Title": "Providers Overview",
749
- "Path": "providers/README.md"
750
- },
751
- {
752
- "Title": "MySQL",
753
- "Path": "providers/mysql.md"
754
- },
755
- {
756
- "Title": "MSSQL",
757
- "Path": "providers/mssql.md"
758
- },
759
- {
760
- "Title": "SQLite",
761
- "Path": "providers/sqlite.md"
762
- },
763
- {
764
- "Title": "ALASQL",
765
- "Path": "providers/alasql.md"
766
- }
767
- ]
768
- },
769
- {
770
- "Title": "Advanced",
771
- "Children": [
772
- {
773
- "Title": "Audit Tracking",
774
- "Path": "audit-tracking.md"
775
- },
776
- {
777
- "Title": "Soft Deletes",
778
- "Path": "soft-deletes.md"
779
- },
780
- {
781
- "Title": "Configuration Reference",
782
- "Path": "configuration.md"
783
- }
784
- ]
785
- }
786
- ],
787
- "DocFiles": [
788
- "README.md",
789
- "_sidebar.md",
790
- "providers/README.md",
791
- "providers/alasql.md",
792
- "providers/mssql.md",
793
- "providers/mysql.md",
794
- "providers/sqlite.md",
795
- "query/README.md",
796
- "query/count.md",
797
- "query/create.md",
798
- "query/delete.md",
799
- "query/read.md",
800
- "query/update.md",
801
- "schema/README.md"
802
- ]
803
- },
804
- {
805
- "Name": "meadow-connection-mssql",
806
- "Repo": "meadow-connection-mssql",
807
- "Group": "meadow",
808
- "Branch": "master",
809
- "HasDocs": false,
810
- "HasCover": false,
811
- "Sidebar": [],
812
- "DocFiles": []
813
- },
814
- {
815
- "Name": "meadow-connection-mysql",
816
- "Repo": "meadow-connection-mysql",
817
- "Group": "meadow",
818
- "Branch": "master",
819
- "HasDocs": false,
820
- "HasCover": false,
821
- "Sidebar": [],
822
- "DocFiles": []
823
- },
824
- {
825
- "Name": "meadow-connection-sqlite",
826
- "Repo": "meadow-connection-sqlite",
827
- "Group": "meadow",
828
- "Branch": "master",
829
- "HasDocs": false,
830
- "HasCover": false,
831
- "Sidebar": [],
832
- "DocFiles": []
833
- },
834
- {
835
- "Name": "meadow-endpoints",
836
- "Repo": "meadow-endpoints",
837
- "Group": "meadow",
838
- "Branch": "master",
839
- "HasDocs": true,
840
- "HasCover": false,
841
- "Sidebar": [
842
- {
843
- "Title": "Getting Started",
844
- "Children": [
845
- {
846
- "Title": "Introduction",
847
- "Path": "README.md"
848
- },
849
- {
850
- "Title": "Getting Started",
851
- "Path": "getting-started.md"
852
- },
853
- {
854
- "Title": "Architecture",
855
- "Path": "architecture.md"
856
- }
857
- ]
858
- },
859
- {
860
- "Title": "Core Concepts",
861
- "Children": [
862
- {
863
- "Title": "Generated Routes",
864
- "Path": "generated-routes.md"
865
- },
866
- {
867
- "Title": "Behavior Injection",
868
- "Path": "behavior-injection.md"
869
- },
870
- {
871
- "Title": "Dynamic Filtering",
872
- "Path": "dynamic-filtering.md"
873
- },
874
- {
875
- "Title": "Session Management",
876
- "Path": "session-management.md"
877
- }
878
- ]
879
- },
880
- {
881
- "Title": "Endpoints",
882
- "Children": [
883
- {
884
- "Title": "Create Endpoints",
885
- "Path": "endpoints/create.md"
886
- },
887
- {
888
- "Title": "Read Endpoints",
889
- "Path": "endpoints/read.md"
890
- },
891
- {
892
- "Title": "Update Endpoints",
893
- "Path": "endpoints/update.md"
894
- },
895
- {
896
- "Title": "Delete Endpoints",
897
- "Path": "endpoints/delete.md"
898
- },
899
- {
900
- "Title": "Count Endpoints",
901
- "Path": "endpoints/count.md"
902
- },
903
- {
904
- "Title": "Schema Endpoints",
905
- "Path": "endpoints/schema.md"
906
- }
907
- ]
908
- },
909
- {
910
- "Title": "CRUD Deep Dive",
911
- "Children": [
912
- {
913
- "Title": "Overview",
914
- "Path": "crud/README.md"
915
- },
916
- {
917
- "Title": "Create",
918
- "Path": "crud/create.md"
919
- },
920
- {
921
- "Title": "Read",
922
- "Path": "crud/read.md"
923
- },
924
- {
925
- "Title": "Update",
926
- "Path": "crud/update.md"
927
- },
928
- {
929
- "Title": "Delete",
930
- "Path": "crud/delete.md"
931
- },
932
- {
933
- "Title": "Count",
934
- "Path": "crud/count.md"
935
- },
936
- {
937
- "Title": "Schema, New & Validate",
938
- "Path": "crud/schema.md"
939
- }
940
- ]
941
- },
942
- {
943
- "Title": "Advanced",
944
- "Children": [
945
- {
946
- "Title": "Custom Controllers",
947
- "Path": "custom-controllers.md"
948
- },
949
- {
950
- "Title": "Error Handling",
951
- "Path": "error-handling.md"
952
- },
953
- {
954
- "Title": "Configuration Reference",
955
- "Path": "configuration.md"
956
- }
957
- ]
958
- }
959
- ],
960
- "DocFiles": [
961
- "README.md",
962
- "_sidebar.md",
963
- "crud/README.md",
964
- "crud/count.md",
965
- "crud/create.md",
966
- "crud/delete.md",
967
- "crud/read.md",
968
- "crud/schema.md",
969
- "crud/update.md"
970
- ]
971
- },
972
- {
973
- "Name": "meadow-graph-client",
974
- "Repo": "meadow-graph-client",
975
- "Group": "meadow",
976
- "Branch": "master",
977
- "HasDocs": false,
978
- "HasCover": false,
979
- "Sidebar": [],
980
- "DocFiles": []
981
- },
982
- {
983
- "Name": "meadow-integration",
984
- "Repo": "meadow-integration",
985
- "Group": "meadow",
986
- "Branch": "master",
987
- "HasDocs": true,
988
- "HasCover": false,
989
- "Sidebar": [],
990
- "DocFiles": [
991
- ".nojekyll",
992
- "README.md",
993
- "examples/bookstore/.gitignore",
994
- "examples/bookstore/BookData.md",
995
- "examples/bookstore/Generate_Bookstore_Comprehension.sh",
996
- "examples/bookstore/mapping_books_Author.json",
997
- "examples/bookstore/mapping_books_Book.json",
998
- "examples/bookstore/mapping_books_BookAuthorJoin.json",
999
- "examples/data/books.csv",
1000
- "examples/data/seattle_neighborhoods/Seattle_Data_Information.md",
1001
- "examples/data/seattle_neighborhoods/housing_characteristics_Neighborhoods.csv",
1002
- "examples/data/seattle_neighborhoods/housing_costs_Neighborhoods.csv",
1003
- "examples/data/seattle_neighborhoods/race_ethnicity_Neighborhoods.csv",
1004
- "examples/multi_set_integration/multi_set_step_by_step.md",
1005
- "examples/multi_set_integration/multi_set_step_by_step_overview_diagram.excalidraw.svg",
1006
- "examples/multi_set_integration/part_1_getting_data.md",
1007
- "index.html",
1008
- "vocabulary/Column.md",
1009
- "vocabulary/Comprehension.md",
1010
- "vocabulary/Confidence.md",
1011
- "vocabulary/Data Capture Date.md",
1012
- "vocabulary/Data Entry Date.md",
1013
- "vocabulary/Entity.md",
1014
- "vocabulary/Format.md",
1015
- "vocabulary/GUID.md",
1016
- "vocabulary/Join.md",
1017
- "vocabulary/Record.md",
1018
- "vocabulary/Schema.md",
1019
- "vocabulary/Set.md",
1020
- "vocabulary/Snapshot.md",
1021
- "vocabulary/Source.md",
1022
- "vocabulary/Version.md"
1023
- ]
1024
- },
1025
- {
1026
- "Name": "parime",
1027
- "Repo": "parime",
1028
- "Group": "meadow",
1029
- "Branch": "master",
1030
- "HasDocs": false,
1031
- "HasCover": false,
1032
- "Sidebar": [],
1033
- "DocFiles": []
1034
- },
1035
- {
1036
- "Name": "retold-data-service",
1037
- "Repo": "retold-data-service",
1038
- "Group": "meadow",
1039
- "Branch": "master",
1040
- "HasDocs": true,
1041
- "HasCover": true,
1042
- "Sidebar": [
1043
- {
1044
- "Title": "Getting Started",
1045
- "Children": [
1046
- {
1047
- "Title": "Introduction",
1048
- "Path": "README.md"
1049
- },
1050
- {
1051
- "Title": "Architecture",
1052
- "Path": "architecture.md"
1053
- },
1054
- {
1055
- "Title": "Configuration",
1056
- "Path": "configuration.md"
1057
- }
1058
- ]
1059
- },
1060
- {
1061
- "Title": "Usage",
1062
- "Children": [
1063
- {
1064
- "Title": "Initialization",
1065
- "Path": "initialization.md"
1066
- },
1067
- {
1068
- "Title": "Endpoints",
1069
- "Path": "endpoints.md"
1070
- },
1071
- {
1072
- "Title": "DAL Access",
1073
- "Path": "dal-access.md"
1074
- },
1075
- {
1076
- "Title": "Behavior Injection",
1077
- "Path": "behavior-injection.md"
1078
- }
1079
- ]
1080
- },
1081
- {
1082
- "Title": "Advanced",
1083
- "Children": [
1084
- {
1085
- "Title": "Lifecycle Hooks",
1086
- "Path": "lifecycle-hooks.md"
1087
- },
1088
- {
1089
- "Title": "Storage Providers",
1090
- "Path": "storage-providers.md"
1091
- },
1092
- {
1093
- "Title": "Schema Definition",
1094
- "Path": "schema-definition.md"
1095
- }
1096
- ]
1097
- }
1098
- ],
1099
- "DocFiles": [
1100
- ".nojekyll",
1101
- "README.md",
1102
- "_sidebar.md",
1103
- "architecture.md",
1104
- "behavior-injection.md",
1105
- "configuration.md",
1106
- "cover.md",
1107
- "dal-access.md",
1108
- "endpoints.md",
1109
- "index.html",
1110
- "initialization.md",
1111
- "lifecycle-hooks.md",
1112
- "schema-definition.md",
1113
- "storage-providers.md"
1114
- ]
1115
- },
1116
- {
1117
- "Name": "retold-harness",
1118
- "Repo": "retold-harness",
1119
- "Group": "meadow",
1120
- "Branch": "master",
1121
- "HasDocs": true,
1122
- "HasCover": false,
1123
- "Sidebar": [
1124
- {
1125
- "Title": "Getting Started",
1126
- "Children": [
1127
- {
1128
- "Title": "Overview",
1129
- "Path": "README.md"
1130
- },
1131
- {
1132
- "Title": "Quick Start",
1133
- "Path": "quickstart.md"
1134
- },
1135
- {
1136
- "Title": "Docker Setup",
1137
- "Path": "docker.md"
1138
- }
1139
- ]
1140
- },
1141
- {
1142
- "Title": "Data Model",
1143
- "Children": [
1144
- {
1145
- "Title": "Schema Overview",
1146
- "Path": "schema.md"
1147
- },
1148
- {
1149
- "Title": "Entity Reference",
1150
- "Path": "entities.md"
1151
- }
1152
- ]
1153
- },
1154
- {
1155
- "Title": "API",
1156
- "Children": [
1157
- {
1158
- "Title": "REST Endpoints",
1159
- "Path": "endpoints.md"
1160
- },
1161
- {
1162
- "Title": "Filtering & Pagination",
1163
- "Path": "filtering.md"
1164
- }
1165
- ]
1166
- },
1167
- {
1168
- "Title": "Customization",
1169
- "Children": [
1170
- {
1171
- "Title": "Behavior Injection",
1172
- "Path": "behavior-injection.md"
1173
- },
1174
- {
1175
- "Title": "Configuration",
1176
- "Path": "configuration.md"
1177
- }
1178
- ]
1179
- },
1180
- {
1181
- "Title": "Development",
1182
- "Children": [
1183
- {
1184
- "Title": "Testing",
1185
- "Path": "testing.md"
1186
- },
1187
- {
1188
- "Title": "Luxury Code IDE",
1189
- "Path": "luxury-code.md"
1190
- }
1191
- ]
1192
- }
1193
- ],
1194
- "DocFiles": [
1195
- ".nojekyll",
1196
- "README.md",
1197
- "_coverpage.md",
1198
- "_sidebar.md",
1199
- "behavior-injection.md",
1200
- "configuration.md",
1201
- "docker.md",
1202
- "endpoints.md",
1203
- "entities.md",
1204
- "filtering.md",
1205
- "index.html",
1206
- "luxury-code.md",
1207
- "quickstart.md",
1208
- "schema.md",
1209
- "testing.md"
1210
- ]
1211
- },
1212
- {
1213
- "Name": "stricture",
1214
- "Repo": "stricture",
1215
- "Group": "meadow",
1216
- "Branch": "master",
1217
- "HasDocs": false,
1218
- "HasCover": false,
1219
- "Sidebar": [],
1220
- "DocFiles": []
1221
- }
1222
- ]
1223
- },
1224
- {
1225
- "Name": "Orator",
1226
- "Key": "orator",
1227
- "Description": "API server: Restify, static files, HTTP proxy, WebSocket",
1228
- "Modules": [
1229
- {
1230
- "Name": "orator",
1231
- "Repo": "orator",
1232
- "Group": "orator",
1233
- "Branch": "master",
1234
- "HasDocs": true,
1235
- "HasCover": true,
1236
- "Sidebar": [
1237
- {
1238
- "Title": "Getting Started",
1239
- "Children": [
1240
- {
1241
- "Title": "Introduction",
1242
- "Path": "README.md"
1243
- },
1244
- {
1245
- "Title": "Getting Started",
1246
- "Path": "getting-started.md"
1247
- },
1248
- {
1249
- "Title": "Architecture",
1250
- "Path": "architecture.md"
1251
- }
1252
- ]
1253
- },
1254
- {
1255
- "Title": "Core Concepts",
1256
- "Children": [
1257
- {
1258
- "Title": "Service Servers",
1259
- "Path": "service-servers.md"
1260
- },
1261
- {
1262
- "Title": "Lifecycle Hooks",
1263
- "Path": "lifecycle-hooks.md"
1264
- },
1265
- {
1266
- "Title": "Static File Serving",
1267
- "Path": "static-files.md"
1268
- }
1269
- ]
1270
- },
1271
- {
1272
- "Title": "Service Server Implementations",
1273
- "Children": [
1274
- {
1275
- "Title": "IPC Server",
1276
- "Path": "ipc-server.md"
1277
- },
1278
- {
1279
- "Title": "Restify Server",
1280
- "Path": "restify-server.md"
1281
- }
1282
- ]
1283
- },
1284
- {
1285
- "Title": "Advanced",
1286
- "Children": [
1287
- {
1288
- "Title": "HTTP Proxy",
1289
- "Path": "http-proxy.md"
1290
- },
1291
- {
1292
- "Title": "Configuration Reference",
1293
- "Path": "configuration.md"
1294
- }
1295
- ]
1296
- }
1297
- ],
1298
- "DocFiles": [
1299
- ".nojekyll",
1300
- "README.md",
1301
- "_sidebar.md",
1302
- "architecture.md",
1303
- "configuration.md",
1304
- "cover.md",
1305
- "getting-started.md",
1306
- "http-proxy.md",
1307
- "index.html",
1308
- "ipc-server.md",
1309
- "lifecycle-hooks.md",
1310
- "restify-server.md",
1311
- "service-servers.md",
1312
- "static-files.md"
1313
- ]
1314
- },
1315
- {
1316
- "Name": "orator-conversion",
1317
- "Repo": "orator-conversion",
1318
- "Group": "orator",
1319
- "Branch": "master",
1320
- "HasDocs": true,
1321
- "HasCover": true,
1322
- "Sidebar": [
1323
- {
1324
- "Title": "Getting Started",
1325
- "Children": [
1326
- {
1327
- "Title": "Introduction",
1328
- "Path": "README.md"
1329
- },
1330
- {
1331
- "Title": "Getting Started",
1332
- "Path": "getting-started.md"
1333
- }
1334
- ]
1335
- },
1336
- {
1337
- "Title": "Reference",
1338
- "Children": [
1339
- {
1340
- "Title": "Configuration",
1341
- "Path": "configuration.md"
1342
- },
1343
- {
1344
- "Title": "API Reference",
1345
- "Path": "api-reference.md"
1346
- }
1347
- ]
1348
- },
1349
- {
1350
- "Title": "Endpoints",
1351
- "Children": [
1352
- {
1353
- "Title": "JPG to PNG",
1354
- "Path": "endpoints/001-jpg-to-png.md"
1355
- },
1356
- {
1357
- "Title": "PNG to JPG",
1358
- "Path": "endpoints/002-png-to-jpg.md"
1359
- },
1360
- {
1361
- "Title": "PDF to Page PNG",
1362
- "Path": "endpoints/003-pdf-to-page-png.md"
1363
- },
1364
- {
1365
- "Title": "PDF to Page JPG",
1366
- "Path": "endpoints/004-pdf-to-page-jpg.md"
1367
- }
1368
- ]
1369
- }
1370
- ],
1371
- "DocFiles": [
1372
- ".nojekyll",
1373
- "README.md",
1374
- "_sidebar.md",
1375
- "api-reference.md",
1376
- "configuration.md",
1377
- "cover.md",
1378
- "endpoints/001-jpg-to-png.md",
1379
- "endpoints/002-png-to-jpg.md",
1380
- "endpoints/003-pdf-to-page-png.md",
1381
- "endpoints/004-pdf-to-page-jpg.md",
1382
- "endpoints/README.md",
1383
- "getting-started.md",
1384
- "index.html"
1385
- ]
1386
- },
1387
- {
1388
- "Name": "orator-endpoint",
1389
- "Repo": "orator-endpoint",
1390
- "Group": "orator",
1391
- "Branch": "master",
1392
- "HasDocs": false,
1393
- "HasCover": false,
1394
- "Sidebar": [],
1395
- "DocFiles": []
1396
- },
1397
- {
1398
- "Name": "orator-http-proxy",
1399
- "Repo": "orator-http-proxy",
1400
- "Group": "orator",
1401
- "Branch": "master",
1402
- "HasDocs": true,
1403
- "HasCover": true,
1404
- "Sidebar": [
1405
- {
1406
- "Title": "Getting Started",
1407
- "Children": [
1408
- {
1409
- "Title": "Introduction",
1410
- "Path": "README.md"
1411
- },
1412
- {
1413
- "Title": "Getting Started",
1414
- "Path": "getting-started.md"
1415
- }
1416
- ]
1417
- },
1418
- {
1419
- "Title": "Reference",
1420
- "Children": [
1421
- {
1422
- "Title": "Configuration",
1423
- "Path": "configuration.md"
1424
- }
1425
- ]
1426
- }
1427
- ],
1428
- "DocFiles": [
1429
- ".nojekyll",
1430
- "README.md",
1431
- "_sidebar.md",
1432
- "configuration.md",
1433
- "cover.md",
1434
- "getting-started.md",
1435
- "index.html"
1436
- ]
1437
- },
1438
- {
1439
- "Name": "orator-serviceserver-base",
1440
- "Repo": "orator-serviceserver-base",
1441
- "Group": "orator",
1442
- "Branch": "master",
1443
- "HasDocs": true,
1444
- "HasCover": true,
1445
- "Sidebar": [
1446
- {
1447
- "Title": "Getting Started",
1448
- "Children": [
1449
- {
1450
- "Title": "Introduction",
1451
- "Path": "README.md"
1452
- },
1453
- {
1454
- "Title": "Creating a Custom Server",
1455
- "Path": "custom-server.md"
1456
- }
1457
- ]
1458
- },
1459
- {
1460
- "Title": "Reference",
1461
- "Children": [
1462
- {
1463
- "Title": "API Reference",
1464
- "Path": "api-reference.md"
1465
- },
1466
- {
1467
- "Title": "Template Method Pattern",
1468
- "Path": "template-method.md"
1469
- }
1470
- ]
1471
- }
1472
- ],
1473
- "DocFiles": [
1474
- ".nojekyll",
1475
- "README.md",
1476
- "_sidebar.md",
1477
- "api-reference.md",
1478
- "cover.md",
1479
- "custom-server.md",
1480
- "index.html",
1481
- "template-method.md"
1482
- ]
1483
- },
1484
- {
1485
- "Name": "orator-serviceserver-restify",
1486
- "Repo": "orator-serviceserver-restify",
1487
- "Group": "orator",
1488
- "Branch": "master",
1489
- "HasDocs": true,
1490
- "HasCover": true,
1491
- "Sidebar": [
1492
- {
1493
- "Title": "Getting Started",
1494
- "Children": [
1495
- {
1496
- "Title": "Introduction",
1497
- "Path": "README.md"
1498
- },
1499
- {
1500
- "Title": "Getting Started",
1501
- "Path": "getting-started.md"
1502
- }
1503
- ]
1504
- },
1505
- {
1506
- "Title": "Reference",
1507
- "Children": [
1508
- {
1509
- "Title": "Configuration",
1510
- "Path": "configuration.md"
1511
- },
1512
- {
1513
- "Title": "Middleware",
1514
- "Path": "middleware.md"
1515
- },
1516
- {
1517
- "Title": "Body Parsing",
1518
- "Path": "body-parsing.md"
1519
- }
1520
- ]
1521
- }
1522
- ],
1523
- "DocFiles": [
1524
- ".nojekyll",
1525
- "README.md",
1526
- "_sidebar.md",
1527
- "body-parsing.md",
1528
- "configuration.md",
1529
- "cover.md",
1530
- "getting-started.md",
1531
- "index.html",
1532
- "middleware.md"
1533
- ]
1534
- },
1535
- {
1536
- "Name": "orator-static-server",
1537
- "Repo": "orator-static-server",
1538
- "Group": "orator",
1539
- "Branch": "master",
1540
- "HasDocs": true,
1541
- "HasCover": true,
1542
- "Sidebar": [
1543
- {
1544
- "Title": "Getting Started",
1545
- "Children": [
1546
- {
1547
- "Title": "Introduction",
1548
- "Path": "README.md"
1549
- },
1550
- {
1551
- "Title": "Getting Started",
1552
- "Path": "getting-started.md"
1553
- }
1554
- ]
1555
- },
1556
- {
1557
- "Title": "Reference",
1558
- "Children": [
1559
- {
1560
- "Title": "API Reference",
1561
- "Path": "api-reference.md"
1562
- },
1563
- {
1564
- "Title": "Subdomain Routing",
1565
- "Path": "subdomain-routing.md"
1566
- }
1567
- ]
1568
- }
1569
- ],
1570
- "DocFiles": [
1571
- ".nojekyll",
1572
- "README.md",
1573
- "_sidebar.md",
1574
- "api-reference.md",
1575
- "cover.md",
1576
- "getting-started.md",
1577
- "index.html",
1578
- "subdomain-routing.md"
1579
- ]
1580
- },
1581
- {
1582
- "Name": "tidings",
1583
- "Repo": "tidings",
1584
- "Group": "orator",
1585
- "Branch": "master",
1586
- "HasDocs": false,
1587
- "HasCover": false,
1588
- "Sidebar": [],
1589
- "DocFiles": []
1590
- }
1591
- ]
1592
- },
1593
- {
1594
- "Name": "Pict",
1595
- "Key": "pict",
1596
- "Description": "MVC framework: views, templates, providers, forms, TUI",
1597
- "Modules": [
1598
- {
1599
- "Name": "cryptbrau",
1600
- "Repo": "cryptbrau",
1601
- "Group": "pict",
1602
- "Branch": "master",
1603
- "HasDocs": false,
1604
- "HasCover": false,
1605
- "Sidebar": [],
1606
- "DocFiles": []
1607
- },
1608
- {
1609
- "Name": "informary",
1610
- "Repo": "informary",
1611
- "Group": "pict",
1612
- "Branch": "master",
1613
- "HasDocs": false,
1614
- "HasCover": false,
1615
- "Sidebar": [],
1616
- "DocFiles": []
1617
- },
1618
- {
1619
- "Name": "pict",
1620
- "Repo": "pict",
1621
- "Group": "pict",
1622
- "Branch": "master",
1623
- "HasDocs": true,
1624
- "HasCover": true,
1625
- "Sidebar": [
1626
- {
1627
- "Title": "Getting Started",
1628
- "Children": [
1629
- {
1630
- "Title": "Introduction",
1631
- "Path": "README.md"
1632
- },
1633
- {
1634
- "Title": "Quickstart",
1635
- "Path": "pict_quickstart.md"
1636
- },
1637
- {
1638
- "Title": "Key Concepts",
1639
- "Path": "pict_keyconcepts.md"
1640
- }
1641
- ]
1642
- },
1643
- {
1644
- "Title": "Core Concepts",
1645
- "Children": [
1646
- {
1647
- "Title": "State Management",
1648
- "Path": "state_management/README.md"
1649
- },
1650
- {
1651
- "Title": "Views",
1652
- "Path": "views/README.md"
1653
- },
1654
- {
1655
- "Title": "Providers",
1656
- "Path": "providers/README.md"
1657
- },
1658
- {
1659
- "Title": "Applications",
1660
- "Path": "applications/README.md"
1661
- },
1662
- {
1663
- "Title": "Solvers",
1664
- "Path": "solvers/README.md"
1665
- }
1666
- ]
1667
- },
1668
- {
1669
- "Title": "Templating",
1670
- "Children": [
1671
- {
1672
- "Title": "Metatemplate Manager",
1673
- "Path": "templating/pict_metatemplate_manager.md"
1674
- },
1675
- {
1676
- "Title": "Template Expressions",
1677
- "Path": "templating/pict_template_expressions.md"
1678
- }
1679
- ]
1680
- },
1681
- {
1682
- "Title": "Application Lifecycle",
1683
- "Children": [
1684
- {
1685
- "Title": "Lifecycle Overview",
1686
- "Path": "application_lifecycle/README.md"
1687
- }
1688
- ]
1689
- },
1690
- {
1691
- "Title": "Design Philosophy",
1692
- "Children": [
1693
- {
1694
- "Title": "Overall Philosophy",
1695
- "Path": "design_philosophy/overall_design_philosophy.md"
1696
- },
1697
- {
1698
- "Title": "Lifecycle Events",
1699
- "Path": "design_philosophy/applications_providers_views_and_solvers.md"
1700
- },
1701
- {
1702
- "Title": "MVC Pattern",
1703
- "Path": "design_philosophy/model_view_controller_ohmy.md"
1704
- },
1705
- {
1706
- "Title": "State & Lifecycle Coupling",
1707
- "Path": "design_philosophy/state_management_and_lifecycle_coupling.md"
1708
- }
1709
- ]
1710
- },
1711
- {
1712
- "Title": "Development",
1713
- "Children": [
1714
- {
1715
- "Title": "Building Pict",
1716
- "Path": "development/building_pict.md"
1717
- },
1718
- {
1719
- "Title": "Automated Testing",
1720
- "Path": "development/testing_pict.md"
1721
- },
1722
- {
1723
- "Title": "Luxury Code",
1724
- "Path": "development/pict_luxury_code.md"
1725
- },
1726
- {
1727
- "Title": "Virtual Environments",
1728
- "Path": "development/pict_virtual_environments.md"
1729
- }
1730
- ]
1731
- },
1732
- {
1733
- "Title": "Examples",
1734
- "Children": [
1735
- {
1736
- "Title": "Hello World",
1737
- "Path": "examples/hello_world/README.md"
1738
- }
1739
- ]
1740
- }
1741
- ],
1742
- "DocFiles": [
1743
- ".nojekyll",
1744
- "README.md",
1745
- "_sidebar.md",
1746
- "application_lifecycle/README.md",
1747
- "applications/README.md",
1748
- "cover.md",
1749
- "dependencies/docsify-4.js",
1750
- "dependencies/pict.min.js",
1751
- "dependencies/vue.css",
1752
- "design_philosophy/applications_providers_views_and_solvers.md",
1753
- "design_philosophy/config.json",
1754
- "design_philosophy/model_view_controller_ohmy.md",
1755
- "design_philosophy/overall_design_philosophy.md",
1756
- "design_philosophy/state_management_and_lifecycle_coupling.md",
1757
- "design_philosophy/traditional_application_shape.excalidraw.svg",
1758
- "development/building_pict.md",
1759
- "development/pict_luxury_code.md",
1760
- "development/pict_virtual_environments.md",
1761
- "development/testing_pict.md",
1762
- "examples/complex_example_seattle_data/data/Seattle_Data_Information.md",
1763
- "examples/complex_example_seattle_data/data/housing_characteristics_Neighborhoods_4965628210524256870.csv",
1764
- "examples/complex_example_seattle_data/data/housing_costs_Neighborhoods_-8848403750169343217.csv",
1765
- "examples/complex_example_seattle_data/data/race_ethnicity_Neighborhoods_-7085838689260358328.csv",
1766
- "examples/hello_world/.babelrc",
1767
- "examples/hello_world/.browserslistrc",
1768
- "examples/hello_world/.browserslistrc-BACKUP",
1769
- "examples/hello_world/.gulpfile-quackage-config.json",
1770
- "examples/hello_world/.gulpfile-quackage.js",
1771
- "examples/hello_world/.quackage.json",
1772
- "examples/hello_world/README.md",
1773
- "examples/hello_world/dist/.gitignore",
1774
- "examples/hello_world/dist/hello_world.js",
1775
- "examples/hello_world/dist/hello_world.js.map",
1776
- "examples/hello_world/dist/hello_world.min.js",
1777
- "examples/hello_world/dist/hello_world.min.js.map",
1778
- "examples/hello_world/dist/index.html",
1779
- "examples/hello_world/index.js",
1780
- "examples/hello_world/package-lock.json",
1781
- "examples/hello_world/package.json",
1782
- "examples/quickstart.js",
1783
- "index.html",
1784
- "pict_keyconcepts.md",
1785
- "pict_quickstart.md",
1786
- "providers/README.md",
1787
- "solvers/README.md",
1788
- "state_management/README.md",
1789
- "templating/pict_metatemplate_manager.md",
1790
- "templating/pict_template_expressions.md",
1791
- "views/README.md"
1792
- ]
1793
- },
1794
- {
1795
- "Name": "pict-application",
1796
- "Repo": "pict-application",
1797
- "Group": "pict",
1798
- "Branch": "master",
1799
- "HasDocs": true,
1800
- "HasCover": true,
1801
- "Sidebar": [
1802
- {
1803
- "Title": "Getting Started",
1804
- "Children": [
1805
- {
1806
- "Title": "Introduction",
1807
- "Path": "README.md"
1808
- },
1809
- {
1810
- "Title": "Getting Started",
1811
- "Path": "GETTING_STARTED.md"
1812
- }
1813
- ]
1814
- },
1815
- {
1816
- "Title": "Reference",
1817
- "Children": [
1818
- {
1819
- "Title": "Configuration",
1820
- "Path": "CONFIGURATION.md"
1821
- },
1822
- {
1823
- "Title": "Examples",
1824
- "Path": "EXAMPLES.md"
1825
- }
1826
- ]
1827
- }
1828
- ],
1829
- "DocFiles": [
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",
1830
494
  ".nojekyll",
1831
- "CONFIGURATION.md",
1832
- "EXAMPLES.md",
1833
- "GETTING_STARTED.md",
1834
495
  "README.md",
1835
496
  "_sidebar.md",
497
+ "architecture.md",
498
+ "configuration.md",
1836
499
  "cover.md",
1837
- "index.html"
1838
- ]
1839
- },
1840
- {
1841
- "Name": "pict-chance",
1842
- "Repo": "pict-chance",
1843
- "Group": "pict",
1844
- "Branch": "master",
1845
- "HasDocs": false,
1846
- "HasCover": false,
1847
- "Sidebar": [],
1848
- "DocFiles": []
1849
- },
1850
- {
1851
- "Name": "pict-docuserve",
1852
- "Repo": "pict-docuserve",
1853
- "Group": "pict",
1854
- "Branch": "master",
1855
- "HasDocs": true,
1856
- "HasCover": true,
1857
- "Sidebar": [
1858
- {
1859
- "Title": "Getting Started",
1860
- "Children": [
1861
- {
1862
- "Title": "Quick Start",
1863
- "Path": "quick-start.md"
1864
- },
1865
- {
1866
- "Title": "Configuration",
1867
- "Path": "configuration.md"
1868
- }
1869
- ]
1870
- },
1871
- {
1872
- "Title": "Core Concepts",
1873
- "Children": [
1874
- {
1875
- "Title": "Tasks",
1876
- "Path": "tasks.md"
1877
- },
1878
- {
1879
- "Title": "Lists",
1880
- "Path": "lists.md"
1881
- },
1882
- {
1883
- "Title": "Tags & Filters",
1884
- "Path": "tags.md"
1885
- }
1886
- ]
1887
- },
1888
- {
1889
- "Title": "API Reference",
1890
- "Path": "api.md"
1891
- }
1892
- ],
1893
- "DocFiles": [
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",
1894
533
  ".nojekyll",
1895
534
  "README.md",
1896
535
  "_sidebar.md",
1897
536
  "_topbar.md",
1898
- "architecture.md",
1899
- "configuration.md",
1900
- "content-authoring.md",
537
+ "api.md",
1901
538
  "cover.md",
1902
539
  "css/docuserve.css",
1903
- "deployment.md",
1904
- "diagrams.md",
1905
- "example_applications/contacts-app/README.md",
1906
- "example_applications/contacts-app/_sidebar.md",
1907
- "example_applications/contacts-app/_topbar.md",
1908
- "example_applications/contacts-app/api.md",
1909
- "example_applications/contacts-app/configuration.md",
1910
- "example_applications/contacts-app/cover.md",
1911
- "example_applications/contacts-app/data-model.md",
1912
- "example_applications/contacts-app/errorpage.md",
1913
- "example_applications/contacts-app/quick-start.md",
1914
- "example_applications/contacts-app/relationships.md",
1915
- "example_applications/sports-stats-api/README.md",
1916
- "example_applications/sports-stats-api/_sidebar.md",
1917
- "example_applications/sports-stats-api/_topbar.md",
1918
- "example_applications/sports-stats-api/api.md",
1919
- "example_applications/sports-stats-api/authentication.md",
1920
- "example_applications/sports-stats-api/cover.md",
1921
- "example_applications/sports-stats-api/errorpage.md",
1922
- "example_applications/sports-stats-api/games.md",
1923
- "example_applications/sports-stats-api/leagues-teams.md",
1924
- "example_applications/sports-stats-api/players.md",
1925
- "example_applications/sports-stats-api/quick-start.md",
1926
- "example_applications/sports-stats-api/standings.md",
1927
- "example_applications/sports-stats-api/websocket.md",
1928
- "example_applications/todo-app/README.md",
1929
- "example_applications/todo-app/_sidebar.md",
1930
- "example_applications/todo-app/_topbar.md",
1931
- "example_applications/todo-app/api.md",
1932
- "example_applications/todo-app/configuration.md",
1933
- "example_applications/todo-app/cover.md",
1934
- "example_applications/todo-app/errorpage.md",
1935
- "example_applications/todo-app/lists.md",
1936
- "example_applications/todo-app/quick-start.md",
1937
- "example_applications/todo-app/tags.md",
1938
- "example_applications/todo-app/tasks.md",
1939
540
  "index.html",
1940
- "js/pict.min.js",
1941
- "js/pict.min.js.map",
1942
- "latex.md",
1943
- "pict-docuserve.min.js",
1944
- "pict-docuserve.min.js.map",
1945
541
  "retold-catalog.json",
1946
542
  "retold-keyword-index.json",
543
+ "schema.md",
544
+ ".nojekyll",
1947
545
  "README.md",
1948
546
  "_sidebar.md",
1949
547
  "_topbar.md",
1950
548
  "api.md",
1951
- "configuration.md",
1952
549
  "cover.md",
1953
- "data-model.md",
1954
- "errorpage.md",
1955
- "quick-start.md",
1956
- "relationships.md",
550
+ "css/docuserve.css",
551
+ "index.html",
552
+ "retold-catalog.json",
553
+ "retold-keyword-index.json",
554
+ "schema.md",
555
+ ".nojekyll",
1957
556
  "README.md",
1958
557
  "_sidebar.md",
1959
558
  "_topbar.md",
1960
559
  "api.md",
1961
- "authentication.md",
1962
560
  "cover.md",
1963
- "errorpage.md",
1964
- "games.md",
1965
- "leagues-teams.md",
1966
- "players.md",
1967
- "quick-start.md",
1968
- "standings.md",
1969
- "websocket.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",
1970
577
  "README.md",
1971
578
  "_sidebar.md",
1972
579
  "_topbar.md",
1973
- "api.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",
1974
624
  "configuration.md",
1975
625
  "cover.md",
1976
- "errorpage.md",
1977
- "lists.md",
1978
- "quick-start.md",
1979
- "tags.md",
1980
- "tasks.md"
1981
- ]
1982
- },
1983
- {
1984
- "Name": "pict-nonlinearconfig",
1985
- "Repo": "pict-nonlinearconfig",
1986
- "Group": "pict",
1987
- "Branch": "master",
1988
- "HasDocs": false,
1989
- "HasCover": false,
1990
- "Sidebar": [],
1991
- "DocFiles": []
1992
- },
1993
- {
1994
- "Name": "pict-panel",
1995
- "Repo": "pict-panel",
1996
- "Group": "pict",
1997
- "Branch": "master",
1998
- "HasDocs": false,
1999
- "HasCover": false,
2000
- "Sidebar": [],
2001
- "DocFiles": []
2002
- },
2003
- {
2004
- "Name": "pict-provider",
2005
- "Repo": "pict-provider",
2006
- "Group": "pict",
2007
- "Branch": "master",
2008
- "HasDocs": false,
2009
- "HasCover": false,
2010
- "Sidebar": [],
2011
- "DocFiles": []
2012
- },
2013
- {
2014
- "Name": "pict-router",
2015
- "Repo": "pict-router",
2016
- "Group": "pict",
2017
- "Branch": "master",
2018
- "HasDocs": false,
2019
- "HasCover": false,
2020
- "Sidebar": [],
2021
- "DocFiles": []
2022
- },
2023
- {
2024
- "Name": "pict-section-entitymanagement",
2025
- "Repo": "pict-section-entitymanagement",
2026
- "Group": "pict",
2027
- "Branch": "master",
2028
- "HasDocs": false,
2029
- "HasCover": false,
2030
- "Sidebar": [],
2031
- "DocFiles": []
2032
- },
2033
- {
2034
- "Name": "pict-section-flow",
2035
- "Repo": "pict-section-flow",
2036
- "Group": "pict",
2037
- "Branch": "master",
2038
- "HasDocs": false,
2039
- "HasCover": false,
2040
- "Sidebar": [],
2041
- "DocFiles": []
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
+ ]
2042
680
  },
2043
681
  {
2044
- "Name": "pict-section-form",
2045
- "Repo": "pict-section-form",
2046
- "Group": "pict",
682
+ "Name": "orator",
683
+ "Repo": "orator",
684
+ "Group": "modules",
2047
685
  "Branch": "master",
2048
686
  "HasDocs": true,
2049
687
  "HasCover": true,
@@ -2052,107 +690,145 @@
2052
690
  "Title": "Getting Started",
2053
691
  "Children": [
2054
692
  {
2055
- "Title": "Introduction",
693
+ "Title": "Overview",
2056
694
  "Path": "README.md"
2057
695
  },
2058
696
  {
2059
- "Title": "Getting Started",
2060
- "Path": "Getting_Started.md"
2061
- },
2062
- {
2063
- "Title": "Architecture",
2064
- "Path": "Pict_Section_Form_Architecture.md"
2065
- }
2066
- ]
2067
- },
2068
- {
2069
- "Title": "Configuration",
2070
- "Children": [
2071
- {
2072
- "Title": "Configuration",
2073
- "Path": "Configuration.md"
2074
- },
2075
- {
2076
- "Title": "Input Types",
2077
- "Path": "Input_Types.md"
697
+ "Title": "Rendering Pipeline",
698
+ "Path": "rendering-pipeline.md"
2078
699
  },
2079
700
  {
2080
- "Title": "Templates",
2081
- "Path": "Templates.md"
2082
- },
2083
- {
2084
- "Title": "Layouts",
2085
- "Path": "Layouts.md"
701
+ "Title": "Rasterizers",
702
+ "Path": "rasterizers.md"
2086
703
  }
2087
704
  ]
2088
705
  },
2089
706
  {
2090
- "Title": "Advanced",
707
+ "Title": "Reference",
2091
708
  "Children": [
2092
709
  {
2093
- "Title": "Solvers",
2094
- "Path": "Solvers.md"
2095
- },
2096
- {
2097
- "Title": "Providers",
2098
- "Path": "Providers.md"
710
+ "Title": "API Reference",
711
+ "Path": "api.md"
2099
712
  }
2100
713
  ]
2101
714
  },
2102
715
  {
2103
- "Title": "Input Providers",
716
+ "Title": "Retold Ecosystem",
2104
717
  "Children": [
2105
718
  {
2106
- "Title": "Select",
2107
- "Path": "input_providers/001-select.md"
2108
- },
2109
- {
2110
- "Title": "DateTime",
2111
- "Path": "input_providers/002-datetime.md"
2112
- },
2113
- {
2114
- "Title": "Markdown",
2115
- "Path": "input_providers/003-markdown.md"
2116
- },
2117
- {
2118
- "Title": "HTML",
2119
- "Path": "input_providers/004-html.md"
2120
- },
2121
- {
2122
- "Title": "PreciseNumber",
2123
- "Path": "input_providers/005-precise-number.md"
2124
- },
2125
- {
2126
- "Title": "Link",
2127
- "Path": "input_providers/006-link.md"
719
+ "Title": "Orator",
720
+ "Path": "orator/orator/README.md"
2128
721
  },
2129
722
  {
2130
- "Title": "Templated",
2131
- "Path": "input_providers/007-templated.md"
723
+ "Title": "Fable",
724
+ "Path": "fable/fable/README.md"
2132
725
  },
2133
726
  {
2134
- "Title": "TemplatedEntityLookup",
2135
- "Path": "input_providers/008-templated-entity-lookup.md"
727
+ "Title": "FoxHound",
728
+ "Path": "meadow/foxhound/README.md"
2136
729
  },
2137
730
  {
2138
- "Title": "Chart",
2139
- "Path": "input_providers/009-chart.md"
731
+ "Title": "Meadow",
732
+ "Path": "meadow/meadow/README.md"
2140
733
  },
2141
734
  {
2142
- "Title": "EntityBundleRequest",
2143
- "Path": "input_providers/010-entity-bundle-request.md"
2144
- },
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": [
2145
821
  {
2146
- "Title": "AutofillTriggerGroup",
2147
- "Path": "input_providers/011-autofill-trigger-group.md"
822
+ "Title": "Introduction",
823
+ "Path": "README.md"
2148
824
  },
2149
825
  {
2150
- "Title": "TabGroupSelector",
2151
- "Path": "input_providers/012-tab-group-selector.md"
826
+ "Title": "Pict Views",
827
+ "Path": "Pict-Views.md"
2152
828
  },
2153
829
  {
2154
- "Title": "TabSectionSelector",
2155
- "Path": "input_providers/013-tab-section-selector.md"
830
+ "Title": "Renderables",
831
+ "Path": "Pict%20View%20Renderables.md"
2156
832
  }
2157
833
  ]
2158
834
  },
@@ -2160,41 +836,230 @@
2160
836
  "Title": "Examples",
2161
837
  "Children": [
2162
838
  {
2163
- "Title": "Simple Form",
2164
- "Path": "examples/simple_form/README.md"
2165
- },
2166
- {
2167
- "Title": "Simple Table",
2168
- "Path": "examples/simple_table/README.md"
2169
- },
839
+ "Title": "Historical Events App",
840
+ "Path": "Historical%20Events%20Example%20App.md"
841
+ }
842
+ ]
843
+ },
844
+ {
845
+ "Title": "Customization",
846
+ "Children": [
2170
847
  {
2171
- "Title": "Simple Distill",
2172
- "Path": "examples/simple_distill/README.md"
848
+ "Title": "Configuration",
849
+ "Path": "configuration.md"
2173
850
  },
2174
851
  {
2175
- "Title": "Gradebook",
2176
- "Path": "examples/gradebook/README.md"
852
+ "Title": "Themes & Styling",
853
+ "Path": "themes.md"
2177
854
  },
2178
855
  {
2179
- "Title": "Postcard Example",
2180
- "Path": "examples/postcard_example/README.md"
2181
- },
856
+ "Title": "Custom Navbar",
857
+ "Path": "custom-navbar.md"
858
+ }
859
+ ]
860
+ },
861
+ {
862
+ "Title": "Reference",
863
+ "Children": [
2182
864
  {
2183
- "Title": "Complex Table",
2184
- "Path": "examples/complex_table/README.md"
865
+ "Title": "Resources",
866
+ "Path": "resources.md"
2185
867
  },
2186
868
  {
2187
- "Title": "Complex TuiGrid",
2188
- "Path": "examples/complex_tuigrid/README.md"
869
+ "Title": "Contributing",
870
+ "Path": "contributing.md"
2189
871
  },
2190
872
  {
2191
- "Title": "Manyfest Editor",
2192
- "Path": "examples/manyfest_editor/README.md"
873
+ "Title": "Changelog",
874
+ "Path": "changelog.md"
2193
875
  }
2194
876
  ]
2195
877
  }
2196
878
  ],
2197
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",
2198
1063
  ".nojekyll",
2199
1064
  "Configuration.md",
2200
1065
  "Getting_Started.md",
@@ -2230,71 +1095,7 @@
2230
1095
  "input_providers/011-autofill-trigger-group.md",
2231
1096
  "input_providers/012-tab-group-selector.md",
2232
1097
  "input_providers/013-tab-section-selector.md",
2233
- "input_providers/README.md"
2234
- ]
2235
- },
2236
- {
2237
- "Name": "pict-section-recordset",
2238
- "Repo": "pict-section-recordset",
2239
- "Group": "pict",
2240
- "Branch": "master",
2241
- "HasDocs": true,
2242
- "HasCover": true,
2243
- "Sidebar": [
2244
- {
2245
- "Title": "Getting Started",
2246
- "Children": [
2247
- {
2248
- "Title": "Introduction",
2249
- "Path": "README.md"
2250
- },
2251
- {
2252
- "Title": "Record Providers",
2253
- "Path": "record-providers.md"
2254
- }
2255
- ]
2256
- },
2257
- {
2258
- "Title": "Views",
2259
- "Children": [
2260
- {
2261
- "Title": "Create View",
2262
- "Path": "views/create/README.md"
2263
- },
2264
- {
2265
- "Title": "Read View",
2266
- "Path": "views/read/README.md"
2267
- },
2268
- {
2269
- "Title": "List View",
2270
- "Path": "views/list/README.md"
2271
- },
2272
- {
2273
- "Title": "Dashboard View",
2274
- "Path": "views/dashboard/README.md"
2275
- }
2276
- ]
2277
- },
2278
- {
2279
- "Title": "Configuration",
2280
- "Children": [
2281
- {
2282
- "Title": "Filters",
2283
- "Path": "filters.md"
2284
- }
2285
- ]
2286
- },
2287
- {
2288
- "Title": "Reference",
2289
- "Children": [
2290
- {
2291
- "Title": "API Reference",
2292
- "Path": "api-reference.md"
2293
- }
2294
- ]
2295
- }
2296
- ],
2297
- "DocFiles": [
1098
+ "input_providers/README.md",
2298
1099
  ".nojekyll",
2299
1100
  "README.md",
2300
1101
  "_sidebar.md",
@@ -2306,60 +1107,18 @@
2306
1107
  "views/create/README.md",
2307
1108
  "views/dashboard/README.md",
2308
1109
  "views/list/README.md",
2309
- "views/read/README.md"
2310
- ]
2311
- },
2312
- {
2313
- "Name": "pict-section-tuigrid",
2314
- "Repo": "pict-section-tuigrid",
2315
- "Group": "pict",
2316
- "Branch": "master",
2317
- "HasDocs": false,
2318
- "HasCover": false,
2319
- "Sidebar": [],
2320
- "DocFiles": []
2321
- },
2322
- {
2323
- "Name": "pict-service-commandlineutility",
2324
- "Repo": "pict-service-commandlineutility",
2325
- "Group": "pict",
2326
- "Branch": "master",
2327
- "HasDocs": true,
2328
- "HasCover": true,
2329
- "Sidebar": [
2330
- {
2331
- "Title": "Getting Started",
2332
- "Children": [
2333
- {
2334
- "Title": "Introduction",
2335
- "Path": "README.md"
2336
- },
2337
- {
2338
- "Title": "Creating Commands",
2339
- "Path": "creating-commands.md"
2340
- }
2341
- ]
2342
- },
2343
- {
2344
- "Title": "Configuration",
2345
- "Children": [
2346
- {
2347
- "Title": "Program Configuration",
2348
- "Path": "configuration.md"
2349
- }
2350
- ]
2351
- },
2352
- {
2353
- "Title": "Reference",
2354
- "Children": [
2355
- {
2356
- "Title": "API Reference",
2357
- "Path": "api-reference.md"
2358
- }
2359
- ]
2360
- }
2361
- ],
2362
- "DocFiles": [
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",
2363
1122
  ".nojekyll",
2364
1123
  "README.md",
2365
1124
  "_sidebar.md",
@@ -2367,69 +1126,72 @@
2367
1126
  "configuration.md",
2368
1127
  "cover.md",
2369
1128
  "creating-commands.md",
2370
- "index.html"
2371
- ]
2372
- },
2373
- {
2374
- "Name": "pict-serviceproviderbase",
2375
- "Repo": "pict-serviceproviderbase",
2376
- "Group": "pict",
2377
- "Branch": "master",
2378
- "HasDocs": true,
2379
- "HasCover": true,
2380
- "Sidebar": [
2381
- {
2382
- "Title": "Getting Started",
2383
- "Children": [
2384
- {
2385
- "Title": "Introduction",
2386
- "Path": "README.md"
2387
- },
2388
- {
2389
- "Title": "Fable Relationship",
2390
- "Path": "fable-relationship.md"
2391
- },
2392
- {
2393
- "Title": "Creating Services",
2394
- "Path": "creating-services.md"
2395
- }
2396
- ]
2397
- },
2398
- {
2399
- "Title": "Reference",
2400
- "Children": [
2401
- {
2402
- "Title": "API Reference",
2403
- "Path": "api-reference.md"
2404
- }
2405
- ]
2406
- }
2407
- ],
2408
- "DocFiles": [
1129
+ "index.html",
2409
1130
  ".nojekyll",
2410
1131
  "README.md",
2411
1132
  "_sidebar.md",
2412
1133
  "api-reference.md",
2413
1134
  "cover.md",
2414
- "creating-services.md",
2415
- "fable-relationship.md",
2416
- "index.html"
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"
2417
1189
  ]
2418
1190
  },
2419
1191
  {
2420
- "Name": "pict-template",
2421
- "Repo": "pict-template",
2422
- "Group": "pict",
2423
- "Branch": "master",
2424
- "HasDocs": false,
2425
- "HasCover": false,
2426
- "Sidebar": [],
2427
- "DocFiles": []
2428
- },
2429
- {
2430
- "Name": "pict-view",
2431
- "Repo": "pict-view",
2432
- "Group": "pict",
1192
+ "Name": "utility",
1193
+ "Repo": "utility",
1194
+ "Group": "modules",
2433
1195
  "Branch": "master",
2434
1196
  "HasDocs": true,
2435
1197
  "HasCover": true,
@@ -2438,42 +1200,37 @@
2438
1200
  "Title": "Getting Started",
2439
1201
  "Children": [
2440
1202
  {
2441
- "Title": "Introduction",
2442
- "Path": "README.md"
1203
+ "Title": "Overview",
1204
+ "Path": "overview.md"
2443
1205
  },
2444
1206
  {
2445
- "Title": "Pict Views",
2446
- "Path": "Pict-Views.md"
1207
+ "Title": "Quick Start",
1208
+ "Path": "quickstart.md"
2447
1209
  },
2448
1210
  {
2449
- "Title": "Renderables",
2450
- "Path": "Pict%20View%20Renderables.md"
1211
+ "Title": "Architecture",
1212
+ "Path": "architecture.md"
2451
1213
  }
2452
1214
  ]
2453
1215
  },
2454
1216
  {
2455
- "Title": "Examples",
1217
+ "Title": "Features",
2456
1218
  "Children": [
2457
1219
  {
2458
- "Title": "Historical Events App",
2459
- "Path": "Historical%20Events%20Example%20App.md"
2460
- }
2461
- ]
2462
- },
2463
- {
2464
- "Title": "Customization",
2465
- "Children": [
1220
+ "Title": "Tasks",
1221
+ "Path": "features/tasks.md"
1222
+ },
2466
1223
  {
2467
- "Title": "Configuration",
2468
- "Path": "configuration.md"
1224
+ "Title": "Operations",
1225
+ "Path": "features/operations.md"
2469
1226
  },
2470
1227
  {
2471
- "Title": "Themes & Styling",
2472
- "Path": "themes.md"
1228
+ "Title": "Scheduling",
1229
+ "Path": "features/scheduling.md"
2473
1230
  },
2474
1231
  {
2475
- "Title": "Custom Navbar",
2476
- "Path": "custom-navbar.md"
1232
+ "Title": "Manifests",
1233
+ "Path": "features/manifests.md"
2477
1234
  }
2478
1235
  ]
2479
1236
  },
@@ -2481,115 +1238,16 @@
2481
1238
  "Title": "Reference",
2482
1239
  "Children": [
2483
1240
  {
2484
- "Title": "Resources",
2485
- "Path": "resources.md"
2486
- },
2487
- {
2488
- "Title": "Contributing",
2489
- "Path": "contributing.md"
2490
- },
2491
- {
2492
- "Title": "Changelog",
2493
- "Path": "changelog.md"
2494
- }
2495
- ]
2496
- }
2497
- ],
2498
- "DocFiles": [
2499
- ".nojekyll",
2500
- "Historical Events Example App.md",
2501
- "Pict View Renderables.md",
2502
- "Pict-Views.md",
2503
- "README.md",
2504
- "_sidebar.md",
2505
- "changelog.md",
2506
- "configuration.md",
2507
- "contributing.md",
2508
- "cover.md",
2509
- "custom-navbar.md",
2510
- "index.html",
2511
- "resources.md",
2512
- "themes.md"
2513
- ]
2514
- }
2515
- ]
2516
- },
2517
- {
2518
- "Name": "Utility",
2519
- "Key": "utility",
2520
- "Description": "Build tools, manifests, documentation, process supervision",
2521
- "Modules": [
2522
- {
2523
- "Name": "cachetrax",
2524
- "Repo": "cachetrax",
2525
- "Group": "utility",
2526
- "Branch": "master",
2527
- "HasDocs": false,
2528
- "HasCover": false,
2529
- "Sidebar": [],
2530
- "DocFiles": []
2531
- },
2532
- {
2533
- "Name": "choreographic",
2534
- "Repo": "choreographic",
2535
- "Group": "utility",
2536
- "Branch": "master",
2537
- "HasDocs": false,
2538
- "HasCover": false,
2539
- "Sidebar": [],
2540
- "DocFiles": []
2541
- },
2542
- {
2543
- "Name": "cumulation",
2544
- "Repo": "cumulation",
2545
- "Group": "utility",
2546
- "Branch": "master",
2547
- "HasDocs": false,
2548
- "HasCover": false,
2549
- "Sidebar": [],
2550
- "DocFiles": []
2551
- },
2552
- {
2553
- "Name": "elucidator",
2554
- "Repo": "elucidator",
2555
- "Group": "utility",
2556
- "Branch": "master",
2557
- "HasDocs": false,
2558
- "HasCover": false,
2559
- "Sidebar": [],
2560
- "DocFiles": []
2561
- },
2562
- {
2563
- "Name": "indoctrinate",
2564
- "Repo": "indoctrinate",
2565
- "Group": "utility",
2566
- "Branch": "master",
2567
- "HasDocs": true,
2568
- "HasCover": true,
2569
- "Sidebar": [
2570
- {
2571
- "Title": "Getting Started",
2572
- "Children": [
2573
- {
2574
- "Title": "Introduction",
2575
- "Path": "README.md"
1241
+ "Title": "API Server",
1242
+ "Path": "features/api.md"
2576
1243
  },
2577
1244
  {
2578
- "Title": "Architecture",
2579
- "Path": "architecture.md"
2580
- }
2581
- ]
2582
- },
2583
- {
2584
- "Title": "Core Concepts",
2585
- "Children": [
2586
- {
2587
- "Title": "Schema",
2588
- "Path": "api/schema.md"
1245
+ "Title": "CLI Commands",
1246
+ "Path": "features/cli.md"
2589
1247
  },
2590
1248
  {
2591
- "Title": "CRUD Operations",
2592
- "Path": "api/crud.md"
1249
+ "Title": "Configuration",
1250
+ "Path": "features/configuration.md"
2593
1251
  }
2594
1252
  ]
2595
1253
  }
@@ -2664,80 +1322,7 @@
2664
1322
  "_sidebar.md",
2665
1323
  "api/crud.md",
2666
1324
  "api/schema.md",
2667
- "architecture.md"
2668
- ]
2669
- },
2670
- {
2671
- "Name": "js-editor-extension",
2672
- "Repo": "js-editor-extension",
2673
- "Group": "utility",
2674
- "Branch": "master",
2675
- "HasDocs": false,
2676
- "HasCover": false,
2677
- "Sidebar": [],
2678
- "DocFiles": []
2679
- },
2680
- {
2681
- "Name": "manyfest",
2682
- "Repo": "manyfest",
2683
- "Group": "utility",
2684
- "Branch": "master",
2685
- "HasDocs": true,
2686
- "HasCover": true,
2687
- "Sidebar": [
2688
- {
2689
- "Title": "Getting Started",
2690
- "Children": [
2691
- {
2692
- "Title": "Introduction",
2693
- "Path": "README.md"
2694
- },
2695
- {
2696
- "Title": "Quickstart",
2697
- "Path": "quickstart.md"
2698
- }
2699
- ]
2700
- },
2701
- {
2702
- "Title": "Working with Objects",
2703
- "Children": [
2704
- {
2705
- "Title": "Reading Values",
2706
- "Path": "reading.md"
2707
- },
2708
- {
2709
- "Title": "Writing Values",
2710
- "Path": "writing.md"
2711
- },
2712
- {
2713
- "Title": "Validating Objects",
2714
- "Path": "validating.md"
2715
- }
2716
- ]
2717
- },
2718
- {
2719
- "Title": "Reference",
2720
- "Children": [
2721
- {
2722
- "Title": "Schema Definition",
2723
- "Path": "schema.md"
2724
- },
2725
- {
2726
- "Title": "Address Notation",
2727
- "Path": "address-notation.md"
2728
- },
2729
- {
2730
- "Title": "Hash Translation",
2731
- "Path": "hash-translation.md"
2732
- },
2733
- {
2734
- "Title": "Schema Manipulation",
2735
- "Path": "schema-manipulation.md"
2736
- }
2737
- ]
2738
- }
2739
- ],
2740
- "DocFiles": [
1325
+ "architecture.md",
2741
1326
  ".nojekyll",
2742
1327
  "README.md",
2743
1328
  "_sidebar.md",
@@ -2750,75 +1335,69 @@
2750
1335
  "schema-manipulation.md",
2751
1336
  "schema.md",
2752
1337
  "validating.md",
2753
- "writing.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"
2754
1400
  ]
2755
- },
2756
- {
2757
- "Name": "merquerial",
2758
- "Repo": "merquerial",
2759
- "Group": "utility",
2760
- "Branch": "master",
2761
- "HasDocs": false,
2762
- "HasCover": false,
2763
- "Sidebar": [],
2764
- "DocFiles": []
2765
- },
2766
- {
2767
- "Name": "pict-cruisecontrol",
2768
- "Repo": "pict-cruisecontrol",
2769
- "Group": "utility",
2770
- "Branch": "master",
2771
- "HasDocs": false,
2772
- "HasCover": false,
2773
- "Sidebar": [],
2774
- "DocFiles": []
2775
- },
2776
- {
2777
- "Name": "precedent",
2778
- "Repo": "precedent",
2779
- "Group": "utility",
2780
- "Branch": "master",
2781
- "HasDocs": false,
2782
- "HasCover": false,
2783
- "Sidebar": [],
2784
- "DocFiles": []
2785
- },
2786
- {
2787
- "Name": "quackage",
2788
- "Repo": "quackage",
2789
- "Group": "utility",
2790
- "Branch": "master",
2791
- "HasDocs": false,
2792
- "HasCover": false,
2793
- "Sidebar": [],
2794
- "DocFiles": []
2795
- },
2796
- {
2797
- "Name": "ultravisor",
2798
- "Repo": "ultravisor",
2799
- "Group": "utility",
2800
- "Branch": "master",
2801
- "HasDocs": false,
2802
- "HasCover": false,
2803
- "Sidebar": [],
2804
- "DocFiles": []
2805
- }
2806
- ]
2807
- },
2808
- {
2809
- "Name": "Dist",
2810
- "Key": "dist",
2811
- "Description": "",
2812
- "Modules": [
2813
- {
2814
- "Name": "indoctrinate_content_staging",
2815
- "Repo": "indoctrinate_content_staging",
2816
- "Group": "dist",
2817
- "Branch": "master",
2818
- "HasDocs": false,
2819
- "HasCover": false,
2820
- "Sidebar": [],
2821
- "DocFiles": []
2822
1401
  }
2823
1402
  ]
2824
1403
  }