Skip to content

Update the website. #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jan 20, 2013
Prev Previous commit
Next Next commit
Initial attempt at website re-do.
  • Loading branch information
deanberris committed Jan 20, 2013
commit fc33b0d3f5973af905b606c106518164e43407e4
96 changes: 78 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,82 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="refresh" content="0; URL=latest/index.html" />
<title>cpp-netlib: The C++ Network Library</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
</head>

<body>
Automatic redirection failed, please go to <a href "latest/index.html">index.html</a>.

<div class="copyright-footer">
<p>Copyright 2012 Glyn Matthews</p>

<p>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>
</div>
<body data-spy="scroll" data-target=".cpp-netlib-docs-sidebar">
<header class="jumbotron subhead">
<div class="container">
<h1>The C++ Network Library Project</h1>
<p class="lead">A collection of open-source libraries for high level network programming.</p>
</div>
</header>
<div class="container">
<div class="row">
<div class="span3 cpp-netlib-docs-sidebar">
<ul class="nav nav-list affix-top">
<li><a href="#overview"><i class="icon-chevron-right"></i>Overview</a></li>
<li><a href="#download"><i class="icon-chevron-right"></i>Download</a></li>
<li><a href="#documentation"><i class="icon-chevron-right"></i>Documentation</a></li>
<li><a href="#support"><i class="icon-chevron-right"></i>Support</a></li>
<li><a href="#policies"><i class="icon-chevron-right"></i>Project Policies</a></li>
</ul>
</div>
<div class="span9">
<section id="overview">
<div class="page-header">
<h1>Overview</h1>
</div>
<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>
<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>
<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>
</section>
<section id="download">
<div class="page-header">
<h1>Download</h1>
</div>
<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>
</section>
<section id="documentation">
<div class="page-header">
<h1>Documentation</h1>
</div>
<p>We make the documentation for supported releases of the library available through the following links.</p>
<ul>
<li><a href="0.9.4/index.html">0.9.4</a> &mdash; current stable release.</li>
<li><a href="0.8/index.html">0.8</a> &mdash; previous stable (unsupported) release.</li>
</ul>
</section>
<section id="support">
<div class="page-header">
<h1>Support</h1>
</div>
<p>We offer two avenues of support for user issues, depending on what kind of issues you're encountering.</p>
<h2>Reporting Bugs</h2>
<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>
<p><a href="https://github.com/cpp-netlib/cpp-netlib/issues" class="btn btn-danger">File Bugs</a></p>
<h2>Developer Support</h2>
<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>
<p><a href="https://groups.google.com/forum/?fromgroups#!forum/cpp-netlib" class="btn btn-success">Discussion Group</a></p>
</section>
<section id="policies">
<div class="page-header">
<h1>Project Policies</h1>
</div>
<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>
<ul>
<li><a href="process.html">Development Process</a></li>
<li><a href="style-guide.html">Style Guide</a></li>
<li><a href="proposals.html">Proposing New Libraries</a></li>
</ul>
</section>
</div>
</div>
<footer class="footer">
<p><small>Copyright 2012 Dean Michael Berris; Glyn Matthews; Google, Inc. -- 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></small></p>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>