Re: Password Protection (source file)

2012-05-30 Thread Joel Madero
Oh okay, I'm running this on *nix so hopefully that isn't the case. Thanks for the help, going to look into that other src file that you provided On Wed, May 30, 2012 at 8:52 AM, Noel Grandin wrote: > > > On 2012-05-30 17:46, Joel Madero wrote: > >> I'll look into that second src file, I wonder

Re: Password Protection (source file)

2012-05-30 Thread Noel Grandin
On 2012-05-30 17:46, Joel Madero wrote: I'll look into that second src file, I wonder how I missed it. What grep command did you use and in what version of LO? git grep -i 'save.*password' on master Also, can you or someone tell me what this " And there is some code which may be using the

Re: Password Protection (source file)

2012-05-30 Thread Joel Madero
I'll look into that second src file, I wonder how I missed it. What grep command did you use and in what version of LO? Also, can you or someone tell me what this " And there is some code which may be using the native platform dialog: " means? Just starting to really delve into code like this, taki

Re: Password Protection (source file)

2012-05-30 Thread Noel Grandin
there is another one here: sfx2/source/dialog/filedlghelper.src:Text [ en-US ] = "Save with ~password" ; And there is some code which may be using the native platform dialog: vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx:case FILESAVE_AUTOEXTENSION_PASSWORD: vcl/unx/gtk/fpick

Re: Password Protection (source file)

2012-05-30 Thread Joel Madero
Yeah that's the only one I found as well but changing it doesn't change the text at all when you go to Save As (the bottom left corner where it says Save with password) which is the dilemma I'm facing :/ On Wed, May 30, 2012 at 8:26 AM, Noel Grandin wrote: > > > On 2012-05-30 17:10, Joel Madero

Re: Password Protection (source file)

2012-05-30 Thread Noel Grandin
On 2012-05-30 17:10, Joel Madero wrote: Thanks for the suggestion. I went ahead and checked it out, unfortunately not the case. I did yet another search for "Save with password" with grep just to be positive there wasn't another instance of it and there isn't. fpicker/source/office/iodlg.sr

Password Protection (source file)

2012-05-30 Thread Joel Madero
On Wed, May 30, 2012 at 7:59 AM, Stefan Knorr (Astron) < heinzless...@googlemail.com> wrote: > Hi Joel, > > not that I am a very good person to answer this, but are you sure you > are using the builtin file picker instead of the native one? AFAIK, > the files in fpicker are specific to LibO's buil

Re: Password Protection (source file)

2012-05-29 Thread Joel Madero
So what I ended up doing is thinking I would work backwards, so I did a grep for the most obvious password related phrase: "Save with password" which is an option while saving. I found a single src file that had this phrase so I thought "PERFECT!", the file: fpicker/source/office/iodlg.src

Re: Password Protection (source file)

2012-05-28 Thread Michael Meeks
Hi Joel, On Sat, 2012-05-26 at 23:34 -0700, Joel Madero wrote: > Trying to find the location and the manner in which libreoffice > protects files. Anyone know where I can locate the appropriate source > file, what the object names are that I should look for, and if > possible direct me to the docu

Password Protection (source file)

2012-05-26 Thread Joel Madero
Hi All, Trying to find the location and the manner in which libreoffice protects files. Anyone know where I can locate the appropriate source file, what the object names are that I should look for, and if possible direct me to the documentation. Thanks in advance Joel