updated docs. git-svn-id: http://llvm-py.googlecode.com/svn/trunk@27 8d1e9007-1d4e-0410-b67e-1979fd6579aa
101 lines
3.6 KiB
Text
101 lines
3.6 KiB
Text
#
|
|
# AsciiDoc website.
|
|
# Three division table based layout (layout1).
|
|
#
|
|
# +-----------------------------------------------------+
|
|
# | #layout-banner |
|
|
# +--------------+--------------------------------------+
|
|
# | | |
|
|
# | | |
|
|
# | #layout-menu | #layout-content |
|
|
# | | |
|
|
# | | |
|
|
# | | |
|
|
# +--------------+--------------------------------------+
|
|
#
|
|
# - The #layout-menu and #layout-content divisions are contained in a
|
|
# two cell table.
|
|
# I would be nice to use pure CSS for the layout but the table is better for
|
|
# this layout because:
|
|
#
|
|
# * The column widths automatically size to fit column width (specifically
|
|
# the #layout-menu)
|
|
# * The column heights automatically size to the tallest.
|
|
#
|
|
# - The #layout-content division is a container for AsciiDoc page documents.
|
|
# - Documents rendered in the #layout-content use the standard AsciiDoc
|
|
# xhtml11 backend stylesheets.
|
|
|
|
[specialwords]
|
|
emphasizedwords=(?u)\\?\bAsciiDoc\b
|
|
monospacedwords=(?u)\\?\basciidoc\(1\) (?u)\\?\ba2x\(1\)
|
|
|
|
[header]
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset={encoding}" />
|
|
<meta name="generator" content="AsciiDoc {asciidoc-version}" />
|
|
<meta name="description" content="Python bindings for LLVM" />
|
|
<meta name="keywords" content="llvm python compiler backend bindings" />
|
|
<link rel="stylesheet" href="style/{theme={backend}}.css" type="text/css" />
|
|
<link rel="stylesheet" href="style/{theme={backend}}-quirks.css" type="text/css" />
|
|
<link rel="stylesheet" href="style/layout.css" type="text/css" />
|
|
ifdef::toc[]
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
window.onload = function()\{generateToc({toclevels=2})\}
|
|
/*]]>*/
|
|
</script>
|
|
<script type="text/javascript" src="js/toc.js"></script>
|
|
endif::toc[]
|
|
<title>{doctitle} - llvm-py</title>
|
|
</head>
|
|
<body>
|
|
<div id="layout-banner">
|
|
<div id="layout-title">llvm-py</div>
|
|
<div id="layout-description">Python Bindings for LLVM</div>
|
|
</div>
|
|
<table>
|
|
<tr valign="top">
|
|
<td id="layout-menu">
|
|
<div>»<a href="index.html">Home</a></div>
|
|
<div>»<a href="examples.html">Examples</a></div>
|
|
<div>»<a href="download.html">Download</a></div>
|
|
<div>»<a href="userguide.html">User Guide</a></div>
|
|
<div>»<a href="contribute.html">Contribute</a></div>
|
|
<div>»<a href="license.html">License</a></div>
|
|
<div>»<a href="about.html">About</a></div>
|
|
</td>
|
|
<td>
|
|
ifdef::toc[]
|
|
<div id="toc" style="float: right; display: none">
|
|
<div id="toctitle">Table of Contents</div>
|
|
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
|
|
</div>
|
|
endif::toc[]
|
|
<div id="layout-content">
|
|
<div id="header">
|
|
<h1>{doctitle}</h1>
|
|
</div>
|
|
|
|
[footer]
|
|
<div id="footer">
|
|
<div id="footer-text">
|
|
Web pages © Mahadevan R. Generated with <a href="http://www.methods.co.nz/asciidoc/">asciidoc</a>.
|
|
Last updated {localdate}.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script type="text/javascript">
|
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
|
var pageTracker = _gat._getTracker("UA-4519056-2");
|
|
pageTracker._initData();
|
|
pageTracker._trackPageview();
|
|
</script>
|
|
</body>
|
|
</html>
|