You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kristian Waagan (JIRA)" <de...@db.apache.org> on 2005/08/11 21:23:55 UTC

[jira] Created: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Browser title for manuals in HTML format is a non-sense default value
---------------------------------------------------------------------

         Key: DERBY-502
         URL: http://issues.apache.org/jira/browse/DERBY-502
     Project: Derby
        Type: Bug
  Components: Documentation  
    Reporter: Kristian Waagan
    Priority: Minor


The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Kim Haase (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12432145 ] 
            
Kim Haase commented on DERBY-502:
---------------------------------

Thanks very much, Andrew. That works.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Andrew McIntyre resolved DERBY-502.
-----------------------------------

    Fix Version/s: 10.3.0.0
       Resolution: Fixed

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Kim Haase (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431698 ] 
            
Kim Haase commented on DERBY-502:
---------------------------------

This is actually two separate problems, neither of which I can figure out how to solve.

For the HTML frames version, what happens is that the ant target html.dita (in build.xml) just copies the file index.html from the DITA-OT1.1.2.1/resource/ directory. If it were possible to edit the file after the copy to change "Web Sample" to the title of the particular book being generated, that would fix the bug. I don't know if there is an ant task that would do this.

The "XSL FO Document" string comes from the lib/fo2html.xsl file:

<xsl:template match="fo:root">
  <html>
    <head>
      <title>
        <xsl:choose>
          <xsl:when test="descendant::fo:title[1]">
            <xsl:value-of select="fo:title"/>
          </xsl:when>
          <xsl:otherwise>XSL FO Document</xsl:otherwise>
        </xsl:choose>
      </title>
      .....

But I can't figure out where the "fo:title" would come from. I'm too ignorant of XSL. Perhaps someone else can help.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>            Priority: Minor
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431993 ] 
            
Andrew McIntyre commented on DERBY-502:
---------------------------------------

No. For some reason, Ant doesn't detect that the stylesheet has been updated and copy it over to the toolkit again. To fix this, remove DITA-OT1.1.2.1/xsl/dita2fo-shell.xsl (or the whole toolkit if you have the DITA toolkit zip in your lib directory) and run any build.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Jean T. Anderson updated DERBY-502:
-----------------------------------

    Fix Version/s: 10.2.2.0

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0, 10.2.2.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Reopened: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Jean T. Anderson reopened DERBY-502:
------------------------------------

             
Reopening to change fix version from 10.2.2.0 to 10.2.1.0. Jira will get updated with the right version number for the release version of 10.2.1.x.


> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0, 10.2.1.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431733 ] 
            
Andrew McIntyre commented on DERBY-502:
---------------------------------------

I have fixes for both of these issues. Ant should replace the default Web Sample with the name of the manual while copying over the index.html using a <filterchain>. For the HTML Books and PDFs, our dita2fo-shell.xsl file should be generating an <fo:title> block. I'll produce a patch shortly for review.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Kim Haase (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431992 ] 
            
Kim Haase commented on DERBY-502:
---------------------------------

I did an svn update on the trunk and have been building some HTML single books and am still seeing "XSL FO Document." Are you saying there is something else still to be committed?

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Andrew McIntyre reassigned DERBY-502:
-------------------------------------

    Assignee: Andrew McIntyre

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Jean T. Anderson closed DERBY-502.
----------------------------------

    Resolution: Fixed

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.2.2.0, 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Reopened: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Daniel John Debrunner (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Daniel John Debrunner reopened DERBY-502:
-----------------------------------------

             
The HTML books still have the title XSL FO Document.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Daniel John Debrunner (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431935 ] 
            
Daniel John Debrunner commented on DERBY-502:
---------------------------------------------

Nice, makes it much easier to find the correct window - thanks.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Kim Haase (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431928 ] 
            
Kim Haase commented on DERBY-502:
---------------------------------

Thank you so much for fixing this, Andrew! I was hoping you would have the knowhow to do that. I really appreciate it.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Jean T. Anderson closed DERBY-502.
----------------------------------

    Fix Version/s: 10.2.1.0
                       (was: 10.2.2.0)
       Resolution: Fixed

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.2.1.0, 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Reopened: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Jean T. Anderson (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Jean T. Anderson reopened DERBY-502:
------------------------------------

             
Reopening to set fix version to include 10.2 (was included in 9/1/06 mega-merge).

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0, 10.2.2.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Andrew McIntyre closed DERBY-502.
---------------------------------


Verified that the HTML Books on the website now show the correct titles. Tuning and Working With Derby still show "XSL FO Document," but I believe the transfer to people.apache.org was still occurring when the sync to the live website happened.

Closing this issue.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-502?page=all ]

Andrew McIntyre resolved DERBY-502.
-----------------------------------

    Resolution: Fixed

Nightly build issue caused the html books on the website not to use the updated stylesheet. This will be fixed in tomorrow night's build.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (DERBY-502) Browser title for manuals in HTML format is a non-sense default value

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-502?page=comments#action_12431748 ] 
            
Andrew McIntyre commented on DERBY-502:
---------------------------------------

Committed to trunk with revision 438714.

Note that I did not update the Brazilian Portuguese manuals with their correct titles because I could not get my editor to insert the proper characters into the build files. Halley, if you see this and you have a moment, please update the manual.title parameters to the correct values for the pt_BR manuals when you have the time.

> Browser title for manuals in HTML format is a non-sense default value
> ---------------------------------------------------------------------
>
>                 Key: DERBY-502
>                 URL: http://issues.apache.org/jira/browse/DERBY-502
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Kristian Waagan
>         Assigned To: Andrew McIntyre
>            Priority: Minor
>             Fix For: 10.3.0.0
>
>
> The browser title for manuals in HTML format is not set to reflect the title of the manual itself. All manuals in HTML book format has title "XSL FO Document", while the HTML single manuals have title "Web Sample". Since the Derby documentation is separated into several manuals, this makes it hard to navigate when you have several/all manuals open in your browser.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira