Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sphinxify the developer policy document. | Bill Wendling | 2012-06-20 | 1 | -642/+0 |
| | | | | llvm-svn: 158814 | ||||
* | [docs] Update HTML pages to refer to CSS in a way that works locally and ↵ | Daniel Dunbar | 2012-04-19 | 1 | -1/+1 |
| | | | | | | with Sphinx. llvm-svn: 155153 | ||||
* | llvm/docs/*.html: Fix markups. | NAKAMURA Takumi | 2012-03-27 | 1 | -0/+4 |
| | | | | llvm-svn: 153508 | ||||
* | libclc is now dual licensed, Tobias and Peter own their respective subprojects. | Chris Lattner | 2012-02-22 | 1 | -1/+5 |
| | | | | llvm-svn: 151186 | ||||
* | fix broken link | Chris Lattner | 2012-02-08 | 1 | -1/+1 |
| | | | | llvm-svn: 150105 | ||||
* | No actual functional change here, just some clarifications: | Chris Lattner | 2012-02-08 | 1 | -14/+26 |
| | | | | | | | | | | | Clarify that contributors are agreeing to license their code under the license corresponding to the subproject that they are contributing to, as requested by a potential contributor. Also, as a drive-by, update the llvm-gcc/GPL section to mention dragonegg and say that GPL code is all in its own repo's. llvm-svn: 150065 | ||||
* | Jakob is the code owner of register allocation and TableGen. | Evan Cheng | 2011-10-07 | 1 | -0/+2 |
| | | | | llvm-svn: 141372 | ||||
* | Duncan owns dragonegg too, it's all his fault :) | Chris Lattner | 2011-09-23 | 1 | -1/+1 |
| | | | | llvm-svn: 140430 | ||||
* | Resynch intro to section with copyright section. | Chris Lattner | 2011-09-22 | 1 | -2/+3 |
| | | | | llvm-svn: 140326 | ||||
* | I am the code owner for Clang's IR generation; this has been true | John McCall | 2011-08-02 | 1 | -0/+2 |
| | | | | | | | | | | for awhile, but it's good to make this official. Just to be clear, Doug and Ted "elected" me to this position. Might as well add myself to the credits list while I'm at it. llvm-svn: 136673 | ||||
* | docs: Introduce cascading style <div> and <p> continued on <h[2-5]>. | NAKAMURA Takumi | 2011-04-23 | 1 | -18/+20 |
| | | | | | | | | | | | | | | | | | <h2>Section Example</h2> <div> <!-- h2+div is applied --> <p>Section preamble.</p> <h3>Subsection Example</h3> <p> <!-- h3+p is applied --> Subsection body </p> <!-- End of section body --> </div> FIXME: Care H5 better. llvm-svn: 130040 | ||||
* | docs: Use <Hn> as Heading elements instead of <DIV class="doc_foo">. | NAKAMURA Takumi | 2011-04-18 | 1 | -21/+18 |
| | | | | | | | | | H1 ... doc_title H2 ... doc_section H3 ... doc_subsection H4 ... doc_subsubsection llvm-svn: 129736 | ||||
* | docs: Canonicalize URLs. | NAKAMURA Takumi | 2011-04-09 | 1 | -1/+1 |
| | | | | llvm-svn: 129181 | ||||
* | libc++ and compiler_rt are now dual licensed under UIUC and MIT license. | Chris Lattner | 2010-11-16 | 1 | -9/+20 |
| | | | | llvm-svn: 119387 | ||||
* | reapply developer policy changes after discussion. | Chris Lattner | 2010-09-27 | 1 | -14/+18 |
| | | | | llvm-svn: 114886 | ||||
* | temporarily revert developer policy change as a courtesy to vikram. | Chris Lattner | 2010-09-25 | 1 | -18/+14 |
| | | | | llvm-svn: 114792 | ||||
* | remove an obsolete section | Chris Lattner | 2010-09-23 | 1 | -16/+0 |
| | | | | llvm-svn: 114701 | ||||
* | rewrite the copyright section to match reality: llvm does't have a | Chris Lattner | 2010-09-23 | 1 | -14/+18 |
| | | | | | | copyright assignment process. llvm-svn: 114673 | ||||
* | add lldb and libc++ code owners. | Chris Lattner | 2010-09-23 | 1 | -1/+5 |
| | | | | llvm-svn: 114669 | ||||
* | updates to make it clear that this applies to clang and other llvm subprojects. | Chris Lattner | 2010-09-02 | 1 | -11/+24 |
| | | | | llvm-svn: 112781 | ||||
* | Delete mkpatch. Everything it does is already done by svn diff by default. | Dan Gohman | 2010-08-04 | 1 | -11/+6 |
| | | | | llvm-svn: 110203 | ||||
* | Revert r103213. It broke several sections of live website. | mike-m | 2010-05-07 | 1 | -0/+607 |
| | | | | llvm-svn: 103219 | ||||
* | Overhauled llvm/clang docs builds. Closes PR6613. | mike-m | 2010-05-06 | 1 | -607/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTE: 2nd part changeset for cfe trunk to follow. *** PRE-PATCH ISSUES ADDRESSED - clang api docs fail build from objdir - clang/llvm api docs collide in install PREFIX/ - clang/llvm main docs collide in install - clang/llvm main docs have full of hard coded destination assumptions and make use of absolute root in static html files; namely CommandGuide tools hard codes a website destination for cross references and some html cross references assume website root paths *** IMPROVEMENTS - bumped Doxygen from 1.4.x -> 1.6.3 - splits llvm/clang docs into 'main' and 'api' (doxygen) build trees - provide consistent, reliable doc builds for both main+api docs - support buid vs. install vs. website intentions - support objdir builds - document targets with 'make help' - correct clean and uninstall operations - use recursive dir delete only where absolutely necessary - added call function fn.RMRF which safeguards against botched 'rm -rf'; if any target (or any variable is evaluated) which attempts to remove any dirs which match a hard-coded 'safelist', a verbose error will be printed and make will error-stop. llvm-svn: 103213 | ||||
* | Fix typos in comments. | Dan Gohman | 2010-02-26 | 1 | -1/+1 |
| | | | | llvm-svn: 97257 | ||||
* | add a link to the GSG for info on how to check out svn trunk | Chris Lattner | 2009-10-10 | 1 | -1/+3 |
| | | | | llvm-svn: 83734 | ||||
* | apparently russians are really hard to sort or something! | Chris Lattner | 2009-09-16 | 1 | -2/+2 |
| | | | | llvm-svn: 82016 | ||||
* | I can sort, no really. | Chris Lattner | 2009-09-16 | 1 | -3/+3 |
| | | | | llvm-svn: 82015 | ||||
* | make more clear since it is sorted by last name now. | Chris Lattner | 2009-09-16 | 1 | -1/+1 |
| | | | | llvm-svn: 82014 | ||||
* | Doug is now the code owner for most of the Clang frontend. | Chris Lattner | 2009-09-16 | 1 | -2/+4 |
| | | | | llvm-svn: 82013 | ||||
* | Ted is christened as the owner of the clang static analyzer. | Chris Lattner | 2009-09-16 | 1 | -0/+2 |
| | | | | llvm-svn: 82008 | ||||
* | add a note about the build bots | Chris Lattner | 2009-08-01 | 1 | -3/+6 |
| | | | | llvm-svn: 77796 | ||||
* | remove some old CVS-specific arguments that don't work with SVN. | Chris Lattner | 2009-06-15 | 1 | -1/+1 |
| | | | | llvm-svn: 73369 | ||||
* | Add character encoding declaration to fix verification warning. | Bill Wendling | 2009-04-05 | 1 | -0/+1 |
| | | | | llvm-svn: 68440 | ||||
* | Obsessively format this document. | Bill Wendling | 2009-04-05 | 1 | -371/+395 |
| | | | | llvm-svn: 68439 | ||||
* | lex and bison aren't needed to build llvm anymore. | Chris Lattner | 2009-01-02 | 1 | -1/+1 |
| | | | | llvm-svn: 61560 | ||||
* | Center the legal note to give it even padding on left and right, and make it | Misha Brukman | 2008-12-29 | 1 | -3/+3 |
| | | | | | | stand out better. llvm-svn: 61475 | ||||
* | * Removed stray </p> tag | Misha Brukman | 2008-12-11 | 1 | -7/+5 |
| | | | | | | * Whitespace cleanups llvm-svn: 60891 | ||||
* | Removed warnings from HTML 4.01 validator: trailing slashes in <br> and <img> | Misha Brukman | 2008-12-11 | 1 | -1/+1 |
| | | | | | | tags are not needed in HTML, only XML. llvm-svn: 60885 | ||||
* | Global replace of yellow W3C "valid HTML/CSS" icons with blue ones. | Misha Brukman | 2008-12-11 | 1 | -2/+2 |
| | | | | llvm-svn: 60880 | ||||
* | Grammar. | Daniel Dunbar | 2008-11-19 | 1 | -1/+1 |
| | | | | llvm-svn: 59581 | ||||
* | punctuate, add wording about patches contributed by others. | Chris Lattner | 2008-11-16 | 1 | -3/+4 |
| | | | | llvm-svn: 59417 | ||||
* | Fix a minor wording ambiguity in the Developer Policy. | Dan Gohman | 2008-09-09 | 1 | -1/+2 |
| | | | | llvm-svn: 56022 | ||||
* | Add a note for Thunderbird users to the Developer Policy. | Gordon Henriksen | 2008-06-26 | 1 | -0/+9 |
| | | | | llvm-svn: 52797 | ||||
* | minor edits | Chris Lattner | 2008-05-22 | 1 | -7/+9 |
| | | | | llvm-svn: 51405 | ||||
* | Clarify copyright transfer when you don't own the copyright of | Chris Lattner | 2008-05-20 | 1 | -2/+9 |
| | | | | | | the contributed code. llvm-svn: 51329 | ||||
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -22/+6 |
| | | | | | | discussion of this change. llvm-svn: 45409 | ||||
* | Describe the notion of 'owners' of the code. | Chris Lattner | 2007-12-03 | 1 | -0/+45 |
| | | | | llvm-svn: 44537 | ||||
* | explain what I need to grant commit access. | Chris Lattner | 2007-12-03 | 1 | -2/+24 |
| | | | | llvm-svn: 44524 | ||||
* | Subversionify the documentation. | Reid Spencer | 2007-07-09 | 1 | -8/+7 |
| | | | | llvm-svn: 38442 | ||||
* | Various hopefully correct easy fixes. | Duncan Sands | 2007-03-30 | 1 | -1/+1 |
| | | | | llvm-svn: 35506 |