Issue 79847 - Customize toolbar dialog has no descriptions
Summary: Customize toolbar dialog has no descriptions
Status: CLOSED FIXED
Alias: None
Product: General
Classification: Code
Component: ui (show other issues)
Version: 680m218
Hardware: All Windows XP
: P2 Trivial (vote)
Target Milestone: OOo 2.3
Assignee: carsten.driesner
QA Contact: issues@framework
URL:
Keywords: regression
: 79589 (view as issue list)
Depends on:
Blocks:
 
Reported: 2007-07-20 22:36 UTC by Regina Henschel
Modified: 2007-08-10 10:11 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Regina Henschel 2007-07-20 22:36:18 UTC
Click on the right triangle of a toolbar.
Click on 'Customize toolbar'.
Click on 'Add' button.
Click on any command.
Watch, that no command has a description.

Is OK in stable build OOo2.2.1.
Comment 1 carsten.driesner 2007-07-25 13:47:34 UTC
cd: Confirmed.
Comment 2 carsten.driesner 2007-07-25 13:48:47 UTC
cd: Set priority to P2 as a whole feature is now completely broken.

cd->ab: Please have a look. The retrieval of help content using the command URL
doesn't work anymore. There must be something broken as m217 work without any
problem.
Comment 3 ab 2007-07-25 15:24:08 UTC
ab->cmc: I've analyzed the problem and found that it indeed starts with m218.
That's where helplinker01redux was integrated and if I understand your comments
correctly that's - because of the Solaris problems solved in helplinker01redux -
also the first minor where the new helplinker mechanism really was used.

For testing I used a m217 (without the issue) and a m219. I found that the pro-
blem is caused by a failing access to office_inst\help\en\swriter.ht file in
xmlhelp\source\cxxhelp\provider\databases.cxx, Databases::setActiveText(). In 
m217 getting data for e.g. Id = ".uno%3AOpen" succeeds whereas in m219 using 
the same Id fails. Copying the swriter.ht file from m217 to m219 installation
fixes the problem. But the text that should be found (e.g. "Opens or imports a
file" for Open) isn't missing in the m219 ht file (it's even contained four
times there compared to three times in m217), but it cannot be accessed.

So obviously the swriter.ht file built with the new helplinker became incom-
patible somehow. Please have a look.
Comment 4 caolanm 2007-07-25 15:48:00 UTC
I'll take a look
Comment 5 caolanm 2007-07-25 16:04:23 UTC
Converting a query for e.g. .uno%3ACharFontName to .uno:CharFontName makes it
work, so this boils down to a url encoding thingy.

Should be easy to fix. Either the helpcompiler needs to url-encode ":" when
writing these ids on creating helpcontent, or the originator of them shouldn't
encode, presumably as it used to work the standard is to url-encode the ids in
the helpcontent itself.
Comment 6 caolanm 2007-07-25 17:28:50 UTC
easy peasy, 

 namespace URLEncoder
 {
     static std::string encode(const std::string &rIn)
     {
-        const char *good = "!$&'()*+,-.:=@_";
+        const char *good = "!$&'()*+,-.=@_";
         static const char hex[17] = "0123456789ABCDEF";

the original jave urlencode clearly considers ":" to be an unsafe char that
needs escaping, so just remove from the "good" list

fixed in cmcfixes36
Comment 7 caolanm 2007-07-28 15:00:19 UTC
want to verify this in cmcfixes37, installsets at
http://ooo.services.openoffice.org/pub/OpenOffice.org/cws/upload/cmcfixes37/

If you want alternatively extract the patch and run it through in a separate
workspace then go ahead and I'll back it out of this workspace.
Comment 8 carsten.driesner 2007-07-30 10:05:21 UTC
cd: Verified on CWS.
Comment 9 pb 2007-07-30 12:42:38 UTC
*** Issue 79589 has been marked as a duplicate of this issue. ***
Comment 10 Uwe Fischer 2007-07-30 15:33:18 UTC
may I ask you to have a look at issue 62326 ?
Comment 11 carsten.driesner 2007-08-10 10:11:16 UTC
cd: Verified on master. Closed.