To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87965
                 Issue #|87965
                 Summary|OOo XSystemShellExecute treats all parameters as one
               Component|framework
                 Version|OOo 2.4.0
                Platform|All
                     URL|https://bugs.edge.launchpad.net/ubuntu/+source/openoff
                        |ice.org/+bug/213052
              OS/Version|Linux
                  Status|UNCONFIRMED
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|tm
             Reported by|ccheney





------- Additional comments from [EMAIL PROTECTED] Sun Apr  6 21:09:14 +0000 
2008 -------
>From the Ubuntu bug report:

http://lxr.go-oo.org/source/api/offapi/com/sun/star/system/XSystemShellExecute.idl

offapi/com/sun/star/system/XSystemShellExecute.idl

"
@param aParameter
Specifies a list of space separated parameters. The method does not
validate the given parameters, but only passes it as a parameter to the
specified command.
"

This should be a list of parameters not a space separated string. Otherwise
calling a shell script that prints its args (which will break running real code)
will return something like this:

arg 1 - $1 = "foo bar baz"
arg 2 - $2 = ""
arg 3 - $3 = ""
all args - $@ = "foo bar baz"

instead of what it should:

arg 1 - $1 = "foo"
arg 2 - $2 = "bar"
arg 3 - $3 = "baz"
all args - $@ = "foo bar baz"

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to