[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Kristóf Umann via Phabricator via cfe-commits
Szelethus added a comment.

Np, please leave it in! :)


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64494/new/

https://reviews.llvm.org/D64494



___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Gabor Marton via Phabricator via cfe-commits
martong added a comment.

> In any case, LGTM, if this really is a beginning of porting the already 
> existing documentation to sphinx.

This is really the beginning of porting the existing docs to sphinx which is 
supposedly going to be done by @dkrupp. And I am planning to add new user 
manual documentation about CTU.

> I guess any time we modify analyzer stuff, we may invite the main analyzer 
> developers to the patch review as well.

Yes, I agree. I was under the impression that there is already a consensus 
between the analyzer devs about the sphinx movement. If there is not, please 
indicate and I'll revert.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64494/new/

https://reviews.llvm.org/D64494



___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Kristóf Umann via Phabricator via cfe-commits
Szelethus added a comment.

I guess any time we modify analyzer stuff, we may invite the main analyzer 
developers to the patch review as well.

In any case, LGTM, if this really is a beginning of porting the already 
existing documentation to sphinx.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64494/new/

https://reviews.llvm.org/D64494



___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Gabor Marton via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes.
Closed by commit rL365639: [analyzer]Add user docs rst (authored by martong, 
committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D64494?vs=208958=208966#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64494/new/

https://reviews.llvm.org/D64494

Files:
  cfe/trunk/docs/ClangStaticAnalyzer.rst
  cfe/trunk/docs/analyzer/user-docs.rst


Index: cfe/trunk/docs/analyzer/user-docs.rst
===
--- cfe/trunk/docs/analyzer/user-docs.rst
+++ cfe/trunk/docs/analyzer/user-docs.rst
@@ -0,0 +1,4 @@
+User Docs
+=
+
+Contents:
Index: cfe/trunk/docs/ClangStaticAnalyzer.rst
===
--- cfe/trunk/docs/ClangStaticAnalyzer.rst
+++ cfe/trunk/docs/ClangStaticAnalyzer.rst
@@ -5,15 +5,16 @@
 The Clang Static Analyzer is a source code analysis tool that finds bugs in C, 
C++, and Objective-C programs.
 It implements *path-sensitive*, *inter-procedural analysis* based on *symbolic 
execution* technique.
 
-This is the Static Analyzer documentation page. 
+This is the Static Analyzer documentation page.
 
 See the `Official Tool Page `_.
 
 .. toctree::
:caption: Table of Contents
:numbered:
-   :maxdepth: 2  
- 
+   :maxdepth: 2
+
analyzer/checkers
+   analyzer/user-docs
analyzer/developer-docs
 


Index: cfe/trunk/docs/analyzer/user-docs.rst
===
--- cfe/trunk/docs/analyzer/user-docs.rst
+++ cfe/trunk/docs/analyzer/user-docs.rst
@@ -0,0 +1,4 @@
+User Docs
+=
+
+Contents:
Index: cfe/trunk/docs/ClangStaticAnalyzer.rst
===
--- cfe/trunk/docs/ClangStaticAnalyzer.rst
+++ cfe/trunk/docs/ClangStaticAnalyzer.rst
@@ -5,15 +5,16 @@
 The Clang Static Analyzer is a source code analysis tool that finds bugs in C, C++, and Objective-C programs.
 It implements *path-sensitive*, *inter-procedural analysis* based on *symbolic execution* technique.
 
-This is the Static Analyzer documentation page. 
+This is the Static Analyzer documentation page.
 
 See the `Official Tool Page `_.
 
 .. toctree::
:caption: Table of Contents
:numbered:
-   :maxdepth: 2  
- 
+   :maxdepth: 2
+
analyzer/checkers
+   analyzer/user-docs
analyzer/developer-docs
 
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Gabor Marton via Phabricator via cfe-commits
martong added a comment.

In D64494#1578373 , @dkrupp wrote:

> I guess this is a placeholder for the subpages of "User Manual" @ 
> https://clang-analyzer.llvm.org, which will be ported in follow-up patches.


Yes.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64494/new/

https://reviews.llvm.org/D64494



___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Daniel Krupp via Phabricator via cfe-commits
dkrupp accepted this revision.
dkrupp added a comment.
This revision is now accepted and ready to land.

I guess this is a placeholder for the subpages of "User Manual" @ 
https://clang-analyzer.llvm.org, which will be ported in follow-up patches.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64494/new/

https://reviews.llvm.org/D64494



___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[PATCH] D64494: [analyzer]Add user docs rst

2019-07-10 Thread Gabor Marton via Phabricator via cfe-commits
martong created this revision.
martong added a reviewer: dkrupp.
Herald added subscribers: cfe-commits, Charusso, gamesh411, donat.nagy, 
Szelethus, mikhail.ramalho, a.sidorin, rnkovacs, szepet, baloghadamsoftware, 
xazax.hun, whisperity.
Herald added a project: clang.

Add user documentation page. This is an empty page atm, later patches will add
the specific user documentatoins.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D64494

Files:
  clang/docs/ClangStaticAnalyzer.rst
  clang/docs/analyzer/user-docs.rst


Index: clang/docs/analyzer/user-docs.rst
===
--- /dev/null
+++ clang/docs/analyzer/user-docs.rst
@@ -0,0 +1,4 @@
+User Docs
+=
+
+Contents:
Index: clang/docs/ClangStaticAnalyzer.rst
===
--- clang/docs/ClangStaticAnalyzer.rst
+++ clang/docs/ClangStaticAnalyzer.rst
@@ -5,15 +5,16 @@
 The Clang Static Analyzer is a source code analysis tool that finds bugs in C, 
C++, and Objective-C programs.
 It implements *path-sensitive*, *inter-procedural analysis* based on *symbolic 
execution* technique.
 
-This is the Static Analyzer documentation page. 
+This is the Static Analyzer documentation page.
 
 See the `Official Tool Page `_.
 
 .. toctree::
:caption: Table of Contents
:numbered:
-   :maxdepth: 2  
- 
+   :maxdepth: 2
+
analyzer/checkers
+   analyzer/user-docs
analyzer/developer-docs
 


Index: clang/docs/analyzer/user-docs.rst
===
--- /dev/null
+++ clang/docs/analyzer/user-docs.rst
@@ -0,0 +1,4 @@
+User Docs
+=
+
+Contents:
Index: clang/docs/ClangStaticAnalyzer.rst
===
--- clang/docs/ClangStaticAnalyzer.rst
+++ clang/docs/ClangStaticAnalyzer.rst
@@ -5,15 +5,16 @@
 The Clang Static Analyzer is a source code analysis tool that finds bugs in C, C++, and Objective-C programs.
 It implements *path-sensitive*, *inter-procedural analysis* based on *symbolic execution* technique.
 
-This is the Static Analyzer documentation page. 
+This is the Static Analyzer documentation page.
 
 See the `Official Tool Page `_.
 
 .. toctree::
:caption: Table of Contents
:numbered:
-   :maxdepth: 2  
- 
+   :maxdepth: 2
+
analyzer/checkers
+   analyzer/user-docs
analyzer/developer-docs
 
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits