Skip to content

Commit d2e35a4

Browse files
committed
submit hugo-generated docs/ directory
The new self-hosted serving infrastructure only supports static files; it cannot run hugo (yet). So we commit the static files to git for now.
1 parent edf5eaf commit d2e35a4

17 files changed

+5553
-0
lines changed

docs/contact/index.html

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>RobustIRC contact</title>
8+
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
9+
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.1/css/fontawesome.css">
10+
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.1/css/brands.css">
11+
<link href="jumbotron-narrow.css" rel="stylesheet">
12+
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
13+
<style type="text/css">
14+
body {
15+
font-family: "Open Sans";
16+
}
17+
18+
.docs {
19+
margin-bottom: 2em;
20+
}
21+
22+
.docs li {
23+
margin-top: 2em;
24+
}
25+
26+
.contact li {
27+
margin-top: 1em;
28+
}
29+
30+
.releases .links a {
31+
margin-right: 1em;
32+
}
33+
</style>
34+
</head>
35+
<body>
36+
<div class="container">
37+
<div class="header">
38+
<nav>
39+
<ul class="nav nav-pills pull-right">
40+
41+
42+
<li role="presentation" ><a href="/assets/css/style.css"></a></li>
43+
44+
<li role="presentation" ><a href="/">Home</a></li>
45+
46+
<li role="presentation"><a href="/docs/">Docs</a></li>
47+
48+
<li role="presentation" ><a href="/releases/">Releases</a></li>
49+
50+
<li role="presentation" ><a href="/contact/">Contact</a></li>
51+
</ul>
52+
</nav>
53+
<h3 class="text-muted">RobustIRC</h3>
54+
</div>
55+
56+
57+
<div class="row">
58+
<div class="col-lg-12 contact">
59+
<h2>Contact</h2>
60+
61+
<div style="margin-top: 2em; margin-bottom: 2em">
62+
<p>
63+
We hang out in <code>#robustirc</code> on RobustIRC (<a href="/">instructions for connecting to RobustIRC</a>).
64+
</p>
65+
66+
<p>
67+
In addition, there are also two email mailing lists:
68+
<ol>
69+
<li>
70+
<a
71+
href="https://groups.google.com/forum/#!forum/robustirc-announce">robustirc-announce</a>,
72+
where announcements about the project in general and about new releases in
73+
particular will be posted. Expected traffic is on average 1 email per week
74+
tops.<br>
75+
If you are running a RobustIRC network, you should be subscribed to this list.
76+
</li>
77+
<li>
78+
<a
79+
href="https://groups.google.com/forum/#!forum/robustirc-discuss">robustirc-discuss</a>,
80+
where anyone can start discussions about RobustIRC.
81+
</li>
82+
</ol>
83+
</div>
84+
85+
</div>
86+
</div>
87+
88+
89+
90+
91+
<footer class="footer" style="text-align: center">
92+
<p>&copy; 2014 <a href="https://github.com/robustirc/bridge/blob/master/AUTHORS">The RobustIRC Authors</a></p>
93+
</footer>
94+
95+
</div>
96+
97+
98+
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.3.min.js"></script>
99+
<script type="text/javascript" src="jquery.ba-hashchange.min.js"></script>
100+
<script type="text/javascript">
101+
$(document).ready(function() {
102+
var network = $('#network')[0];
103+
var currentNetwork = network.value;
104+
var client = $('#client')[0];
105+
var currentClient = client.value;
106+
107+
var updateHash = function() {
108+
var args = [];
109+
if (currentNetwork != 'robustirc.net') {
110+
args.push(currentNetwork);
111+
}
112+
if (currentClient != 'irssi') {
113+
args.push(currentClient);
114+
}
115+
location.hash = '#' + args.join(',');
116+
};
117+
118+
var onNetworkChanged = function() {
119+
if (currentNetwork == network.value) {
120+
return;
121+
}
122+
123+
currentNetwork = network.value;
124+
if (currentNetwork.trim() === '') {
125+
currentNetwork = network.placeholder;
126+
}
127+
$('.network').text(currentNetwork);
128+
$('.networkname').text(currentNetwork.replace(/\..*/, ''));
129+
updateHash();
130+
};
131+
$(network).on('change keypress paste input', onNetworkChanged);
132+
133+
var onClientChange = function() {
134+
if (currentClient == client.value) {
135+
return;
136+
}
137+
138+
currentClient = client.value;
139+
$('.client').text(currentClient);
140+
$('#clientinstructions pre').hide();
141+
$('#clientinstructions .instructions-'+currentClient).show();
142+
updateHash();
143+
};
144+
$(client).on('change keypress paste input', onClientChange);
145+
146+
$(window).hashchange(function() {
147+
$.each(location.hash.replace(/^#/, '').split(","), function(idx, arg) {
148+
149+
var clientChanged = false;
150+
$('#client option').each(function(idx, el) {
151+
if (el.value == arg) {
152+
$(el).attr('selected', 'selected');
153+
clientChanged = true;
154+
return false;
155+
}
156+
});
157+
if (clientChanged) {
158+
onClientChange();
159+
return;
160+
}
161+
162+
163+
if (arg.trim() !== "") {
164+
network.value = arg;
165+
onNetworkChanged();
166+
}
167+
});
168+
});
169+
$(window).hashchange();
170+
});
171+
</script>
172+
</body>
173+
</html>
174+
175+

docs/docs/Guardfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See http://asciidoctor.org/docs/editing-asciidoc-with-live-preview/ for how
2+
# to use this file.
3+
4+
require 'asciidoctor'
5+
require 'erb'
6+
7+
guard 'shell' do
8+
watch(/^.*\.asciidoc$/) {|m|
9+
Asciidoctor.convert_file(m[0], :in_place => true, :safe => 'unsafe')
10+
}
11+
end
12+
13+
guard 'livereload' do
14+
watch(%r{^.+\.(css|js|html)$})
15+
end

0 commit comments

Comments
 (0)