Re: Question about OpenCL VLOOKUP implementation

2024-01-24 Thread Miklos Vajna
Hi Dhiraj, On Tue, Jan 23, 2024 at 05:59:06PM -0600, Dhiraj Holden wrote: > I have a question about the OpenCL implementation of VLOOKUP as given in > sc/source/core/opencl/op_spreadsheet.cxx. Right now, both the unsorted and > sorted vlookup both do a linear search to find the right

Question about OpenCL VLOOKUP implementation

2024-01-23 Thread Dhiraj Holden
I have a question about the OpenCL implementation of VLOOKUP as given in sc/source/core/opencl/op_spreadsheet.cxx. Right now, both the unsorted and sorted vlookup both do a linear search to find the right value. I am wondering if it would be better to do a binary search for sorted vlookup. I could

Re: Question about async methods (related to tdf#158965 "Find Record: Similarities dialog won't appear")

2024-01-05 Thread Julien Nabet
Thank you Miklos for your feedback! I've submitted this patch: https://gerrit.libreoffice.org/c/core/+/161664

Re: Question about async methods (related to tdf#158965 "Find Record: Similarities dialog won't appear")

2024-01-04 Thread Miklos Vajna
Hi Julien, On Wed, Jan 03, 2024 at 02:01:51PM +0100, Julien Nabet wrote: > I noticed several methods about async: > > 1) from include/vcl/abstdlg.hxx: > > StartExecuteAsync I think this is the usual codepath for modal dialogs. Some uno command decides to open a dialog, we call StartExecuteAsy

Question about async methods (related to tdf#158965 "Find Record: Similarities dialog won't appear")

2024-01-03 Thread Julien Nabet
Hello, I noticed several methods about async: 1) from include/vcl/abstdlg.hxx: StartExecuteAsync 2) from include/svtools/genericasyncunodialog.hxx executedAsyncDialog which seems used only for PDF dialog createAsyncDialog  used for PDF dialog but above all in startExecuteModal startExecuteM

Question About Advanced UNO

2023-12-22 Thread Hassan Sajjad
Hi. I am reading this link to get an understanding of UNO https://wiki.documentfoundation.org/Documentation/DevGuide/Advanced_UNO Close to the end, it is mentioned that "The disadvantage of the above function is that it must acquire and release the *mutex* every time it is called. The double-chec

Re: Question of Gerrit build

2023-08-31 Thread Miklos Vajna
Hi Taichi, On Thu, Aug 31, 2023 at 11:55:58PM +0900, taichi <20001...@ymail.ne.jp> wrote: > In Gerrit build, Windows builder configuration is only for x86, isn't there > one for x86_64 or ARM64? That's correct. Your trade-off is to have fast CI feedback vs testing every possible configuration.

Question of Gerrit build

2023-08-31 Thread taichi
Hello. In Gerrit build, Windows builder configuration is only for x86, isn't there one for x86_64 or ARM64? Regards, taichi

Re:Re: Question about linking .so libraries

2023-06-21 Thread Jingze Xu
Thank you very much! At 2023-06-20 22:32:05, "Miklos Vajna" wrote: >Hi, > >On Tue, Jun 20, 2023 at 09:29:03AM +0800, Jingze Xu >wrote: >> Hi, I have a question about linking .so libraries. > >If you want to link to an external library, then you need

Re: Question about linking .so libraries

2023-06-20 Thread Miklos Vajna
Hi, On Tue, Jun 20, 2023 at 09:29:03AM +0800, Jingze Xu wrote: > Hi, I have a question about linking .so libraries. If you want to link to an external library, then you need to bundle it. See core.git commit a2ffd71f20e14f797f30223fe29b3ac1e92eafdf (build libtiff, 2022-05-19) as a rec

Question about linking .so libraries

2023-06-20 Thread Jingze Xu
Dear all, Hi, I have a question about linking .so libraries. - Question: I have successfully added a

Re: Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-26 Thread David
On 25/1/23 20:05, Stephan Bergmann wrote: > On 25/01/2023 05:14, David [minor edit] wrote: >> However treating the '-t' option as a service rather than an interface, as >> follows, works.  An directory tree is created in >> the directory where the skeletonmaker CLI command was run, and a very >

