Skip to content

Commit 63a39db

Browse files
committed
vRelease2023.2.26.822
1 parent 7f126cb commit 63a39db

File tree

110 files changed

+604
-358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+604
-358
lines changed

src/NetCore2Blockly/NetCore2BlocklyNew/NetCore2BlocklyNew.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919
<PropertyGroup>
2020
<PackageId>NetCore2Blockly</PackageId>
21-
<Version>7.2023.221.1825</Version>
21+
<Version>7.2023.226.822</Version>
2222
<PackageReadmeFile>README.md</PackageReadmeFile>
2323
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
2424
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"files": {
33
"main.css": "/blocklyAutomation/static/css/main.90708069.css",
4-
"main.js": "/blocklyAutomation/static/js/main.95aa2480.js",
4+
"main.js": "/blocklyAutomation/static/js/main.d6ddcfee.js",
55
"static/js/988.d8553045.chunk.js": "/blocklyAutomation/static/js/988.d8553045.chunk.js",
66
"index.html": "/blocklyAutomation/index.html",
77
"main.90708069.css.map": "/blocklyAutomation/static/css/main.90708069.css.map",
8-
"main.95aa2480.js.map": "/blocklyAutomation/static/js/main.95aa2480.js.map",
8+
"main.d6ddcfee.js.map": "/blocklyAutomation/static/js/main.d6ddcfee.js.map",
99
"988.d8553045.chunk.js.map": "/blocklyAutomation/static/js/988.d8553045.chunk.js.map"
1010
},
1111
"entrypoints": [
1212
"static/css/main.90708069.css",
13-
"static/js/main.95aa2480.js"
13+
"static/js/main.d6ddcfee.js"
1414
]
1515
}
Lines changed: 220 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"title": "TestDrupal",
5+
"description": "",
6+
"version": ""
7+
},
8+
"host": "127.0.0.1:8081",
9+
"schemes": [
10+
"http"
11+
],
12+
"paths": {
13+
"/rest/users/": {
14+
"get": {
15+
"operationId": "users_list",
16+
"responses": {
17+
"200": {
18+
"description": ""
19+
}
20+
},
21+
"parameters": [],
22+
"tags": [
23+
"rest"
24+
]
25+
},
26+
"post": {
27+
"operationId": "users_create",
28+
"responses": {
29+
"201": {
30+
"description": ""
31+
}
32+
},
33+
"parameters": [
34+
{
35+
"name": "data",
36+
"in": "body",
37+
"schema": {
38+
"type": "object",
39+
"properties": {
40+
"username": {
41+
"description": "Wow",
42+
"type": "string"
43+
},
44+
"email": {
45+
"description": "",
46+
"type": "string"
47+
},
48+
"forAdmin": {
49+
"description": "Next",
50+
"type": "boolean"
51+
}
52+
},
53+
"required": [
54+
"username"
55+
]
56+
}
57+
}
58+
],
59+
"consumes": [
60+
"application/json"
61+
],
62+
"tags": [
63+
"rest"
64+
]
65+
}
66+
},
67+
"/rest/users/{id}/": {
68+
"get": {
69+
"operationId": "users_read",
70+
"responses": {
71+
"200": {
72+
"description": ""
73+
}
74+
},
75+
"parameters": [
76+
{
77+
"name": "id",
78+
"required": true,
79+
"in": "path",
80+
"description": "id of the user",
81+
"type": "integer"
82+
}
83+
],
84+
"tags": [
85+
"rest"
86+
]
87+
},
88+
"put": {
89+
"operationId": "users_update",
90+
"responses": {
91+
"200": {
92+
"description": ""
93+
}
94+
},
95+
"parameters": [
96+
{
97+
"name": "id",
98+
"required": true,
99+
"in": "path",
100+
"description": "again id.",
101+
"type": "integer"
102+
},
103+
{
104+
"name": "data",
105+
"in": "body",
106+
"schema": {
107+
"type": "object",
108+
"properties": {
109+
"username": {
110+
"description": "data",
111+
"type": "string"
112+
},
113+
"email": {
114+
"description": "",
115+
"type": "string"
116+
},
117+
"forAdmin": {
118+
"description": "mre.",
119+
"type": "boolean"
120+
}
121+
},
122+
"required": [
123+
"username"
124+
]
125+
}
126+
}
127+
],
128+
"consumes": [
129+
"application/json"
130+
],
131+
"tags": [
132+
"rest"
133+
]
134+
},
135+
"patch": {
136+
"operationId": "users_partial_update",
137+
"responses": {
138+
"200": {
139+
"description": ""
140+
}
141+
},
142+
"parameters": [
143+
{
144+
"name": "id",
145+
"required": true,
146+
"in": "path",
147+
"description": "my ud",
148+
"type": "integer"
149+
},
150+
{
151+
"name": "data",
152+
"in": "body",
153+
"schema": {
154+
"type": "object",
155+
"properties": {
156+
"username": {
157+
"description": "this is desc",
158+
"type": "string"
159+
},
160+
"email": {
161+
"description": "",
162+
"type": "string"
163+
},
164+
"forAdmin": {
165+
"description": "my admin",
166+
"type": "boolean"
167+
}
168+
}
169+
}
170+
}
171+
],
172+
"consumes": [
173+
"application/json"
174+
],
175+
"tags": [
176+
"rest"
177+
]
178+
},
179+
"delete": {
180+
"operationId": "users_delete",
181+
"responses": {
182+
"204": {
183+
"description": ""
184+
}
185+
},
186+
"parameters": [
187+
{
188+
"name": "id",
189+
"required": true,
190+
"in": "path",
191+
"description": "the id",
192+
"type": "integer"
193+
}
194+
],
195+
"tags": [
196+
"rest"
197+
]
198+
}
199+
},
200+
"/swagger/": {
201+
"get": {
202+
"operationId": "list",
203+
"responses": {
204+
"200": {
205+
"description": ""
206+
}
207+
},
208+
"parameters": [],
209+
"tags": [
210+
"swagger"
211+
]
212+
}
213+
}
214+
},
215+
"securityDefinitions": {
216+
"basic": {
217+
"type": "basic"
218+
}
219+
}
220+
}

