Skip to content

Commit 002c139

Browse files
committed
initial packet dump imported from wiki
1 parent ece89e2 commit 002c139

File tree

7 files changed

+2661
-3
lines changed

7 files changed

+2661
-3
lines changed

Diff for: .gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
_site/
2-
.sass-cache/
1+
_site
2+
.sass-cache
33
.jekyll-metadata

Diff for: 404.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Diff for: Gemfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
12+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
13+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
14+
gem "github-pages", group: :jekyll_plugins
15+
16+
# If you have any plugins, put them here!
17+
18+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
19+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Diff for: _config.yml

+38-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
1-
theme: jekyll-theme-minimal
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: AoS Protocol Documentation
17+
description: > # this means to ignore newlines until "baseurl:"
18+
This site documents the AoS protocol as well as the extensions
19+
that have and will been made to it. If you want to propose changes to the
20+
protocol, open an issue or file a PR against this repo
21+
baseurl: "" # the subpath of your site, e.g. /blog
22+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
23+
24+
# Build settings
25+
markdown: kramdown
26+
theme: jekyll-theme-minimal
27+
28+
# Exclude from processing.
29+
# The following items will not be processed, by default. Create a custom list
30+
# to override the default setting.
31+
# exclude:
32+
# - Gemfile
33+
# - Gemfile.lock
34+
# - node_modules
35+
# - vendor/bundle/
36+
# - vendor/cache/
37+
# - vendor/gems/
38+
# - vendor/ruby/

0 commit comments

Comments
 (0)