Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65422 - trunk/tools/quickbook/test
From: dnljms_at_[hidden]
Date: 2010-09-14 16:50:52


Author: danieljames
Date: 2010-09-14 16:50:51 EDT (Tue, 14 Sep 2010)
New Revision: 65422
URL: http://svn.boost.org/trac/boost/changeset/65422

Log:
More link tests.
Added:
   trunk/tools/quickbook/test/link.gold
      - copied, changed from r65420, /trunk/tools/quickbook/test/link-side-by-side.gold
   trunk/tools/quickbook/test/link.quickbook
      - copied, changed from r65420, /trunk/tools/quickbook/test/link-side-by-side.quickbook
Removed:
   trunk/tools/quickbook/test/link-side-by-side.gold
   trunk/tools/quickbook/test/link-side-by-side.quickbook
Text files modified:
   trunk/tools/quickbook/test/Jamfile.v2 | 2 +-
   trunk/tools/quickbook/test/link.gold | 22 ++++++++++++++++++----
   trunk/tools/quickbook/test/link.quickbook | 28 +++++++++++++++++++++++++++-
   3 files changed, 46 insertions(+), 6 deletions(-)

Modified: trunk/tools/quickbook/test/Jamfile.v2
==============================================================================
--- trunk/tools/quickbook/test/Jamfile.v2 (original)
+++ trunk/tools/quickbook/test/Jamfile.v2 2010-09-14 16:50:51 EDT (Tue, 14 Sep 2010)
@@ -19,7 +19,7 @@
     [ quickbook-test code-block-teletype ]
     [ quickbook-test code-snippet ]
     [ quickbook-test preformatted ]
- [ quickbook-test link-side-by-side ]
+ [ quickbook-test link ]
     [ quickbook-test escape ]
     [ quickbook-test templates ]
     [ quickbook-test templates_1_4 ]

Deleted: trunk/tools/quickbook/test/link-side-by-side.gold
==============================================================================
--- trunk/tools/quickbook/test/link-side-by-side.gold 2010-09-14 16:50:51 EDT (Tue, 14 Sep 2010)
+++ (empty file)
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
-<article id="side_by_side_links" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
- xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Side-by-side links</title>
- <section id="side_by_side_links.side_by_side_links">
- <title>Side-by-side links</title>
- <para>
- <link linkend="x">x</link> and <link linkend="y">y</link> are two distinct
- links, which should be separated by whitespace when they appear together as
- in <link linkend="x">x</link> <link linkend="y">y</link>. Also in <link linkend="x">x</link>
- <link linkend="y">y</link>, and in <link linkend="x">x</link> <link linkend="y">y</link>
- as well.
- </para>
- </section>
-</article>

Deleted: trunk/tools/quickbook/test/link-side-by-side.quickbook
==============================================================================
--- trunk/tools/quickbook/test/link-side-by-side.quickbook 2010-09-14 16:50:51 EDT (Tue, 14 Sep 2010)
+++ (empty file)
@@ -1,13 +0,0 @@
-[article Side-by-side links
-]
-
-[section Side-by-side links]
-
-[link x] and [link y] are two distinct links, which should be separated by
-whitespace when they appear together as in [link x] [link y]. Also in [link x]
-[link y], and in
-[link x]
-[link y]
-as well.
-
-[endsect]

Copied: trunk/tools/quickbook/test/link.gold (from r65420, /trunk/tools/quickbook/test/link-side-by-side.gold)
==============================================================================
--- /trunk/tools/quickbook/test/link-side-by-side.gold (original)
+++ trunk/tools/quickbook/test/link.gold 2010-09-14 16:50:51 EDT (Tue, 14 Sep 2010)
@@ -1,9 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
-<article id="side_by_side_links" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
- xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Side-by-side links</title>
- <section id="side_by_side_links.side_by_side_links">
+<article id="link_tests" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $" xmlns:xi="http://www.w3.org/2001/XInclude">
+ <title>Link tests</title>
+ <section id="link_tests.different_types_of_links">
+ <title>Different types of links</title> <anchor id="link-id" />
+ <para>
+ <ulink url="http://www.boost.org/">http://www.boost.org/> <ulink url="http://www.boost.org/">Boost</ulink>
+ <link linkend="link-id">link-id</link> <link linkend="link-id">Link Text</link>
+ <functionname alt="foo">foo</functionname> <functionname alt="foo">link text</functionname>
+ <classname alt="foo">foo</classname> <classname alt="foo">link text</classname>
+ <methodname alt="foo">foo</methodname> <methodname alt="foo">link text</methodname>
+ <enumname alt="foo">foo</enumname> <enumname alt="foo">link text</enumname>
+ <macroname alt="foo">foo</macroname> <macroname alt="foo">link text</macroname>
+ <headername alt="foo">foo</headername> <headername alt="foo">link text</headername>
+ <conceptname alt="foo">foo</conceptname> <conceptname alt="foo">link text</conceptname>
+ <globalname alt="foo">foo</globalname> <globalname alt="foo">link text</globalname>
+ </para>
+ </section>
+ <section id="link_tests.side_by_side_links">
     <title>Side-by-side links</title>
     <para>
       <link linkend="x">x</link> and <link linkend="y">y</link> are two distinct

Copied: trunk/tools/quickbook/test/link.quickbook (from r65420, /trunk/tools/quickbook/test/link-side-by-side.quickbook)
==============================================================================
--- /trunk/tools/quickbook/test/link-side-by-side.quickbook (original)
+++ trunk/tools/quickbook/test/link.quickbook 2010-09-14 16:50:51 EDT (Tue, 14 Sep 2010)
@@ -1,6 +1,32 @@
-[article Side-by-side links
+[article Link tests
 ]
 
+[section Different types of links]
+
+[@http://www.boost.org/]
+[@http://www.boost.org/ Boost]
+[link link-id]
+[link link-id Link Text]
+[#link-id]
+[funcref foo]
+[funcref foo link text]
+[classref foo]
+[classref foo link text]
+[memberref foo]
+[memberref foo link text]
+[enumref foo]
+[enumref foo link text]
+[macroref foo]
+[macroref foo link text]
+[headerref foo]
+[headerref foo link text]
+[conceptref foo]
+[conceptref foo link text]
+[globalref foo]
+[globalref foo link text]
+
+[endsect]
+
 [section Side-by-side links]
 
 [link x] and [link y] are two distinct links, which should be separated by


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk