Skip to content

Commit

Permalink
Deploy preview for PR 540 🛫
Browse files Browse the repository at this point in the history
  • Loading branch information
planger committed Apr 4, 2024
1 parent c4ccd8b commit 3b466cd
Show file tree
Hide file tree
Showing 19 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions pr-previews/pr-540/docs/authoring_extensions/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pr-previews/pr-540/docs/blueprint_documentation/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pr-previews/pr-540/docs/composing_applications/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
This guide describes the manual steps to build a Theia-based product, there are two ways to avoid this manual set-up:</p>
<ul>
<li><a href="https://github.com/eclipse-theia/generator-theia-extension" target="_blank" rel="nofollow noopener noreferrer">Theia Extension Yeoman generator</a>: Generates Theia-based products along with example extensions.</li>
<li><a href="../../#theiaide">Theia IDE</a>: A tool based on the Theia Platform that can be used as a template for creating installable desktop applications based on Theia. <a href="blueprint_documentation/">Learn how to extend and adapt the Theia IDE</a>.</li>
<li><a href="../../#theiaide">Theia IDE</a>: A tool based on the Theia Platform that can be used as a template for creating installable desktop applications based on Theia. <a href="../blueprint_documentation/">Learn how to extend and adapt the Theia IDE</a>.</li>
</ul>
<p>We still recommend reading the manual guide first, it allows you to understand the structure of a Theia-based project.</p>
<h2 id="requirements" style="position:relative;"><a href="#requirements" aria-label="requirements permalink" class="anchor before"><svg aria-hidden="true" focusable="false" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Requirements</h2>
Expand Down

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pr-previews/pr-540/docs/json_rpc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ <h2 id="registering-a-service" style="position:relative;"><a href="#registering-
an when this contribution is initialized it creates a websocket channel for all bound <code class="language-text">ConnectionHandlers</code>.
To save resources the hood all <code class="language-text">MessagingContributions</code> are routed over one
websocket connection (multiplexing).</p>
<p>To dig more into ContributionProvider see this <a href="Services_and_Contributions#contribution-providers">section</a>.</p>
<p>To dig more into ContributionProvider see this <a href="../Services_and_Contributions#contribution-providers">section</a>.</p>
<p>So now:</p>
<div class="gatsby-highlight" data-language="typescript"><pre class="language-typescript"><code class="language-typescript"> <span class="token keyword">new</span> <span class="token class-name">RpcConnectionHandler</span><span class="token operator">&lt;</span>TaskClient<span class="token operator">></span><span class="token punctuation">(</span>taskPath<span class="token punctuation">,</span> <span class="token parameter">client</span> <span class="token operator">=></span> <span class="token punctuation">{</span></code></pre></div>
<p>This does a few things if we look at this class implementation:</p>
Expand Down Expand Up @@ -176,7 +176,7 @@ <h2 id="connecting-to-a-service" style="position:relative;"><a href="#connecting
<p>Here we're creating a watcher, this is used to get notified about events
from the backend by using the <code class="language-text">taskWatcher</code>'s client
(<code class="language-text">taskWatcher.getTaskClient()</code>)</p>
<p>See more information about how events work in theia <a href="Events#events">here</a>.</p>
<p>See more information about how events work in theia <a href="../Events#events">here</a>.</p>
<div class="gatsby-highlight" data-language="typescript"><pre class="language-typescript"><code class="language-typescript"> <span class="token keyword">return</span> connection<span class="token punctuation">.</span>createProxy<span class="token operator">&lt;</span>TaskServer<span class="token operator">></span><span class="token punctuation">(</span>taskPath<span class="token punctuation">,</span> taskWatcher<span class="token punctuation">.</span><span class="token function">getTaskClient</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre></div>
<p>As the second argument, we pass a local object to handle RPC messages from the remote object.
Sometimes the local object depends on the proxy and cannot be instantiated before the proxy is instantiated.
Expand Down
4 changes: 2 additions & 2 deletions pr-previews/pr-540/docs/toolbar/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pr-previews/pr-540/docs/user_getting_started/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<p>This section is about using the Theia IDE from an end user point of view. Please note that the Theia IDE is based on the Theia Platform, a technology to build tools and IDEs. As an end user, you are not using “Theia”, but always a product based on Theia, in this case the Theia IDE. If you are using another product based on Theia, please consider the specific end user documentation of the product you are using over this section.</p>
<p>The Theia IDE features and usability concept is heavily influences by VS Code. Therefore, for many use cases, we refer to the VS Code documentation. We still provide some selected documentation about use cases which are differing or not supported in VS Code:</p>
<ul>
<li><a href="user_install_vscode_extensions/">Install VS Code extensions</a></li>
<li><a href="user_toolbar/">Using the dynamic Toolbar</a></li>
<li><a href="../user_install_vscode_extensions/">Install VS Code extensions</a></li>
<li><a href="../user_toolbar/">Using the dynamic Toolbar</a></li>
</ul>
<p>Please note that you can also <a href="blueprint_documentation/">use the Theia IDE as a basis to create your own custom product</a>.</p></div><style data-emotion-css="3ufj4z">.css-3ufj4z{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-top:10rem;}.css-3ufj4z .arrow{display:inline-block;height:6rem;}.css-3ufj4z .arrow--left{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}.css-3ufj4z .arrow--right{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg);}</style><div class="css-3ufj4z ex5dzuf0"><a title="Go to previous Page : Project Goals" aria-label="Go to previous Page : Project Goals" style="pointer-events:" href="/theia-website-previews/pr-previews/pr-540/docs/project_goals/"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1OS40MTQgNTkuNDE0IiBpZD0iQ2FwYV8xIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTkuNDE0IDU5LjQxNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGxpbmsgaWQ9ImRhcmstbW9kZSIgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIvPjxzdHlsZSBpZD0iZGFyay1tb2RlLWN1c3RvbS1zdHlsZSIgdHlwZT0idGV4dC9jc3MiLz48Zz48cG9seWdvbiBmaWxsPSIjMzgzODM4IiBwb2ludHM9IjI5LjcwNyA0NS4yNjggMCAxNS41NjEgMS40MTQgMTQuMTQ2IDI5LjcwNyA0Mi40MzkgNTggMTQuMTQ2IDU5LjQxNCAxNS41NjEiIGNsYXNzPSJhY3RpdmUtcGF0aCIgZGF0YS1vbGRfY29sb3I9IiM0OEEwREMiIGRhdGEtb3JpZ2luYWw9IiM0OEEwREMiLz48L2c+PC9nPjwvc3ZnPg==" alt="Go to previous Page : Project Goals" class="arrow arrow--left" style="opacity:1"/></a><a title="Go to next page : Installing VS Code Extensions" aria-label="Go to next page : Installing VS Code Extensions" style="pointer-events:" href="/theia-website-previews/pr-previews/pr-540/docs/user_install_vscode_extensions/"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1OS40MTQgNTkuNDE0IiBpZD0iQ2FwYV8xIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTkuNDE0IDU5LjQxNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGxpbmsgaWQ9ImRhcmstbW9kZSIgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIvPjxzdHlsZSBpZD0iZGFyay1tb2RlLWN1c3RvbS1zdHlsZSIgdHlwZT0idGV4dC9jc3MiLz48Zz48cG9seWdvbiBmaWxsPSIjMzgzODM4IiBwb2ludHM9IjI5LjcwNyA0NS4yNjggMCAxNS41NjEgMS40MTQgMTQuMTQ2IDI5LjcwNyA0Mi40MzkgNTggMTQuMTQ2IDU5LjQxNCAxNS41NjEiIGNsYXNzPSJhY3RpdmUtcGF0aCIgZGF0YS1vbGRfY29sb3I9IiM0OEEwREMiIGRhdGEtb3JpZ2luYWw9IiM0OEEwREMiLz48L2c+PC9nPjwvc3ZnPg==" alt="Go to next page : Installing VS Code Extensions" class="arrow arrow--right" style="opacity:1"/></a></div></div><style data-emotion-css="18dx8lt">.css-18dx8lt .footer{padding:4rem 0;text-align:center;background-size:cover;background-position:center;background-repeat:no-repeat;border-top:10px solid #f8f8f8;}.css-18dx8lt .footer__icons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:2rem 0;}.css-18dx8lt .footer__icon{height:3rem;display:block;}.css-18dx8lt .footer__link:not(:last-child){margin-right:3rem;}.css-18dx8lt .footer__copyright{margin:2rem 0;}</style><div class="css-18dx8lt e1m04x9t0"><footer class="footer" role="contentinfo"><p>Join the community!</p><div class="footer__icons"><a href="https://twitter.com/theia_ide" target="_blank" rel="noopener noreferrer" class="footer__link"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwIiB5PSIwIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyIj48cGF0aCBzdHlsZT0iZmlsbDojMDNhOWY0IiBkPSJNNTEyLDk3LjI0OGMtMTkuMDQsOC4zNTItMzkuMzI4LDEzLjg4OC02MC40OCwxNi41NzZjMjEuNzYtMTIuOTkyLDM4LjM2OC0zMy40MDgsNDYuMTc2LTU4LjAxNgljLTIwLjI4OCwxMi4wOTYtNDIuNjg4LDIwLjY0LTY2LjU2LDI1LjQwOEM0MTEuODcyLDYwLjcwNCwzODQuNDE2LDQ4LDM1NC40NjQsNDhjLTU4LjExMiwwLTEwNC44OTYsNDcuMTY4LTEwNC44OTYsMTA0Ljk5MgljMCw4LjMyLDAuNzA0LDE2LjMyLDIuNDMyLDIzLjkzNmMtODcuMjY0LTQuMjU2LTE2NC40OC00Ni4wOC0yMTYuMzUyLTEwOS43OTJjLTkuMDU2LDE1LjcxMi0xNC4zNjgsMzMuNjk2LTE0LjM2OCw1My4wNTYJYzAsMzYuMzUyLDE4LjcyLDY4LjU3Niw0Ni42MjQsODcuMjMyYy0xNi44NjQtMC4zMi0zMy40MDgtNS4yMTYtNDcuNDI0LTEyLjkyOGMwLDAuMzIsMCwwLjczNiwwLDEuMTUyCWMwLDUxLjAwOCwzNi4zODQsOTMuMzc2LDg0LjA5NiwxMDMuMTM2Yy04LjU0NCwyLjMzNi0xNy44NTYsMy40NTYtMjcuNTIsMy40NTZjLTYuNzIsMC0xMy41MDQtMC4zODQtMTkuODcyLTEuNzkyCWMxMy42LDQxLjU2OCw1Mi4xOTIsNzIuMTI4LDk4LjA4LDczLjEyYy0zNS43MTIsMjcuOTM2LTgxLjA1Niw0NC43NjgtMTMwLjE0NCw0NC43NjhjLTguNjA4LDAtMTYuODY0LTAuMzg0LTI1LjEyLTEuNDQJQzQ2LjQ5Niw0NDYuODgsMTAxLjYsNDY0LDE2MS4wMjQsNDY0YzE5My4xNTIsMCwyOTguNzUyLTE2MCwyOTguNzUyLTI5OC42ODhjMC00LjY0LTAuMTYtOS4xMi0wLjM4NC0xMy41NjgJQzQ4MC4yMjQsMTM2Ljk2LDQ5Ny43MjgsMTE4LjQ5Niw1MTIsOTcuMjQ4eiIvPjwvc3ZnPg==" alt="Twitter Logo" class="footer__icon"/></a><a href="https://github.com/eclipse-theia/theia" target="_blank" rel="noopener noreferrer" class="footer__link"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDM4LjU0OSIgaGVpZ2h0PSI0MzguNTQ5IiB4PSIwIiB5PSIwIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA0MzguNTQ5IDQzOC41NDkiIHhtbDpzcGFjZT0icHJlc2VydmUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQzOC41NDkgNDM4LjU0OSI+PGc+PHBhdGggZD0iTTQwOS4xMzIsMTE0LjU3M2MtMTkuNjA4LTMzLjU5Ni00Ni4yMDUtNjAuMTk0LTc5Ljc5OC03OS44QzI5NS43MzYsMTUuMTY2LDI1OS4wNTcsNS4zNjUsMjE5LjI3MSw1LjM2NSBjLTM5Ljc4MSwwLTc2LjQ3Miw5LjgwNC0xMTAuMDYzLDI5LjQwOGMtMzMuNTk2LDE5LjYwNS02MC4xOTIsNDYuMjA0LTc5LjgsNzkuOEM5LjgwMywxNDguMTY4LDAsMTg0Ljg1NCwwLDIyNC42MyBjMCw0Ny43OCwxMy45NCw5MC43NDUsNDEuODI3LDEyOC45MDZjMjcuODg0LDM4LjE2NCw2My45MDYsNjQuNTcyLDEwOC4wNjMsNzkuMjI3YzUuMTQsMC45NTQsOC45NDUsMC4yODMsMTEuNDE5LTEuOTk2IGMyLjQ3NS0yLjI4MiwzLjcxMS01LjE0LDMuNzExLTguNTYyYzAtMC41NzEtMC4wNDktNS43MDgtMC4xNDQtMTUuNDE3Yy0wLjA5OC05LjcwOS0wLjE0NC0xOC4xNzktMC4xNDQtMjUuNDA2bC02LjU2NywxLjEzNiBjLTQuMTg3LDAuNzY3LTkuNDY5LDEuMDkyLTE1Ljg0NiwxYy02LjM3NC0wLjA4OS0xMi45OTEtMC43NTctMTkuODQyLTEuOTk5Yy02Ljg1NC0xLjIzMS0xMy4yMjktNC4wODYtMTkuMTMtOC41NTkgYy01Ljg5OC00LjQ3My0xMC4wODUtMTAuMzI4LTEyLjU2LTE3LjU1NmwtMi44NTUtNi41N2MtMS45MDMtNC4zNzQtNC44OTktOS4yMzMtOC45OTItMTQuNTU5IGMtNC4wOTMtNS4zMzEtOC4yMzItOC45NDUtMTIuNDE5LTEwLjg0OGwtMS45OTktMS40MzFjLTEuMzMyLTAuOTUxLTIuNTY4LTIuMDk4LTMuNzExLTMuNDI5Yy0xLjE0Mi0xLjMzMS0xLjk5Ny0yLjY2My0yLjU2OC0zLjk5NyBjLTAuNTcyLTEuMzM1LTAuMDk4LTIuNDMsMS40MjctMy4yODljMS41MjUtMC44NTksNC4yODEtMS4yNzYsOC4yOC0xLjI3Nmw1LjcwOCwwLjg1M2MzLjgwNywwLjc2Myw4LjUxNiwzLjA0MiwxNC4xMzMsNi44NTEgYzUuNjE0LDMuODA2LDEwLjIyOSw4Ljc1NCwxMy44NDYsMTQuODQyYzQuMzgsNy44MDYsOS42NTcsMTMuNzU0LDE1Ljg0NiwxNy44NDdjNi4xODQsNC4wOTMsMTIuNDE5LDYuMTM2LDE4LjY5OSw2LjEzNiBjNi4yOCwwLDExLjcwNC0wLjQ3NiwxNi4yNzQtMS40MjNjNC41NjUtMC45NTIsOC44NDgtMi4zODMsMTIuODQ3LTQuMjg1YzEuNzEzLTEyLjc1OCw2LjM3Ny0yMi41NTksMTMuOTg4LTI5LjQxIGMtMTAuODQ4LTEuMTQtMjAuNjAxLTIuODU3LTI5LjI2NC01LjE0Yy04LjY1OC0yLjI4Ni0xNy42MDUtNS45OTYtMjYuODM1LTExLjE0Yy05LjIzNS01LjEzNy0xNi44OTYtMTEuNTE2LTIyLjk4NS0xOS4xMjYgYy02LjA5LTcuNjE0LTExLjA4OC0xNy42MS0xNC45ODctMjkuOTc5Yy0zLjkwMS0xMi4zNzQtNS44NTItMjYuNjQ4LTUuODUyLTQyLjgyNmMwLTIzLjAzNSw3LjUyLTQyLjYzNywyMi41NTctNTguODE3IGMtNy4wNDQtMTcuMzE4LTYuMzc5LTM2LjczMiwxLjk5Ny01OC4yNGM1LjUyLTEuNzE1LDEzLjcwNi0wLjQyOCwyNC41NTQsMy44NTNjMTAuODUsNC4yODMsMTguNzk0LDcuOTUyLDIzLjg0LDEwLjk5NCBjNS4wNDYsMy4wNDEsOS4wODksNS42MTgsMTIuMTM1LDcuNzA4YzE3LjcwNS00Ljk0NywzNS45NzYtNy40MjEsNTQuODE4LTcuNDIxczM3LjExNywyLjQ3NCw1NC44MjMsNy40MjFsMTAuODQ5LTYuODQ5IGM3LjQxOS00LjU3LDE2LjE4LTguNzU4LDI2LjI2Mi0xMi41NjVjMTAuMDg4LTMuODA1LDE3LjgwMi00Ljg1MywyMy4xMzQtMy4xMzhjOC41NjIsMjEuNTA5LDkuMzI1LDQwLjkyMiwyLjI3OSw1OC4yNCBjMTUuMDM2LDE2LjE4LDIyLjU1OSwzNS43ODcsMjIuNTU5LDU4LjgxN2MwLDE2LjE3OC0xLjk1OCwzMC40OTctNS44NTMsNDIuOTY2Yy0zLjksMTIuNDcxLTguOTQxLDIyLjQ1Ny0xNS4xMjUsMjkuOTc5IGMtNi4xOTEsNy41MjEtMTMuOTAxLDEzLjg1LTIzLjEzMSwxOC45ODZjLTkuMjMyLDUuMTQtMTguMTgyLDguODUtMjYuODQsMTEuMTM2Yy04LjY2MiwyLjI4Ni0xOC40MTUsNC4wMDQtMjkuMjYzLDUuMTQ2IGM5Ljg5NCw4LjU2MiwxNC44NDIsMjIuMDc3LDE0Ljg0Miw0MC41Mzl2NjAuMjM3YzAsMy40MjIsMS4xOSw2LjI3OSwzLjU3Miw4LjU2MmMyLjM3OSwyLjI3OSw2LjEzNiwyLjk1LDExLjI3NiwxLjk5NSBjNDQuMTYzLTE0LjY1Myw4MC4xODUtNDEuMDYyLDEwOC4wNjgtNzkuMjI2YzI3Ljg4LTM4LjE2MSw0MS44MjUtODEuMTI2LDQxLjgyNS0xMjguOTA2IEM0MzguNTM2LDE4NC44NTEsNDI4LjcyOCwxNDguMTY4LDQwOS4xMzIsMTE0LjU3M3oiLz48L2c+PC9zdmc+" alt="Github Logo" class="footer__icon"/></a></div><p class="footer__copyright"><a target="_blank" rel="noopener noreferrer" href="https://projects.eclipse.org/projects/ecd.theia/">About</a> | <a target="_blank" rel="noopener noreferrer" href=" http://www.eclipse.org/legal/privacy.php">Privacy Policy</a> | <a target="_blank" rel="noopener noreferrer" href=" http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a> | <a target="_blank" rel="noopener noreferrer" href="http://www.eclipse.org/legal/copyright.php">Copyright Agent</a></p><p>© <!-- -->2024<!-- --> by <a href="https://www.eclipse.org/org/" target="_blank" rel="noopener">Eclipse Foundation</a></p></footer></div></div></div></div></div><div id="gatsby-announcer" style="position:absolute;top:0;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0" aria-live="assertive" aria-atomic="true"></div></div><script id="gatsby-script-loader">/*<![CDATA[*/window.pagePath="/docs/user_getting_started";/*]]>*/</script><script id="gatsby-chunk-mapping">/*<![CDATA[*/window.___chunkMapping={"app":["/app-a14553a97c5c184680ff.js"],"component---src-pages-404-js":["/component---src-pages-404-js-5570c45c771731a59b25.js"],"component---src-pages-blogs-js":["/component---src-pages-blogs-js-c4e46ad917d4db2de5b0.js"],"component---src-pages-docs-js":["/component---src-pages-docs-js-af9b5a57556dae39549b.js"],"component---src-pages-index-js":["/component---src-pages-index-js-405276c7ec315f000529.js"],"component---src-pages-releases-js":["/component---src-pages-releases-js-46d92df1ece57320e796.js"],"component---src-pages-resources-js":["/component---src-pages-resources-js-529598b800869c12655e.js"],"component---src-pages-support-js":["/component---src-pages-support-js-2bb748140a6b62b7695d.js"],"component---src-templates-doc-js":["/component---src-templates-doc-js-a11ebdd5b53a119854fd.js"]};/*]]>*/</script><script src="/theia-website-previews/pr-previews/pr-540/component---src-templates-doc-js-a11ebdd5b53a119854fd.js" async=""></script><script src="/theia-website-previews/pr-previews/pr-540/commons-f08aab76d5d5eba7d42f.js" async=""></script><script src="/theia-website-previews/pr-previews/pr-540/app-a14553a97c5c184680ff.js" async=""></script><script src="/theia-website-previews/pr-previews/pr-540/framework-59a9ef51c55d9b62f7de.js" async=""></script><script src="/theia-website-previews/pr-previews/pr-540/styles-823ae8103e36ae8a7f9f.js" async=""></script><script src="/theia-website-previews/pr-previews/pr-540/webpack-runtime-0f1737281080ac34734f.js" async=""></script></body></html>

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pr-previews/pr-540/docs/user_toolbar/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pr-previews/pr-540/page-data/docs/json_rpc/page-data.json

Large diffs are not rendered by default.

Loading

0 comments on commit 3b466cd

Please sign in to comment.