Re: Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-25 Thread Stephan Bergmann
On 25/01/2023 05:14, David wrote: Using the three '-l' options shown above and in the following test command with *no**'-t' option* results in a skeletonmaker error, presumably because '-t' and '-n' are mandatory in the 'calc-add-in' command (BUG: the '-t' is displayed in upper case, which can

Re: Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-25 Thread David
I think we're getting somewhere...! On 24/1/23 18:03, Stephan Bergmann wrote: > I don't know much about skeletonmaker or Calc add-ins, but > > > <

Re: Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-23 Thread Stephan Bergmann
On 24/01/2023 01:05, David wrote: Hello Stephan, Yes, this is a Linux system and I'm invoking uno-skeletonmaker thus: david@anon:~> "$OFFICE_HOME"/sdk/bin/uno-skeletonmaker calc-add-in --java5 -l "$OFFICE_PROGRAM_PATH"/types.rdb -n org.openoffice.adl.util.CalcDL1 -t CalcDL1 ERROR: Unknown en

Re: Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-23 Thread David
Hello Stephan, Yes, this is a Linux system and I'm invoking uno-skeletonmaker thus: david@anon:~> "$OFFICE_HOME"/sdk/bin/uno-skeletonmaker calc-add-in --java5 -l "$OFFICE_PROGRAM_PATH"/types.rdb -n org.openoffice.adl.util.CalcDL1 -t CalcDL1 ERROR: Unknown entity 'CalcDL1' david@anon:~> I'd alre

Re: Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-23 Thread Stephan Bergmann
On 23/01/2023 03:45, David wrote: According to https://api.libreoffice.org/docs/tools.html#uno-skeletonmaker the argument ‘-t’  “specifies a UNOIDL type name, e.g. com.sun.star.text.XText (can be used more than once)”.  This wording is the same as both the uno-skeletonmaker command-line ‘help’

Question re the uno-skeletonmaker'-t' CLI qualifier

2023-01-23 Thread David
Hello, I've been referred to this mailing list for an answer to the following question, originally posted at https://ask.libreoffice.org/t/the-sdk-uno-skeletonmaker-t-argument/86641 According to https://api.libreoffice.org/docs/tools.html#uno-skeletonmaker the argument ‘-t’  “specif

Re: Question regarding Crazy Ideas List

2022-10-22 Thread Julien Nabet
Hello, About Java part, here are some bugtrackers: Convert Java complex tests to Python https://bugs.documentfoundation.org/show_bug.cgi?id=97362 Move Java based API tests to C++ https://bugs.documentfoundation.org/show_bug.cgi?id=45904 Provide Non-Java Database Report Generator for AppStore

Re: Question regarding Crazy Ideas List

2022-10-21 Thread Tomaž Vajngerl
t is actually used in a browser would be much better. Also no need to have a JVM installed to run JS would make it a much more interesting language as an alternative scripting language for macros and extensions. > Or is that a completely seperate idea? > Yes.. and is just a crazy idea. > Thanks for reading/answering my long question! > Regards, Tomaž

Question regarding Crazy Ideas List

2022-10-20 Thread Siddharth Khattar
dea? Is it somewhat related to the "Replace Mozilla Rhino with Mozilla's SpiderMonkey or Google's V8" idea as it also wants to remove Java as a dependency for executing JavaScript extensions? Or is that a completely seperate idea? Thanks for reading/answering my long question!

Re: Question about Libreoffice Draw

2022-05-25 Thread Eike Rathke
Hi Intissar, On Tuesday, 2022-05-17 13:47:12 +0200, Intissar Mortadi wrote: > I want to create a tool using Libreoffixe and I need it to intereact with > the user, Best direct your question with details to our Ask site https://ask.libreoffice.org/ Eike -- GPG key 0x6A6CD5B765632D3A

LO question about ImportGraphic and pExtHeader for EMF/WMF

2022-05-18 Thread Julien Nabet
Hello Armin, Bartosz Taking a look at ImportGraphic methods, I noticed one could be removed (see https://gerrit.libreoffice.org/c/core/+/134503). Then I noticed this method in vcl/source/filter/graphicfilter.cxx: 78  ErrCode GraphicFilter::ImportGraphic( Graphic& rGraphic, std::u16string_vie

Question about Libreoffice Draw

2022-05-17 Thread Intissar Mortadi
Hello everyone, I want to create a tool using Libreoffixe and I need it to intereact with the user, so that when he clicks or keeps the cursor over an object it pops out a messge/Dialoge that shows more data about the object. Is it doable using a macro from Draw? If yes, could you please redirect

Question about LO building in Windows and error C3861 (identifier not found)

2022-04-22 Thread Julien Nabet
Hello, just updating my local LO repo in Windows, I runned a plain "make" and got: in sc/source/core/data/documen4.cxx (342): error C3861 'GetWritableColumnsRange': identifier not found Indeed GetWritableColumnsRange' has just been added but why can't it be automatically detected and I must

Re: Question about LibreOffice installation

2022-02-21 Thread Mike Kaganski
On 21.02.2022 12:38, Wael Haidar wrote: Let's say I downloaded the MSI package of  libreoffice, is there a way to select what products I need to install ? for example just the "LibreImpress" ? The component selector was removed in LibreOffice 4.2 [1] because of problems it created for users,

Re: Question about LibreOffice installation

2022-02-21 Thread Italo Vignoli
LibreOffice is using a common transactional engine for all the modules, and as such all modules have to be installed. The concept is completely different from Microsoft Office, where each program has been developed by a different group of people (in one case by a different company) and has been

Re: Question about LibreOffice installation

2022-02-21 Thread Tor Lillqvist
> Let's say I downloaded the MSI package of libreoffice, is there a way to > select what products I need to install ? for example just the "LibreImpress" ? Impress, Calc, Writer etc are not separate products. --tml

Question about LibreOffice installation

2022-02-21 Thread Wael Haidar
Dears, Let's say I downloaded the MSI package of libreoffice, is there a way to select what products I need to install ? for example just the "LibreImpress" ? Because in the installation wizard, I don't see the option to select the products to install (even when i select "custom installation")

Re: question about finding the size of a DB column

2022-02-05 Thread Mike Kaganski
Hi Dhiraj! On 05.02.2022 17:04, Dhiraj Holden wrote: I have started looking at this bug about Base crashing with Firebird when using a form to insert an image that does not fit in a binary field. The proposed fix was to check in xref

question about finding the size of a DB column

2022-02-05 Thread Dhiraj Holden
I have started looking at this bug about Base crashing with Firebird when using a form to insert an image that does not fit in a binary field. The proposed fix was to check in xref/core /forms

Re: Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-10 Thread Jan-Marek Glogowski
On 10.01.22 11:22, Stephan Bergmann wrote: On 09/01/2022 09:41, Julien Nabet wrote: So it means we could at least use of compbase.hxx internally, then put compbase.hxx in deprecated. We can deprecate/discourage its internal use, but IMO should not deprecate it for external use (where we offer

Re: Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-10 Thread Stephan Bergmann
On 09/01/2022 09:41, Julien Nabet wrote: So it means we could at least use of compbase.hxx internally, then put compbase.hxx in deprecated. We can deprecate/discourage its internal use, but IMO should not deprecate it for external use (where we offer no alternative solution). I don't think w

Re: Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-09 Thread Julien Nabet
On 09/01/2022 18:12, Thorsten Behrens wrote: Julien Nabet wrote: So it means we could at least use of compbase.hxx internally, then put compbase.hxx in deprecated. Yep. ... Ok now I saw for example compbase11.hxx wasn't used (or it seemed so considering the only results of the git grep):

Re: Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-09 Thread Thorsten Behrens
Julien Nabet wrote: > So it means we could at least use of compbase.hxx internally, then put > compbase.hxx in deprecated. > Yep. Cheers, -- Thorsten signature.asc Description: PGP signature

Re: Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-09 Thread Julien Nabet
On 09/01/2022 07:27, Noel Grandin wrote: Those are from the days before we had reliable variable-parameters-templates. We can't remove them because they are part of the published API. Thank you for your feedback. So it means we could at least use of compbase.hxx internally, then put compb

Re: Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-08 Thread Noel Grandin
Those are from the days before we had reliable variable-parameters-templates. We can't remove them because they are part of the published API.

Question about cppuhelper/compbase and other compbase1/2/.../12

2022-01-08 Thread Julien Nabet
Hello, I noticed include/cppuhelper had files like: compbase1.hxx compbase2.hxx ... compbase12.hxx It seems the only diff is the number of parameters. But there's also compbase.hxx which can take any number of parameters. May we replace all the use of compabase.hxx by compbase.hxx or is t

Re: [Question] How to check Zipped file format on LibreOffice

2021-11-24 Thread Caolán McNamara
On Thu, 2021-11-25 at 02:40 +0900, DaeHyun Sung wrote: > Hmm, I have hwp v3.0 file and hwp v5.0 file.  > > I also attached test hwp v5.0 file "hello.hwp" and hwp v3.0 file > "hellov3.hwp". Yeah, hello.hwp... $ gsf list hello.hwp hello.hwp: d 2021-08-14 22:45:54 0 *root* f

Re: [Question] How to check Zipped file format on LibreOffice

2021-11-24 Thread DaeHyun Sung
Dear, Caolán McNamara. Thanks for your reply. Hmm, I have hwp v3.0 file and hwp v5.0 file. I also attached test hwp v5.0 file "hello.hwp" and hwp v3.0 file "hellov3.hwp". also check it please. Then, I'll read the writerfilter/source/filter/WriterFilter.cxx file. Sincerely, DaeHyun Sung(DaeHyun

Re: [Question] How to check Zipped file format on LibreOffice

2021-11-24 Thread Caolán McNamara
On Thu, 2021-11-25 at 01:56 +0900, DaeHyun Sung wrote: > It is zipped Compound File Binary Format. So, I added read & check > zipped format I downloaded the attachment and I don't think its zipped (unzip -l fails to show any structure), I think its just a Compound File Binary Format (like the olde

[Question] How to check Zipped file format on LibreOffice

2021-11-24 Thread DaeHyun Sung
uno::UNO_QUERY); } === In my opinion, I found the reading zip module follows LibreOffice core source codes. But It doesn't works. So, I have a question. How to check Zipped file(It contained Compound File Binary Format) on LibreOffice? Check it please

Question on Python strings

2021-07-29 Thread Olivier Hallot
C" repeated several thousands times in the file. My question is: Does it make sense to define aux variables lstA = "longStringA" lstB = "looongStringB" lstC = "longStrinC" and put the variables in the map instead? The main reason is to imp

Re: Introducing myself and question

2021-05-20 Thread Kevin Dombeu mboudi
Bonsoir Mr, J'espère que vous allez bien. Je me permet de vous écrire car j'ai postuler pour la bourse Tek-up university et en effectuant des recherches sur cette université, je suis tombé sur votre nom. J'aimerais svp que vous partagez votre expérience avec moi afin que je sache à quoi m'attendre.

Re: Question regarding LO 7.1 release notes: Did any previously "experimental features" mature?

2021-01-12 Thread Miklos Vajna
Hi Gerry, On Mon, Jan 11, 2021 at 09:07:51AM +0100, "Gerry T." wrote: > mode. Did any of these features mature and move out of experimental > status for 7.1.? > > ... > > 4.2 > > * Multi-threaded import for XLSX documents Yes, this was made non-experimental in core.git commit 80d6fd81dd8af

Re: Question regarding LO 7.1 release notes: Did any previously "experimental features" mature?

2021-01-11 Thread julien2412
Hello, About Firebird, there's been a migration from 3.0.0 to 3.0.7 could be done thanks to the great help of Jan-Marek and Stephan and some bugfixes but IMHO it'll stay experimental a long time since there are too few bugfixes about it considering the number of related opened bugs. Julien --

Question regarding LO 7.1 release notes: Did any previously "experimental features" mature?

2021-01-11 Thread Gerry T.
Dear all, with regard to the release notes for LibreOffice 7.1 I'd like to pose following question: Several features in release 7.0 (and before) were marked as "experimental" and, thus, accessible only in experimental mode. Did any of these features mature and move out of experime

[SOLVED] Re: Question about clang-format rules

2020-11-07 Thread Julien Nabet
On 07/11/2020 09:52, Mike Kaganski wrote: On 07.11.2020 11:46, julien2412 wrote: You can apply these changes with:..." The command line mentioned there should only apply to the code you changed - because the presence of the warning means that the file was already under the clang-format scope

Question about clang-format rules

2020-11-07 Thread julien2412
Hello, I'd like to know what to do when during trying to commit locally, I got a message indicating: "The above differences were found between the code to commit and the clang-format rules. You can apply these changes with:..." 1) Should I clang-format the patch but it means it'll make it harder

Re: Question about clang-format rules

2020-11-07 Thread Mike Kaganski
On 07.11.2020 11:46, julien2412 wrote: You can apply these changes with:..." The command line mentioned there should only apply to the code you changed - because the presence of the warning means that the file was already under the clang-format scope, and was formatted correctly before the c

Re:Re: Question of convert pdf limitation

2020-10-27 Thread hi
Hi Miklos Thanks for much for your reply. you are right, it's not releated the Libre, it's the because the timeout. Thanks Lisa At 2020-10-22 15:31:35, "Miklos Vajna" wrote: >Hi Lisa, > >On Tue, Oct 20, 2020 at 02:59:25PM +0800, hi wrote: >> I think LibreOffice is a good tool of converti

Re: Question of convert pdf limitation

2020-10-22 Thread Miklos Vajna
Hi Lisa, On Tue, Oct 20, 2020 at 02:59:25PM +0800, hi wrote: > I think LibreOffice is a good tool of converting other format to pdf. I use > LIbreOffice + JODConverter, then convert pptx to pdf. but if the source file > size great than 4M, it will failed. > Could you give me some advice of size

Question of convert pdf limitation

2020-10-20 Thread hi
Hi all I think LibreOffice is a good tool of converting other format to pdf. I use LIbreOffice + JODConverter, then convert pptx to pdf. but if the source file size great than 4M, it will failed. Could you give me some advice of size limitation in below format? txt xls docx pptx ppt doc xlsx cs

Re: LibreLogo Question and Need for Help

2020-09-04 Thread Marc Paré
Le 20-09-04 à 12 h 30, Dennis Roczek a écrit : > Hi Marc, > > Am 03.09.2020 um 16:18 schrieb Marc Paré: > >> *** Note that the LibreLogo.org site is/was supposed to be the location >> where one would get information, however, it is no longer responding, >> but the domain is still being renewed. >

Re: LibreLogo Question and Need for Help

2020-09-04 Thread Dennis Roczek
Hi Marc, Am 03.09.2020 um 16:18 schrieb Marc Paré: > *** Note that the LibreLogo.org site is/was supposed to be the location > where one would get information, however, it is no longer responding, > but the domain is still being renewed. Well it is still archived by archive.org, see http://web.a

LibreLogo Question and Need for Help

2020-09-04 Thread Marc Paré
I am looking for someone who knows of LibreLogo embedded in LibreOffice and programming in LibreLogo through LibreOffice Writer. Is there anyone on this list who could give a demonstration for our LibreWaterloo (Canada) LibreOffice Support group? Or perhaps just let me know where I could possibly f

Re: Question about class DrawingML

2020-07-01 Thread Regina Henschel
Hi Stephan, thank you. Kind regards Regina Stephan Bergmann schrieb am 01-Jul-20 um 13:43: On 01/07/2020 13:38, Regina Henschel wrote: Is it possible to set a default value for a parameter const css::uno::Reference< css::beans::XPropertySet >& rXShapePropSet   const css::uno::Reference< cs

Re: Question about class DrawingML

2020-07-01 Thread Stephan Bergmann
On 01/07/2020 13:38, Regina Henschel wrote: Is it possible to set a default value for a parameter const css::uno::Reference< css::beans::XPropertySet >& rXShapePropSet const css::uno::Reference< css::beans::XPropertySet >& rXShapePropSet = {} so that a caller can omit it, if it is not nee

Re: Question about class DrawingML

2020-07-01 Thread Regina Henschel
Hi, Noel Grandin schrieb am 29-Jun-20 um 18:01: On Mon, 29 Jun 2020 at 13:14, Regina Henschel > wrote: (1) add a member to class DrawingML (2) extend the parameter lists in the calling chain extending the parameter list is generally a better idea bec

Re: Question about class DrawingML

2020-06-29 Thread Noel Grandin
On Mon, 29 Jun 2020 at 13:14, Regina Henschel wrote: > (1) add a member to class DrawingML > (2) extend the parameter lists in the calling chain > > extending the parameter list is generally a better idea because it limits the scope of the extra information Lots of programming design is about li

Question about class DrawingML

2020-06-29 Thread Regina Henschel
Hi all, I have restart looking how to export fill of a Fontwork-shape to pptx. I know in principle, what has to be done. The problem is, that I need shape properties in DrawingML::WriteRunProperties(). There exists this calling chain in DrawingML: WriteText() -> WriteParagraph() -> WriteRun()

Re: C++ question: literal form of std::map

2020-05-17 Thread Stephan Bergmann
On 16/05/2020 13:24, Naruhiko Ogasawara wrote: https://gerrit.libreoffice.org/c/core/+/94354 commented there ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: C++ question: literal form of std::map

2020-05-16 Thread Naruhiko Ogasawara
2020年5月15日(金) 15:36 Stephan Bergmann : > > On 14/05/2020 20:59, Naruhiko Ogasawara wrote: > > 2020年5月14日(木) 22:37 Stephan Bergmann : > >> On 14/05/2020 12:40, Naruhiko Ogasawara wrote: > >>> -- > >>> static const std::map> > >>> tblDBNumToNatNum > >>> = { { primary(LA

Re: C++ question: literal form of std::map

2020-05-14 Thread Stephan Bergmann
On 14/05/2020 20:59, Naruhiko Ogasawara wrote: 2020年5月14日(木) 22:37 Stephan Bergmann : On 14/05/2020 12:40, Naruhiko Ogasawara wrote: -- static const std::map> tblDBNumToNatNum = { { primary(LANGUAGE_CHINESE),{ 4, 5, 6, 0 } }, { primary(LANGUAGE_JAPANE

Re: C++ question: literal form of std::map

2020-05-14 Thread Eike Rathke
Hi Naruhiko, On Thursday, 2020-05-14 19:40:19 +0900, Naruhiko Ogasawara wrote: > Now I'm trying to resolve tdf#130140 and tdf#130193, both of them > relate to the mapping between NatNum of Calc and DBNum of Excel. Great you're looking into that! > static const std::map> tblDBNumToNatNum > =

Re: C++ question: literal form of std::map

2020-05-14 Thread Naruhiko Ogasawara
Hi Stephan, * 2020年5月14日(木) 22:37 Stephan Bergmann : > > On 14/05/2020 12:40, Naruhiko Ogasawara wrote: > > -- > > static const std::map> > > tblDBNumToNatNum > > = { { primary(LANGUAGE_CHINESE),{ 4, 5, 6, 0 } }, > > { primary(LANGUAGE_JAPANESE), { 4, 5

Re: C++ question: literal form of std::map

2020-05-14 Thread Stephan Bergmann
On 14/05/2020 12:40, Naruhiko Ogasawara wrote: -- static const std::map> tblDBNumToNatNum = { { primary(LANGUAGE_CHINESE),{ 4, 5, 6, 0 } }, { primary(LANGUAGE_JAPANESE), { 4, 5, 3, 0 } }, { primary(LANGUAGE_KOREAN), { 1, 2, 3, 9 } } };

C++ question: literal form of std::map

2020-05-14 Thread Naruhiko Ogasawara
Hello, I'm a not good C++ programmer so I want to ask you. Now I'm trying to resolve tdf#130140 and tdf#130193, both of them relate to the mapping between NatNum of Calc and DBNum of Excel. Before that, I want to refactor current switch-and-if nesting implementation of MapDBNumToNatNum() and Map

[SOLVED] Re: Question about localized functions parsing in multiple words in Base

2020-04-28 Thread Julien Nabet
On 28/04/2020 22:06, Lionel Élie Mamane wrote: On Tue, Apr 28, 2020 at 04:32:43AM -0700, julien2412 wrote: I tried to put an unbreakable space by copypasting an unbreakable space between Writer and Weblate here: https://translations.documentfoundation.org/translate/libo_ui-master/svxmessages/el

Re: Question about localized functions parsing in multiple words in Base

2020-04-28 Thread Lionel Élie Mamane
On Tue, Apr 28, 2020 at 04:32:43AM -0700, julien2412 wrote: > I tried to put an unbreakable space by copypasting an unbreakable space > between Writer and Weblate > here: > https://translations.documentfoundation.org/translate/libo_ui-master/svxmessages/el/?checksum=f26791016ee8ad36 > Now I don't

Re: Question about localized functions parsing in multiple words in Base

2020-04-28 Thread julien2412
Lionel Élie Mamane wrote > ... > Just for clarity for the treatment of > https://bugs.documentfoundation.org/103736 > can devs (e.g. Julien) commit a corrected translation directly to git > or is that not the right process and we _must_ dump the problem on the > l10n teams? > ... I tried to put an

Re: Question about localized functions parsing in multiple words in Base

2020-04-27 Thread Lionel Élie Mamane
On Mon, Apr 27, 2020 at 04:18:08PM +0200, sophi wrote: > Le 27/04/2020 à 16:10, Eike Rathke a écrit : >> On Saturday, 2020-04-25 11:34:42 -0700, julien2412 wrote: >>> I took a look at Calc and localized functions can have several >>> words (without even using unbreakable space). >> No, they can n

[SOLVED] Re: Question about localized functions parsing in multiple words in Base

2020-04-27 Thread julien2412
ents containing elements to fix. Thank you for your feedback, it answers my question. Julien -- Sent from: http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html ___ LibreOffice mailing list LibreOffice@lists.freedesktop.or

Re: Question about localized functions parsing in multiple words in Base

2020-04-27 Thread sophi
Hi all, Le 27/04/2020 à 16:10, Eike Rathke a écrit : > Hi julien2412, > > On Saturday, 2020-04-25 11:34:42 -0700, julien2412 wrote: > >> I took a look at Calc and localized functions can have several words >> (without even using unbreakable space). > > No, they can not. Translations having them

Re: Question about localized functions parsing in multiple words in Base

2020-04-27 Thread Eike Rathke
Hi julien2412, On Saturday, 2020-04-25 11:34:42 -0700, julien2412 wrote: > I took a look at Calc and localized functions can have several words > (without even using unbreakable space). No, they can not. Translations having them are broken, see https://bugs.documentfoundation.org/show_bug.cgi?id

Question about localized functions parsing in multiple words in Base

2020-04-25 Thread julien2412
Hello, Re reading https://bugs.documentfoundation.org/show_bug.cgi?id=103736 (libreoffice-5.2.2.2 AVG function produces SQL syntax error in query design view), the problem is localization with parsing using Lexx/Yacc (Bison). In this specific case, "AVG" SQL keyword is translated in Greek with "Μέ

Re: Question about use of officecfg:: (for XPropertyState or XNameAccess?)

2020-03-24 Thread Stephan Bergmann
On 24/03/2020 11:37, julien2412 wrote: Ok forget about the tdf part, it was just the starting point, I'd like to know if for example "officecfg::Inet::Settings::ooInetHTTPProxyName::get()" should be used in "SvxProxyTabPage::ReadConfigData_Impl " or in "SvxProxyTabPage::ReadConfigDefaults_Impl"

Re: Question about use of officecfg:: (for XPropertyState or XNameAccess?)

2020-03-24 Thread julien2412
More precisely the quoted tdf made me rethink about tdf#46037. Julien -- Sent from: http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org https://lists.freedeskto

Re: Question about use of officecfg:: (for XPropertyState or XNameAccess?)

2020-03-24 Thread julien2412
sberg wrote >> ... > I fail to understand your questions, and how different ways of accessing > the configuration should be related to the core issue of > ; > "LibreOffice > cannot connect to the internet via a proxy that requires > aut

Re: Question about use of officecfg:: (for XPropertyState or XNameAccess?)

2020-03-24 Thread Stephan Bergmann
On 23/03/2020 21:07, julien2412 wrote: I'm giving a try to tdf#46014 (LibreOffice cannot connect to the internet via a proxy that requires authentification). First I thought about reducing the use of m_xConfigurationUpdateAccess. For this, I'd like to use "officecfg::...". The problem is, I'm not

Question about use of officecfg:: (for XPropertyState or XNameAccess?)

2020-03-23 Thread julien2412
Hello, I'm giving a try to tdf#46014 (LibreOffice cannot connect to the internet via a proxy that requires authentification). First I thought about reducing the use of m_xConfigurationUpdateAccess. For this, I'd like to use "officecfg::...". The problem is, I'm not sure if I should use it to repla

Re: Question about new gerrit interface

2020-02-09 Thread Ilmari Lauhakangas
julien2412 kirjoitti 10.2.2020 klo 9.22: Hello, Since the change of new UI of gerrit, I'm a bit lost about filtering part. By default, gerrit displays all patches opened, ok. But when I click master branch, I see all the patches opened, merged or abandoned of master, instead of just those with o

Question about new gerrit interface

2020-02-09 Thread julien2412
Hello, Since the change of new UI of gerrit, I'm a bit lost about filtering part. By default, gerrit displays all patches opened, ok. But when I click master branch, I see all the patches opened, merged or abandoned of master, instead of just those with open status. Idem, if I want to focus on th

DOC import filter: SvxULSpaceItem question

2020-02-05 Thread Patrick Jaap
Hi! I am struggling with a regression I introduced to LO. You find the bug here: https://bugs.documentfoundation.org/show_bug.cgi?id=130262 As it turns out there seems to be a wrong SvxULSpaceItem setting for a small drawing line in the footer. The UL attribute claims there is 13500 twips

Re: Beginner's question about installing Libreoffice SDK

2020-01-10 Thread David Johnson
that makes the interactive prompt not work as it should. Thanks again for your help. From: David Johnson Sent: Wednesday, December 18, 2019 3:36 AM To: Stephan Bergmann ; libreoffice@lists.freedesktop.org Subject: Re: Beginner's question about insta

Re: Beginner's question about installing Libreoffice SDK

2019-12-18 Thread David Johnson
My reply inline from the beginning to the end: >(Please reply to the mailing list, not just to me directly. I put the >list back into the loop.) Sorry, I am using a new email-client and it did not work as I expected. >On 17/12/2019 19:55, David Johnson wrote: >> I also tried that, but the scrip

Re: Beginner's question about installing Libreoffice SDK

2019-12-18 Thread Stephan Bergmann
On 18/12/2019 12:36, David Johnson wrote: Do you happen to know who wrote (or maintains) that configuration script - or is there a way in which I can find that out? Then I can try to contact this person. You can always use git-log to find out who's been involved in the various files over time

Re: Beginner's question about installing Libreoffice SDK

2019-12-18 Thread Stephan Bergmann
On 17/12/2019 15:46, Stephan Bergmann wrote: That "automatically started" is indeed bogus, and we should get it fixed. done, "Fix instructions for setting up the SDK" _

Re: Beginner's question about installing Libreoffice SDK

2019-12-17 Thread Stephan Bergmann
(Please reply to the mailing list, not just to me directly. I put the list back into the loop.) On 17/12/2019 19:55, David Johnson wrote: I also tried that, but the script simply outputs the following, and then "freezes" and does not ask for any input: $ ./setsdkenv_unix  *

Re: Beginner's question about installing Libreoffice SDK

2019-12-17 Thread Stephan Bergmann
On 17/12/2019 12:44, David Johnson wrote: There is something unclear to me about the instructions to configure the SDK. I follow the instructions given on page: * https://api.libreoffice.org/docs/install.html There they say: "The SDK provides an implicit configuration mechanism, which config

Beginner's question about installing Libreoffice SDK

2019-12-17 Thread David Johnson
Hi, I am new to LibreOffice Extension development, and trying to get the first examples that are part of the SDK running on my system. However, so far I failed to do so. Versions of software I use: * Ubuntu 18.04.3 LTS * LibreOffice 6.0.7.3 There is something unclear to me about the instructi

Re[2]: LO Calc - Question About Solver Engines

2019-06-27 Thread Steve Fanning
Hi Kohei, Many thanks for your prompt reply and the helpful link. Regards, Steve Fanning -- Original Message -- From: "Kohei Yoshida" To: "Steve Fanning" ; libreoffice@lists.freedesktop.org Sent: 27/06/2019 12:58:10 Subject: Re: LO Calc - Question About Solve

LO Calc - Question About Solver Engines

2019-06-26 Thread Steve Fanning
Hi. I am a member of the Documentation Team, currently drafting an updated version of Calc Guide Chapter 9 (Data Analysis) to reflect LO 6.2. Part of this update is to reflect that there are now two engines available to solve linear programs (lp_solve and CoinMP). The user can switch between en

Question about Bug 124686

2019-06-04 Thread Andreas Heinisch
Hello, I am trying to solve this bug:  https://bugs.documentfoundation.org/show_bug.cgi?id=124686 But I have a few questions regarding it: - Should there be just a small change for the user interface including the menu? Or should there be a big change including all the function calls, names

Re: Question about submitting patch for dictionaries

2019-05-06 Thread Michael Stahl
On 05.05.19 14:33, julien2412 wrote: Hello, I'm trying to submit a patch for dictionaries part. In /dictionaries I typed this: ../logerrit submit After several minutes, it's still trying to send the patch. Did I miss something? apparently there was some network routing problem yesterday: htt

Re: Question about submitting patch for dictionaries

2019-05-05 Thread julien2412
I gave a try to https://wiki.documentfoundation.org/Development/Submodules but it finally really pushed directly the patch. However, I had also took a look to the content of loggerrit and saw that "submit" was calling "push". So I'm a bit confused... If my patch is wrong, don't hesitate to revert

Question about submitting patch for dictionaries

2019-05-05 Thread julien2412
Hello, I'm trying to submit a patch for dictionaries part. In /dictionaries I typed this: ../logerrit submit After several minutes, it's still trying to send the patch. Did I miss something? I know there is this page https://wiki.documentfoundation.org/Development/Submodules but I thought having

Introducing myself and question

2019-03-07 Thread Joseph Landry Bougang Fotso
Good morning. I'm Landry Bougang Fotso. I'm in third year bachelor of technology in Software engeneering in, CAMEROON. My email address is jlandry...@yahoo.fr . I'm very proud to take part of the discusionQuestion: please how to well analyse a code written by another person? Le mercredi 6 m

RE: Question, please, regarding building the code

2018-07-26 Thread Kaganski Mike
Hi Susan, please note that the wiki page you mentioned does not contain the recommendation to run ../autogen.sh but it tells to run ./autogen.sh (note the single dot). And if you have run the command you mentioned in the initial mail, then it's natural that autogen step was skipped, missing

Re: Question, please, regarding building the code

2018-07-26 Thread Regina Henschel
Hi Susan, Susan Jean schrieb am 24-Jul-18 um 17:56: Hi again, Folks, I have more information on the question I posted earlier. Sorry about that…I wasn’t sure if someone was going to contact me one on one or not. Bear with me, please. I’m just starting to get to know Cygwin. In the “lode

  1   2   3   4   5   6   7   >