Closed
Bug 301031
Opened 19 years ago
Closed 19 years ago
Help button in the language editing dialog does not go anywhere
Categories
(Firefox Graveyard :: Help Documentation, defect)
Firefox Graveyard
Help Documentation
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox1.5
People
(Reporter: bugs.caleb, Assigned: bugs.caleb)
Details
Attachments
(1 file, 2 obsolete files)
|
2.39 KB,
patch
|
steffen.wilberg
:
review+
benjamin
:
approval1.8b4+
|
Details | Diff | Splinter Review |
Tools > Options > Advacned > General > Edit Languages > Help The Help button should go to the correct help entry, yet it opens the help homepage.
This fixes the problem mentioned in comment 0, but it has a side-effect. By adding a link to the Languages part of the help to firebird-toc.rdf, I've added a sub-item to Help Viewier > Options > Advanced > General. If there's a way of doing this without adding that extra sub-item, then please tell me how to do it :)
CC'ing Steffen Wilberg because he knows about help :) The reason I don't like the extra "Languages" sub-item is because it looks inconsistent. The "General" tab covers both Accessibility, Browsing and Languages, so if I add that, I might aswell add those too.. But, then this makes it look inconcistent compared to other tabs, like Security, which covers Protocols, Certificates, etc.. I'm probably taking this too far, but I'd like some advice.
Updated•19 years ago
|
Component: Preferences → Help Documentation
OS: Windows XP → All
QA Contact: preferences → help.documentation
Hardware: PC → All
Comment 3•19 years ago
|
||
displayTopic() calls getLink(), which only searches the toc, so we have to add Languages to the toc. The question is whether we can hide it. Jeff, any idea?
Comment 4•19 years ago
|
||
Comment on attachment 189585 [details] [diff] [review] patch v1.0 We can worry about cosmetic issues later if we've got the chance, so r=me.
Attachment #189585 -
Flags: review?(mconnor)
Attachment #189585 -
Flags: review+
Attachment #189585 -
Flags: approval1.8b4?
Comment 5•19 years ago
|
||
(In reply to comment #3) > displayTopic() calls getLink(), which only searches the toc, so we have to add > Languages to the toc. > > The question is whether we can hide it. Jeff, any idea? getLink() searches through the entire RDF graph for the topic. The code to display a panel, however, starts from a specific node within the RDF graph (urn:root) and works on all its descendants. Therefore, if an added node isn't a descendant of urn:root, it'll be getLink()-able but not displayable. You could probably remove everything except the innermost rdf:Description whose ID is "prefs-languages" and it'd still work. "prefs-languages" would then be an anonymous node and wouldn't be a descendant of urn:root, removing it from display. I haven't and can't test right now, tho, but this should either work or be pretty darned close to the correct fix. If this works, let's move it to the end of the file and add a comment saying all the following rdf:Descriptions are intentionally linkable but not displayable. It's easily possible that we'll need more entries like this in the future, so we might as well set up the location now.
Thanks for the help Jeff. This pretty much does what you said, and it works perfectly!
Attachment #189585 -
Attachment is obsolete: true
Attachment #189626 -
Flags: review?(jwalden+fxhelp)
Attachment #189626 -
Flags: approval1.8b4?
Attachment #189585 -
Flags: approval1.8b4?
Attachment #189626 -
Flags: approval1.8b4?
Comment 7•19 years ago
|
||
I can't test it right now either. Is "Languages" searchable? At the moment, entering "lang" in the search bar results in only HTML and XML being found.
(In reply to comment #7) > I can't test it right now either. > Is "Languages" searchable? At the moment, entering "lang" in the search bar > results in only HTML and XML being found. I get the same with the patch (v1.1) applied.
Comment 9•19 years ago
|
||
Fun. But I guess we can fix this by adding "Languages" to the index, which is only used for searching purposes in the new Help viewer. Can you try that please?
| Assignee | ||
Comment 10•19 years ago
|
||
Is this what you mean? Now "Languages" shows up whenever I type "lang" or "l" or whatever :)
Attachment #189626 -
Attachment is obsolete: true
Attachment #189660 -
Flags: review?(steffen.wilberg)
Attachment #189626 -
Flags: review?(jwalden+fxhelp)
Comment 11•19 years ago
|
||
Comment on attachment 189660 [details] [diff] [review] patch v1.2 Exactly, thanks, and r=me. Please don't forget to use the "-u" option in cvs diff. Bugzilla's patch-viewer only understands unified diffs. No need to attach a new patch though.
Attachment #189660 -
Flags: review?(steffen.wilberg)
Attachment #189660 -
Flags: review+
Attachment #189660 -
Flags: approval1.8b4?
| Assignee | ||
Comment 12•19 years ago
|
||
(In reply to comment #11) > (From update of attachment 189660 [details] [diff] [review] [edit]) > Exactly, thanks, and r=me. > > Please don't forget to use the "-u" option in cvs diff. Bugzilla's patch-viewer > only understands unified diffs. No need to attach a new patch though. > I always create patches with -u8pN, must have slipped this time!
Updated•19 years ago
|
Attachment #189660 -
Flags: approval1.8b4? → approval1.8b4+
| Assignee | ||
Comment 13•19 years ago
|
||
The patch was checked in by Gavin Sharp.
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Updated•19 years ago
|
Whiteboard: [checkin needed]
Updated•19 years ago
|
Target Milestone: --- → Firefox1.1
Updated•9 years ago
|
Product: Firefox → Firefox Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•