[dev] Re: About OpenOffice.org

2011-03-18 Thread Konstantin Tokarev
18.03.2011, 08:24, Mapper720.Ru Admin ad...@mapper720.ru: Hello! I like OpenOffice, but it has one rather serious weak point - it works (especially OO.o Calc) more slowly, then ms excel. It would be very good to make it more fast, if you can. Out of curiosity, have you tried Gnumeric? --

Re: [dev] Need help with Open Office

2011-01-30 Thread Konstantin Tokarev
28.01.2011, 23:30, Yashavant Kulkarni yashav...@cox.net: Hello, I am importing several documents that were prepared in Micorsoft Office 2000. They have password protection both for opening and changing. I am trying to use those documents in Open Office.  I can open them by entering open

Re: [dev] contribute

2010-12-17 Thread Konstantin Tokarev
Really, though I admire Tono for his heroic effort to build OOo with gcc on Windows, it's not what I would recommend for beginners. It requires a patched version of mingw that usually only works for a limited number of OOo versions and it is even slower than the VC++ based build (that

Re: [dev] Re: Installing OpenOffice SDK and configuring NetBeans IDE

2010-12-06 Thread Konstantin Tokarev
06.12.2010, 13:14, Michael Stahl michael.x.st...@oracle.com: On 06/12/2010 02:25, Harsha Ravnikar wrote:  I downloaded SDK version 3.2.1 for the first time from  http://download.openoffice.org/sdk/index.html and extracted it.  When I run the update script that comes with the SDK, I get a

Re: [dev] Importing Filter fixes from Symphony

2010-12-02 Thread Konstantin Tokarev
Hi all any response to camille's response regarding calc filters bugs ? These bugs are stoppers regarding Calc use in many migration as an example, we just migrated my city, Voreppe (France) 200 users, to OOo but theses specific bugs lead to a growing unsatisfaction regarding the migration

Re: [dev] OOo starts working after installing VS 2008 C++ Express

2010-11-26 Thread Konstantin Tokarev
26.11.2010, 14:29, Knut Olav Bøhmer boh...@gmail.com: Hi, I had a problem with OOo, that when you start OOo it opens a restore-document-window, and crashes. When I use the -norestore option it just crashed. I tried several users on the same computer, and they (includeing Administrator) all

Re: [dev] Newbe

2010-09-05 Thread Konstantin Tokarev
Have just built OpenOffice under Ubuntu, but have run out of knowledgein how to install it (not a Linux guru). make install doesn't work for you? -- Regards, Konstantin - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org

Re: Re: [dev] OOo installation packages for Linux, a few (easy) questions

2010-08-16 Thread Konstantin Tokarev
16.08.10, 18:55, Sigrid Carrera sigrid.carr...@googlemail.com: Isn't it just enough to go into the directory and use the command dpkg -i *.deb (or something similar, I've never had a Debian-based system). This command works fine, I can prove it. -- Regards, Konstantin

Re: [dev] OpenOffice.org Performance Analysis - to improve responsiveness for older PC

2010-07-05 Thread Konstantin Tokarev
02.07.10, 08:58, Samphan Raruenrom samp...@osdev.co.th: http://www.slideshare.net/untsamphan/o-oo-perfanalysis41 OOo users usually complain about 2 types of OOo performance problems - program-start time and open-file time. OOo developers focus on improving program-start time so it

[dev] CMake module for finding OpenOffice.org SDK installation

2010-05-25 Thread Konstantin Tokarev
Hi all! I've written cmake module which finds installation of OpenOffice.org SDK. Both distribution-supplied and official OOo installation are supported. Script will choose first OOo installation where SDK is present. It sets paths to different directories of OOo, which could be easily used in

Re: Re: [dev] CMake module for finding OpenOffice.org SDK installation

2010-05-25 Thread Konstantin Tokarev
Actually, no, I disagree. As it's just a data file, we can just include it in the SDK. Actually, this script is not OOo side integration. It's intended to be included into projects using CMake, it will not work from from SDK location (as, for example, pkg-config files work). Alternatively,

Re: Re: Re: [dev] CMake module for finding OpenOffice.org SDK installation

2010-05-25 Thread Konstantin Tokarev
Actually, this script is not OOo side integration. Wrong. It is. It is a file for loooking where OOos SDK is. Yes, but it couldn't be called OOo side integration now because it needs to be included into client's project, and it searches for OOo installations in the system, not belonging

Re: [dev] cannot install java extension on ubuntu 10.04 (oo 3.2)

2010-05-23 Thread Konstantin Tokarev
On Sun, 23 May 2010 13:55:43 +0200 Oliver Brinzing oliver.brinz...@gmx.de wrote: Hi, i tried to install some of my java extensions on ubuntu 10.04 (oo 3.2) but failed, it seems all extensions with *.jar files refuse to install ... any hints ? Have you installed

Re: [dev] Regarding how to start with openoffice extension development in JAVA

2010-05-16 Thread Konstantin Tokarev
On Sun, 16 May 2010 10:14:41 +0530 peeush agarwal agarwal.pee...@hotmail.com wrote: SirI am a B.Tech (C.S.E.),3rd year student from National Institute of Technology,Durgapur,India.I do have a good programming skills in Java(J2SE,J2EE) and I would like to contribute in open source

Re: [dev] New build system

2010-05-11 Thread Konstantin Tokarev
CMake - Minus The major drawback of CMake is that we couldn't find a way to do the conversion in separate steps. We had to write the CMake makefiles in parallel to the existing ones and so had to maintain two build systems for several months. Your conclusion is wrong. See

Re: [dev] New build system

2010-05-11 Thread Konstantin Tokarev
As for me, major advantages of CMake are: * speed of initial configuration step, fast re-configuration because of caching; * easy setting up of build parameters through ccmake - much more convenient than those --long-keys; * more intelligent tracking of source dependencies - less files

Re: [dev] New build system

2010-05-11 Thread Konstantin Tokarev
Also, with Autotools developer needs to run autogen if something in the project/gtk headers/something else changed to re-generate configure script, or build will fail in the middle. With CMake you don't need it - build system automatically detects if something's changed when you run make, and

Re: [dev] New build system

2010-05-11 Thread Konstantin Tokarev
Sorry, I didn't investigate all materials carefully. But, since CMake also uses GNU make as backend, I decided you're planning to use whole GNU build system. Yes, I know there're some large projects that use GNU make as build system, e.g. commercial quantum package Molpro. But it's the way of

Re: [dev] New build system

2010-05-11 Thread Konstantin Tokarev
Please read the wiki article, it seems you don't know which other inherent faults I'm talking about. Recursive systems have *inherent* disadvantages and overcoming them needs to switch to a non-recursive system. This is not related to dependencies. CMake has a non-recursive element (the

Re: [dev] Help Download Source

2010-05-06 Thread Konstantin Tokarev
On Thu, 6 May 2010 13:25:15 -0300 Romildo Ferreira romildo...@gmail.com wrote: Hi, my friends! I kown that this list is only to OpenOffice developer, but I would like to download the source code to undestand the implementation of goalSeek function. Unfortantly when I try this path in my

[dev] How to add icon theme?

2010-05-03 Thread Konstantin Tokarev
How to install new modified icon theme into OpenOffice.org? -- Regards, Konstantin - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

Re: [dev] OOo's Toolbar Icons - Saving Space

2010-04-24 Thread Konstantin Tokarev
I also propose to remove star wars game from Calc to save space (or at least move it to separate package if there are lots of fans) 24.04.10, 21:31, Ivan M i2initiati...@gmail.com: Hello all, Recently I have explored one specific area where we could easily reduce the hard disk footprint

Re: Re: [dev] Transforming the Hyperlink bar in a websearch toolbar

2010-04-06 Thread Konstantin Tokarev
What do we expect a user to enter into an OOo search bar? Help content? File names? In what folders? Document content? Web searches? UI commands in the menu? etc. etc. AI to determine what user means :) So while a multi search tool would be a nice idea, we have to solve the

Re: [dev] A Brand Refresh for OpenOffice.org (was Re: Changes to Site/Product Elements due to Oracle Acquisition)

2010-03-08 Thread Konstantin Tokarev
personally I think that the two gulls (my version) should be reworked, what do you think about ? I also think they should be reworked (IMHO). Maybe it's worth to change font? or make birds' color slightly different from text 2010/3/8 Andrea Chiumenti what do you think/suggest about this

Re: [dev] A Brand Refresh for OpenOffice.org (was Re: Changes to Site/Product Elements due to Oracle Acquisition)

2010-03-08 Thread Konstantin Tokarev
more glossy 2010/3/8 Konstantin Tokarev annu...@yandex.ru personally I think that the two gulls (my version) should be reworked, what do you think about ? I also think they should be reworked (IMHO). Maybe it's worth to change font? or make birds' color

Re: [dev] OpenOffice Google soc

2010-02-26 Thread Konstantin Tokarev
26.02.10, 13:38, Ян Программист webautoma...@gmail.com: Hi people. I have some ideas about OpenOffice improvements and I wanted to know: how do those fit for Google summer of code this year? Do those appear in development priorities? 1. Smart zoom (additional controls would be shown

Re: [dev] Text area in OOo Math

2010-02-12 Thread Konstantin Tokarev
Hi Konstantin, Where to find code that displays text description of formula in OOo Math? What do you mean by 'text description'? Do you mean the text in the editing window? Yes, certainly -- Regards, Konstantin - To

Re: [dev] Text area in OOo Math

2010-02-12 Thread Konstantin Tokarev
I'm still not sure, what you exactly mean. If you talk about the code that displays say: 1 - 4 this would be {1} over {4}. You'll find more and more detailed descriptions here: http://documentation.openoffice.org/manuals/userguide3/0200WG3-WriterGuide.pdf or

[dev] Text area in OOo Math

2010-02-11 Thread Konstantin Tokarev
Where to find code that displays text description of formula in OOo Math? -- Regards, Konstantin - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional commands, e-mail: dev-h...@openoffice.org

[dev] Syntax highlighting in OO Math

2010-02-10 Thread Konstantin Tokarev
Doesn't anybody work on syntax highlighting in OO Math currently? I'd like to try to use Colorer library (used, for example, in Midnight Commander) for this purpose. It's LGPL, so can be included in OOo without license problems -- Regards, Konstantin

Re: [dev] drop tcsh support?

2010-01-11 Thread Konstantin Tokarev
Two questions remain: For one, the to-be-sourced scripts currently ensure that USE_SHELL's path is in PATH, but I see no reason for that? For another, are there any relevant configurations where bash is not at /bin/bash? Yes, in FreeBSD it's /usr/local/bin/bash (but there's /bin/sh if

Re: [dev] OpenOffice Integration

2009-12-28 Thread Konstantin Tokarev
Hi, Kirill OpenOffile under Linux can be started only if it was installed as a package. How it is possible to run OpenOffice using UNO without installing (merely copied OO to specified folder, for example)? What about having several instances of Open Office at one time in the system? Thank

Re: [dev] Using OpenOffice.org for Chemistry on Linux

2009-08-19 Thread Konstantin Tokarev
13.08.09, 04:20, Ariel Constenla-Haile ariel.constenla.ha...@googlemail.com: Hello Konstantin, On Tuesday 11 August 2009, 08:06, Konstantin Tokarev wrote: Hello! I think every chemist which wants to use Linux faces with one serious problem: structural formulae cannot be inserted

Re: [dev] Using OpenOffice.org for Chemistry on Linux

2009-08-13 Thread Konstantin Tokarev
I'd like to thank everyone who pays attention to this problem. I've created project oochemistry on Sourceforge (http://sourceforge.net/projects/oochemistry). I there is anyone who wants to help me with implementation, you are welcome to join!

Re: [dev] Using OpenOffice.org for Chemistry on Linux

2009-08-13 Thread Konstantin Tokarev
Juergen Schmidt wrote: Ariel is right the documentation is currently very pure but d...@api.openoffice.org will be the best place to ask further questions and get support. We should maybe create a more complex example and should document it in the wiki in a tutorial style. Some volunteers?

Re: [dev] Using OpenOffice.org for Chemistry on Linux

2009-08-13 Thread Konstantin Tokarev
12.08.09, 23:30, Eike Rathke e...@sun.com: Not sure if it would suit your needs, e.g. once exported to a graphics document a formula lost its structural information, but you might want to take a look at BKChem, http://bkchem.zirael.org/ I could imagine an extension that used BKChem to feed it

[dev] Using OpenOffice.org for Chemistry on Linux

2009-08-11 Thread Konstantin Tokarev
Hello! I think every chemist which wants to use Linux faces with one serious problem: structural formulae cannot be inserted into the text in editable way. Also I think that only OpenOffice.org can provide this functionality today. In MS Windows there are many GUI based editors, which can be