Skip to content

Commit d3b12a3

Browse files
committed
Adding process.html
1 parent ebf7efe commit d3b12a3

File tree

3 files changed

+176
-69
lines changed

3 files changed

+176
-69
lines changed

index.html

Lines changed: 101 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -7,78 +7,112 @@
77
<link href="static/cpp-netlib.css" rel="stylesheet">
88
</head>
99
<body data-spy="scroll" data-target=".cpp-netlib-docs-sidebar">
10-
<header class="jumbotron subhead">
11-
<div class="container">
12-
<h1>The C++ Network Library Project</h1>
13-
<p class="lead">A collection of open-source libraries for high level network programming.</p>
14-
</div>
15-
</header>
16-
<div class="container">
17-
<div class="row">
18-
<div class="span2 cpp-netlib-docs-sidebar">
19-
<ul class="nav nav-list" data-spy="affix" data-offset-top="150">
20-
<li><a href="#overview">Overview</a></li>
21-
<li><a href="#download">Download</a></li>
22-
<li><a href="#documentation">Documentation</a></li>
23-
<li><a href="#support">Support</a></li>
24-
<li><a href="#policies">Project Policies</a></li>
25-
</ul>
10+
<div id="wrap">
11+
<header class="jumbotron subhead">
12+
<div class="container">
13+
<h1>The C++ Network Library Project</h1>
14+
<p class="lead">A collection of open-source libraries for high level network programming.</p>
2615
</div>
27-
<div class="span9">
28-
<section id="overview">
29-
<div class="page-header">
30-
<h1>Overview</h1>
31-
</div>
32-
<p>The project aims to build upon the latest C++ standard (currently C++11) to provide easy to use libraries for network programming. We use the latest compiler versions and features with an eye on pushing the boundaries on leveraging what's available in C++.</p>
33-
<p>Currently the library contains an HTTP client and server implementation, a stand-alone URI library, a network message framework, and some concurrency tools.</p>
34-
<p>The project welcomes contributions from people interested in joining the effort. See the section on <a href="#policies">Project Policies</a> for more information on getting involved.</p>
35-
</section>
36-
<section id="download">
37-
<div class="page-header">
38-
<h1>Download</h1>
39-
</div>
40-
<p>You can download latest and previous releases of the library from our Github download page. <a href="https://github.com/cpp-netlib/cpp-netlib/downloads" class="btn btn-primary">Download</a></p>
41-
</section>
42-
<section id="documentation">
43-
<div class="page-header">
44-
<h1>Documentation</h1>
45-
</div>
46-
<p>We make the documentation for supported releases of the library available through the following links.</p>
47-
<ul>
48-
<li><a href="0.9.4/index.html">0.9.4</a> &mdash; current stable release.</li>
49-
<li><a href="0.8/index.html">0.8</a> &mdash; previous stable (unsupported) release.</li>
50-
</ul>
51-
</section>
52-
<section id="support">
53-
<div class="page-header">
54-
<h1>Support</h1>
55-
</div>
56-
<p>We offer two avenues of support for user issues, depending on what kind of issues you're encountering.</p>
57-
<h2>Reporting Bugs</h2>
58-
<p>If you're using the library and would like to report issues with the library, please file your bug reports and support requests in the official issue tracker.</p>
59-
<p><a href="https://github.com/cpp-netlib/cpp-netlib/issues" class="btn btn-danger">File Bugs</a></p>
60-
<h2>Developer Support</h2>
61-
<p>If you're interested in contributing to the development or if you have questions directly involving the implementation or for general discussion of the project, you can subscribe to and discuss with us through the developers mailing list.</p>
62-
<p><a href="https://groups.google.com/forum/?fromgroups#!forum/cpp-netlib" class="btn btn-success">Discussion Group</a></p>
63-
</section>
64-
<section id="policies">
65-
<div class="page-header">
66-
<h1>Project Policies</h1>
67-
</div>
68-
<p>The project welcomes contributors and starting with 2013, we've resolved to document as much of the policies we follow in the project as we can. Please follow the links below for more information.</p>
69-
<ul>
70-
<li><a href="process.html">Development Process</a></li>
71-
<li><a href="style-guide.html">Style Guide</a></li>
72-
<li><a href="proposals.html">Proposing New Libraries</a></li>
16+
</header>
17+
<div class="container">
18+
<div class="row">
19+
<div class="span2 cpp-netlib-docs-sidebar">
20+
<ul class="nav nav-list" data-spy="affix" data-offset-top="150">
21+
<li><a href="#overview">Overview</a></li>
22+
<li><a href="#download">Download</a></li>
23+
<li><a href="#documentation">Documentation</a></li>
24+
<li><a href="#support">Support</a></li>
25+
<li><a href="#policies">Project Policies</a></li>
7326
</ul>
74-
</section>
27+
</div>
28+
<div class="span9">
29+
<section id="overview">
30+
<div class="page-header">
31+
<h1>Overview</h1>
32+
</div>
33+
<p>The project aims to build upon the latest C++ standard
34+
(currently C++11) to provide easy to use libraries for network
35+
programming. We use the latest compiler versions and features
36+
with an eye on pushing the boundaries on leveraging what's
37+
available in C++.</p>
38+
<p>Currently the library contains an HTTP client and server
39+
implementation, a stand-alone URI library, a network message
40+
framework, and some concurrency tools.</p>
41+
<p>The project welcomes contributions from people interested in
42+
joining the effort. See the section on <a
43+
href="#policies">Project Policies</a> for more information on
44+
getting involved.</p>
45+
</section>
46+
<section id="download">
47+
<div class="page-header">
48+
<h1>Download</h1>
49+
</div>
50+
<p>You can download latest and previous releases of the library
51+
from our Github download page.</p>
52+
<p><a
53+
href="https://github.com/cpp-netlib/cpp-netlib/downloads"
54+
class="btn btn-primary">Download</a></p>
55+
</section>
56+
<section id="documentation">
57+
<div class="page-header">
58+
<h1>Documentation</h1>
59+
</div>
60+
<p>We make the documentation for supported releases of the
61+
library available through the following links.</p>
62+
<ul>
63+
<li><a href="0.9.4/index.html">0.9.4</a> &mdash; current stable release.</li>
64+
<li><a href="0.8/index.html">0.8</a> &mdash; previous unsupported release.</li>
65+
</ul>
66+
</section>
67+
<section id="support">
68+
<div class="page-header">
69+
<h1>Support</h1>
70+
</div>
71+
<p>We offer two avenues of support for user issues, depending on
72+
what kind of issues you're encountering.</p>
73+
<h2>Reporting Bugs</h2>
74+
<p>If you're using the library and would like to report issues
75+
with the library, please file your bug reports and support
76+
requests in the official issue tracker.</p>
77+
<p><a href="https://github.com/cpp-netlib/cpp-netlib/issues"
78+
class="btn btn-danger">File Bugs</a></p>
79+
<h2>Developer Support</h2>
80+
<p>If you're interested in contributing to the development or if
81+
you have questions directly involving the implementation or for
82+
general discussion of the project, you can subscribe to and
83+
discuss with us through the developers mailing list.</p>
84+
<p><a
85+
href="https://groups.google.com/forum/?fromgroups#!forum/cpp-netlib"
86+
class="btn btn-success">Discussion Group</a></p>
87+
</section>
88+
<section id="policies">
89+
<div class="page-header">
90+
<h1>Project Policies</h1>
91+
</div>
92+
<p>The project welcomes contributors and starting with 2013,
93+
we've resolved to document as much of the policies we follow in
94+
the project as we can. Please follow the links below for more
95+
information.</p>
96+
<ul>
97+
<li><a href="process.html">Development Process</a></li>
98+
<li><a href="style-guide.html">Style Guide</a></li>
99+
<li><a href="proposals.html">Proposing New Libraries</a></li>
100+
</ul>
101+
</section>
102+
</div>
75103
</div>
76104
</div>
77105
</div>
78-
<footer class="footer">
79-
<p class="muted credit">Copyright 2012 Dean Michael Berris; Glyn Matthews; Google, Inc.</p>
80-
<p class="muted">Distributed under the Boost Software License, Version 1.0. (See accompanying file <a href="LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>)</p>
81-
</footer>
106+
<div id="footer">
107+
<div class="container">
108+
<p class="muted credit">Copyright 2012 Dean Michael Berris; Glyn
109+
Matthews; Google, Inc.</p>
110+
<p class="muted credit">Distributed under the Boost Software License,
111+
Version 1.0. (See accompanying file <a
112+
href="LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a
113+
href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>)</p>
114+
</div>
115+
</div>
82116
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
83117
<script src="bootstrap/js/bootstrap.min.js"></script>
84118
</body>

process.html

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>cpp-netlib: Development Process</title>
5+
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
6+
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
7+
<link href="static/cpp-netlib.css" rel="stylesheet">
8+
</head>
9+
<body data-spy="scroll" data-target=".cpp-netlib-docs-sidebar">
10+
<div id="wrap">
11+
<header class="jumbotron subhead">
12+
<div class="container">
13+
<h1>Development Process</h1>
14+
<p class="lead">How we get things done.</p>
15+
</div>
16+
</header>
17+
<div class="container">
18+
<div class="row">
19+
<div class="span2 cpp-netlib-docs-sidebar">
20+
<ul class="nav nav-list" data-spy="affix" data-offset-top="150">
21+
<li><a href="#overview">Overview</a></li>
22+
<li><a href="#introduction">Introduction</a></li>
23+
</ul>
24+
</div>
25+
<div class="span9">
26+
<section id="overview">
27+
<div class="page-header">
28+
<h1>Overview</h1>
29+
</div>
30+
<p>In this page we document the process by which the developers of
31+
the project collaborate and get things done. If you're interested
32+
in contributing or getting involved please consider the guidelines
33+
and tips that are outlined in this page. Please check-in often as
34+
we flesh out this document further.</p>
35+
</section>
36+
<section id="introduction">
37+
<div class="page-header">
38+
<h1>Introduction</h1>
39+
</div>
40+
<p>The first thing contributors and developers have to do is
41+
introduce themselves to the community. We'd like to have all
42+
contributors involved in the decision making process with regards
43+
to the development of both the community and the library. We value
44+
individuals and their personal styles, so the more everyone knows
45+
about everyone the better we can work together to achieve the same
46+
goal.</p>
47+
<p>If you haven't yet, please subscribe to the developers mailing
48+
list and introduce yourself before proceeding.</p>
49+
<p><a href="https://groups.google.com/forum/?fromgroups#!forum/cpp-netlib" class="btn btn-success" target="_blank">Subcribe</a></p>
50+
</div>
51+
</section>
52+
</div>
53+
</div>
54+
</div>
55+
</div>
56+
<footer id="footer">
57+
<div class="container">
58+
<p class="muted credit">Copyright 2012 Dean Michael Berris; Glyn
59+
Matthews; Google, Inc.</p>
60+
<p class="muted credit">Distributed under the Boost Software License,
61+
Version 1.0. (See accompanying file <a
62+
href="LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a
63+
href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>)</p>
64+
</div>
65+
</footer>
66+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
67+
<script src="bootstrap/js/bootstrap.min.js"></script>
68+
</body>
69+
</html>

static/cpp-netlib.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@
33
.jumbotron .container { position: relative; z-index: 2; }
44
.subhead { text-align: left; 1px solid #FFA800; }
55
.subhead h1 { font-size: 60px; padding-bottom: 10px; }
6-
.subhead p { margin-bottom: 20px; }
7-
.footer { background: lightgrey; padding-top: 40px; margin-top: 30px; text-align: center; }
6+
.subhead p { margin-bottom: 20px; padding-left: 3px; }
7+
html, body { height: 100%; }
8+
#wrap { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto; }
9+
#push, #footer { height: 80px;}
10+
#footer { background-color: #f5f5f5; }
11+
.credit { text-align: center; }

0 commit comments

Comments
 (0)