[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-09 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759





--- Additional comments from [EMAIL PROTECTED] Thu Oct  9 14:10:25 + 
2008 ---
-env is described at
http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Bootstrapping,
URE_MORE_JAVA_TYPES is described at
http://www.openoffice.org/servlets/ReadMsg?list=interface-announcemsgNo=1096

-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-09 Thread pmladek
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759





--- Additional comments from [EMAIL PROTECTED] Thu Oct  9 13:56:16 + 
2008 ---
Thanks a lot for the hint. I'll use the solution.

BTW: Is it somewhere documented? ;-)

If you run regcomp without parameters, it prints help but it does not mention
the -evn option.

I think that I tried to google URE_MORE_JAVA_TYPES when I looked for a solution.
The best info was at
http://wiki.services.openoffice.org/wiki/ODF_Toolkit/Efforts/OOo_without_URE but
it was not enough.

-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-08 Thread kr
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759


User kr changed the following:

What|Old value |New value

 Assigned to|kr|sb





--- Additional comments from [EMAIL PROTECTED] Wed Oct  8 07:36:12 + 
2008 ---
Hey Stephan, now it is yours ... :-)


-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-08 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759


User sb changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Wed Oct  8 14:52:14 + 
2008 ---
The patch is not needed.  What works out of the box is

/opt/openoffice.org/ure/bin/regcomp -register -r test.rdb -c
file:///opt/openoffice.org/basis3.0/program/classes/agenda.jar -br
file:///opt/openoffice.org/ure/share/misc/types.rdb -br
file:///opt/openoffice.org/ure/share/misc/services.rdb
-env:URE_MORE_JAVA_TYPES=file:///opt/openoffice.org/basis3.0/program/classes/unoil.jar

(The two -br arguments unfortunately appear to be necessary when trying to
register any jar component; the -env:URE_MORE_JAVA_TYPES argument is necessary
to let agenda.jar find the non-URE UNO types.)

-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-08 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759


User sb changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Oct  8 14:53:42 + 
2008 ---
.

-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-07 Thread pmladek
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759
 Issue #|94759
 Summary|regcomp ignores  -classpath
   Component|udk
 Version|OOO300m9
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|kr
 Reported by|pmladek





--- Additional comments from [EMAIL PROTECTED] Tue Oct  7 21:01:12 + 
2008 ---
I rather explain the whole background.

We are playing with split OOo build. It means that we build some modules, for
example ure, separately. We build the rest against the libraries and headers
that are already instlled on the system.

We have problems to register the java components, for example agenda.jar, using
the already installed URE. It means that we are using the already installed
regcomp and jvmfwk3rc. agenda.jar needs unoil.jar in the CLASSPATH but I am not
able to pass it to the regcomp. It ignores the CLASSPATH environmnet variable
and also the -classpath option.

I have temporary solved it by a hack in jvmfwk/source/fwkutil.hxx, see the
attached path. It allows to replace the jvmfwk3rc from the system by another one
that is similar to the one that is in solver during the non-slit build 
installation.

Is it correct that regcomp -classpath is ignored?

Do we really need a special jvmfwk3rc when the basic java components are 
registered?

-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-07 Thread pmladek
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759


User pmladek changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57054)
Hack in jvmfwk/sour
|  |ce/fwkutil.hxx to allow to
|  | replace jvmfwk3rc






--- Additional comments from [EMAIL PROTECTED] Tue Oct  7 21:02:52 + 
2008 ---
Created an attachment (id=57054)
Hack in jvmfwk/source/fwkutil.hxx to allow to replace jvmfwk3rc


-
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]



[udk-issues] [Issue 94759] regcomp ignores -classpat h

2008-10-07 Thread pmladek
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94759





--- Additional comments from [EMAIL PROTECTED] Tue Oct  7 21:05:01 + 
2008 ---
Created an attachment (id=57055)
The temporary jvmfwk3rc that is needed during base java components registration


-
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]