Displaying 20 results from an estimated 10000 matches similar to: "Using isonum.txt substitutions in reST documents?"
2008 Dec 09
7
[LLVMdev] Using ReST for documentation
[Chris asked me to bring this up on the mailing list some time
ago, but I couldn't get to it. Sorry for that.]
Since the beginning, I used ReST [1] for documenting llvmc, instead of
plain HTML that was used historically. In my opinion, ReST is much
easier to write and read (in the text editor or on terminal); it can
also be used to produce PDFs, man pages or HTML that looks exactly the
same
2020 Sep 25
2
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 04:44:24PM +0800, Wei Wang wrote:
> On Fri, Sep 25, 2020 at 4:40 PM Andrea Bolognani <abologna@redhat.com>
> wrote:
> 
> > On Fri, 2020-09-25 at 16:21 +0800, Wei Wang wrote:
> > > On Fri, Sep 25, 2020 at 3:56 PM Andrea Bolognani <abologna@redhat.com>
> > wrote:
> > > > On Fri, 2020-09-25 at 10:33 +0800, Wei Wang wrote:
2020 Sep 25
2
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 5:24 PM Andrea Bolognani <abologna@redhat.com>
wrote:
> On Fri, 2020-09-25 at 10:16 +0100, Daniel P. Berrangé wrote:
> > On Fri, Sep 25, 2020 at 05:03:24PM +0800, Wei Wang wrote:
> > > /usr/local/bin/rst2html5 --stylesheet= --strict docs/manpages/virsh.rst
> > > docs/manpages/virsh.rst:41: (ERROR/3) Error in "code-block"
2020 Sep 25
3
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 05:03:24PM +0800, Wei Wang wrote:
> On Fri, Sep 25, 2020 at 4:54 PM Daniel P. Berrangé <berrange@redhat.com>
> wrote:
> 
> >
> > > Yes, I tried, but it fails with
> > > ../src/util/virfile.c:42:11: fatal error: libutil.h: No such file or
> > > directory
> >
> > You'd have to delete the build dir and re-run
2008 Dec 09
0
[LLVMdev] Using ReST for documentation
Can you compare ReST to docbook? We've talked about using docbook for  
a long time. What are the pros and cons of each?
Thanks,
Tanya
On Dec 9, 2008, at 7:56 AM, Mikhail Glushenkov wrote:
> [Chris asked me to bring this up on the mailing list some time
> ago, but I couldn't get to it. Sorry for that.]
>
> Since the beginning, I used ReST [1] for documenting llvmc, instead
2020 Sep 25
2
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 11:23:57AM +0200, Andrea Bolognani wrote:
> On Fri, 2020-09-25 at 10:16 +0100, Daniel P. Berrangé wrote:
> > On Fri, Sep 25, 2020 at 05:03:24PM +0800, Wei Wang wrote:
> > > /usr/local/bin/rst2html5 --stylesheet= --strict docs/manpages/virsh.rst
> > > docs/manpages/virsh.rst:41: (ERROR/3) Error in "code-block" directive:
> > > 1
2008 Dec 09
0
[LLVMdev] Using ReST for documentation
WikiFormatting for code documentation? :-)
-scooter
On Tue, Dec 9, 2008 at 7:56 AM, Mikhail Glushenkov <foldr at codedgers.com>wrote:
> [Chris asked me to bring this up on the mailing list some time
> ago, but I couldn't get to it. Sorry for that.]
>
> Since the beginning, I used ReST [1] for documenting llvmc, instead of
> plain HTML that was used historically. In my
2020 Sep 25
2
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 5:35 PM Daniel P. Berrangé <berrange@redhat.com>
wrote:
> On Fri, Sep 25, 2020 at 05:31:09PM +0800, Wei Wang wrote:
> > On Fri, Sep 25, 2020 at 5:24 PM Andrea Bolognani <abologna@redhat.com>
> > wrote:
> >
> > > On Fri, 2020-09-25 at 10:16 +0100, Daniel P. Berrangé wrote:
> > > > On Fri, Sep 25, 2020 at 05:03:24PM
2008 May 08
23
The wiki - directions and ideas
Hi all
Luke and I have been discussing the wiki and how its future development 
might pan out.  As a result I thought I''d canvas people for feedback.
Currently the wiki''s layout and structure is fairly ad hoc and it''s a
mix of wiki mark-up and REStructured Text (RST).  We''d like to make it 
more "manual" like or at least move a significant portion of
2006 Mar 15
3
Special characters in ERB
I''m pulling text out of a database that contains special characters, 
like the trademark sign. For example, a typical string might be like this:
string_from_database => "Some Special Brand\231 is for sale this 
Thursday through Friday."
The \231 is the trademark sign (TM). ERB converts this to question 
marks.  So, my question is -- how can I get it to display the trademark
2015 Nov 26
1
About CentOS Marks
Hello
https://www.centos.org/legal/trademarks/
According to above, I found following message.
----------------------
Notwithstanding anything to the contrary provided in these Guidelines, the following are examples of unacceptable uses:
1.Use of the CentOS Marks in connection with commercial redistribution of CentOS software
----------------------
I have a question.
What means "Use of the
2012 Dec 13
1
[LLVMdev] Packaging reST documentation
Hello,
All LLVM HTML documents have been converted to reST.  This uncovered
an issue with 'make install', which installs only *.html files and
completely ignores *.rst (it does not invoke Sphinx to process reST).
In order to unbreak 'make install', I checked in a Dummy.html file in
r170126 to allow 'make install' to proceed.
We need some way to integrate normal 'make
2013 Feb 28
2
[LLVMdev] Propose to use rest.vim for vimrc of LLVM
Hello list,
I use LLVM's vimrc and found that this setting below is useful when
editing of reStructuredText file.
llvm/utils/vim/vimrc
" Enable syntax highlighting for reStructuredText files. To use, copy
" rest.vim (http://www.vim.org/scripts/script.php?script_id=973)
" to ~/.vim/syntax .
augroup filetype
  au! BufRead,BufNewFile *.rst     set filetype=rest
augroup END
2013 Feb 28
0
[LLVMdev] Propose to use rest.vim for vimrc of LLVM
Thanks, Journeyer. I applied the patch with r176235.
In future, you can submit patches to the llvm-commits mailing list. :)
-bw
On Feb 27, 2013, at 9:03 PM, Journeyer J. Joh <oosaprogrammer at gmail.com> wrote:
> Hello list,
> 
> I use LLVM's vimrc and found that this setting below is useful when
> editing of reStructuredText file.
> 
> 
> llvm/utils/vim/vimrc
2019 Apr 28
2
How to submit a change for code review using arc
> While it's still fresh in your mind, you might consider updating https://llvm.org/docs/Phabricator.html (which is llvm/docs/Phabricator.rst) based on your experience,
> which will make it easier for future contributors.  I guess the main issue is getting used to the fact that Phabricator user names are independent and must be looked up on the web site -- at least I haven't found
2020 Apr 30
2
Re: [Query] Facing issue in build libvirt6.0 on ubuntu 1804
Hi Michal,
Please find the details below,
rst2html5 1.10.6 (Docutils 0.16 [release], Python 3.6.9, on linux)
is there any other way to access/control the guest os running on top QEMU ?
Thanks,
Ramesh
On Thu, Apr 30, 2020 at 3:47 PM Michal Privoznik <mprivozn@redhat.com>
wrote:
> [Please keep the list CCed]
>
> On 4/30/20 12:02 PM, Ramesh B wrote:
> > Hi Michal,
> >
2020 Sep 25
0
Re: Help on Meson build Error
On Fri, Sep 25, 2020 at 4:54 PM Daniel P. Berrangé <berrange@redhat.com>
wrote:
>
> > Yes, I tried, but it fails with
> > ../src/util/virfile.c:42:11: fatal error: libutil.h: No such file or
> > directory
>
> You'd have to delete the build dir and re-run meson so that it
> auto-detects again.
>
>
OK, that issue seems gone, but ninja reports lots of
2016 Oct 19
2
[PATCH v2 34/37] docs: fix locations of several documents that got moved
Em Wed, 19 Oct 2016 12:34:42 +0200
Pavel Machek <pavel at ucw.cz> escreveu:
> Hi!
> 
> 
> > --- a/Documentation/ABI/testing/sysfs-kernel-slab
> > +++ b/Documentation/ABI/testing/sysfs-kernel-slab
> > @@ -347,7 +347,7 @@ Description:
> >  		because of fragmentation, SLUB will retry with the minimum order
> >  		possible depending on its characteristics.
2016 Oct 19
2
[PATCH v2 34/37] docs: fix locations of several documents that got moved
Em Wed, 19 Oct 2016 12:34:42 +0200
Pavel Machek <pavel at ucw.cz> escreveu:
> Hi!
> 
> 
> > --- a/Documentation/ABI/testing/sysfs-kernel-slab
> > +++ b/Documentation/ABI/testing/sysfs-kernel-slab
> > @@ -347,7 +347,7 @@ Description:
> >  		because of fragmentation, SLUB will retry with the minimum order
> >  		possible depending on its characteristics.
2020 Apr 30
6
[Query] Facing issue in build libvirt6.0 on ubuntu 1804
Hi all,
I am trying to build libvirt 6.0 on ubuntu OS 18.04.
Facing one issue libvirt source compilation.
============================================
<stdin>:215: (ERROR/3) Error in "code-block" directive:
1 argument(s) required, 0 supplied.
.. code-block::
   help [command-or-group]
<stdin>:229: (ERROR/3) Error in "code-block" directive:
1 argument(s)