crossley 2002/06/02 20:28:42
Modified: src/documentation/content/xdocs document-v11.xml
Log:
Clarify the current behaviour and differences between "link" and "jump".
Revision Changes Path
1.7 +19 -15 xml-forrest/src/documentation/content/xdocs/document-v11.xml
Index: document-v11.xml
===================================================================
RCS file: /home/cvs/xml-forrest/src/documentation/content/xdocs/document-v11.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- document-v11.xml 21 May 2002 21:16:16 -0000 1.6
+++ document-v11.xml 3 Jun 2002 03:28:42 -0000 1.7
@@ -42,39 +42,43 @@
<dd>Use this to
<link href="#section"
title="Example of a document via local anchor">link</link>
- (jump?) to the named anchor in the current document.
+ to the named anchor in the current document.
</dd>
<dt><code><link href="contrib.html#cvshowto"></code></dt>
<dd>Use this to
<link href="contrib.html#cvshowto"
title="Example of a document via link and anchor">link</link>
- to another document and jump to the named anchor. This will open
+ to another document and go to the named anchor. This will open
the new document in the same browser window.
-(FIXME: So why do we need "jump"?)
</dd>
- <dt><code><jump href="contrib.html" anchor="cvshowto"></code></dt>
+ <dt><code><jump href="contrib.html"></code></dt>
<dd>Use this to
-<!--
- <jump href="contrib.html" anchor="cvshowto"
+ <jump href="contrib.html"
title="Example of a document via jump">jump</jump>
--->
-jump
- to another document and optionally to a named anchor within that
- document
-(FIXME: The document2html.xsl and document-v11.dtd do not have the anchor
-attribute anymore?)
+ to another document and optionally go to a named
+ <jump href="contrib.html#cvshowto"
+ title="Example of a document via jump to anchor">anchor</jump>
+ within that document. This will open the new document in the same
+ browser window. So what is the difference between link and jump?
+ The jump behaves differently, in that it will replace any frames
+ in the current window.
+ This is the equivalent of
+ <code><a ... target="_top"></code>
</dd>
<dt><code><fork href="faq.html"></code></dt>
<dd>Use this to
<fork href="faq.html"
title="Example of a document via fork">fork</fork>
- your webbrowser to another document. This should open the document
- in a new browser window (depending on the capabilities of your
- browser).</dd>
+ your webbrowser to another document. This will open the document
+ in a new, unnamed browser window.
+ This is the equivalent of
+ <code><a ... target="_blank"></code>
+ </dd>
</dl></li>
+
<li>Oh, by the way, a definition list <code><dl></code>
was used inside
the previous list item. We could put another
<ul>
|