pict-section-flow 0.0.10 → 0.0.13

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 (88) hide show
  1. package/.claude/launch.json +1 -1
  2. package/README.md +176 -0
  3. package/docs/.nojekyll +0 -0
  4. package/docs/Architecture.md +303 -0
  5. package/docs/Custom-Styling.md +275 -0
  6. package/docs/Data_Model.md +158 -0
  7. package/docs/Event_System.md +156 -0
  8. package/docs/Getting_Started.md +237 -0
  9. package/docs/Implementation_Reference.md +528 -0
  10. package/docs/Layout_Persistence.md +117 -0
  11. package/docs/README.md +115 -52
  12. package/docs/_cover.md +11 -0
  13. package/docs/_sidebar.md +52 -0
  14. package/docs/_topbar.md +8 -0
  15. package/docs/api/PictFlowCard.md +216 -0
  16. package/docs/api/PictFlowCardPropertiesPanel.md +235 -0
  17. package/docs/api/addConnection.md +101 -0
  18. package/docs/api/addNode.md +137 -0
  19. package/docs/api/autoLayout.md +77 -0
  20. package/docs/api/getFlowData.md +112 -0
  21. package/docs/api/marshalToView.md +95 -0
  22. package/docs/api/openPanel.md +128 -0
  23. package/docs/api/registerHandler.md +174 -0
  24. package/docs/api/registerNodeType.md +142 -0
  25. package/docs/api/removeConnection.md +57 -0
  26. package/docs/api/removeNode.md +80 -0
  27. package/docs/api/saveLayout.md +152 -0
  28. package/docs/api/screenToSVGCoords.md +68 -0
  29. package/docs/api/selectNode.md +116 -0
  30. package/docs/api/setTheme.md +168 -0
  31. package/docs/api/setZoom.md +97 -0
  32. package/docs/api/toggleFullscreen.md +68 -0
  33. package/docs/card-help/EACH.md +19 -0
  34. package/docs/card-help/FREAD.md +24 -0
  35. package/docs/card-help/FWRITE.md +24 -0
  36. package/docs/card-help/GET.md +22 -0
  37. package/docs/card-help/ITE.md +23 -0
  38. package/docs/card-help/LOG.md +23 -0
  39. package/docs/card-help/NOTE.md +17 -0
  40. package/docs/card-help/PREV.md +18 -0
  41. package/docs/card-help/SET.md +27 -0
  42. package/docs/card-help/SPKL.md +22 -0
  43. package/docs/card-help/STAT.md +23 -0
  44. package/docs/card-help/SW.md +25 -0
  45. package/docs/css/docuserve.css +73 -0
  46. package/docs/index.html +39 -0
  47. package/docs/retold-catalog.json +169 -0
  48. package/docs/retold-keyword-index.json +13942 -0
  49. package/example_applications/simple_cards/package.json +1 -0
  50. package/example_applications/simple_cards/source/card-help-content.js +16 -0
  51. package/example_applications/simple_cards/source/cards/FlowCard-Comment.js +2 -0
  52. package/example_applications/simple_cards/source/cards/FlowCard-DataPreview.js +2 -0
  53. package/example_applications/simple_cards/source/cards/FlowCard-Each.js +2 -0
  54. package/example_applications/simple_cards/source/cards/FlowCard-FileRead.js +2 -0
  55. package/example_applications/simple_cards/source/cards/FlowCard-FileWrite.js +2 -0
  56. package/example_applications/simple_cards/source/cards/FlowCard-GetValue.js +2 -0
  57. package/example_applications/simple_cards/source/cards/FlowCard-IfThenElse.js +2 -0
  58. package/example_applications/simple_cards/source/cards/FlowCard-LogValues.js +2 -0
  59. package/example_applications/simple_cards/source/cards/FlowCard-SetValue.js +2 -0
  60. package/example_applications/simple_cards/source/cards/FlowCard-Sparkline.js +2 -0
  61. package/example_applications/simple_cards/source/cards/FlowCard-StatusMonitor.js +2 -0
  62. package/example_applications/simple_cards/source/cards/FlowCard-Switch.js +2 -0
  63. package/package.json +11 -7
  64. package/scripts/generate-card-help.js +214 -0
  65. package/source/Pict-Section-Flow.js +4 -0
  66. package/source/PictFlowCard.js +3 -1
  67. package/source/providers/PictProvider-Flow-CSS.js +245 -152
  68. package/source/providers/PictProvider-Flow-ConnectorShapes.js +24 -0
  69. package/source/providers/PictProvider-Flow-Geometry.js +195 -38
  70. package/source/providers/PictProvider-Flow-PanelChrome.js +14 -12
  71. package/source/services/PictService-Flow-ConnectionHandleManager.js +263 -0
  72. package/source/services/PictService-Flow-ConnectionRenderer.js +134 -183
  73. package/source/services/PictService-Flow-DataManager.js +338 -0
  74. package/source/services/PictService-Flow-InteractionManager.js +165 -7
  75. package/source/services/PictService-Flow-PathGenerator.js +282 -0
  76. package/source/services/PictService-Flow-PortRenderer.js +269 -0
  77. package/source/services/PictService-Flow-RenderManager.js +281 -0
  78. package/source/services/PictService-Flow-Tether.js +6 -42
  79. package/source/views/PictView-Flow-Node.js +2 -220
  80. package/source/views/PictView-Flow-PropertiesPanel.js +89 -44
  81. package/source/views/PictView-Flow.js +130 -882
  82. package/test/ConnectionHandleManager_tests.js +717 -0
  83. package/test/ConnectionRenderer_tests.js +591 -0
  84. package/test/DataManager_tests.js +859 -0
  85. package/test/Geometry_tests.js +767 -0
  86. package/test/PathGenerator_tests.js +978 -0
  87. package/test/PortRenderer_tests.js +367 -0
  88. package/test/RenderManager_tests.js +756 -0
@@ -0,0 +1,24 @@
1
+ # File Write
2
+
3
+ The **File Write** node writes data to a file on the filesystem.
4
+
5
+ ## Ports
6
+
7
+ - **Path** (input) — the destination filesystem path
8
+ - **Data** (input) — the content to write
9
+ - **Done** (output) — fires after a successful write
10
+ - **Error** (output) — fires if the write operation fails
11
+
12
+ ## Behavior
13
+
14
+ When both inputs are satisfied, the node writes the provided data to the specified file path. On success the **Done** output fires. If the write fails (for example due to permissions or a missing directory), the **Error** output fires with a descriptive error message.
15
+
16
+ ## Properties Panel
17
+
18
+ The properties panel shows a View-based info panel with details about the configured file path and write options.
19
+
20
+ ## Tips
21
+
22
+ - Directories in the path are not created automatically — ensure they exist before writing
23
+ - Combine with a Set Value node to format data before writing
24
+ - Connect the **Error** output to a Log Values node to capture write failures
@@ -0,0 +1,22 @@
1
+ # Get Value
2
+
3
+ The **Get Value** node retrieves a named variable from the flow context and emits its current value.
4
+
5
+ ## Ports
6
+
7
+ - **In** (input) — trigger to read the value
8
+ - **Value** (output) — the retrieved value
9
+
10
+ ## Behavior
11
+
12
+ When triggered, the node looks up a named key in the flow context and emits the stored value from the **Value** output. If the key does not exist, the output value is `undefined`.
13
+
14
+ ## Usage
15
+
16
+ Pair with a **Set Value** node to establish a read/write variable pattern. The Set Value node stores a value under a named key; the Get Value node retrieves it downstream.
17
+
18
+ ## Tips
19
+
20
+ - Variable names are case-sensitive
21
+ - Use descriptive variable names to keep flows readable
22
+ - Get Value is especially useful for accessing values set in a different branch of the flow
@@ -0,0 +1,23 @@
1
+ # If-Then-Else
2
+
3
+ The **If-Then-Else** node evaluates a boolean condition expression and routes the flow to one of two outputs.
4
+
5
+ ## Ports
6
+
7
+ - **In** (input) — trigger that starts the evaluation
8
+ - **Then** (output) — activated when the condition is **true**
9
+ - **Else** (output) — activated when the condition is **false**
10
+
11
+ ## Behavior
12
+
13
+ When the input fires, the node evaluates the configured condition expression against the current flow context. If the expression resolves to a truthy value, the **Then** output is activated. Otherwise, the **Else** output is activated. Exactly one output fires per evaluation.
14
+
15
+ ## Configuration
16
+
17
+ Set the condition expression in the node's data properties. The expression is evaluated in the flow context, giving it access to any variables set by upstream Set Value nodes.
18
+
19
+ ## Tips
20
+
21
+ - Chain multiple If-Then-Else nodes for complex branching logic
22
+ - Connect the **Else** output to another If-Then-Else to build else-if chains
23
+ - Use descriptive condition expressions to keep the flow self-documenting
@@ -0,0 +1,23 @@
1
+ # Log Values
2
+
3
+ The **Log Values** node writes incoming data to the console or log output for debugging purposes.
4
+
5
+ ## Ports
6
+
7
+ - **Values** (input, multi) — accepts one or more connections carrying values to log
8
+ - **Pass** (output) — passes the last received value through unchanged
9
+
10
+ ## Properties
11
+
12
+ - **LogLevel** — the severity level for the log entry (e.g. `info`, `warn`, `error`, `trace`)
13
+ - **Format** — an optional format string controlling how values are serialized
14
+
15
+ ## Behavior
16
+
17
+ When data arrives at any input connection, the node serializes the value and writes it to the configured log output at the specified log level. The data is then forwarded to the **Pass** output unchanged, so the Log Values node can be inserted inline without disrupting the flow.
18
+
19
+ ## Tips
20
+
21
+ - Use multiple input connections to aggregate log output from parallel branches
22
+ - Set the log level to `trace` during development and `warn` in production flows
23
+ - Insert between any two nodes for quick inline debugging
@@ -0,0 +1,17 @@
1
+ # Comment
2
+
3
+ The **Comment** node is a floating annotation for documenting flow logic. It has no input or output ports and does not participate in data flow execution.
4
+
5
+ ## Usage
6
+
7
+ Drop a Comment node anywhere on the canvas to add context, explain design decisions, or leave notes for collaborators. The note text is stored in the node's `Data.NoteText` property and displayed directly in the node body.
8
+
9
+ ## Properties
10
+
11
+ - **NoteText** — the annotation content displayed in the node body
12
+
13
+ ## Tips
14
+
15
+ - Use comments to explain complex branching logic or non-obvious configuration choices
16
+ - Comment nodes can be freely repositioned without affecting connections
17
+ - Group related comments near the nodes they describe
@@ -0,0 +1,18 @@
1
+ # Data Preview
2
+
3
+ The **Data Preview** node displays a tabular summary of the data flowing through it. Use it as an inline debugger to inspect field names, types, and current values without interrupting the flow.
4
+
5
+ ## Ports
6
+
7
+ - **Data** (input) — the data object to inspect
8
+ - **Pass** (output) — passes the data through unchanged
9
+
10
+ ## Behavior
11
+
12
+ The preview renders a compact table inside the node body showing each field's name, inferred data type, and current value. The node is pass-through: data enters on the left and exits on the right without modification.
13
+
14
+ ## Tips
15
+
16
+ - Insert a Data Preview between two nodes to inspect intermediate state
17
+ - The preview updates whenever new data arrives at the input port
18
+ - Useful during development for verifying data transformations
@@ -0,0 +1,27 @@
1
+ # Set Value
2
+
3
+ The **Set Value** node assigns a value to a named variable in the flow context.
4
+
5
+ ## Ports
6
+
7
+ - **In** (input) — trigger to perform the assignment
8
+ - **Out** (output) — fires after the value has been set
9
+
10
+ ## Properties
11
+
12
+ - **Variable Name** — the key under which the value will be stored
13
+ - **Value Expression** — the expression to evaluate and assign
14
+
15
+ ## Behavior
16
+
17
+ When triggered, the node evaluates the **Value Expression** and stores the result under the configured **Variable Name** in the flow context. Downstream nodes can read this value using a **Get Value** node with the same variable name.
18
+
19
+ ## Configuration
20
+
21
+ Open the properties panel to configure the variable name and value expression using the built-in form editor.
22
+
23
+ ## Tips
24
+
25
+ - Variable names are case-sensitive — use consistent naming conventions
26
+ - Value expressions have access to the current flow context
27
+ - Use Set Value at the beginning of a flow to initialize default variables
@@ -0,0 +1,22 @@
1
+ # Sparkline
2
+
3
+ The **Sparkline** node renders a live sparkline chart visualizing numeric throughput data directly in the node body.
4
+
5
+ ## Ports
6
+
7
+ - **Values** (input) — a numeric array or stream of values to plot
8
+ - **Stats** (output) — emits computed statistics (min, max, mean) for the data set
9
+
10
+ ## Behavior
11
+
12
+ The node draws a compact line chart inside the node body using a canvas renderer. As new numeric data arrives at the input, the chart updates to reflect the latest values. The filled area under the line and an endpoint dot provide visual emphasis on the current value.
13
+
14
+ ## Appearance
15
+
16
+ The chart uses the node's theme color for the line and fill area. The last data point is highlighted with a dot. The sparkline scales automatically to fit the available body area.
17
+
18
+ ## Tips
19
+
20
+ - Connect to any node that produces a numeric array for instant visualization
21
+ - Use alongside a Data Preview node for combined visual and tabular inspection
22
+ - The Stats output is useful for feeding threshold values into an If-Then-Else node
@@ -0,0 +1,23 @@
1
+ # Status Monitor
2
+
3
+ The **Status Monitor** node monitors the health status of upstream services and reports availability.
4
+
5
+ ## Ports
6
+
7
+ - **Check** (input, multi) — accepts connections from one or more services to monitor
8
+ - **Healthy** (output) — fires when all monitored services report healthy
9
+ - **Degraded** (output) — fires when one or more services report degraded status
10
+
11
+ ## Behavior
12
+
13
+ The node body displays a visual health grid showing the status of each monitored service with colored indicators. Green indicates a healthy service; yellow indicates degraded performance. When all services are healthy, the **Healthy** output is activated. If any service reports degraded status, the **Degraded** output fires instead.
14
+
15
+ ## Appearance
16
+
17
+ The node body renders SVG status circles labeled with service names (e.g. API, DB, Cache, Queue). Port labels appear on hover for a cleaner default appearance.
18
+
19
+ ## Tips
20
+
21
+ - Connect multiple services to the **Check** input to build a comprehensive health dashboard
22
+ - Route the **Degraded** output to notification or alerting nodes
23
+ - Combine with an Each node to check a dynamic list of service endpoints
@@ -0,0 +1,25 @@
1
+ # Switch
2
+
3
+ The **Switch** node routes execution to one of multiple outputs based on a matching value, similar to a switch/case statement in programming.
4
+
5
+ ## Ports
6
+
7
+ - **In** (input) — the value to match against cases
8
+ - **Case A** (output) — fires when the input matches case A
9
+ - **Case B** (output) — fires when the input matches case B
10
+ - **Default** (output) — fires when the input does not match any defined case
11
+
12
+ ## Behavior
13
+
14
+ When a value arrives at the input, the node compares it against each configured case. The first matching case's output is activated. If no case matches, the **Default** output fires. Only one output is activated per evaluation.
15
+
16
+ ## Configuration
17
+
18
+ Define case match values in the node's data properties. Each case corresponds to one of the named outputs.
19
+
20
+ ## Tips
21
+
22
+ - Add more output ports by extending the card definition for additional cases
23
+ - Use the **Default** output as a catch-all for unexpected values
24
+ - Chain a Switch after an If-Then-Else for multi-level routing logic
25
+ - Case matching is based on strict equality
@@ -0,0 +1,73 @@
1
+ /* ============================================================================
2
+ Pict Docuserve - Base Styles
3
+ ============================================================================ */
4
+
5
+ /* Reset and base */
6
+ *, *::before, *::after {
7
+ box-sizing: border-box;
8
+ }
9
+
10
+ html, body {
11
+ margin: 0;
12
+ padding: 0;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
14
+ font-size: 16px;
15
+ line-height: 1.5;
16
+ color: #423D37;
17
+ background-color: #fff;
18
+ -webkit-font-smoothing: antialiased;
19
+ -moz-osx-font-smoothing: grayscale;
20
+ }
21
+
22
+ /* Typography */
23
+ h1, h2, h3, h4, h5, h6 {
24
+ margin-top: 0;
25
+ line-height: 1.3;
26
+ }
27
+
28
+ a {
29
+ color: #2E7D74;
30
+ text-decoration: none;
31
+ }
32
+
33
+ a:hover {
34
+ color: #256861;
35
+ }
36
+
37
+ /* Application container */
38
+ #Docuserve-Application-Container {
39
+ min-height: 100vh;
40
+ }
41
+
42
+ /* Utility: scrollbar styling */
43
+ ::-webkit-scrollbar {
44
+ width: 8px;
45
+ }
46
+
47
+ ::-webkit-scrollbar-track {
48
+ background: #F5F0E8;
49
+ }
50
+
51
+ ::-webkit-scrollbar-thumb {
52
+ background: #D4CCBE;
53
+ border-radius: 4px;
54
+ }
55
+
56
+ ::-webkit-scrollbar-thumb:hover {
57
+ background: #B5AA9A;
58
+ }
59
+
60
+ /* Responsive adjustments */
61
+ @media (max-width: 768px) {
62
+ html {
63
+ font-size: 14px;
64
+ }
65
+
66
+ #Docuserve-Sidebar-Container {
67
+ display: none;
68
+ }
69
+
70
+ .docuserve-body {
71
+ flex-direction: column;
72
+ }
73
+ }
@@ -0,0 +1,39 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
+ <meta name="description" content="Documentation powered by pict-docuserve">
8
+
9
+ <title>Documentation</title>
10
+
11
+ <!-- Application Stylesheet -->
12
+ <link href="css/docuserve.css" rel="stylesheet">
13
+ <!-- KaTeX stylesheet for LaTeX equation rendering -->
14
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.css">
15
+ <!-- PICT Dynamic View CSS Container -->
16
+ <style id="PICT-CSS"></style>
17
+
18
+ <!-- Load the PICT library from jsDelivr CDN -->
19
+ <script src="https://cdn.jsdelivr.net/npm/pict@1/dist/pict.min.js" type="text/javascript"></script>
20
+ <!-- Bootstrap the Application -->
21
+ <script type="text/javascript">
22
+ //<![CDATA[
23
+ Pict.safeOnDocumentReady(() => { Pict.safeLoadPictApplication(PictDocuserve, 2)});
24
+ //]]>
25
+ </script>
26
+ </head>
27
+ <body>
28
+ <!-- The root container for the Pict application -->
29
+ <div id="Docuserve-Application-Container"></div>
30
+
31
+ <!-- Mermaid diagram rendering -->
32
+ <script src="https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js"></script>
33
+ <script>mermaid.initialize({ startOnLoad: false, theme: 'default' });</script>
34
+ <!-- KaTeX for LaTeX equation rendering -->
35
+ <script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.js"></script>
36
+ <!-- Load the Docuserve PICT Application Bundle from jsDelivr CDN -->
37
+ <script src="https://cdn.jsdelivr.net/npm/pict-docuserve@0/dist/pict-docuserve.min.js" type="text/javascript"></script>
38
+ </body>
39
+ </html>
@@ -0,0 +1,169 @@
1
+ {
2
+ "Generated": "2026-03-17T22:19:31.420Z",
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": "api",
30
+ "Repo": "api",
31
+ "Group": "docs",
32
+ "Branch": "master",
33
+ "HasDocs": true,
34
+ "HasCover": false,
35
+ "Sidebar": [],
36
+ "DocFiles": [
37
+ "api/PictFlowCard.md",
38
+ "api/PictFlowCardPropertiesPanel.md",
39
+ "api/addConnection.md",
40
+ "api/addNode.md",
41
+ "api/autoLayout.md",
42
+ "api/getFlowData.md",
43
+ "api/marshalToView.md",
44
+ "api/openPanel.md",
45
+ "api/registerHandler.md",
46
+ "api/registerNodeType.md",
47
+ "api/removeConnection.md",
48
+ "api/removeNode.md",
49
+ "api/saveLayout.md",
50
+ "api/screenToSVGCoords.md",
51
+ "api/selectNode.md",
52
+ "api/setTheme.md",
53
+ "api/setZoom.md",
54
+ "api/toggleFullscreen.md"
55
+ ]
56
+ },
57
+ {
58
+ "Name": "card-help",
59
+ "Repo": "card-help",
60
+ "Group": "docs",
61
+ "Branch": "master",
62
+ "HasDocs": true,
63
+ "HasCover": false,
64
+ "Sidebar": [],
65
+ "DocFiles": [
66
+ "card-help/EACH.md",
67
+ "card-help/FREAD.md",
68
+ "card-help/FWRITE.md",
69
+ "card-help/GET.md",
70
+ "card-help/ITE.md",
71
+ "card-help/LOG.md",
72
+ "card-help/NOTE.md",
73
+ "card-help/PREV.md",
74
+ "card-help/SET.md",
75
+ "card-help/SPKL.md",
76
+ "card-help/STAT.md",
77
+ "card-help/SW.md"
78
+ ]
79
+ },
80
+ {
81
+ "Name": "css",
82
+ "Repo": "css",
83
+ "Group": "docs",
84
+ "Branch": "master",
85
+ "HasDocs": true,
86
+ "HasCover": false,
87
+ "Sidebar": [],
88
+ "DocFiles": [
89
+ "css/docuserve.css"
90
+ ]
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "Name": "Example_applications",
96
+ "Key": "example_applications",
97
+ "Description": "",
98
+ "Modules": [
99
+ {
100
+ "Name": ".data",
101
+ "Repo": ".data",
102
+ "Group": "example_applications",
103
+ "Branch": "master",
104
+ "HasDocs": false,
105
+ "HasCover": false,
106
+ "Sidebar": [],
107
+ "DocFiles": []
108
+ },
109
+ {
110
+ "Name": "simple_cards",
111
+ "Repo": "simple_cards",
112
+ "Group": "example_applications",
113
+ "Branch": "master",
114
+ "HasDocs": false,
115
+ "HasCover": false,
116
+ "Sidebar": [],
117
+ "DocFiles": []
118
+ }
119
+ ]
120
+ },
121
+ {
122
+ "Name": "Source",
123
+ "Key": "source",
124
+ "Description": "",
125
+ "Modules": [
126
+ {
127
+ "Name": "panels",
128
+ "Repo": "panels",
129
+ "Group": "source",
130
+ "Branch": "master",
131
+ "HasDocs": false,
132
+ "HasCover": false,
133
+ "Sidebar": [],
134
+ "DocFiles": []
135
+ },
136
+ {
137
+ "Name": "providers",
138
+ "Repo": "providers",
139
+ "Group": "source",
140
+ "Branch": "master",
141
+ "HasDocs": false,
142
+ "HasCover": false,
143
+ "Sidebar": [],
144
+ "DocFiles": []
145
+ },
146
+ {
147
+ "Name": "services",
148
+ "Repo": "services",
149
+ "Group": "source",
150
+ "Branch": "master",
151
+ "HasDocs": false,
152
+ "HasCover": false,
153
+ "Sidebar": [],
154
+ "DocFiles": []
155
+ },
156
+ {
157
+ "Name": "views",
158
+ "Repo": "views",
159
+ "Group": "source",
160
+ "Branch": "master",
161
+ "HasDocs": false,
162
+ "HasCover": false,
163
+ "Sidebar": [],
164
+ "DocFiles": []
165
+ }
166
+ ]
167
+ }
168
+ ]
169
+ }