forked from jupyter-lsp/jupyterlab-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more work on docs: jupyter-lsp#165, ci, node servers
- Loading branch information
Showing
10 changed files
with
162 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
parameters: | ||
platforms: | ||
- name: Linux | ||
vmImage: ubuntu-16.04 | ||
activate: source activate | ||
pythons: | ||
- name: ThreeSeven | ||
spec: '>=3.7,<3.8.0a0' | ||
env_update: conda env update -n jupyterlab-lsp --file env-test.yml --quiet | ||
env_lint: conda env update -n jupyterlab-lsp --file requirements/docs.yml --quiet | ||
|
||
jobs: | ||
- ${{ each platform in parameters.platforms }}: | ||
- ${{ each python in parameters.pythons}}: | ||
- job: Lint | ||
pool: | ||
vmImage: ${{ platform.vmImage }} | ||
steps: | ||
- template: steps.conda.yml | ||
parameters: | ||
name: ${{ platform.name }} | ||
|
||
- script: ${{ platform.activate }} && cd ci && python env_template.py "${{ python.spec }}" ">=1,<2" | ||
displayName: base dependencies | ||
|
||
- script: ${{ parameters.env_update }} || ${{ parameters.env_update }} || ${{ parameters.env_update }} | ||
displayName: docs dependencies | ||
|
||
- script: ${{ platform.activate }} jupyterlab-lsp && python scripts/docs.py | ||
displayName: build docs | ||
|
||
- task: PublishPipelineArtifact@0 | ||
displayName: publish docs | ||
inputs: | ||
targetPath: docs/build | ||
artifactName: Docs $(Build.BuildId) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ | |
"**/.ipynb_checkpoints/**", | ||
"**/~.*", | ||
"~.*", | ||
"_build/**" | ||
"_build/**", | ||
] | ||
|
||
pygments_style = "monokai" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
graph backend { | ||
label="Front End with One Socket Per Language (#165)" | ||
splines="line" | ||
compound=true | ||
fontname="sans-serif" fontcolor=grey | ||
node[shape=none fontname="sans-serif"] | ||
edge[fontname="sans-serif"] | ||
graph[fontcolor=grey color=grey] | ||
|
||
subgraph cluster_io { label="IO" | ||
Keyboard[label="The Keyboard"] | ||
Mouse[label="The Mouse"] | ||
} | ||
subgraph cluster_server { label="Server" | ||
RestAPI[label="The REST API"] | ||
WebSocketHandlers | ||
} | ||
subgraph cluster_lab { label="JupyterLab" | ||
Plugin | ||
StatusBar | ||
WidgetTrackers | ||
DiagnosticPanel | ||
ConnectionManager | ||
|
||
subgraph cluster_lang {label="Per Language" | ||
Connection | ||
MessageConnection | ||
WebSocket | ||
} | ||
subgraph cluster_doc { label="Per Document" | ||
Widget | ||
CodeMirrors | ||
subgraph cluster_doc_lsp { label="LSP Client" | ||
WidgetAdapter | ||
VirtualEditor | ||
VirtualDocument | ||
CodeMirrorAdapters | ||
subgraph cluster_features { label="Features" | ||
Feature[style=invisible] | ||
Completion | ||
Diagnostics | ||
Highlight | ||
Hover | ||
Jump | ||
Rename | ||
Signature | ||
} | ||
} | ||
} | ||
} | ||
|
||
{Connection CodeMirrors VirtualDocument VirtualEditor} -- Feature[lhead=cluster_features]; | ||
Diagnostics -- DiagnosticPanel | ||
Connection -- ConnectionManager | ||
CodeMirrors -- CodeMirrorAdapters -- WidgetAdapter | ||
WidgetAdapter -- VirtualEditor -- VirtualDocument | ||
WidgetTrackers -- {Plugin -- Widget} | ||
StatusBar -- Connection | ||
Widget -- WidgetAdapter -- Plugin -- StatusBar -- RestAPI | ||
Widget -- CodeMirrors | ||
Plugin -- ConnectionManager | ||
Connection -- MessageConnection -- WebSocket -- WebSocketHandlers | ||
{Keyboard Mouse} -- CodeMirrors | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters