You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by is...@cocoondev.org on 2004/09/04 23:47:34 UTC

[JIRA] Created: (FOR-276) fork / jump functionality in document-v20

Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:
  http://issues.cocoondev.org//browse/FOR-276

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: FOR-276
    Summary: fork / jump functionality in document-v20
       Type: Improvement

     Status: Unassigned
   Priority: Minor

    Project: Forrest
 Components: 
             Forrest skins
   Versions:
             HEAD

   Assignee: 
   Reporter: Rick Tessner

    Created: Sat, 4 Sep 2004 4:45 PM
    Updated: Sat, 4 Sep 2004 4:45 PM

Description:
Document V1.x had the <fork> and <jump> elements available for defining hyperlinks.  Document V2.0 removed those elements in favour of a single <a> element.

The attached patch will restore that functionality in Document V2.0 via the use of the class attribute on <a>.

<fork href="xyz.html"> in document v1.3 would become <a href="xyz.html" class="fork"> in document v2.0.

In the same manner, <jump href="xyz.html"> becomes <a href="xyz.html" class="jump">



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.cocoondev.org//secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[JIRA] Commented: (FOR-276) fork / jump functionality in document-v20

Posted by is...@cocoondev.org.
The following comment has been added to this issue:

     Author: David Crossley
    Created: Sat, 4 Sep 2004 8:47 PM
       Body:
See discussion in the thread:
Re: fork in doc-v20?
http://marc.theaimsgroup.com/?l=forrest-dev&m=109432782804135
---------------------------------------------------------------------
View this comment:
  http://issues.cocoondev.org//browse/FOR-276?page=comments#action_11474

---------------------------------------------------------------------
View the issue:
  http://issues.cocoondev.org//browse/FOR-276

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: FOR-276
    Summary: fork / jump functionality in document-v20
       Type: Improvement

     Status: Unassigned
   Priority: Minor

    Project: Forrest
 Components: 
             Forrest skins
   Versions:
             HEAD

   Assignee: 
   Reporter: Rick Tessner

    Created: Sat, 4 Sep 2004 4:45 PM
    Updated: Sat, 4 Sep 2004 8:47 PM

Description:
Document V1.x had the <fork> and <jump> elements available for defining hyperlinks.  Document V2.0 removed those elements in favour of a single <a> element.

The attached patch will restore that functionality in Document V2.0 via the use of the class attribute on <a>.

<fork href="xyz.html"> in document v1.3 would become <a href="xyz.html" class="fork"> in document v2.0.

In the same manner, <jump href="xyz.html"> becomes <a href="xyz.html" class="jump">



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.cocoondev.org//secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[JIRA] Closed: (FOR-276) fork / jump functionality in document-v20

Posted by is...@cocoondev.org.
Message:

   The following issue has been closed.

   Resolver: David Crossley
       Date: Sat, 4 Sep 2004 9:01 PM

Many thanks again Rick. I tweaked the sample.xml to explain a bit more. Also changed the linked-to docs, because i am trying to work towards using this sample.xml in both the seed site and the main site docs.
---------------------------------------------------------------------
View the issue:
  http://issues.cocoondev.org//browse/FOR-276

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: FOR-276
    Summary: fork / jump functionality in document-v20
       Type: Improvement

     Status: Closed
   Priority: Minor
 Resolution: FIXED

    Project: Forrest
 Components: 
             Forrest skins
   Fix Fors:
             HEAD
   Versions:
             HEAD

   Assignee: 
   Reporter: Rick Tessner

    Created: Sat, 4 Sep 2004 4:45 PM
    Updated: Sat, 4 Sep 2004 9:01 PM

Description:
Document V1.x had the <fork> and <jump> elements available for defining hyperlinks.  Document V2.0 removed those elements in favour of a single <a> element.

The attached patch will restore that functionality in Document V2.0 via the use of the class attribute on <a>.

<fork href="xyz.html"> in document v1.3 would become <a href="xyz.html" class="fork"> in document v2.0.

In the same manner, <jump href="xyz.html"> becomes <a href="xyz.html" class="jump">



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.cocoondev.org//secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[JIRA] Updated: (FOR-276) fork / jump functionality in document-v20

Posted by is...@cocoondev.org.
The following issue has been updated:

    Updater: Rick Tessner (mailto:rick@onnadayr.ca)
       Date: Sat, 4 Sep 2004 4:52 PM
    Comment:
src/core/context/skins/common/xslt/html/document2html.xsl
---------------------------------------------------------

This patches fixes the <xsl:template match="link"> rather than adding an <xsl:template match="a">.  The reason for this is that document-v20 docs are first transformed to document-v13 via the docv20todocv13.xsl stylesheet.

This will transform the <a> elements into <link> elements.  These are then processed via document2html.xsl.  Hence, this patch modifies the <xsl:template match="link">.

src/core/fresh-site/src/documentation/content/xdocs/samples/sample.xml
----------------------------------------------------------------------

Added a section on the "Using class attributes on links".
    Changes:
             Attachment changed to j276-43353.patch
    ---------------------------------------------------------------------
For a full history of the issue, see:

  http://issues.cocoondev.org//browse/FOR-276?page=history

---------------------------------------------------------------------
View the issue:
  http://issues.cocoondev.org//browse/FOR-276

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: FOR-276
    Summary: fork / jump functionality in document-v20
       Type: Improvement

     Status: Unassigned
   Priority: Minor

    Project: Forrest
 Components: 
             Forrest skins
   Versions:
             HEAD

   Assignee: 
   Reporter: Rick Tessner

    Created: Sat, 4 Sep 2004 4:45 PM
    Updated: Sat, 4 Sep 2004 4:52 PM

Description:
Document V1.x had the <fork> and <jump> elements available for defining hyperlinks.  Document V2.0 removed those elements in favour of a single <a> element.

The attached patch will restore that functionality in Document V2.0 via the use of the class attribute on <a>.

<fork href="xyz.html"> in document v1.3 would become <a href="xyz.html" class="fork"> in document v2.0.

In the same manner, <jump href="xyz.html"> becomes <a href="xyz.html" class="jump">



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.cocoondev.org//secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira