[Lldb-commits] [lldb] r186699 - Add links to LLDB API reference docs

Daniel Malea daniel.malea at intel.com
Fri Jul 19 10:33:02 PDT 2013


Author: dmalea
Date: Fri Jul 19 12:33:02 2013
New Revision: 186699

URL: http://llvm.org/viewvc/llvm-project?rev=186699&view=rev
Log:
Add links to LLDB API reference docs

Modified:
    lldb/trunk/www/docs.html
    lldb/trunk/www/sidebar.incl
    lldb/trunk/www/varformats.html

Modified: lldb/trunk/www/docs.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/docs.html?rev=186699&r1=186698&r2=186699&view=diff
==============================================================================
--- lldb/trunk/www/docs.html (original)
+++ lldb/trunk/www/docs.html Fri Jul 19 12:33:02 2013
@@ -22,7 +22,8 @@
 				<div class="postcontent">
 				   <p>LLDB is partially documented with header documentation that can be
 				       parsed and viewed with <a href="http://www.stack.nl/~dimitri/doxygen/">doxygen.</a></p>
-				   <p>This page will soon be filled with doxygen links for easy online viewing.</p>
+				   <p>The C++ reference documentation is available <a href="cpp_reference/html/index.html">here.</a></p>
+				   <p>The Python reference documentation is available <a href="python_reference/index.html">here.</a></p>
 				</div>
 				<div class="postfooter"></div>
 			</div>
@@ -30,4 +31,4 @@
 	</div>
 </div>
 </body>
-</html>
\ No newline at end of file
+</html>

Modified: lldb/trunk/www/sidebar.incl
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/sidebar.incl?rev=186699&r1=186698&r2=186699&view=diff
==============================================================================
--- lldb/trunk/www/sidebar.incl (original)
+++ lldb/trunk/www/sidebar.incl Fri Jul 19 12:33:02 2013
@@ -41,6 +41,7 @@
     <h1 class="headerbar">Resources</h1>
     <ul>
       <li><a href="download.html">Download</a></li>
+      <li><a href="docs.html">API Documentation</a></li>
       <li><a href="source.html">Source</a></li>
       <li><a href="build.html">Build</a></li>
       <li><a href="http://llvm.org/bugs">Bug Reports</a></li>

Modified: lldb/trunk/www/varformats.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/varformats.html?rev=186699&r1=186698&r2=186699&view=diff
==============================================================================
--- lldb/trunk/www/varformats.html (original)
+++ lldb/trunk/www/varformats.html Fri Jul 19 12:33:02 2013
@@ -834,7 +834,7 @@ def function (valobj,internal_dict):<br/
             <p>In order to write effective summary scripts, you need to know the LLDB public
             API, which is the way Python code can access the LLDB object model. For further
             details on the API you should look at <a href="scripting.html">this page</a>, or at
-            the LLDB <a href="docs.html">doxygen documentation</a> when it becomes available.</p>
+            the LLDB <a href="docs.html">API reference documentation</a>.</p>
             
             <p>As a brief introduction, your script is encapsulated into a function that is
             passed two parameters: <code>valobj</code> and <code>internal_dict</code>.</p>





More information about the lldb-commits mailing list