]> granicus.if.org Git - clang/commitdiff
don't duplicate goals on the features page.
authorChris Lattner <sabre@nondot.org>
Mon, 10 Dec 2007 05:20:47 +0000 (05:20 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 10 Dec 2007 05:20:47 +0000 (05:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44779 91177308-0d34-0410-b5e6-96231b3b80d8

www/content.css
www/features.html
www/index.html

index e7d44a606689ed988b73fe4ba1217b1b960a1e6c..23244358d2d13dad28751e6341f7e5c48930b55a 100644 (file)
@@ -10,13 +10,6 @@ table,tr,td {
        padding:.4ex;\r
 }\r
 \r
-.li_desc, .li_weak_desc { /* layout + formatting */\r
-       margin: 0 3ex;\r
-       font-size:.9em;\r
-}\r
-.li_weak_desc { /* color */\r
-       color:rgb(100,100,100);\r
-}\r
 .weak_txt {\r
        font-size:.9em;\r
        color:rgb(100,100,100);\r
index bcd758951ebd56d9b4338f1b8b4e22b850564d76..316ec9fcf575b700ecc2d4de6314ffc53905e727 100644 (file)
@@ -1,52 +1,29 @@
-<!-- Consulted: http://www.w3.org/TR/CSS1 & http://www.w3.org/TR/CSS21/ -->
-<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+          "http://www.w3.org/TR/html4/strict.dtd">
 <html>
 <head>
-       <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-       <title>Clang - Features</title>
-       <link type="text/css" rel="stylesheet" href="menu.css" />
-       <link type="text/css" rel="stylesheet" href="content.css" />
-       <style type="text/css">
+  <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+  <title>Clang - Features</title>
+  <link type="text/css" rel="stylesheet" href="menu.css" />
+  <link type="text/css" rel="stylesheet" href="content.css" />
+  <style type="text/css">
 </style>
 </head>
 <body>
+
 <!--#include virtual="menu.html.incl"-->
+
 <div id="content">
-       <h1>Features of Clang</h1>
-<p>
-This page outlines the main goals of Clang, as well as some compelling reasons why you should consider using Clang. In the <a href="#goals">Goals</a> section below, you will find a brief, bulleted overview of the goals and features that we are striving for in the development of Clang.  However, in the <a href="#keyfeatures">Key Features</a> section you will find a more detailed presentation on what we believe are some key drawing points for the Clang front-end.</p>
 
-<p><em>If you are new to the Clang front-end and you want a reason for considering working on or using the new front-end, then make sure you check out the <a href="#keyfeatures">Key Features</a> section.</em></p>
+  <h1>Features of Clang</h1>
+  <p>
+  This page outlines the main goals of Clang, as well as some compelling reasons
+  why you should consider using Clang. In the Goals section below, you will find
+  a brief, bulleted overview of the goals and features that we are striving for
+  in the development of Clang.  However, in the <a href="#keyfeatures">Key
+  Features</a> section you will find a more detailed presentation on what we
+  believe are some key drawing points for the Clang front-end.</p>
 
-<h1><a name="goals">Goals</a></h1>
-       <ul>
-               <li>Real-world, production quality compiler</li>
-               <li>Unified parser for C-based languages</li>
-                 <div class="li_desc">We are only focusing on the C family of languages (C, C++, ObjC); however, if someone wants to work on another language, they are free to take charge of such a project.</div>
-               <li>Language conformance with C, ObjC, C++, including dialects (C99, C90, ObjC2, etc)</li>
-               <li>GCC compatibility (GCC extensions and 'quirks', where it makes sense)</li>
-               <li>Library based architecture with finely crafted C++ APIs</li>
-                       <div class="li_desc">Makes Clang easier to work with and more flexible.</div>
-                       <div class="li_weak_desc">(more details on this in the "Key Features" section)</div>
-               <li>Easy to extend</li>
-                       <div class="li_weak_desc">(because of the library based architecture)</div>
-               <li>Multipurpose</li>
-                       <div class="li_desc">Can be used for:
-                       Indexing, static analysis, code generation,
-                       source to source tools, refactoring</div>
-                       <div class="li_weak_desc">(because of library based architecture)</div>
-               <li>High performance</li>
-                       <div class="li_desc">Extremely fast (much faster than GCC), low memory footprint, use lazy evaluation and multithreading</div>
-                       <div class="li_weak_desc">(more details in the "Key Features" section)</div>
-               <li>Better integration with IDEs</li>
-                       <div class="li_weak_desc">(more details in the "Key Features" section)</div>
-               <li><a href="#expressivediags">Expressive diagnostics</a></li>
-                       <div class="li_desc">Error reporting and diagnostic messages are more detailed an accurate than GCC.</div>
-                       <div class="li_weak_desc">(more details in the "Key Features" section)</div>
-               <li>BSD License</li>
-                       <div class="li_desc">Fewer restrictions on developers; allows for use in commercial products.</div>
-       </ul>
 <h1><a name="keyfeatures">Key Features</a></h1>
 
 There are several key features which we believe make Clang an exciting front-end.  These features are designed to make things easier for both the compiler developer (people working on Clang and derivative products) and the application developer (those who use Clang/LLVM).
index ee212f61a13feaae1672103238eaa31e99722a00..417e89ba6c9c81a0212f0953de456c339a4c4fa6 100644 (file)
         disabled.</li>\r
     <li><a href="features.html#performance">High performance and low memory\r
          use</a>.</li>\r
-    <li>Build a library-based architecture with finely crafted APIs, allowing\r
-        the code to be reused in many ways.</li>\r
     <li>Support many clients such as refactoring, static analysis, as well as\r
         code generation.</li>\r
+    <li>Build a library-based architecture with finely crafted APIs, allowing\r
+        the code to be reused in many ways.</li>\r
     <li>Design for integration with IDEs as well as code generation with the\r
         <a href="http://llvm.org">LLVM Optimizer and Code Generator</a>.</li>\r
     <li><a href="features.html#expressivediags">Expressive diagnostics</a>:\r
@@ -42,6 +42,9 @@
     <li>Use the LLVM <a\r
         href="http://llvm.org/svn/llvm-project/cfe/trunk/LICENSE.TXT">'BSD'\r
         License</a>.</li>\r
+    <li>Finally, make the code clean and simple enough to make it understandable\r
+        to anyone who knows the languages involved and has a basic idea of\r
+        compilers work.</li>\r
     </ul>\r
     \r
     <p>Of course this is only a rough outline of the goals and features of\r