SF.net SVN: docutils:[9591 ] trunk/sandbox/manpage-wri ter

grubert--- via Docutils-checkins <[email protected]>
Newsgroups gmane.text.docutils.cvs
Message-ID <[email protected]>
Revision: 9591
          http://sourceforge.net/p/docutils/code/9591
Author:   grubert
Date:     2024-03-25 13:17:25 +0000 (Mon, 25 Mar 2024)
Log Message:
-----------
manpage writer: avoid double eol before .UR 

Modified Paths:
--------------
    trunk/sandbox/manpage-writer/expected/characters.ascii
    trunk/sandbox/manpage-writer/expected/characters.latin1
    trunk/sandbox/manpage-writer/expected/characters.man
    trunk/sandbox/manpage-writer/expected/characters.utf8
    trunk/sandbox/manpage-writer/expected/references.latin1
    trunk/sandbox/manpage-writer/expected/references.man
    trunk/sandbox/manpage-writer/expected/references.ps
    trunk/sandbox/manpage-writer/expected/test.latin1
    trunk/sandbox/manpage-writer/expected/test.man
    trunk/sandbox/manpage-writer/expected/test.ps
    trunk/sandbox/manpage-writer/expected-mandoc/characters.ascii
    trunk/sandbox/manpage-writer/expected-mandoc/characters.man
    trunk/sandbox/manpage-writer/expected-mandoc/characters.utf8
    trunk/sandbox/manpage-writer/expected-mandoc/references.man
    trunk/sandbox/manpage-writer/expected-mandoc/references.ps
    trunk/sandbox/manpage-writer/expected-mandoc/references.utf8
    trunk/sandbox/manpage-writer/expected-mandoc/test.man
    trunk/sandbox/manpage-writer/expected-mandoc/test.ps

Added Paths:
-----------
    trunk/sandbox/manpage-writer/URUE-problem.txt

Added: trunk/sandbox/manpage-writer/URUE-problem.txt
===================================================================
--- trunk/sandbox/manpage-writer/URUE-problem.txt	                        (rev 0)
+++ trunk/sandbox/manpage-writer/URUE-problem.txt	2024-03-25 13:17:25 UTC (rev 9591)
@@ -0,0 +1,74 @@
+================
+ UR UE problems
+================
+
+:Date: $Date$
+
+man 7 man 
+=========
+
+tells on   *Hypertext link macros*
+
+       .UR url
+              Insert a hypertext link to the URI (URL) url, with all  text  up  to  the
+              following .UE macro as the link text.
+
+       .UE    [trailer]  Terminate  the  link text of the preceding .UR macro, with the
+              optional trailer (if present, usually a closing parenthesis  and/or  
+              end‐of‐sentence  punctuation) immediately following.  For non‐HTML output
+              devices (e.g., man -Tutf8), the link text is followed by the URL in angle
+              brackets;  if  there  is no link text, the URL is printed as its own link
+              text, surrounded by angle brackets.  (Angle brackets may not be available
+              on all output devices.)  For the HTML output device, the link text is 
+              hyperlinked to the URL; if there is no link text, the URL is printed as 
+              its own link text.
+
+examples
+========
+
+URUE.man ::
+
+  go to the
+  .UR http://www.python.org
+  python home page
+  .UE
+  to read
+
+  or read
+  .UR http://www.python.org
+  .UE
+
+man
+---
+
+``man ./URUE.man`` renders::
+
+  go to the python home page to read
+
+  or read
+
+html and ps also do not contain an url.
+
+mandoc
+------
+
+txt and html work, ps looses the second url if it is the last thing in the file.
+
+``mandoc ./URUE.man`` renders::
+
+  ()                                                                        ()
+
+  go to the python home page <http://www.python.org> to read
+
+  or read <http://www.python.org>
+
+                                                                            ()
+``mandoc -Tps ./URUE.man | ps2txt`` produces::
+
+  ()                                         ()
+  go to the python home page <http://www.python.org> to read
+                                             ()
+
+
+
+


Property changes on: trunk/sandbox/manpage-writer/URUE-problem.txt
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Author Date Id Revision
\ No newline at end of property
Modified: trunk/sandbox/manpage-writer/expected/characters.ascii
===================================================================
--- trunk/sandbox/manpage-writer/expected/characters.ascii	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/characters.ascii	2024-03-25 13:17:25 UTC (rev 9591)
@@ -12,7 +12,6 @@
 
        resulting in.
 
