summaryrefslogtreecommitdiff
path: root/devel.html
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2012-12-03 20:35:22 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-12-03 20:35:22 +0100
commitf97082d162912524d417239b2b143fb52430cf7d (patch)
tree2f5a471582b36230daf210e1c3b4a545b39acb53 /devel.html
downloadgnutls-f97082d162912524d417239b2b143fb52430cf7d.tar.gz
added web
Diffstat (limited to 'devel.html')
-rw-r--r--devel.html211
1 files changed, 211 insertions, 0 deletions
diff --git a/devel.html b/devel.html
new file mode 100644
index 0000000000..4818a76eb4
--- /dev/null
+++ b/devel.html
@@ -0,0 +1,211 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8">
+<link rel="icon" type="image/png" href="graphics/gnutls-logo-icon.png">
+<meta name="DC.title" content="gnutls.org">
+<title>GnuTLS - GNU Project - Free Software Foundation</title>
+<!-- start of banner.html -->
+<!-- start of head-include-2.html -->
+<link rel="stylesheet" href="css/combo.css" media="screen">
+<link rel="stylesheet" href="css/layout.css" media="screen">
+<link rel="stylesheet" href="css/mini.css" media="handheld">
+<link rel="stylesheet" href="css/print.css" media="print">
+<!-- end of head-include-2.html -->
+<!-- flattr code
+<script type="text/javascript">
+/* <![CDATA[ */
+ (function() {
+ var s=document.createElement('script'), t=document.getElementsByTagName('script')[0];
+ s.type = 'text/javascript';
+ s.async = true;
+ s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
+ t.parentNode.insertBefore(s, t);
+ })();
+/* ]]> */
+</script>
+ end of flattr -->
+</head>
+<body>
+<!-- <body bgcolor="#ffffff" text="#000000" link="#1f00ff" alink="#ff0000" vlink="#9900dd"> -->
+<style type="text/css">
+table.transparent {
+ border-width: 0px;
+ border-spacing: 2px;
+ border-style: none;
+ border-color: white;
+ border-collapse: separate;
+ background-color: white;
+}
+table.transparent th {
+ border-width: 0px;
+ padding: 1px;
+ border-style: inset;
+ border-color: gray;
+ background-color: white;
+ -moz-border-radius: ;
+}
+table.transparent td {
+ border-width: 0px;
+ padding: 1px;
+ border-style: inset;
+ border-color: gray;
+ background-color: white;
+ -moz-border-radius: ;
+}
+table.news-transparent {
+ border-width: 3px;
+ border-spacing: 5px;
+ border-style: none;
+ border-color: #ccbcbc;
+ border-collapse: separate;
+ background-color: transparent;
+}
+table.news-transparent th {
+ border-width: 0px;
+ padding: 1px;
+ border-style: inset;
+ border-color: gray;
+ background-color: transparent;
+ -moz-border-radius: ;
+}
+table.news-transparent td {
+ border-width: 1px;
+ padding: 3px;
+ border-style: solid;
+ border-color: #e0d7d7;
+ background-color: transparent;
+ -moz-border-radius: ;
+}
+table.news {
+ border-width: 0px;
+ border-spacing: 2px;
+ border-style: none;
+ border-color: white;
+ border-collapse: separate;
+ background-color: #e5e5e5;
+}
+table.news th {
+ border-width: 0px;
+ padding: 1px;
+ border-style: inset;
+ border-color: gray;
+ background-color: #ccbcbc;
+ -moz-border-radius: ;
+}
+table.news td {
+ border-width: 0px;
+ padding: 1px;
+ border-style: inset;
+ border-color: gray;
+ background-color: #e0d7d7;
+ -moz-border-radius: ;
+}
+</style>
+<div id="null-wrapper">
+<!-- begin of body-include-2 -->
+ <div id="header">
+ <div class="inner" style="position: relative;">
+ <a href="gnutls-logo.html">
+ <img alt="Gnutls Logo" src="graphics/gnutls-logo.png" align="Left" border="0" width="94" height="86">
+ </a>
+<h1>The GnuTLS transport layer security library</h1>
+ </div>
+ </div>
+<div id="navigation">
+ <div class="inner">
+ <ul>
+ <li id="tab"><a href="index.html">Overview</a></li>
+ <li id="tab"><a href="news.html">News</a></li>
+<!-- <li id="tab"><a href="soc.html">Summer of code</a></li>
+ -->
+ <li id="tab"><a href="download.html">Download</a></li>
+ <li id="tab"><a href="lists.html">Mailing lists</a></li>
+ <li id="joinfsftab"><a href="devel.html">Development</a></li>
+ <li id="tab"><a href="documentation.html">Documentation</a></li>
+ <li id="tab"><a href="security.html">Security advisories</a></li>
+ <li id="tab"><a href="commercial.html">Commercial support</a></li>
+ <li id="tab"><a href="contrib.html">Authors</a></li>
+</ul>
+ </div><!-- /inner -->
+</div><!-- /navigation -->
+<div id="content" class="inner">
+<p>To report a bug please use the <a href="mailto:bug-gnutls@gnu.org">bug report address</a> or the <a href="lists.html">mailing lists<a>.
+</p>
+<p>To browse the source code a web interface exists at <a href="http://repo.or.cz/w/gnutls.git">repo.or.cz</a>.
+If you want to build the latest GnuTLS code from the repository, use the following commands:
+<table summary="">
+<tr><td><pre>
+$ git clone git://repo.or.cz/gnutls.git
+$ cd gnutls
+$ make bootstrap # Will run ./configure with developer defaults
+$ make
+$ make check
+</code></td></tr>
+</table>
+
+<p>You will need several developer tools,
+see <a href="http://repo.or.cz/w/gnutls.git/blob/HEAD:/README-alpha">
+README-alpha</a> for more information.
+</p>
+
+<p>Some additional resources:
+<ul>
+<li><a href="http://repo.or.cz/w/gnutls.git/blob/HEAD:/NEWS">most recent NEWS</a></li>
+<li><a href="http://hydra.nixos.org/jobset/gnu/gnutls-master">Continously Hydra builds</a></li>
+</ul>
+
+<!--
+<p>
+<script type="text/javascript"
+src="http://www.ohloh.net/p/5718/widgets/project_basic_stats.js"></script>
+</p>
+-->
+
+</div>
+
+<!-- <p id="backtotop"><a href="#header">back to top</a></p> -->
+
+</div>
+<!-- end server/footer-text.html -->
+
+
+<div id="footer">
+
+<table width="100%" class="transparent" summary="">
+<tr>
+<td>
+Please send broken links and other corrections or suggestions to
+<a href="mailto:bug-gnutls@gnu.org"><em>bug-gnutls@gnu.org</em></a>.
+</td>
+<!--
+<td>
+ <div align="center">
+ <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="http://www.gnutls.org"></a>
+ <noscript><a href="http://flattr.com/thing/291598/GnuTLS" target="_blank">
+ <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a></noscript>
+
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+ <input type="hidden" name="cmd" value="_xclick">
+ <input type="hidden" name="business" value="simon@josefsson.org">
+ <input type="hidden" name="item_name" value="Donation for development">
+ <input type="hidden" name="item_number" value="GnuTLS">
+ <input type="hidden" name="no_shipping" value="1">
+ <input type="hidden" name="cn" value="Comment">
+ <input type="hidden" name="currency_code" value="EUR">
+ <input type="hidden" name="tax" value="0">
+ <input type="hidden" name="bn" value="PP-DonationsBF">
+ <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" name="submit" alt="Paypal">
+ </form>
+ </div>
+
+</td>
+-->
+</tr>
+</table>
+
+</div>
+
+</body>
+</html>