Re: [dev] Wiki Extension: DynamicPageList2

2006-06-13 Thread Stefan Taxhet

Hi,

I'm glad to see that you - as many others - use the Wiki extensively.

The mediawiki extension you suggest looks very helpful. Let's see 
whether it will work with the mediawiki version we are running  because 
the description talks about 1.6.5.


It seems you are interested to join us and help with the
administration :-)
At least I would appreciate if you could take on the installation and
maintenance of the extension.

Greetings
Stefan


Kay Ramme - Sun Germany - Hamburg wrote:

Stefan, Michael,



you are maintaining the OOo wiki, any comments on this extension?

Thanks

Kay

Kay Ramme - Sun Germany - Hamburg wrote:


Hi all,

could we add this

 http://meta.wikimedia.org/wiki/DynamicPageList2

extension to the OOo wiki? It allows to generate page lists of 
particular categories (similar to what I try to achieve with my 
redirects in the UNO Wiki 
(http://wiki.services.openoffice.org/wiki/Uno) :-) .


Kay

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



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



[dev] Mozilla and Open Office

2006-06-13 Thread Willi Liesinger
Hi developers

I already took a look into the sourcecode in:
~/OOo_2.0.2rc4_src/OOB680_m5/extensions/source
where the plugin is handled but it seems, that only if ActiveX is used the
Writer or Calc
can be configured as writeable with
PARAM NAME=readonly
VALUE=false.

In Mozilla it does not work.
We want to embed your OpenOffice into Mozilla XUL environment,
fetch documents from a WebDAV space, edit it and write it back.

Question:

Is it possible to configure the OpenOffice-Mozilla plugin in that
way, that the document is editable and writeable back into a
webDav-environment ?

Thank you for your help

Willi Liesinger

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



[dev] Please Help Me

2006-06-13 Thread Steven Sagers
I am interested in help Open Office and Star office. I need help getting 
Started.  Can you Help Me?  I have lots of Ideas.  
   
  Thanks
   
  Sincerely Yours
   
  Sages
   

 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: [dev] Changing the default Java for OOo from command line

2006-06-13 Thread Tobias Krais
Hi Joachim,

 I read that OOo framework knows two modes: application mode and direct
 mode. Direct mode is what I need, because it does not read existing
 configuration. How can I start soffice or unopkg in direct mode?

 The problem with OOo is that it is configured to use application mode.
 That is, all java-related settings are made persistent and the options
 dialog relies on the persistend data. To this end there is jvmfwkrc
 which contains a path to the javasettings_xyz.xml.
 
 However you could of course try the direct mode. But bear in mind that
 the options dialog is not prepared to deal with it. You may run into
 trouble here.

It seems that won't matter. If I start OOo like this: soffice
-env:UNO_JAVA_JFW_JREHOME=file:///usr/lib/jvm/java-1.5.0-sun-1.5.0.06/
the content of the Java options dialog will be greyed out and the
selected JRE is showed. See below...

 What must my jvmfwk3rc look like for direct mode? Is this OK:
 -%-
 [Bootstrap]
 UNO_JAVA_JFW_ENV_JREHOME=true
 UNO_JAVA_JFW_ENV_CLASSPATH=true
 UNO_JAVA_JFW_VENDOR_SETTINGS=javavendors.xml
 -%-

 You've got this certainly from your build environment. The direct mode
 was initially designed to support java in the build environment where
 there are no user settings.
 
 The jvmfwk3rc above may work if you adapt the path to the
 javavendors.xml. Have also a look into the jvmfwk3rc in the program
 directory of your office. It contains a variable:
 UNO_JAVA_JFW_CLASSPATH_URLS
 which contains jar files which are put on the class path. I am not sure
 if this value is also used if using direct mode.

This seems to be uninteresting if I look to the solution below.

 The header jvmfwk/framework.h contains also some helpful information.
 There is also a variable UNO_JAVA_JFW_JREHOME which can be used to point
 directly to a JRE. The paths have to be file URLs. You could for example
 start soffice this way.
 
 soffice -env:UNO_JAVA_JFW_JREHOME=file:///java/myJRE

That seems to solve my problem, as i wrote above.

 I am not sure if this automatically overrides the value from the user
 settings. But if you remove UNO_JAVA_JFW_USER_DATA and perhaps
 UNO_JAVA_JFW_SHARED_DATA then it may work.

Seems to be not necessary.

[...]

Now I want to do a second step. I want to use unopkg to register a
uno.pkg. The registration itself does not work with FSF JRE 1.4, but
with JRE 1.5, although the package itself works with JRE 1.3 and above.
How can I change the Variable UNO_JAVA_JFW_JREHOME for the unopkg call?
unopkg does not support the -env command. How can I solve this?

Greetings, Tobias

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



[dev] bookmark deletion

2006-06-13 Thread Knut Olav Bøhmer

Hi,

Let me know if this is the wrong place to ask this question and if it
is, where to to post it so I'll get an answer

I'm translating word macros to OpenOffice.org, and I experience some
turbulence...
the word macros uses a lot of bookmarks to keep track of where in the
document we are working .
The problem that I have is that bookmarks are deleted, when they should
not be deleted, and I need a solution for this.

example:

I search for some text:

SearchDescriptor = ThisComponent.createSearchDescriptor()
SearchDescriptor.SearchString = %%%START
Match = ThisCompnent.findFirst(SearchDescriptor)
Match.setString()
Bookmark = ThisComponent.createInstance(com.sun.star.text.Bookmark)
Bookmark.Name = START


Then Later I do:
Cursor.gotoRange(
ThisComponent.bookmarks.getByName(START).getAnchor(), False)
Cursor.gotoRange( ThisComponent.bookmarks.getByName(END).getAnchor(),
True)
Cursor.setString() ' Here goes my bookmarks! How can I keep them?


Or if I do
Cursor.gotoRange(
ThisComponent.bookmarks.getByName(START).getAnchor(), False)
Cursor.insertDocumentFromURL(SomeURL, Array())

REM then the bookmark is moved to the end, and I'm not able to track
where I started.

There is also other places where bookmarks disappears.Basically
everywhere where i work with bookmarks and inserts something next to
them, or delete text which is next to them. Special problem is if i do
search and replace, and some text next to a bookmark is replaced.
Could I insert a controllcaracher that would make sure they don't get
deleted.

I think, that if one would resolve this, it would make it much easier
for people to convert their macros from word to OpenOffice.org, and also
for the people who is working on VBA support in OpenOffice.org.

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