-
        ]8;;hgignore.5.html\hgignore(5)]8;;\ , ]8;;hgrc.5.html\hgrc(5)]8;;\
 
 

Modified: trunk/sandbox/manpage-writer/expected/characters.latin1
===================================================================
--- trunk/sandbox/manpage-writer/expected/characters.latin1	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/characters.latin1	2024-03-25 13:17:25 UTC (rev 9591)
@@ -12,7 +12,6 @@
 
        resulting in.
 
-
        ]8;;hgignore.5.html\hgignore(5)]8;;\ , ]8;;hgrc.5.html\hgrc(5)]8;;\
 
 

Modified: trunk/sandbox/manpage-writer/expected/characters.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/characters.man	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/characters.man	2024-03-25 13:17:25 UTC (rev 9591)
@@ -46,7 +46,6 @@
 .sp
 resulting in.
 .sp
-
 .UR hgignore.5.html
 \fBhgignore\fP(5)
 .UE

Modified: trunk/sandbox/manpage-writer/expected/characters.utf8
===================================================================
--- trunk/sandbox/manpage-writer/expected/characters.utf8	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/characters.utf8	2024-03-25 13:17:25 UTC (rev 9591)
@@ -12,7 +12,6 @@
 
        resulting in.
 
-
        ]8;;hgignore.5.html\hgignore(5)]8;;\ , ]8;;hgrc.5.html\hgrc(5)]8;;\
 
 

Modified: trunk/sandbox/manpage-writer/expected/references.latin1
===================================================================
--- trunk/sandbox/manpage-writer/expected/references.latin1	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/references.latin1	2024-03-25 13:17:25 UTC (rev 9591)
@@ -59,7 +59,6 @@
        See the ]8;;https://www.python.org\Python]8;;\
         home page for info.
 
-
        ]8;;mailto:[email protected]\Write to me]8;;\
         with your questions.
 

Modified: trunk/sandbox/manpage-writer/expected/references.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/references.man	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/references.man	2024-03-25 13:17:25 UTC (rev 9591)
@@ -124,7 +124,6 @@
 .UE
  home page for info.
 .sp
-
 .UR mailto:[email protected]
 Write to me
 .UE

Modified: trunk/sandbox/manpage-writer/expected/references.ps
===================================================================
--- trunk/sandbox/manpage-writer/expected/references.ps	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/references.ps	2024-03-25 13:17:25 UTC (rev 9591)
@@ -1,6 +1,6 @@
 %!PS-Adobe-3.0
 %%Creator: groff version 1.23.0
-%%CreationDate: Sun Mar 24 18:11:29 2024
+%%CreationDate: Mon Mar 25 12:08:43 2024
 %%DocumentNeededResources: font Times-Italic
 %%+ font Times-Roman
 %%+ font Times-Bold
@@ -304,9 +304,11 @@
 (llet list).2 E<83>108 633.6 Q(second item, with h)118 633.6 Q
 (yperlink tar)-.05 E(get.)-.18 E(See the Python)108 657.6 Q F5<e1>2.5 E
 F1(https://www)A(.p)-.65 E(ython.or)-.1 E(g)-.18 E F5<f1>A F1
-(home page for info.)110.5 669.6 Q(Write to me)108 705.6 Q F5<e1>2.5 E
+(home page for info.)110.5 669.6 Q(Write to me)108 693.6 Q F5<e1>2.5 E
 F1(mailto:jdoe@e)A(xample.com)-.15 E F5<f1>A F1(with your questions.)
-110.5 717.6 Q(1)535 768 Q 0 Cg EP
+110.5 705.6 Q(The one\255liner)108 729.6 Q F5<e1>2.5 E F1
+(https://docutils.sourcefor)A(ge.io/rst.html)-.18 E F5<f1>A F1(1)535 768
+Q 0 Cg EP
 %%Page: 2 2
 %%BeginPageSetup
 BP
@@ -313,22 +315,20 @@
 %%EndPageSetup
 /F0 10/Times-Italic@0 SF(REFERENCE TESTS)72.63 48 Q/F1 10/Times-Roman@0
 SF(\(\)).58 E F0(REFERENCE TESTS)281.21 E F1(\(\)).58 E
-(The one\255liner)108 84 Q/F2 10/Symbol SF<e1>2.5 E F1
-(https://docutils.sourcefor)A(ge.io/rst.html)-.18 E F2<f1>A F1
-(and starts\255on\255this\255line)110.5 96 Q F2<e1>2.5 E F1
+(and starts\255on\255this\255line)110.5 84 Q/F2 10/Symbol SF<e1>2.5 E F1
 (https://docutils.sourcefor)A(ge.net/rst.html)-.18 E F2<f1>A F1
-(or entirely\255belo)110.5 108 Q(w)-.25 E F2<e1>2.5 E F1
+(or entirely\255belo)110.5 96 Q(w)-.25 E F2<e1>2.5 E F1
 (https://docutils.sourcefor)A(ge.net/rst.html)-.18 E F2<f1>A F1
-(point to)110.5 120 Q F2<e1>2.5 E F1(https://docutils.sourcefor)A
-(ge.io/rst.html)-.18 E F2<f1>A F1(and in man are ... ?)110.5 132 Q
-(Escaped whitespace is preserv)108 156 Q
-(ed as intentional spaces, e.g.:)-.15 E(some reference)108 180 Q F2<e1>
-2.5 E F1(../local)A F2<f1>A F1(to a local path.)110.5 192 Q(Anon)108 216
+(point to)110.5 108 Q F2<e1>2.5 E F1(https://docutils.sourcefor)A
+(ge.io/rst.html)-.18 E F2<f1>A F1(and in man are ... ?)110.5 120 Q
+(Escaped whitespace is preserv)108 144 Q
+(ed as intentional spaces, e.g.:)-.15 E(some reference)108 168 Q F2<e1>
+2.5 E F1(../local)A F2<f1>A F1(to a local path.)110.5 180 Q(Anon)108 204
 Q(ymous h)-.15 E(yperlink references are speci\214ed with tw)-.05 E 2.5
 (ou)-.1 G(nderscores instead of one:)-2.5 E(See the web site of my f)108
-240 Q -.2(avo)-.1 G(rite programming language).2 E F2<e1>2.5 E F1
+228 Q -.2(avo)-.1 G(rite programming language).2 E F2<e1>2.5 E F1
 (https://www)A(.p)-.65 E(ython.or)-.1 E(g)-.18 E F2<f1>A F1(.)2.5 E
-(Anon)108 264 Q(ymous tar)-.15 E(gets be)-.18 E
+(Anon)108 252 Q(ymous tar)-.15 E(gets be)-.18 E
 (gin with ".. __:"; no reference name is required or allo)-.15 E(wed:)
 -.25 E(2)535 768 Q 0 Cg EP
 %%Trailer

Modified: trunk/sandbox/manpage-writer/expected/test.latin1
===================================================================
--- trunk/sandbox/manpage-writer/expected/test.latin1	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/test.latin1	2024-03-25 13:17:25 UTC (rev 9591)
@@ -259,11 +259,9 @@
 
        More information can be found about
 
-       \xB7 xml-schema-catalog at
+       \xB7 xml-schema-catalog at ]8;;http://xml-schema-catalog.origo.ethz.ch/\http://xml-schema-catalog.origo.ethz.ch/]8;;\
 
-         ]8;;http://xml-schema-catalog.origo.ethz.ch/\http://xml-schema-catalog.origo.ethz.ch/]8;;\
 
-
        And see the stars at the sky!
 
 BUGS

Modified: trunk/sandbox/manpage-writer/expected/test.man
===================================================================
--- trunk/sandbox/manpage-writer/expected/test.man	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/test.man	2024-03-25 13:17:25 UTC (rev 9591)
@@ -409,7 +409,6 @@
 This is a file.
 .SH SEE ALSO
 .sp
-
 .UR http://docutils.sourceforge.net
 docutils
 .UE
@@ -421,7 +420,6 @@
 .INDENT 0.0
 .IP \(bu 2
 xml\-schema\-catalog at
-
 .UR http://xml\-schema\-catalog.origo.ethz.ch/
 .UE
 

Modified: trunk/sandbox/manpage-writer/expected/test.ps
===================================================================
--- trunk/sandbox/manpage-writer/expected/test.ps	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected/test.ps	2024-03-25 13:17:25 UTC (rev 9591)
@@ -1,6 +1,6 @@
 %!PS-Adobe-3.0
 %%Creator: groff version 1.23.0
-%%CreationDate: Sat Mar 16 17:29:08 2024
+%%CreationDate: Mon Mar 25 12:08:09 2024
 %%DocumentNeededResources: font Times-Italic
 %%+ font Times-Roman
 %%+ font Times-Bold
@@ -441,21 +441,21 @@
 /F0 10/Times-Italic@0 SF(RST2MAN)72.63 48 Q/F1 10/Times-Roman@0 SF
 145.27(\(1\) te)1.1 F(xt processing)-.15 E F0(RST2MAN)148.4 E F1(\(1\))
 1.1 E<83>108 84 Q(xml\255schema\255catalog at)118 84 Q/F2 10/Symbol SF
-<e1>118 108 Q F1(http://xml\255schema\255catalog.origo.ethz.ch/)A F2<f1>
-A F1(And see the stars at the sk)108 144 Q(y!)-.15 E/F3 10.95
-/Times-Bold@0 SF -.11(BU)72 160.8 S(GS).11 E F1
-(Numerous mapping problems.)108 172.8 Q(1.)108 189.6 Q
+<e1>2.5 E F1(http://xml\255schema\255catalog.origo.ethz.ch/)A F2<f1>A F1
+(And see the stars at the sk)108 120 Q(y!)-.15 E/F3 10.95/Times-Bold@0
+SF -.11(BU)72 136.8 S(GS).11 E F1(Numerous mapping problems.)108 148.8 Q
+(1.)108 165.6 Q
 (Where do we get the manual section number from ? Commandline ?)123
-189.6 Q(2.)108 206.4 Q
-(docutils authors should be \214lled into section "A)123 206.4 Q
-(UTHORS".)-.55 E(3.)108 223.2 Q
-(be carefull with linebreaks in generated code.)123 223.2 Q(4.)108 240 Q
-(list items.)123 240 Q -.2(bu)5 G(llets and enumerators.).2 E F3 -.548
-(AU)72 256.8 S(THOR).548 E F1([email protected])108 268.8 Q
-(ge.net)-.18 E(Or)108 292.8 Q -.05(ga)-.18 G(nization: humankind).05 E
-(Address:)108 316.8 Q(123 Example Street)125.5 328.8 Q(Example, EX)125.5
-340.8 Q(Canada)5 E(A1B 2C3)125.5 352.8 Q F3(COPYRIGHT)72 369.6 Q F1
-(public domain Beha)108 381.6 Q .3 -.15(ve r)-.2 H(esponsible.).15 E
+165.6 Q(2.)108 182.4 Q
+(docutils authors should be \214lled into section "A)123 182.4 Q
+(UTHORS".)-.55 E(3.)108 199.2 Q
+(be carefull with linebreaks in generated code.)123 199.2 Q(4.)108 216 Q
+(list items.)123 216 Q -.2(bu)5 G(llets and enumerators.).2 E F3 -.548
+(AU)72 232.8 S(THOR).548 E F1([email protected])108 244.8 Q
+(ge.net)-.18 E(Or)108 268.8 Q -.05(ga)-.18 G(nization: humankind).05 E
+(Address:)108 292.8 Q(123 Example Street)125.5 304.8 Q(Example, EX)125.5
+316.8 Q(Canada)5 E(A1B 2C3)125.5 328.8 Q F3(COPYRIGHT)72 345.6 Q F1
+(public domain Beha)108 357.6 Q .3 -.15(ve r)-.2 H(esponsible.).15 E
 188.17(0.0.1 2009-06-22)72 768 R(5)205.67 E 0 Cg EP
 %%Trailer
 end

Modified: trunk/sandbox/manpage-writer/expected-mandoc/characters.ascii
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/characters.ascii	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/characters.ascii	2024-03-25 13:17:25 UTC (rev 9591)
@@ -12,7 +12,6 @@
 
        resulting in.
 
-
        hhggiiggnnoorree(5) <hgignore.5.html> , hhggrrcc(5) <hgrc.5.html>
 
 

Modified: trunk/sandbox/manpage-writer/expected-mandoc/characters.man
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/characters.man	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/characters.man	2024-03-25 13:17:25 UTC (rev 9591)
@@ -46,7 +46,6 @@
 .sp
 resulting in.
 .sp
-
 .UR hgignore.5.html
 \fBhgignore\fP(5)
 .UE

Modified: trunk/sandbox/manpage-writer/expected-mandoc/characters.utf8
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/characters.utf8	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/characters.utf8	2024-03-25 13:17:25 UTC (rev 9591)
@@ -12,7 +12,6 @@
 
        resulting in.
 
-
        hhggiiggnnoorree(5) <hgignore.5.html> , hhggrrcc(5) <hgrc.5.html>
 
 

Modified: trunk/sandbox/manpage-writer/expected-mandoc/references.man
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/references.man	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/references.man	2024-03-25 13:17:25 UTC (rev 9591)
@@ -124,7 +124,6 @@
 .UE
  home page for info.
 .sp
-
 .UR mailto:[email protected]
 Write to me
 .UE

Modified: trunk/sandbox/manpage-writer/expected-mandoc/references.ps
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/references.ps	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/references.ps	2024-03-25 13:17:25 UTC (rev 9591)
@@ -204,32 +204,32 @@
 148.357(page)c
 171.875(for)c
 187.451(info.)c
-118.415 425.986(Write)s
+118.415 441.375(Write)s
 146.212(to)c
 157.520(me)c
 173.712(<mailto:[email protected]>)c
-121.165 410.597(with)s
+121.165 425.986(with)s
 143.473(your)c
 166.386(questions.)c
-118.415 379.819(The)s
+118.415 395.208(The)s
 138.270(one-liner)c
 180.730(<https://docutils.sourceforge.io/rst.html>)c
-121.165 364.430(and)s
+121.165 379.819(and)s
 139.799(starts-on-this-line)c
 220.154(<https://docutils.sourceforge.net/rst.html>)c
-121.165 349.041(or)s
+121.165 364.430(or)s
 133.078(entirely-below)c
 199.980(<https://docutils.sourceforge.net/rst.html>)c
-121.165 333.652(point)s
+121.165 349.041(point)s
 146.531(to)c
 157.839(<https://docutils.sourceforge.io/rst.html>)c
-121.165 318.263(and)s
+121.165 333.652(and)s
 139.799(in)c
 151.107(man)c
 172.799(are)c
 188.980(...)c
 199.980(?)c
-118.415 287.485(Escaped)s
+118.415 302.874(Escaped)s
 157.817(whitespace)c
 209.440(is)c
 219.527(preserved)c
@@ -237,14 +237,14 @@
 276.947(intentional)c
 326.755(spaces,)c
 360.965(e.g.:)c
-118.415 256.707(some)s
+118.415 272.096(some)s
 144.386(reference)c
 188.045(<../local>)c
-121.165 241.318(to)s
+121.165 256.707(to)s
 132.473(a)c
 140.107(local)c
 164.241(path.)c
-118.415 210.540(Anonymous)s
+118.415 225.929(Anonymous)s
 174.944(hyperlink)c
 219.857(references)c
 267.795(are)c
@@ -255,7 +255,7 @@
 423.280(instead)c
 457.193(of)c
 469.106(one:)c
-118.415 179.762(See)s
+118.415 195.151(See)s
 137.049(the)c
 153.241(web)c
 174.317(site)c
@@ -266,7 +266,7 @@
 320.661(language)c
 363.121(<https://www.python.org>)c
 483.395(.)c
-118.415 148.984(Anonymous)s
+118.415 164.373(Anonymous)s
 174.944(targets)c
 207.020(begin)c
 234.212(with)c

Modified: trunk/sandbox/manpage-writer/expected-mandoc/references.utf8
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/references.utf8	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/references.utf8	2024-03-25 13:17:25 UTC (rev 9591)
@@ -60,7 +60,6 @@
        See the Python <https://www.python.org>
         home page for info.
 
-
        Write to me <mailto:[email protected]>
         with your questions.
 

Modified: trunk/sandbox/manpage-writer/expected-mandoc/test.man
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/test.man	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/test.man	2024-03-25 13:17:25 UTC (rev 9591)
@@ -409,7 +409,6 @@
 This is a file.
 .SH SEE ALSO
 .sp
-
 .UR http://docutils.sourceforge.net
 docutils
 .UE
@@ -421,7 +420,6 @@
 .INDENT 0.0
 .IP \(bu 2
 xml\-schema\-catalog at
-
 .UR http://xml\-schema\-catalog.origo.ethz.ch/
 .UE
 

Modified: trunk/sandbox/manpage-writer/expected-mandoc/test.ps
===================================================================
--- trunk/sandbox/manpage-writer/expected-mandoc/test.ps	2024-03-25 13:15:31 UTC (rev 9590)
+++ trunk/sandbox/manpage-writer/expected-mandoc/test.ps	2024-03-25 13:17:25 UTC (rev 9591)
@@ -910,24 +910,24 @@
 68.024 533.709(SEE)s
 91.564(ALSO)c
 f0
-87.274 502.931(docutils)s
+87.274 518.320(docutils)s
 124.861(<http://docutils.sourceforge.net>)c
 f1
-87.274 456.764(rst2xml)s
+87.274 472.153(rst2xml)s
 f0
 123.321(\(dummy\))c
-87.274 425.986(More)s
+87.274 441.375(More)s
 113.850(information)c
 168.542(can)c
 186.560(be)c
 199.694(found)c
 228.107(about)c
-87.274 395.208(+)s
+87.274 410.597(+)s
 87.626(o)c
 98.978(xml-schema-catalog)c
 190.927(at)c
-98.274 364.430(<http://xml-schema-catalog.origo.ethz.ch/>)s
-118.415 318.263(And)s
+201.619(<http://xml-schema-catalog.origo.ethz.ch/>)c
+118.415 364.430(And)s
 140.107(see)c
 156.904(the)c
 173.096(stars)c
@@ -935,12 +935,12 @@
 206.701(the)c
 222.893(sky!)c
 f1
-68.024 287.485(BUGS)s
+68.024 333.652(BUGS)s
 f0
-87.274 272.096(Numerous)s
+87.274 318.263(Numerous)s
 135.850(mapping)c
 177.100(problems.)c
-87.274 241.318(1.)s
+87.274 287.485(1.)s
 103.774(Where)c
 135.839(do)c
 149.589(we)c
@@ -953,7 +953,7 @@
 327.085(?)c
 334.719(Commandline)c
 399.806(?)c
-87.274 210.540(2.)s
+87.274 256.707(2.)s
 103.774(docutils)c
 141.361(authors)c
 176.495(should)c
@@ -962,7 +962,7 @@
 247.687(into)c
 267.553(section)c
 301.466("AUTHORS".)c
-87.274 179.762(3.)s
+87.274 225.929(3.)s
 103.774(be)c
 116.908(carefull)c
 153.252(with)c
@@ -970,7 +970,7 @@
 223.520(in)c
 234.828(generated)c
 280.335(code.)c
-87.274 148.984(4.)s
+87.274 195.151(4.)s
 103.774(list)c
 119.977(items.)c
 152.064(bullets)c
@@ -977,9 +977,11 @@
 184.151(and)c
 202.785(enumerators.)c
 f1
-68.024 118.206(AUTHOR)s
+68.024 164.373(AUTHOR)s
 f0
-87.274 102.817([email protected])s
+87.274 148.984([email protected])s
+87.274 118.206(Organization:)s
+150.513(humankind)c
 f0
 68.024 739.233(RST2MAN\(1\))s
 274.362(text)c
@@ -991,21 +993,19 @@
 showpage
 %%Page: 8 8
 f0
-87.274 702.988(Organization:)s
-150.513(humankind)c
-87.274 672.210(Address:)s
-106.524 656.821(123)s
+87.274 702.988(Address:)s
+106.524 687.599(123)s
 125.774(Example)c
 167.629(Street)c
-106.524 641.432(Example,)s
+106.524 672.210(Example,)s
 151.129(EX)c
 171.292(Canada)c
-106.524 626.043(A1B)s
+106.524 656.821(A1B)s
 130.053(2C3)c
 f1
-68.024 595.265(COPYRIGHT)s
+68.024 626.043(COPYRIGHT)s
 f0
-87.274 579.876(public)s
+87.274 610.654(public)s
 117.524(domain)c
 153.274(Behave)c
 189.013(responsible.)c

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



_______________________________________________
Docutils-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/docutils-checkins
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.