Added original cx_Oracle landing page with the source code location changed.

This commit is contained in:
Anthony Tuininga 2017-03-07 16:30:13 -07:00
commit 8951200192

67
index.html Normal file
View File

@ -0,0 +1,67 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>cx_Oracle</title>
<style>
#container {border:2px solid #078311;
min-height:103%;
}
h1 {background-color:#078311;
color:white;
font-size:2.45em;
margin:0;
padding:.3em;
}
h2 {color:#078311;
margin-bottom:.5em;}
hr {color:#078311;}
#menu {background-color:#00C029;
padding:.5em;
margin-bottom:.5em;
}
#menu a{text-decoration:none;color:blue}
#menu a:hover{text-decoration:underline}
#menu a:visited{color:blue}
#content {margin: 1em;}
li {padding-top: 0.3em;}
</style>
</head>
<body>
<div id="container">
<div id="header"><h1>cx_Oracle</h1></div>
<div id="menu">
<a href="index.html">Home</a> ·
<a href="http://cx-oracle.readthedocs.io/en/latest/index.html">Documentation</a> ·
<a href="https://github.com/oracle/python-cx_Oracle">Source code</a> ·
<a href="http://lists.sourceforge.net/lists/listinfo/cx-oracle-users">Mailing list</a>
</div>
<div id="content">
<div id="description"><h2>About cx_Oracle</h2>
<!--Description-->
<strong>cx_Oracle</strong> is a Python extension module that enables access to
Oracle databases and conforms to the Python database API specification.
This module is currently built against Oracle 11.2 and 12.1 and Python 2.7,
3.4, 3.5 and 3.6. For more information on the database API specification, see
<a href="http://www.python.org/topics/database/DatabaseAPI-2.0.html"> here</a>.
</div>
<div id="downloads">
<h2>Download/Install</h2>
<a href="http://sourceforge.net" style="float:right;"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=84168&amp;type=2" width="125" height="37" border="0" alt="SourceForge.net Logo" /></a>
<p>Version 5.2.1, released January 18, 2016</p>
<p>Install by issuing the command <pre>pip install cx_Oracle</pre> (on platforms other than Windows) or download directly from <a href="https://pypi.python.org/pypi/cx_Oracle/5.2.1">PyPI</a>.</p>
<p>Older versions can be found in <a href="https://sourceforge.net/projects/cx-oracle/files/">the files section at Sourceforge.</a></p>
</div> <!-- /downloads -->
</div> <!-- /content -->
</div> <!-- /container -->
</body>
</html>