[llvm-commits] [llvm] r172109 - in /llvm/trunk/docs: CommandLine.rst DebuggingJITedCode.rst GarbageCollection.rst GoldPlugin.rst HowToAddABuilder.rst HowToBuildOnARM.rst HowToReleaseLLVM.rst HowToSetUpLLVMStyleRTTI.rst HowToSubmitABug.rst HowToUseInstrMappings.rst ProgrammersManual.rst SourceLevelDebugging.rst SphinxQuickstartTemplate.rst SystemLibrary.rst TestSuiteMakefileGuide.rst TestingGuide.rst WritingAnLLVMBackend.rst WritingAnLLVMPass.rst
Chris Lattner
sabre at nondot.org
Thu Jan 10 13:24:05 PST 2013
Author: lattner
Date: Thu Jan 10 15:24:04 2013
New Revision: 172109
URL: http://llvm.org/viewvc/llvm-project?rev=172109&view=rev
Log:
remove the rest of the "written by" lines in the documentation. It is
against the developer policy to include this sort of thing as SVN blame
already captures this in a far more fine-grained way.
Modified:
llvm/trunk/docs/CommandLine.rst
llvm/trunk/docs/DebuggingJITedCode.rst
llvm/trunk/docs/GarbageCollection.rst
llvm/trunk/docs/GoldPlugin.rst
llvm/trunk/docs/HowToAddABuilder.rst
llvm/trunk/docs/HowToBuildOnARM.rst
llvm/trunk/docs/HowToReleaseLLVM.rst
llvm/trunk/docs/HowToSetUpLLVMStyleRTTI.rst
llvm/trunk/docs/HowToSubmitABug.rst
llvm/trunk/docs/HowToUseInstrMappings.rst
llvm/trunk/docs/ProgrammersManual.rst
llvm/trunk/docs/SourceLevelDebugging.rst
llvm/trunk/docs/SphinxQuickstartTemplate.rst
llvm/trunk/docs/SystemLibrary.rst
llvm/trunk/docs/TestSuiteMakefileGuide.rst
llvm/trunk/docs/TestingGuide.rst
llvm/trunk/docs/WritingAnLLVMBackend.rst
llvm/trunk/docs/WritingAnLLVMPass.rst
Modified: llvm/trunk/docs/CommandLine.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandLine.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/CommandLine.rst (original)
+++ llvm/trunk/docs/CommandLine.rst Thu Jan 10 15:24:04 2013
@@ -68,9 +68,7 @@
This document will hopefully let you jump in and start using CommandLine in your
utility quickly and painlessly. Additionally it should be a simple reference
-manual to figure out how stuff works. If it is failing in some area (or you
-want an extension to the library), nag the author, `Chris
-Lattner <mailto:sabre at nondot.org>`_.
+manual to figure out how stuff works.
Quick Start Guide
=================
Modified: llvm/trunk/docs/DebuggingJITedCode.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/DebuggingJITedCode.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/DebuggingJITedCode.rst (original)
+++ llvm/trunk/docs/DebuggingJITedCode.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
Debugging JIT-ed Code With GDB
==============================
-.. sectionauthor:: Reid Kleckner and Eli Bendersky
-
Background
==========
Modified: llvm/trunk/docs/GarbageCollection.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GarbageCollection.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/GarbageCollection.rst (original)
+++ llvm/trunk/docs/GarbageCollection.rst Thu Jan 10 15:24:04 2013
@@ -5,9 +5,6 @@
.. contents::
:local:
-.. sectionauthor:: Chris Lattner <sabre at nondot.org> and
- Gordon Henriksen
-
Introduction
============
Modified: llvm/trunk/docs/GoldPlugin.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GoldPlugin.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/GoldPlugin.rst (original)
+++ llvm/trunk/docs/GoldPlugin.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
The LLVM gold plugin
====================
-.. sectionauthor:: Nick Lewycky
-
Introduction
============
Modified: llvm/trunk/docs/HowToAddABuilder.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToAddABuilder.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/HowToAddABuilder.rst (original)
+++ llvm/trunk/docs/HowToAddABuilder.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
How To Add Your Build Configuration To LLVM Buildbot Infrastructure
===================================================================
-.. sectionauthor:: Galina Kistanova <gkistanova at gmail.com>
-
Introduction
============
Modified: llvm/trunk/docs/HowToBuildOnARM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToBuildOnARM.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/HowToBuildOnARM.rst (original)
+++ llvm/trunk/docs/HowToBuildOnARM.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
How To Build On ARM
===================================================================
-.. sectionauthor:: Wei-Ren Chen (é³éä»») <chenwj at iis.sinica.edu.tw>
-
Introduction
============
Modified: llvm/trunk/docs/HowToReleaseLLVM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToReleaseLLVM.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/HowToReleaseLLVM.rst (original)
+++ llvm/trunk/docs/HowToReleaseLLVM.rst Thu Jan 10 15:24:04 2013
@@ -6,11 +6,6 @@
:local:
:depth: 1
-.. sectionauthor:: Tanya Lattner <tonic at nondot.org>,
- Reid Spencer <rspencer at x10sys.com>,
- John Criswell <criswell at cs.uiuc.edu> and
- Bill Wendling <wendling at apple.com>
-
Introduction
============
Modified: llvm/trunk/docs/HowToSetUpLLVMStyleRTTI.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToSetUpLLVMStyleRTTI.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/HowToSetUpLLVMStyleRTTI.rst (original)
+++ llvm/trunk/docs/HowToSetUpLLVMStyleRTTI.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
How to set up LLVM-style RTTI for your class hierarchy
======================================================
-.. sectionauthor:: Sean Silva <silvas at purdue.edu>
-
.. contents::
Background
Modified: llvm/trunk/docs/HowToSubmitABug.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToSubmitABug.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/HowToSubmitABug.rst (original)
+++ llvm/trunk/docs/HowToSubmitABug.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
How to submit an LLVM bug report
================================
-.. sectionauthor:: Chris Lattner <sabre at nondot.org> and Misha Brukman <http://misha.brukman.net>
-
Introduction - Got bugs?
========================
Modified: llvm/trunk/docs/HowToUseInstrMappings.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToUseInstrMappings.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/HowToUseInstrMappings.rst (original)
+++ llvm/trunk/docs/HowToUseInstrMappings.rst Thu Jan 10 15:24:04 2013
@@ -4,8 +4,6 @@
How To Use Instruction Mappings
===============================
-.. sectionauthor:: Jyotsna Verma <jverma at codeaurora.org>
-
.. contents::
:local:
Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Thu Jan 10 15:24:04 2013
@@ -6,14 +6,7 @@
:local:
.. warning::
- This is a work in progress.
-
-.. sectionauthor:: Chris Lattner <sabre at nondot.org>,
- Dinakar Dhurjati <dhurjati at cs.uiuc.edu>,
- Gabor Greif <ggreif at gmail.com>,
- Joel Stanley <jstanley at cs.uiuc.edu>,
- Reid Spencer <rspencer at x10sys.com> and
- Owen Anderson <owen at apple.com>
+ This is always a work in progress.
.. _introduction:
Modified: llvm/trunk/docs/SourceLevelDebugging.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.rst (original)
+++ llvm/trunk/docs/SourceLevelDebugging.rst Thu Jan 10 15:24:04 2013
@@ -2,8 +2,6 @@
Source Level Debugging with LLVM
================================
-.. sectionauthor:: Chris Lattner <sabre at nondot.org> and Jim Laskey <jlaskey at mac.com>
-
.. contents::
:local:
Modified: llvm/trunk/docs/SphinxQuickstartTemplate.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SphinxQuickstartTemplate.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/SphinxQuickstartTemplate.rst (original)
+++ llvm/trunk/docs/SphinxQuickstartTemplate.rst Thu Jan 10 15:24:04 2013
@@ -2,8 +2,6 @@
Sphinx Quickstart Template
==========================
-.. sectionauthor:: Sean Silva <silvas at purdue.edu>
-
Introduction and Quickstart
===========================
Modified: llvm/trunk/docs/SystemLibrary.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SystemLibrary.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/SystemLibrary.rst (original)
+++ llvm/trunk/docs/SystemLibrary.rst Thu Jan 10 15:24:04 2013
@@ -2,8 +2,6 @@
System Library
==============
-.. sectionauthor:: Reid Spencer <rspencer at x10sys.com>
-
Abstract
========
Modified: llvm/trunk/docs/TestSuiteMakefileGuide.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TestSuiteMakefileGuide.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/TestSuiteMakefileGuide.rst (original)
+++ llvm/trunk/docs/TestSuiteMakefileGuide.rst Thu Jan 10 15:24:04 2013
@@ -2,9 +2,6 @@
LLVM test-suite Makefile Guide
==============================
-Written by John T. Criswell, Daniel Dunbar, Reid Spencer, and Tanya
-Lattner
-
.. contents::
:local:
Modified: llvm/trunk/docs/TestingGuide.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TestingGuide.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/TestingGuide.rst (original)
+++ llvm/trunk/docs/TestingGuide.rst Thu Jan 10 15:24:04 2013
@@ -2,9 +2,6 @@
LLVM Testing Infrastructure Guide
=================================
-Written by John T. Criswell, Daniel Dunbar, Reid Spencer, and Tanya
-Lattner
-
.. contents::
:local:
Modified: llvm/trunk/docs/WritingAnLLVMBackend.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMBackend.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMBackend.rst (original)
+++ llvm/trunk/docs/WritingAnLLVMBackend.rst Thu Jan 10 15:24:04 2013
@@ -7,8 +7,6 @@
HowToUseInstrMappings
-.. sectionauthor:: Mason Woo <http://www.woo.com> and Misha Brukman <http://misha.brukman.net>
-
.. contents::
:local:
Modified: llvm/trunk/docs/WritingAnLLVMPass.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.rst?rev=172109&r1=172108&r2=172109&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.rst (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.rst Thu Jan 10 15:24:04 2013
@@ -5,9 +5,6 @@
.. contents::
:local:
-Written by `Chris Lattner <mailto:sabre at nondot.org>`_ and
-`Jim Laskey <mailto:jlaskey at mac.com>`_
-
Introduction --- What is a pass?
================================
More information about the llvm-commits
mailing list