[framework-issues] [Issue 112542] soffice doesn't do enough to resolve $0 symlink

2010-08-03 Thread jsk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112542


User jsk changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from j...@openoffice.org Tue Aug  3 07:52:51 + 
2010 ---
I've seen that the patch has been applied to the source code and that it appears
not to create any unwanted side-effects on Linux.

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 112542] soffice doesn't do enough to resolve $0 symlink

2010-07-15 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112542


User sb changed the following:

What|Old value |New value

 Assigned to|sb|jsk





--- Additional comments from s...@openoffice.org Thu Jul 15 08:24:45 + 
2010 ---
@jsk: please verify

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 112542] soffice doesn't do enough to resolve $0 symlink

2010-06-23 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112542


User sb changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from s...@openoffice.org Wed Jun 23 08:48:22 + 
2010 ---
fixed as http://hg.services.openoffice.org/cws/sb126/rev/daa62d717a7a

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 112542] soffice doesn't do enough to resolve $0 symlink

2010-06-22 Thread mba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112542


User mba changed the following:

What|Old value |New value

 Assigned to|mba   |sb





--- Additional comments from m...@openoffice.org Tue Jun 22 12:03:51 + 
2010 ---
Stephan, please take over

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 112542] soffice doesn't do enough to resolve $0 symlink

2010-06-22 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112542


User sb changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |STARTED

Target milestone|---   |OOo 3.4





--- Additional comments from s...@openoffice.org Tue Jun 22 12:40:53 + 
2010 ---
if anyone considers this useful or even necessary, so be it

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 112542] soffice doesn't do enough to resolve $0 symlink

2010-06-19 Thread pooryorick
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112542
 Issue #|112542
 Summary|soffice doesn't do enough to resolve $0 symlink
   Component|framework
 Version|OOo 3.2
Platform|Other
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|scripting
 Assigned to|mba
 Reported by|pooryorick





--- Additional comments from pooryor...@openoffice.org Sun Jun 20 04:57:15 
+ 2010 ---
the symlink resolution for soffice is only one level deep.  That's kind of
pitiful. Here's a patch to get the job done more thoroughly:

--- soffice 2010-06-20 00:24:30.959241000 -0400
+++ soffice.new 2010-06-20 00:41:57.870453000 -0400
@@ -46,15 +46,14 @@
 fi
 
 # resolve installation directory
-sd_cwd=`pwd`
-if [ -h $0 ] ; then
-   sd_basename=`basename $0`
-   sd_script=`ls -l $0 | sed s/.*${sd_basename} - //g`
-cd `dirname $0`
-cd `dirname $sd_script`
-else
-cd `dirname $0`
-fi
+sd_cwd=`pwd`
+sd_me=$0
+while [ -h $sd_me ] ; do
+   cd `dirname $sd_me`
+   sd_basename=`basename $sd_me`
+   sd_me=`ls -l $sd_basename | sed s/.*${sd_basename} - //g`
+done
+cd `dirname $sd_me`
 sd_prog=`pwd`
 cd $sd_cwd

-
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org