src/NetCore2Blockly/TestBlocklyHtml/wwwroot/BlocklyAutomation/assets/loadAtStartup/swaggers.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"id": "Z_NOTTouch",
4+
"link": "assets/loadAtStartup/drupal_swagger.js",
5+
"enabled": true
6+
},
27
{
38
"id": "Demo_MSPC",
49
"link": "https://microservicesportchooser.azurewebsites.net/swagger/v1/swagger.json",

src/NetCore2Blockly/TestBlocklyHtml/wwwroot/BlocklyAutomation/help/404.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<meta name="generator" content="Docusaurus v2.3.1">
66
<title data-rh="true">Page Not Found | VisualAPI</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:url" content="https://visualApi.azurewebsites.com/blocklyAutomation/help/404.html"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docusaurus_tag" content="default"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docsearch:docusaurus_tag" content="default"><meta data-rh="true" property="og:title" content="Page Not Found | VisualAPI"><link data-rh="true" rel="icon" href="/blocklyAutomation/help/img/favicon.ico"><link data-rh="true" rel="canonical" href="https://visualApi.azurewebsites.com/blocklyAutomation/help/404.html"><link data-rh="true" rel="alternate" href="https://visualApi.azurewebsites.com/blocklyAutomation/help/404.html" hreflang="en"><link data-rh="true" rel="alternate" href="https://visualApi.azurewebsites.com/blocklyAutomation/help/404.html" hreflang="x-default"><link rel="alternate" type="application/rss+xml" href="/blocklyAutomation/help/blog/rss.xml" title="VisualAPI RSS Feed">
77
<link rel="alternate" type="application/atom+xml" href="/blocklyAutomation/help/blog/atom.xml" title="VisualAPI Atom Feed"><link rel="stylesheet" href="/blocklyAutomation/help/assets/css/styles.430f042a.css">
8-
<link rel="preload" href="/blocklyAutomation/help/assets/js/runtime~main.1e882a7b.js" as="script">
9-
<link rel="preload" href="/blocklyAutomation/help/assets/js/main.d8515575.js" as="script">
8+
<link rel="preload" href="/blocklyAutomation/help/assets/js/runtime~main.24ec1c0f.js" as="script">
9+
<link rel="preload" href="/blocklyAutomation/help/assets/js/main.b449e836.js" as="script">
1010
</head>
1111
<body class="navigation-with-keyboard" data-theme="light">
1212
<script>!function(){function t(t){document.documentElement.setAttribute("data-theme",t)}var e=function(){var t=null;try{t=localStorage.getItem("theme")}catch(t){}return t}();t(null!==e?e:"light")}()</script><div id="__docusaurus">
1313
<div role="region" aria-label="Skip to main content"><a class="skipToContent_fXgn" href="#docusaurus_skipToContent_fallback">Skip to main content</a></div><nav aria-label="Main" class="navbar navbar--fixed-top"><div class="navbar__inner"><div class="navbar__items"><button aria-label="Toggle navigation bar" aria-expanded="false" class="navbar__toggle clean-btn" type="button"><svg width="30" height="30" viewBox="0 0 30 30" aria-hidden="true"><path stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"></path></svg></button><a class="navbar__brand" href="/blocklyAutomation/help/"><b class="navbar__title text--truncate">VisualAPI Help</b></a><a class="navbar__item navbar__link" href="/blocklyAutomation/help/docs/intro">Tutorial</a><a href="http://msprogrammer.serviciipeweb.ro" target="_blank" rel="noopener noreferrer" class="navbar__item navbar__link">Blog</a></div><div class="navbar__items navbar__items--right"><a href="https://github.com/ignatandrei/BlocklyAutomation" target="_blank" rel="noopener noreferrer" class="navbar__item navbar__link">GitHub<svg width="13.5" height="13.5" aria-hidden="true" viewBox="0 0 24 24" class="iconExternalLink_nPIU"><path fill="currentColor" d="M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"></path></svg></a><div class="toggle_vylO colorModeToggle_DEke"><button class="clean-btn toggleButton_gllP toggleButtonDisabled_aARS" type="button" disabled="" title="Switch between dark and light mode (currently light mode)" aria-label="Switch between dark and light mode (currently light mode)" aria-live="polite"><svg viewBox="0 0 24 24" width="24" height="24" class="lightToggleIcon_pyhR"><path fill="currentColor" d="M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z"></path></svg><svg viewBox="0 0 24 24" width="24" height="24" class="darkToggleIcon_wfgR"><path fill="currentColor" d="M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z"></path></svg></button></div><div class="searchBox_ZlJk"><div class="dsla-search-wrapper"><div class="dsla-search-field" data-tags="default,docs-default-current"></div></div></div></div></div><div role="presentation" class="navbar-sidebar__backdrop"></div></nav><div id="docusaurus_skipToContent_fallback" class="main-wrapper mainWrapper_z2l0"><main class="container margin-vert--xl"><div class="row"><div class="col col--6 col--offset-3"><h1 class="hero__title">Page Not Found</h1><p>We could not find what you were looking for.</p><p>Please contact the owner of the site that linked you to the original URL and let them know their link is broken.</p></div></div></main></div><footer class="footer footer--dark"><div class="container container-fluid"><div class="row footer__links"><div class="col footer__col"><div class="footer__title">Docs</div><ul class="footer__items clean-list"><li class="footer__item"><a class="footer__link-item" href="/blocklyAutomation/help/docs/intro">Tutorial</a></li></ul></div><div class="col footer__col"><div class="footer__title">Community</div><ul class="footer__items clean-list"><li class="footer__item"><a href="https://stackoverflow.com/questions/tagged/visualAPI" target="_blank" rel="noopener noreferrer" class="footer__link-item">Stack Overflow<svg width="13.5" height="13.5" aria-hidden="true" viewBox="0 0 24 24" class="iconExternalLink_nPIU"><path fill="currentColor" d="M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"></path></svg></a></li><li class="footer__item"><a href="https://twitter.com/ignatandrei" target="_blank" rel="noopener noreferrer" class="footer__link-item">Twitter<svg width="13.5" height="13.5" aria-hidden="true" viewBox="0 0 24 24" class="iconExternalLink_nPIU"><path fill="currentColor" d="M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"></path></svg></a></li></ul></div><div class="col footer__col"><div class="footer__title">More</div><ul class="footer__items clean-list"><li class="footer__item"><a href="http://msprogrammer.serviciipeweb.ro" target="_blank" rel="noopener noreferrer" class="footer__link-item">Blog</a></li><li class="footer__item"><a href="https://github.com/ignatandrei/BlocklyAutomation" target="_blank" rel="noopener noreferrer" class="footer__link-item">GitHub<svg width="13.5" height="13.5" aria-hidden="true" viewBox="0 0 24 24" class="iconExternalLink_nPIU"><path fill="currentColor" d="M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"></path></svg></a></li></ul></div></div><div class="footer__bottom text--center"><div class="footer__copyright">Copyright © 2023 VisualAPI. Built with Docusaurus.</div></div></div></footer></div>
14-
<script src="/blocklyAutomation/help/assets/js/runtime~main.1e882a7b.js"></script>
15-
<script src="/blocklyAutomation/help/assets/js/main.d8515575.js"></script>
14+
<script src="/blocklyAutomation/help/assets/js/runtime~main.24ec1c0f.js"></script>
15+
<script src="/blocklyAutomation/help/assets/js/main.b449e836.js"></script>
1616
</body>
1717
</html>

0 commit comments

Comments
 (0)