Skip to content

Commit 1798a3e

Browse files
committed
creating the website
1 parent ab36ba6 commit 1798a3e

Some content is hidden

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

46 files changed

+4389
-49
lines changed

.github/commands.yml

-30
This file was deleted.

.github/locker.yml

-5
This file was deleted.

.github/needs_more_info.yml

-6
This file was deleted.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
npm-debug.log
1+
npm-debug.log
2+
_site

.vscode/settings.json

-4
This file was deleted.

404.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="container text-center">
6+
<p>The page you are looking for cannot be found.</p>
7+
<h2>404</h2>
8+
</div>

Gemfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
source "https://rubygems.org"
2+
ruby RUBY_VERSION
3+
4+
gem "jekyll", "3.6.2"
5+
6+
# to use GitHub Pages
7+
# gem "github-pages", group: :jekyll_plugins
8+
9+
# If you have any plugins, put them here!
10+
group :jekyll_plugins do
11+
gem "jemoji"
12+
gem "github-pages"
13+
gem "jekyll-remote-theme"
14+
end
15+
16+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
17+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+231
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,231 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.2.9)
5+
i18n (~> 0.7)
6+
minitest (~> 5.1)
7+
thread_safe (~> 0.3, >= 0.3.4)
8+
tzinfo (~> 1.1)
9+
addressable (2.5.2)
10+
public_suffix (>= 2.0.2, < 4.0)
11+
coffee-script (2.4.1)
12+
coffee-script-source
13+
execjs
14+
coffee-script-source (1.11.1)
15+
colorator (1.1.0)
16+
concurrent-ruby (1.0.5)
17+
ethon (0.11.0)
18+
ffi (>= 1.3.0)
19+
execjs (2.7.0)
20+
faraday (0.15.2)
21+
multipart-post (>= 1.2, < 3)
22+
ffi (1.9.25)
23+
forwardable-extended (2.6.0)
24+
gemoji (3.0.0)
25+
github-pages (170)
26+
activesupport (= 4.2.9)
27+
github-pages-health-check (= 1.3.5)
28+
jekyll (= 3.6.2)
29+
jekyll-avatar (= 0.5.0)
30+
jekyll-coffeescript (= 1.0.2)
31+
jekyll-default-layout (= 0.1.4)
32+
jekyll-feed (= 0.9.2)
33+
jekyll-gist (= 1.4.1)
34+
jekyll-github-metadata (= 2.9.3)
35+
jekyll-mentions (= 1.2.0)
36+
jekyll-optional-front-matter (= 0.3.0)
37+
jekyll-paginate (= 1.1.0)
38+
jekyll-readme-index (= 0.2.0)
39+
jekyll-redirect-from (= 0.12.1)
40+
jekyll-relative-links (= 0.5.2)
41+
jekyll-sass-converter (= 1.5.0)
42+
jekyll-seo-tag (= 2.3.0)
43+
jekyll-sitemap (= 1.1.1)
44+
jekyll-swiss (= 0.4.0)
45+
jekyll-theme-architect (= 0.1.0)
46+
jekyll-theme-cayman (= 0.1.0)
47+
jekyll-theme-dinky (= 0.1.0)
48+
jekyll-theme-hacker (= 0.1.0)
49+
jekyll-theme-leap-day (= 0.1.0)
50+
jekyll-theme-merlot (= 0.1.0)
51+
jekyll-theme-midnight (= 0.1.0)
52+
jekyll-theme-minimal (= 0.1.0)
53+
jekyll-theme-modernist (= 0.1.0)
54+
jekyll-theme-primer (= 0.5.2)
55+
jekyll-theme-slate (= 0.1.0)
56+
jekyll-theme-tactile (= 0.1.0)
57+
jekyll-theme-time-machine (= 0.1.0)
58+
jekyll-titles-from-headings (= 0.5.0)
59+
jemoji (= 0.8.1)
60+
kramdown (= 1.14.0)
61+
liquid (= 4.0.0)
62+
listen (= 3.0.6)
63+
mercenary (~> 0.3)
64+
minima (= 2.1.1)
65+
rouge (= 2.2.1)
66+
terminal-table (~> 1.4)
67+
github-pages-health-check (1.3.5)
68+
addressable (~> 2.3)
69+
net-dns (~> 0.8)
70+
octokit (~> 4.0)
71+
public_suffix (~> 2.0)
72+
typhoeus (~> 0.7)
73+
html-pipeline (2.8.0)
74+
activesupport (>= 2)
75+
nokogiri (>= 1.4)
76+
i18n (0.9.5)
77+
concurrent-ruby (~> 1.0)
78+
jekyll (3.6.2)
79+
addressable (~> 2.4)
80+
colorator (~> 1.0)
81+
jekyll-sass-converter (~> 1.0)
82+
jekyll-watch (~> 1.1)
83+
kramdown (~> 1.14)
84+
liquid (~> 4.0)
85+
mercenary (~> 0.3.3)
86+
pathutil (~> 0.9)
87+
rouge (>= 1.7, < 3)
88+
safe_yaml (~> 1.0)
89+
jekyll-avatar (0.5.0)
90+
jekyll (~> 3.0)
91+
jekyll-coffeescript (1.0.2)
92+
coffee-script (~> 2.2)
93+
coffee-script-source (~> 1.11.1)
94+
jekyll-default-layout (0.1.4)
95+
jekyll (~> 3.0)
96+
jekyll-feed (0.9.2)
97+
jekyll (~> 3.3)
98+
jekyll-gist (1.4.1)
99+
octokit (~> 4.2)
100+
jekyll-github-metadata (2.9.3)
101+
jekyll (~> 3.1)
102+
octokit (~> 4.0, != 4.4.0)
103+
jekyll-mentions (1.2.0)
104+
activesupport (~> 4.0)
105+
html-pipeline (~> 2.3)
106+
jekyll (~> 3.0)
107+
jekyll-optional-front-matter (0.3.0)
108+
jekyll (~> 3.0)
109+
jekyll-paginate (1.1.0)
110+
jekyll-readme-index (0.2.0)
111+
jekyll (~> 3.0)
112+
jekyll-redirect-from (0.12.1)
113+
jekyll (~> 3.3)
114+
jekyll-relative-links (0.5.2)
115+
jekyll (~> 3.3)
116+
jekyll-remote-theme (0.3.1)
117+
jekyll (~> 3.5)
118+
rubyzip (>= 1.2.1, < 3.0)
119+
jekyll-sass-converter (1.5.0)
120+
sass (~> 3.4)
121+
jekyll-seo-tag (2.3.0)
122+
jekyll (~> 3.3)
123+
jekyll-sitemap (1.1.1)
124+
jekyll (~> 3.3)
125+
jekyll-swiss (0.4.0)
126+
jekyll-theme-architect (0.1.0)
127+
jekyll (~> 3.5)
128+
jekyll-seo-tag (~> 2.0)
129+
jekyll-theme-cayman (0.1.0)
130+
jekyll (~> 3.5)
131+
jekyll-seo-tag (~> 2.0)
132+
jekyll-theme-dinky (0.1.0)
133+
jekyll (~> 3.5)
134+
jekyll-seo-tag (~> 2.0)
135+
jekyll-theme-hacker (0.1.0)
136+
jekyll (~> 3.5)
137+
jekyll-seo-tag (~> 2.0)
138+
jekyll-theme-leap-day (0.1.0)
139+
jekyll (~> 3.5)
140+
jekyll-seo-tag (~> 2.0)
141+
jekyll-theme-merlot (0.1.0)
142+
jekyll (~> 3.5)
143+
jekyll-seo-tag (~> 2.0)
144+
jekyll-theme-midnight (0.1.0)
145+
jekyll (~> 3.5)
146+
jekyll-seo-tag (~> 2.0)
147+
jekyll-theme-minimal (0.1.0)
148+
jekyll (~> 3.5)
149+
jekyll-seo-tag (~> 2.0)
150+
jekyll-theme-modernist (0.1.0)
151+
jekyll (~> 3.5)
152+
jekyll-seo-tag (~> 2.0)
153+
jekyll-theme-primer (0.5.2)
154+
jekyll (~> 3.5)
155+
jekyll-github-metadata (~> 2.9)
156+
jekyll-seo-tag (~> 2.2)
157+
jekyll-theme-slate (0.1.0)
158+
jekyll (~> 3.5)
159+
jekyll-seo-tag (~> 2.0)
160+
jekyll-theme-tactile (0.1.0)
161+
jekyll (~> 3.5)
162+
jekyll-seo-tag (~> 2.0)
163+
jekyll-theme-time-machine (0.1.0)
164+
jekyll (~> 3.5)
165+
jekyll-seo-tag (~> 2.0)
166+
jekyll-titles-from-headings (0.5.0)
167+
jekyll (~> 3.3)
168+
jekyll-watch (1.5.1)
169+
listen (~> 3.0)
170+
jemoji (0.8.1)
171+
activesupport (~> 4.0, >= 4.2.9)
172+
gemoji (~> 3.0)
173+
html-pipeline (~> 2.2)
174+
jekyll (>= 3.0)
175+
kramdown (1.14.0)
176+
liquid (4.0.0)
177+
listen (3.0.6)
178+
rb-fsevent (>= 0.9.3)
179+
rb-inotify (>= 0.9.7)
180+
mercenary (0.3.6)
181+
mini_portile2 (2.3.0)
182+
minima (2.1.1)
183+
jekyll (~> 3.3)
184+
minitest (5.11.3)
185+
multipart-post (2.0.0)
186+
net-dns (0.8.0)
187+
nokogiri (1.8.2)
188+
mini_portile2 (~> 2.3.0)
189+
octokit (4.9.0)
190+
sawyer (~> 0.8.0, >= 0.5.3)
191+
pathutil (0.16.1)
192+
forwardable-extended (~> 2.6)
193+
public_suffix (2.0.5)
194+
rb-fsevent (0.10.3)
195+
rb-inotify (0.9.10)
196+
ffi (>= 0.5.0, < 2)
197+
rouge (2.2.1)
198+
rubyzip (1.2.1)
199+
safe_yaml (1.0.4)
200+
sass (3.5.6)
201+
sass-listen (~> 4.0.0)
202+
sass-listen (4.0.0)
203+
rb-fsevent (~> 0.9, >= 0.9.4)
204+
rb-inotify (~> 0.9, >= 0.9.7)
205+
sawyer (0.8.1)
206+
addressable (>= 2.3.5, < 2.6)
207+
faraday (~> 0.8, < 1.0)
208+
terminal-table (1.8.0)
209+
unicode-display_width (~> 1.1, >= 1.1.1)
210+
thread_safe (0.3.6)
211+
typhoeus (0.8.0)
212+
ethon (>= 0.8.0)
213+
tzinfo (1.2.5)
214+
thread_safe (~> 0.1)
215+
unicode-display_width (1.4.0)
216+
217+
PLATFORMS
218+
ruby
219+
220+
DEPENDENCIES
221+
github-pages
222+
jekyll (= 3.6.2)
223+
jekyll-remote-theme
224+
jemoji
225+
tzinfo-data
226+
227+
RUBY VERSION
228+
ruby 2.3.3p222
229+
230+
BUNDLED WITH
231+
1.16.2

License.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Copyright (c) Microsoft Corporation.
2-
3-
All rights reserved.
2+
3+
All rights reserved.
44

55
Distributed under the following terms:
66

77
1. Documentation is licensed under the Creative Commons Attribution 3.0 United States License. Code is licensed under the MIT License.
8-
2. This license does not grant you rights to use any trademarks or logos of Microsoft. For Microsoft’s general trademark guidelines, go to http://go.microsoft.com/fwlink/?LinkID=254653
8+
2. This license does not grant you rights to use any trademarks or logos of Microsoft. For Microsoft’s general trademark guidelines, go to http://go.microsoft.com/fwlink/?LinkID=254653

_config.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Site settings
2+
title: Official page for Debug Adapter Protocol
3+
description: >
4+
Debug Adapter Protocol documentation and specification page.
5+
6+
baseurl: /debug-adapter-protocol # the subpath of your site, e.g. /blog/
7+
url: https://microsoft.github.io/debug-adapter-protocol/ # the base hostname & protocol for your site
8+
git_address: https://github.com/Microsoft/debug-adapter-protocol
9+
git_edit_address: https://github.com/Microsoft/debug-adapter-protocol/blob/gh-pages
10+
11+
# Build settings
12+
markdown: kramdown
13+
highlighter: rouge
14+
15+
plugins:
16+
- github-pages
17+
- jemoji
18+
19+
20+
exclude:
21+
- Gemfile
22+
- Gemfile.lock
23+
- .idea/
24+
- .gitignore
25+
- README.md
26+
- resources
27+
28+
timezone: Europe/Zurich
29+
30+
defaults:
31+
- scope:
32+
path: _posts
33+
type: posts
34+
values:
35+
layout: post
36+
sectionid: blog
37+
38+
- scope:
39+
path: _docs
40+
type: docs
41+
values:
42+
layout: docs
43+
sectionid: docs
44+
seo:
45+
type: "WebPage"
46+
47+
- scope:
48+
path: _implementors
49+
type: implementors
50+
values:
51+
layout: implementors
52+
sectionid: implementors
53+
54+
collections:
55+
docs:
56+
permalink: /:collection/:path/
57+
output: true
58+
posts:
59+
permalink: /blog/:year/:month/:day/:title/
60+
output: true
61+
implementors:
62+
permalink: /:collection/:path/
63+
output: true
64+

0 commit comments

Comments
 (0)