[Libreoffice-commits] core.git: 9 commits - idl/Executable_svidl.mk idl/inc idl/source

2016-02-11 Thread Noel Grandin
 idl/Executable_svidl.mk|1 
 idl/inc/basobj.hxx |2 
 idl/inc/database.hxx   |4 -
 idl/inc/lex.hxx|2 
 idl/inc/parser.hxx |   37 
 idl/source/objects/basobj.cxx  |6 +-
 idl/source/objects/bastype.cxx |   23 +++-
 idl/source/objects/module.cxx  |9 +--
 idl/source/objects/object.cxx  |   37 
 idl/source/objects/slot.cxx|  117 ++---
 idl/source/objects/types.cxx   |   28 +++--
 idl/source/prj/command.cxx |4 +
 idl/source/prj/database.cxx|   85 -
 idl/source/prj/parser.cxx  |   84 +
 14 files changed, 233 insertions(+), 206 deletions(-)

New commits:
commit cf6c21e7f11fa7e438700478d61d5341cb614bd0
Author: Noel Grandin 
Date:   Thu Feb 11 10:03:18 2016 +0200

ReadDelemiter->ReadDelimiter

Change-Id: I311eb27e3d287f3ef409cb54f19a152793f940d9

diff --git a/idl/inc/lex.hxx b/idl/inc/lex.hxx
index 412bb33..14b91cd 100644
--- a/idl/inc/lex.hxx
+++ b/idl/inc/lex.hxx
@@ -199,7 +199,7 @@ public:
 return false;
 }
 
-void ReadDelemiter()
+void ReadDelimiter()
 {
 if( (*pCurToken)->IsChar()
   && (';' == (*pCurToken)->GetChar()
diff --git a/idl/source/objects/basobj.cxx b/idl/source/objects/basobj.cxx
index 3a99061..5812626 100644
--- a/idl/source/objects/basobj.cxx
+++ b/idl/source/objects/basobj.cxx
@@ -100,7 +100,7 @@ void SvMetaObject::DoReadContextSvIdl( SvIdlDataBase & 
rBase,
 {
 nBeginPos = rInStm.Tell();
 ReadContextSvIdl( rBase, rInStm );
-rInStm.ReadDelemiter();
+rInStm.ReadDelimiter();
 }
 }
 
@@ -124,7 +124,7 @@ bool SvMetaObject::ReadSvIdl( SvIdlDataBase & rBase, 
SvTokenStream & rInStm )
 {
 nBeginPos = rInStm.Tell();
 ReadAttributesSvIdl( rBase, rInStm );
-rInStm.ReadDelemiter();
+rInStm.ReadDelimiter();
 }
 bOk = rInStm.Read( ']' );
 }
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx
index e501939..ea040f5 100644
--- a/idl/source/objects/module.cxx
+++ b/idl/source/objects/module.cxx
@@ -115,7 +115,7 @@ void SvMetaModule::ReadContextSvIdl( SvIdlDataBase & rBase,
 {
 nBeginPos = aTokStm.Tell();
 ReadContextSvIdl( rBase, aTokStm );
-aTokStm.ReadDelemiter();
+aTokStm.ReadDelimiter();
 }
 bOk = aTokStm.GetToken().IsEof();
 if( !bOk )
@@ -164,7 +164,7 @@ bool SvMetaModule::ReadSvIdl( SvIdlDataBase & rBase, 
SvTokenStream & rInStm )
 sal_uInt32  nTokPos = rInStm.Tell();
 SvToken * pTok  = rInStm.GetToken_Next();
 bool bOk = pTok->Is( SvHash_module() );
-rInStm.ReadDelemiter();
+rInStm.ReadDelimiter();
 if( bOk )
 {
 rBase.Push( this ); // onto the context stack
commit 78a072f0a18cc90275b8d2ba630b3be693586327
Author: Noel Grandin 
Date:   Thu Feb 11 10:01:26 2016 +0200

improve the parsing loop for the module keyword

Change-Id: I0931ae0edfb45c5d4c67f545a1a5e513c8210e88

diff --git a/idl/source/prj/parser.cxx b/idl/source/prj/parser.cxx
index 4bb0320..db594ab 100644
--- a/idl/source/prj/parser.cxx
+++ b/idl/source/prj/parser.cxx
@@ -55,18 +55,12 @@ bool SvIdlParser::ReadSvIdl( SvIdlDataBase& rBase, 
SvTokenStream & rInStm, bool
 bOk = false;
 }
 
-sal_uInt32 nBeginPos = 0x; // can not happen with Tell
-
-while( bOk && nBeginPos != rInStm.Tell() )
+while( bOk )
 {
-nBeginPos = rInStm.Tell();
 pTok = &rInStm.GetToken();
 if( pTok->IsEof() )
 return true;
-if( pTok->IsEmpty() )
-bOk = false;
 
-// only one import at the very beginning
 if( pTok->Is( SvHash_module() ) )
 {
 tools::SvRef aModule = new SvMetaModule( bImported );
commit 401b7468bdaae0626d1179bc1c98c2882cc38d1d
Author: Noel Grandin 
Date:   Thu Feb 11 09:26:19 2016 +0200

create a new class SvIdlParser

and start the process of moving the parsing code to one central file

Change-Id: If6d8def37ec8c8415c22d39f9d8b7a09ec423873

diff --git a/idl/Executable_svidl.mk b/idl/Executable_svidl.mk
index b2b3ecd..090bdd6 100644
--- a/idl/Executable_svidl.mk
+++ b/idl/Executable_svidl.mk
@@ -47,6 +47,7 @@ $(eval $(call gb_Executable_add_exception_objects,svidl,\
idl/source/prj/database \
idl/source/prj/globals \
idl/source/prj/svidl \
+   idl/source/prj/parser \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/idl/inc/database.hxx b/idl/inc/database.hxx
index c435aaf..3b7f15f 100644
--- a/idl/inc/database.hxx
+++ b/idl/inc/database.hxx
@@ -102,6 +102,7 @@ public:

Re: [libreoffice-projects] Minutes of the Design Hangout: 2015-12-11

2016-02-11 Thread David Tardon
Hi,

On Fri, Dec 18, 2015 at 04:42:50PM +0100, Jan Holesovsky wrote:
> + Save button behavior (Samuel)
> 
> + Save contains "Save as" and "Save remote" in a dropdown
> + Dropdown was disabled when "Save" was disabled
> -> Made the button dropdown only when save disabled 
> https://gerrit.libreoffice.org/#/c/20079/
> + However, this is quite irritating (button has two different modes, user 
> doesn't know why he can't click save and later he can)
> + Also users missing indication whether document is saved
> + possible solutions:
> + make only the dropdown active
> + move the functionality to Save As
> + what do you want from that button? (Heiko)
> + is there a good reason to disable Save in the first place? (Heiko)
> + we already have a user setting to enable Save all the time 
> (Kendy)
> + moving to Save As is a problem: wanted to hide it in the default toolbar
> + Save status is in the status bar too (Kendy)
> + not many people know about that though (Heiko)
> + the information could be in the tooltip; even with additional info 
> (Document is saved / Document is modified / ...) (Kendy) +1 (Stuart)
> + eg. MSO has that enabled all the time (Samuel)

We could add "Edited" (or "Modified") to the title bar, like Apple
Keynote/Pages/Numbers do (they do not have "Save" in the toolbar, but
the menu item is always active too).

D.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: dictionaries

2016-02-11 Thread Andras Timar
 dictionaries |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 85d18c4ed044da60e9d6d180937ac8e3a3a9c6fa
Author: Andras Timar 
Date:   Thu Feb 11 10:46:53 2016 +0100

Updated core
Project: dictionaries  86e206b136520e4e4952637851f05d104af53715

Updated pt_PT dictionary to version 16.1.3.4

Change-Id: Iceff55cf9d09817f8f857b687983fddfbffb5c56

diff --git a/dictionaries b/dictionaries
index 0d3b5e5..86e206b 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 0d3b5e5314e68c3cf5d573b2e7bdc11143dcb821
+Subproject commit 86e206b136520e4e4952637851f05d104af53715
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: pt_PT/description.xml pt_PT/pt_PT.dic

2016-02-11 Thread Andras Timar
 pt_PT/description.xml |2 +-
 pt_PT/pt_PT.dic   |   33 +++--
 2 files changed, 20 insertions(+), 15 deletions(-)

New commits:
commit 86e206b136520e4e4952637851f05d104af53715
Author: Andras Timar 
Date:   Thu Feb 11 10:46:53 2016 +0100

Updated pt_PT dictionary to version 16.1.3.4

Change-Id: Iceff55cf9d09817f8f857b687983fddfbffb5c56

diff --git a/pt_PT/description.xml b/pt_PT/description.xml
index e8abe80..7a9134f 100644
--- a/pt_PT/description.xml
+++ b/pt_PT/description.xml
@@ -1,6 +1,6 @@
 
 http://openoffice.org/extensions/description/2006"; 
xmlns:d="http://openoffice.org/extensions/description/2006";  
xmlns:xlink="http://www.w3.org/1999/xlink";>
-
+
 
 
 European Portuguese spelling dictionary, 
hyphenation rules, and thesaurus
diff --git a/pt_PT/pt_PT.dic b/pt_PT/pt_PT.dic
index ed8cb8c..02300b0 100644
--- a/pt_PT/pt_PT.dic
+++ b/pt_PT/pt_PT.dic
@@ -1,4 +1,4 @@
-   44182
+   44187
 ,  [CAT=punct1a]
 ;  [CAT=punct1b]
 :  [CAT=punct1c]
@@ -4930,6 +4930,7 @@ biombo/p  [CAT=nc,G=m,N=s]
 biomecânica   [CAT=nc,G=f,N=s]
 biomédico/fp  [CAT=a_nc,G=m,N=s]
 biometria/pr   [CAT=nc,G=f,N=s]
+biónico/fp[CAT=adj,N=s,G=m]
 biopsia/p  [CAT=nc,G=f,N=s]
 bioquímica[CAT=nc,G=f,N=s]
 bioquímico/fp [CAT=a_nc,G=m,N=s]
@@ -9464,6 +9465,7 @@ coriáceo/fp  [CAT=adj,N=s,G=m]
 coreano/fp [CAT=adj,N=s,G=m]
 corredator [PREAO90=co-redactor,CAT=nc,G=m,N=s]
 corredentor[PREAO90=co-redentor,CAT=nc,G=m,N=s]
+correferência/p   [PREAO90=co-referência,CAT=nc,G=f,N=s]
 corregência/p [PREAO90=co-regência,CAT=nc,G=f,N=s]
 corregente [PREAO90=co-regente,CAT=nc,G=_,N=s]
 coreografar/XYPL   [CAT=v,T=inf,TR=t]
@@ -26365,6 +26367,7 @@ pivete  [CAT=nc,G=m,N=s]
 pivô/p[CAT=nc,G=m,N=s]
 piza/p [CAT=nc,G=f,N=s]
 placa/p[CAT=nc,G=f,N=s]
+placebo/p  [CAT=nc,G=m,N=s]
 placentação  [CAT=nc,G=f,N=s]
 placenta   [CAT=nc,G=f,N=s]
 placentário/fp[CAT=a_nc,G=m,N=s]
@@ -34650,9 +34653,10 @@ viril/pid  [CAT=adj,N=s,G=_]
 virilha/p  [CAT=nc,G=f,N=s]
 virilismo/p[CAT=nc,G=m,N=s]
 virilizar/XYPL [CAT=v,T=inf,TR=t]
+vírico/fp [CAT=adj,N=s,G=m]
 virologia  [CAT=nc,G=f,N=s]
 virose/p   [CAT=nc,G=f,N=s]
-viroso/p   [CAT=adj,N=s,G=m]
+viroso/pf  [CAT=adj,N=s,G=m]
 virote [CAT=nc,G=m,N=s]
 virtual/pmdj   [CAT=adj,N=s,G=_]
 virtude/pS [CAT=nc,G=f,N=s]
@@ -38051,32 +38055,33 @@ URSS/x[CAT=np,G=f,N=s,SEM=sigla]
 VCI[CAT=np,G=f,N=s,SEM=sigla]
 VIH[CAT=np,G=m,N=s,SEM=sigla]
 VW [CAT=np,G=m,N=s,SEM=sigla]
+GB/p   [$gigabyte$CAT=nc,G=m,N=s$ABR=1]
+GHz[$gigahertz$CAT=nc,G=m,N=s$ABR=1,G=m]
+Lda[$limitado$CAT=adj,N=s,G=m$ABR=1,G=f]
+MB/p   [$megabyte$CAT=nc,G=m,N=s$ABR=1]
+MHz[$megahertz$CAT=nc,G=m,N=s$ABR=1,G=m]
+Sta[$santo$CAT=nc,G=m,N=s$ABR=1,G=f]
+TB/p   [$terabyte$CAT=nc,G=m,N=s$ABR=1]
 cm [$centímetro$CAT=nc,G=m,N=s$ABR=1]
-kB/p   [$quilobyte$CAT=nc,G=m,N=s$ABR=1]
 dr/p   [$doutor$CAT=nc,G=m,N=s$ABR=1]
-etc[CAT=punct,ABR=1]
+dra/p  [$doutor$CAT=nc,G=m,N=s$ABR=1,G=f]
 eng[$engenheiro$CAT=nc,G=m,N=s$ABR=1]
+etc[CAT=punct,ABR=1]
 ex [$exemplo$CAT=nc,G=m,N=s$ABR=1]
 exs[$exemplo$CAT=nc,G=m,N=s$N=p,ABR=1]
 fac[$faculdade$CAT=nc,G=f,N=s$ABR=1]
 fig[$figura$CAT=nc,G=f,N=s$ABR=1]
-GB/p   [$gigabyte$CAT=nc,G=m,N=s$ABR=1]
-GHz[$gigahertz$CAT=nc,G=m,N=s$ABR=1,G=m]
+kB/p   [$quilobyte$CAT=nc,G=m,N=s$ABR=1]
 kg [$quilograma$CAT=nc,G=m,N=s$ABR=1]
 km/p   [$quilómetro$CAT=nc,G=m,N=s$ABR=1]
 ln [$logaritmo$CAT=nc,G=m,N=s$ABR=1]
-MB/p   [$megabyte$CAT=nc,G=m,N=s$ABR=1]
 mm [$milimetro$CAT=nc,G=m,N=s$ABR=1]
-pág   [$página$CAT=nc,G=f,N=s$ABR=1]
 prof/p [$professor$CAT=nc,G=m,N=s$ABR=1]
+pág   [$página$CAT=nc,G=f,N=s$ABR=1]
+sr/f   [$senhor$CAT=nc,G=m,N=s$ABR=1]
 séc   [$século$CAT=nc,G=m,N=s$ABR=1]
 sécs  [$século$CAT=nc,G=m,N=s$N=p,ABR=1]
-sr/f   [$senhor$CAT=nc,G=m,N=s$ABR=1]
-Sta[$santo$CAT=nc,G=m,N=s$ABR=1,G=f]
-Lda[$limitado$CAT=adj,N=s,G=m$ABR=1,G=f]
-MHz[$megahertz$CAT=nc,G=m,N=s$ABR=1,G=m]
-TB/p   [$terabyte$CAT=nc,G=m,N=s$ABR=1]
-badmínton [CAT=nc,G=m,N=s,ORIG=ing]
+vs [CAT=punct,ABR=1]
 ballet [CAT=nc,G=m,N=s,PT=balé,ORIG=fra]
 boîte/p   [CAT=nc,G=f,N=s,PT=boate,ORIG=fra]
 bulldozer  [CAT=nc,G=m,N=s,ORIG=ing]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 4 commits - xmlsecurity/inc xmlsecurity/source

2016-02-11 Thread Miklos Vajna
 xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx |1 
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx |   24 -
 xmlsecurity/source/helper/xmlsignaturehelper.cxx   |   21 ++
 xmlsecurity/source/helper/xmlsignaturehelper2.cxx  |6 +++-
 xmlsecurity/source/helper/xsecctl.cxx  |6 ++--
 xmlsecurity/source/helper/xsecsign.cxx |6 ++--
 6 files changed, 50 insertions(+), 14 deletions(-)

New commits:
commit 5c5ad2e2decb9af6005419a34db2bd0f4e9bcfd3
Author: Miklos Vajna 
Date:   Thu Feb 11 10:25:36 2016 +0100

xmlsecurity OOXML export: fix double-char-fragment of same-document 
references

The problem was that the final export lacked the "#" prefix in the
same-document reference names. Fix this by doing what the ODF export
does: don't let the signature informations (data model) contain the "#",
just prepend it right before writing the name out.

This way it won't matter if the source of the name is an import (which
doesn't keep the "#") or a new signature (which did, previously), we'll
always write exactly one "#".

Change-Id: I18b6a5ba55b7e79ace537b7ecf575a7abc71e281

diff --git a/xmlsecurity/source/helper/xsecctl.cxx 
b/xmlsecurity/source/helper/xsecctl.cxx
index 6aec0f6..756d80e 100644
--- a/xmlsecurity/source/helper/xsecctl.cxx
+++ b/xmlsecurity/source/helper/xsecctl.cxx
@@ -1046,14 +1046,14 @@ void XSecController::exportOOXMLSignature(const 
uno::Reference&
 {
 {
 rtl::Reference pAttributeList(new 
SvXMLAttributeList());
-if (rReference.ouURI != "#idSignedProperties")
+if (rReference.ouURI != "idSignedProperties")
 pAttributeList->AddAttribute("Type", 
"http://www.w3.org/2000/09/xmldsig#Object";);
 else
 pAttributeList->AddAttribute("Type", 
"http://uri.etsi.org/01903#SignedProperties";);
-pAttributeList->AddAttribute(ATTR_URI, rReference.ouURI);
+pAttributeList->AddAttribute(ATTR_URI, CHAR_FRAGMENT + 
rReference.ouURI);
 xDocumentHandler->startElement(TAG_REFERENCE, 
uno::Reference(pAttributeList.get()));
 }
-if (rReference.ouURI == "#idSignedProperties")
+if (rReference.ouURI == "idSignedProperties")
 {
 xDocumentHandler->startElement(TAG_TRANSFORMS, 
uno::Reference(new SvXMLAttributeList()));
 rtl::Reference pAttributeList(new 
SvXMLAttributeList());
diff --git a/xmlsecurity/source/helper/xsecsign.cxx 
b/xmlsecurity/source/helper/xsecsign.cxx
index cacdfcb..a0aa8dc 100644
--- a/xmlsecurity/source/helper/xsecsign.cxx
+++ b/xmlsecurity/source/helper/xsecsign.cxx
@@ -182,11 +182,11 @@ cssu::Reference< cssxc::sax::XReferenceResolvedListener > 
XSecController::prepar
 }
 else
 {
-
internalSignatureInfor.addReference(SignatureReferenceType::SAMEDOCUMENT, 
"#idPackageObject", -1);
+
internalSignatureInfor.addReference(SignatureReferenceType::SAMEDOCUMENT, 
"idPackageObject", -1);
 size++;
-
internalSignatureInfor.addReference(SignatureReferenceType::SAMEDOCUMENT, 
"#idOfficeObject", -1);
+
internalSignatureInfor.addReference(SignatureReferenceType::SAMEDOCUMENT, 
"idOfficeObject", -1);
 size++;
-
internalSignatureInfor.addReference(SignatureReferenceType::SAMEDOCUMENT, 
"#idSignedProperties", -1);
+
internalSignatureInfor.addReference(SignatureReferenceType::SAMEDOCUMENT, 
"idSignedProperties", -1);
 size++;
 }
 
commit 5cd3c87d5dfed9707f00dcebdd4c15642febbe12
Author: Miklos Vajna 
Date:   Thu Feb 11 09:22:09 2016 +0100

xmlsecurity OOXML export: write signature streams to persistent storage

Change-Id: Ia24a1b64d4adfc0db537704779ca25cfd86cac8f

diff --git a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx 
b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
index 1a071c9..90b9540 100644
--- a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
+++ b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
@@ -187,6 +187,7 @@ public:
 void ExportSignatureRelations(css::uno::Reference 
xStorage, int nSignatureCount);
 /// Given that xSignatureStorage is an OOXML _xmlsignatures storage, 
create and write a new signature.
 bool 
CreateAndWriteOOXMLSignature(css::uno::Reference 
xRootStorage, css::uno::Reference xSignatureStorage, int 
nSignatureIndex);
+void ExportOOXMLSignature(css::uno::Reference 
xRootStorage, css::uno::Reference xSignatureStorage, 
const SignatureInformation& rInformation, int nSignatureIndex);
 };
 
 #endif // INCLUDED_XMLSECURITY_INC_XMLSECURITY_XMLSIGNATUREHELPER_HXX
diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx 
b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
index 6132e84..15028b4 100644
--- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
+++ b/xmlsecuri

Re: Old/Obsolete file format import still needed?

2016-02-11 Thread Michael Stahl
On 11.02.2016 07:34, David Tardon wrote:
> Hi,
> 
> On Wed, Feb 10, 2016 at 02:20:50PM -0500, Bryan Quigley wrote:
>>> Anyhow - I share your concern wrt. the attack surface that all these
>>> old file filters provide for us; I attach a prototype patch that adds an
>>> 'EXOTIC' annotation to our filter descriptions. It is missing a UI
>>> Interaction Handler piece (cf. the hole with the notes and so on in
>>> there ;-) - we'll need a new request type I guess.
>>>
>>> My ideal would be to pop up a dialog saying:
>>>
>>> "You're asking LibreOffice to open a very unusual file-type.
>>>  Unless you are certain that this file is indeed a >>  Word Pro> file it is safest to not open it.
>>>
>>>  [ ] - never show this again
>>>
>>>   [ this is an unusual file ] [get me out of here ]"
>>>
>>> Of some kind =) is that something you'd be interested in working on 
>>> ?
>> Thanks for the first pass code.  I generally don't find dialouges like
>> that to be super useful (many users just click right through).
>> However, in labeling them Exotic we could add a configuration option
>> to let system administrators disable them all in one go for a secure
>> site, etc.  I'll look into that more.
> 
> This of course makes the assumption that filters for common formats
> (like .doc etc.) do not contain vulnerabilities, which is IMHO just
> wishful thinking. IIRC there was exactly 1 CVE for import of non-MS file
> format during the ~8 years I have been working on this code base. And I
> think the likelihood to encounter a malformed (or even malicious) MS
> Word document is far greater than, e.g., Hangul Word or AppleWorks
> document. So the "secure site" aspect seems rather dubious to me.

but that is just a measure of where white-hat "security researchers"
have been looking for bugs; i find that the idea that black hats don't
do their own independent research to find vulnerabilities is wishful
thinking.

serious vulnerabilities are easiest to find in code that is very rarely
used and almost unknown even to most of the developers of the project,
but enabled by default; see Heartbleed for an illustrative example.

what i think actually matters is this: if random users get an email with
a file in FOOBAR format attached to it, does it open in LibreOffice when
they click on it?

and how many documents are actually legitimately mailed around in the
appropriately named "GreatWorks" format?

from that point of view disabling some import filters *does* reduce the
attack surface.

(another approach would be to implement the import filters not in a
glorified portable macro assembler like C++ but in say Java, but i'd be
accused of trolling and being intolerant of other people's freedom to
shoot themselves in the foot if i would propose that, so consider it
more of a theoretical thought experiment.  well at least you and Caolan
have spent many hours running afl-fuzz, which is the best we can do
currently.)


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Old/Obsolete file format import still needed?

2016-02-11 Thread Michael Stahl
On 11.02.2016 07:39, Tor Lillqvist wrote:
> 
> > we could add a configuration option
> 
> We don't need more configuration options.
> 
> > to let system administrators disable them all in one go for a secure
> > site, etc. 
> 
> I think you misunderstand what a typical "system administrator" does,
> for the vast majority of our user base (counting just the part of it
> that even has hired sysadmins). Hint: They don't build software from
> sources.

i think you misunderstood that this wasn't about "configure" options but
about "officecfg" runtime configuration.


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] online.git: Branch 'distro/collabora/milestone-7' - loleaflet/src

2016-02-11 Thread Jan Holesovsky
 loleaflet/src/map/Map.js |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 4911d08854c6023782cdf27e61dacb6e2071d40b
Author: Jan Holesovsky 
Date:   Thu Feb 11 11:18:06 2016 +0100

loleaflet: Init the handlers necessary for initializationcomplete first.

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 3819328..9cdb3cc 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -71,9 +71,6 @@ L.Map = L.Evented.extend({
this._addLayers(this.options.layers);
this._socket = L.socket(this);
 
-   // when editing, we need the LOK session right away
-   this.setPermission(options.permission);
-
// Inhibit the context menu - the browser thinks that the 
document
// is just a bunch of images, hence the context menu is useless 
(tdf#94599)
this.on('contextmenu', function() {});
@@ -105,6 +102,11 @@ L.Map = L.Evented.extend({
this._fireInitComplete('CharFontName');
}
});
+
+   // when editing, we need the LOK session right away
+   if (options.permission === 'edit') {
+   this.setPermission(options.permission);
+   }
},
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loleaflet/src

2016-02-11 Thread Jan Holesovsky
 loleaflet/src/map/Map.js |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 9f96b1716f710b1c84631d988d6d29bf03f391f2
Author: Jan Holesovsky 
Date:   Thu Feb 11 11:18:06 2016 +0100

loleaflet: Init the handlers necessary for initializationcomplete first.

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 015b0a5..d048556 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -71,9 +71,6 @@ L.Map = L.Evented.extend({
this._addLayers(this.options.layers);
this._socket = L.socket(this);
 
-   // when editing, we need the LOK session right away
-   this.setPermission(options.permission);
-
// Inhibit the context menu - the browser thinks that the 
document
// is just a bunch of images, hence the context menu is useless 
(tdf#94599)
this.on('contextmenu', function() {});
@@ -105,6 +102,11 @@ L.Map = L.Evented.extend({
this._fireInitComplete('CharFontName');
}
});
+
+   // when editing, we need the LOK session right away
+   if (options.permission === 'edit') {
+   this.setPermission(options.permission);
+   }
},
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 96414] Remove feature to show Navigator during slideshow

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96414

pierre-yves samyn  changed:

   What|Removed |Added

 CC||pierre-yves.samyn@laposte.n
   ||et

--- Comment #15 from pierre-yves samyn  ---
Hi

Display Navigator during slideshow answer a common question from users: the
permanent display of the summary for the presentation.

See https://wiki.documentfoundation.org/Faq/Impress/107

Regards
Pierre-Yves

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 93889] Extraordinary, un-necessary busy-loop removal ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93889

Jaskaran Singh  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jvsg1...@gmail.com
   |desktop.org |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Old/Obsolete file format import still needed?

2016-02-11 Thread Bjoern Michaelsen
Hi,

On Thu, Feb 11, 2016 at 11:16:40AM +0100, Michael Stahl wrote:
> i think you misunderstood that this wasn't about "configure" options but
> about "officecfg" runtime configuration.

Right. Assuming the later, it seems like a good thing to me: Makes the
enterprisey sysadmins happy without getting in the way of either devs
(./configure) or endusers (more GUI config).

Best,

Bjoern
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Build fail when building Libreoffice on Windows.

2016-02-11 Thread Michael Stahl
On 11.02.2016 06:29, Paul Blinzer wrote:
> Platfom: Windows 10 64bit, running Cygwin 32 LODE build setup to compile
> libreoffice.
> Default setup of build envrionment as outlined in
> https://wiki.documentfoundation.org/Development/BuildingOnWindows
> 
> Synced up to git repo today (2/10/2016)
> Compilation went well until reaching unit test for ssl check (see below
> for output).
> 
> Checked my cygwin installation and have openssl  & openssh packages as
> indicated in the manual install sections (which I cross-validated).

Cygwin's openssl package is irrelevant for the build.

> [build PYT] pyuno_pytests_ssl
> E
> ==
> ERROR: test_ssl_import (testssl.SSLTest)
> --
> Traceback (most recent call last):
>   File "C:\sources\libo-core\pyuno\qa\pytests\testssl.py", line 6, in
> test_ssl_import
> import ssl
>   File
> "C:\sources\libo-core\instdir\program\python-core-3.3.0\lib\ssl.py",
> line 60, in 
> import _ssl # if we can't import it, let the error propagate
> ImportError: DLL load failed: The operating system cannot run %1.

very likely the problem is that the bundled OpenSSL dlls cannot be
loaded from instdir/program.

please check if you have "ssleay32.dll" or "libeay32.dll" in any
directory in PATH, such as C:/Windows/system32 - these would be found
first and are most likely incompatible (because OpenSSL doesn't do ABI
stability).


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sc/source

2016-02-11 Thread Jochen Nitschke
 sc/source/filter/oox/sheetdatabuffer.cxx |   10 --
 1 file changed, 10 deletions(-)

New commits:
commit 09a4abf2e1dd3e081d835a537ec913c71aa6c53e
Author: Jochen Nitschke 
Date:   Tue Feb 2 01:05:28 2016 +0100

cppcheck: unreadVariable 'bTextWrap'

commit 764752f5d85cb7c86ad21340dfdda4b62754790c
"better import xlsx heights" left some unused code

Change-Id: I1bc0210f65a1e0c3cb16f86145b874cbca53f151
Signed-off-by: Jochen Nitschke 
Reviewed-on: https://gerrit.libreoffice.org/22013
Reviewed-by: Justin Luth 
Tested-by: Samuel Mehrbrodt 
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sc/source/filter/oox/sheetdatabuffer.cxx 
b/sc/source/filter/oox/sheetdatabuffer.cxx
index 1c27461..f6f7fb7 100644
--- a/sc/source/filter/oox/sheetdatabuffer.cxx
+++ b/sc/source/filter/oox/sheetdatabuffer.cxx
@@ -753,16 +753,6 @@ void SheetDataBuffer::applyCellMerging( const 
CellRangeAddress& rRange )
 // do merge
 if( bMultiCol || bMultiRow )
 rDoc.DoMerge( getSheetIndex(), rStart.Col(), rStart.Row(), rEnd.Col(), 
rEnd.Row() );
-// #i93609# merged range in a single row: test if manual row height is 
needed
-if( !bMultiRow )
-{
-bool bTextWrap = static_cast< const SfxBoolItem* >( rDoc.GetAttr( 
rStart.Col(), rStart.Row(), rStart.Tab(), ATTR_LINEBREAK ) )->GetValue();
-if( !bTextWrap && (rDoc.GetCellType( rStart ) == CELLTYPE_EDIT) )
-{
-if (const EditTextObject* pEditObj = rDoc.GetEditText(rStart))
-bTextWrap = pEditObj->GetParagraphCount() > 1;
-}
-}
 }
 
 } // namespace xls
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 91794] Remove conditionals depending on OSL_DEBUG_LEVEL > 1

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91794

--- Comment #2 from Eike Rathke  ---
PLEASE do not blindly disable test code that was in #if OSL_DEBUG_LEVEL > 1,
rather change it to be always run in debug/dbgutil builds, so #if
OSL_DEBUG_LEVEL > 0

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 91794] Remove conditionals depending on OSL_DEBUG_LEVEL > 1

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91794

--- Comment #3 from Rohan Kumar  ---
(In reply to Eike Rathke from comment #2)
> PLEASE do not blindly disable test code that was in #if OSL_DEBUG_LEVEL > 1,
> rather change it to be always run in debug/dbgutil builds, so #if
> OSL_DEBUG_LEVEL > 0

I'm sorry. let me update the patch!

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 90061] improve rendering of parametrized shapes

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90061

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82365] create test files for regression testing of libabw

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82365

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82362] create test files for regression testing of libmspub

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82362

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82363] create test files for regression testing of libvisio

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82363

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82361] create test files for regression testing of libcdr

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82361

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 84765] Impress Remote: add support for handling hidden slides

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84765

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: xmlsecurity/inc xmlsecurity/source

2016-02-11 Thread Miklos Vajna
 xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx |3 +
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx |1 
 xmlsecurity/source/helper/xmlsignaturehelper.cxx   |   45 +
 3 files changed, 49 insertions(+)

New commits:
commit 6e8be4c99e00d75bfb0d358f64071495ec6b21e3
Author: Miklos Vajna 
Date:   Thu Feb 11 12:06:02 2016 +0100

xmlsecurity OOXML export: register signature content types

Our own importer is happy about the export result already, but MSO is
more picky, and mandates the correct content types for both
_xmlsignatures/origin.sigs and the individual signature streams.

With this, MSO can open the signed file again (while previously it just
declared the file corrupted), though it still declares the signature
invalid.

Change-Id: I199ad96bb91e7ce03fdf1f10f9500db4e05bb5c1

diff --git a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx 
b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
index 90b9540..f22570a 100644
--- a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
+++ b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
@@ -187,7 +187,10 @@ public:
 void ExportSignatureRelations(css::uno::Reference 
xStorage, int nSignatureCount);
 /// Given that xSignatureStorage is an OOXML _xmlsignatures storage, 
create and write a new signature.
 bool 
CreateAndWriteOOXMLSignature(css::uno::Reference 
xRootStorage, css::uno::Reference xSignatureStorage, int 
nSignatureIndex);
+/// Similar to CreateAndWriteOOXMLSignature(), but used to write the 
signature to the persistent storage, not the temporary one.
 void ExportOOXMLSignature(css::uno::Reference 
xRootStorage, css::uno::Reference xSignatureStorage, 
const SignatureInformation& rInformation, int nSignatureIndex);
+/// Given that xStorage is an OOXML root storage, advertise signatures in 
its [Content_Types].xml stream.
+void ExportSignatureContentTypes(css::uno::Reference 
xStorage, int nSignatureCount);
 };
 
 #endif // INCLUDED_XMLSECURITY_INC_XMLSECURITY_XMLSIGNATUREHELPER_HXX
diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx 
b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
index 15028b4..c53b93d 100644
--- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
+++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
@@ -416,6 +416,7 @@ IMPL_LINK_NOARG_TYPED(DigitalSignaturesDialog, OKButtonHdl, 
Button*, void)
 {
 // OOXML
 size_t nSignatureCount = maCurrentSignatureInformations.size();
+maSignatureHelper.ExportSignatureContentTypes(mxStore, 
nSignatureCount);
 
maSignatureHelper.ExportSignatureRelations(aStreamHelper.xSignatureStorage, 
nSignatureCount);
 
 for (size_t i = 0; i < nSignatureCount; ++i)
diff --git a/xmlsecurity/source/helper/xmlsignaturehelper.cxx 
b/xmlsecurity/source/helper/xmlsignaturehelper.cxx
index 695b14b..056a187 100644
--- a/xmlsecurity/source/helper/xmlsignaturehelper.cxx
+++ b/xmlsecurity/source/helper/xmlsignaturehelper.cxx
@@ -513,6 +513,51 @@ void 
XMLSignatureHelper::ExportSignatureRelations(css::uno::Referencecommit();
 }
 
+void 
XMLSignatureHelper::ExportSignatureContentTypes(css::uno::Reference
 xStorage, int nSignatureCount)
+{
+sal_Int32 nOpenMode = embed::ElementModes::READWRITE;
+uno::Reference 
xStream(xStorage->openStreamElement("[Content_Types].xml", nOpenMode), 
uno::UNO_QUERY);
+uno::Reference xInputStream = xStream->getInputStream();
+uno::Sequence< uno::Sequence > aContentTypeInfo = 
comphelper::OFOPXMLHelper::ReadContentTypeSequence(xInputStream, mxCtx);
+if (aContentTypeInfo.getLength() < 2)
+{
+SAL_WARN("xmlsecurity.helper", "no defaults or overrides in 
aContentTypeInfo");
+return;
+}
+
+// Append sigs to defaults, if it's not there already.
+uno::Sequence& rDefaults = aContentTypeInfo[0];
+auto it = std::find_if(rDefaults.begin(), rDefaults.end(), [](const 
beans::StringPair& rPair)
+{
+return rPair.First == "sigs";
+});
+if (it == rDefaults.end())
+{
+auto aDefaults = comphelper::sequenceToContainer< 
std::vector >(rDefaults);
+aDefaults.push_back(beans::StringPair("sigs", 
"application/vnd.openxmlformats-package.digital-signature-origin"));
+rDefaults = comphelper::containerToSequence(aDefaults);
+}
+
+// Remove existing signature overrides.
+uno::Sequence& rOverrides = aContentTypeInfo[1];
+auto aOverrides = comphelper::sequenceToContainer< 
std::vector >(rOverrides);
+aOverrides.erase(std::remove_if(aOverrides.begin(), aOverrides.end(), 
[](const beans::StringPair& rPair)
+{
+return rPair.First.startsWith("/_xmlsignatures/sig");
+}), aOverrides.end());
+
+// Add our signature overrides.
+for (int i = 1; i <= nSignatureCount; ++i)
+aOverrides.push_back(beans::StringPair("/_xmlsignatures/sig" + 
OUString::number(i) + ".xml", 
"application/vnd.openxmlform

[Bug 97228] Split up include files in include/vcl where possible into separate public and internal parts

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97228

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97559] refresh windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97559

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97557] resurrect windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97557

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97560] refresh windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97560

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97562] refresh windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97562

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97563] refresh windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97563

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97564] refresh windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97564

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97556] resurrect windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97556

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97628] [NEWHELP] Move Help content media to helpcontent2/ subproject

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97628

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 96890] The file "groupuinames.xml" is invalid XML because of missing namespace binding

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96890

jan iversen  changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 4 commits - idl/inc idl/source

2016-02-11 Thread Noel Grandin
 idl/inc/basobj.hxx |2 
 idl/inc/database.hxx   |   15 ++-
 idl/inc/lex.hxx|   13 +-
 idl/inc/parser.hxx |5 -
 idl/inc/slot.hxx   |2 
 idl/inc/types.hxx  |2 
 idl/source/cmptools/lex.cxx|8 -
 idl/source/objects/basobj.cxx  |8 -
 idl/source/objects/bastype.cxx |   47 -
 idl/source/objects/module.cxx  |   82 +++--
 idl/source/objects/object.cxx  |   55 +++
 idl/source/objects/slot.cxx|   69 +-
 idl/source/objects/types.cxx   |   35 ++-
 idl/source/prj/command.cxx |   21 +---
 idl/source/prj/database.cxx|  197 ++---
 idl/source/prj/parser.cxx  |   27 ++---
 16 files changed, 254 insertions(+), 334 deletions(-)

New commits:
commit 4e13a6911259d3d7d23b61cb76614263608bbd95
Author: Noel Grandin 
Date:   Thu Feb 11 14:33:36 2016 +0200

use exceptions for error handling in .SDI parsing

to simplify the normal control flow

Change-Id: If325ec0507a51d8e2d3340fc5b628bb75a078a44

diff --git a/idl/inc/basobj.hxx b/idl/inc/basobj.hxx
index 8b30126..12a1dc7 100644
--- a/idl/inc/basobj.hxx
+++ b/idl/inc/basobj.hxx
@@ -103,7 +103,7 @@ public:
 void  SetName( const OString& rName );
 virtual const OString &  GetName() const { return aName; }
 
-virtual boolTest( SvIdlDataBase &, SvTokenStream & rInStm );
+virtual boolTest( SvTokenStream & rInStm );
 virtual boolReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
 };
 
diff --git a/idl/inc/database.hxx b/idl/inc/database.hxx
index 3b7f15f..22d6b78 100644
--- a/idl/inc/database.hxx
+++ b/idl/inc/database.hxx
@@ -28,6 +28,7 @@
 
 #include 
 #include 
+#include 
 
 class SvCommand;
 
@@ -53,6 +54,16 @@ public:
 }
 };
 
+class SvParseException : public std::exception
+{
+public:
+SvIdlError aError;
+SvParseException( SvTokenStream & rInStm, const OString& rError );
+SvParseException( const OString& rError, SvToken& rTok );
+};
+
+
+
 class SvIdlDataBase
 {
 boolbExport;
@@ -106,10 +117,6 @@ public:
 SvRefMemberList& GetStack() { return aContextStack; }
 
 voidWrite(const OString& rText);
-static void WriteError(const OString& rErrWrn,
-const OString& rFileName,
-const OString& rErrorText,
-sal_uLong nRow = 0, sal_uLong nColumn = 0 
);
 voidWriteError( SvTokenStream & rInStm );
 voidSetError( const OString& rError, SvToken& rTok );
 voidSetAndWriteError( SvTokenStream & rInStm, const 
OString& rError );
diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx
index 8c838ad..93f127d 100644
--- a/idl/inc/slot.hxx
+++ b/idl/inc/slot.hxx
@@ -136,7 +136,7 @@ public:
 voidResetSlotPointer()
 { pNextSlot = pLinkedSlot = nullptr; }
 
-virtual boolTest( SvIdlDataBase &, SvTokenStream & rInStm ) 
override;
+virtual boolTest( SvTokenStream & rInStm ) override;
 virtual voidReadAttributesSvIdl( SvIdlDataBase & rBase,
  SvTokenStream & rInStm ) override;
 virtual boolReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) 
override;
diff --git a/idl/inc/types.hxx b/idl/inc/types.hxx
index 34f12d7..748dc6e 100644
--- a/idl/inc/types.hxx
+++ b/idl/inc/types.hxx
@@ -45,7 +45,7 @@ public:
 const SvIdentifier& GetSlotId() const;
 SvMetaType *GetType() const;
 
-virtual boolTest( SvIdlDataBase &, SvTokenStream & rInStm ) 
override;
+virtual boolTest( SvTokenStream & rInStm ) override;
 virtual boolReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) 
override;
 sal_uLong   MakeSfx( OStringBuffer& rAtrrArray );
 virtual voidInsert( SvSlotElementList&, const OString& rPrefix,
diff --git a/idl/source/objects/basobj.cxx b/idl/source/objects/basobj.cxx
index 797b849..62632a7 100644
--- a/idl/source/objects/basobj.cxx
+++ b/idl/source/objects/basobj.cxx
@@ -108,7 +108,7 @@ void SvMetaObject::ReadContextSvIdl( SvIdlDataBase &, 
SvTokenStream & )
 {
 }
 
-bool SvMetaObject::Test( SvIdlDataBase &, SvTokenStream & )
+bool SvMetaObject::Test( SvTokenStream & )
 {
 return true;
 }
diff --git a/idl/source/objects/bastype.cxx b/idl/source/objects/bastype.cxx
index ce1d8f3..d200f68 100644
--- a/idl/source/objects/bastype.cxx
+++ b/idl/source/objects/bastype.cxx
@@ -94,16 +94,11 @@ void SvIdentifier::ReadSvIdl( SvIdlDataBase & rBase,
 if( rTok.IsIdentifier() )
 {
 sal_uLong n;
-if( rBase.FindId( rTok.GetString(), &n ) )
-{
-setString(rTok.GetString());
-nValue = n;
-return;
-}
- 

[Bug 89902] WRITER: Drawing properties toolbar: Turn area filling color into split button

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89902

jan iversen  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #8 from jan iversen  ---
Missing code pointer

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 57894] Implement OS native highlighting on each component

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57894

jan iversen  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #11 from jan iversen  ---
There are no code pointer

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 79924] LibreOffice should use stemp in other directories than $HOME first

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79924

jan iversen  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #5 from jan iversen  ---
No code pointer

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: idl/source

2016-02-11 Thread Noel Grandin
 idl/source/objects/types.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 8db11c905600d8f71fcdeb7f1849c01f64a49a50
Author: Noel Grandin 
Date:   Thu Feb 11 15:27:09 2016 +0200

fix dead code warning on Windows

Change-Id: I7b23442b34c7f2dcc2c44c33613fb66e6eb1b14b

diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index f0bf9d6..eb48cf6 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -52,13 +52,11 @@ const SvIdentifier & SvMetaAttribute::GetSlotId() const
 
 bool SvMetaAttribute::Test( SvTokenStream & rInStm )
 {
-bool bOk = true;
 if( GetType()->IsItem() && !GetSlotId().IsSet() )
 {
 throw SvParseException( rInStm, "slot without id declared" );
-bOk = false;
 }
-return bOk;
+return true;
 }
 
 bool SvMetaAttribute::ReadSvIdl( SvIdlDataBase & rBase,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/inc vcl/unx

2016-02-11 Thread Caolán McNamara
 vcl/inc/unx/gtk/gtkgdi.hxx|   73 ++
 vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx |  807 +-
 2 files changed, 644 insertions(+), 236 deletions(-)

New commits:
commit 03c33a2521421415c4fcbbe1491dc92a1943269b
Author: Caolán McNamara 
Date:   Tue Feb 9 13:26:32 2016 +

gtk3: adapt to 3.20 style changes

todo: get rid of the rest of the getStyleContext foo
in favour of additional createStyleContext entries.

This appears to now render fine on f23 and f24.

upstream gtk now has a foreign drawing demo in gtk-demo. Stuff we are 
trying to
do here can be found in a cleaner single-version state there. And additional
demos can be added to keep a reference of how to do this crap up-to-date.

Change-Id: I5ae1a52a2cacc6d8178ed1af30a12536ba828050

diff --git a/vcl/inc/unx/gtk/gtkgdi.hxx b/vcl/inc/unx/gtk/gtkgdi.hxx
index 32e10b4..13ac198 100644
--- a/vcl/inc/unx/gtk/gtkgdi.hxx
+++ b/vcl/inc/unx/gtk/gtkgdi.hxx
@@ -33,6 +33,43 @@
 #include 
 #include "textrender.hxx"
 
+enum class GtkControlPart
+{
+Button,
+CheckButton,
+CheckButtonCheck,
+RadioButton,
+RadioButtonRadio,
+Entry,
+SpinButton,
+SpinButtonUpButton,
+SpinButtonDownButton,
+ScrollbarVertical,
+ScrollbarHorizontal,
+ScrollbarTrough,
+ScrollbarSlider,
+ScrollbarButton,
+ProgressBar,
+ProgressBarTrough,
+ProgressBarProgress,
+MenuBar,
+MenuItem,
+MenuItemArrow,
+Menu,
+CheckMenuItem,
+CheckMenuItemCheck,
+RadioMenuItem,
+RadioMenuItemRadio,
+SeparatorMenuItem,
+SeparatorMenuItemSeparator,
+Notebook,
+NotebookHeader,
+NotebookStack,
+NotebookHeaderTabs,
+NotebookHeaderTabsTab,
+FrameBorder,
+};
+
 class GtkSalGraphics : public SvpSalGraphics
 {
 GtkSalFrame *mpFrame;
@@ -66,27 +103,47 @@ private:
 static GtkStyleContext *mpEntryStyle;
 static GtkStyleContext *mpTextViewStyle;
 static GtkStyleContext *mpVScrollbarStyle;
+static GtkStyleContext *mpVScrollbarTroughStyle;
+static GtkStyleContext *mpVScrollbarSliderStyle;
+static GtkStyleContext *mpVScrollbarButtonStyle;
 static GtkStyleContext *mpHScrollbarStyle;
+static GtkStyleContext *mpHScrollbarTroughStyle;
+static GtkStyleContext *mpHScrollbarSliderStyle;
+static GtkStyleContext *mpHScrollbarButtonStyle;
 static GtkStyleContext *mpToolbarStyle;
 static GtkStyleContext *mpToolButtonStyle;
 static GtkStyleContext *mpToolbarSeperatorStyle;
 static GtkStyleContext *mpCheckButtonStyle;
+static GtkStyleContext *mpRadioButtonStyle;
 static GtkStyleContext *mpMenuBarStyle;
 static GtkStyleContext *mpMenuBarItemStyle;
 static GtkStyleContext *mpMenuStyle;
 static GtkStyleContext *mpSpinStyle;
+static GtkStyleContext *mpSpinUpStyle;
+static GtkStyleContext *mpSpinDownStyle;
+static GtkStyleContext *mpMenuItemStyle;
+static GtkStyleContext *mpMenuItemArrowStyle;
 static GtkStyleContext *mpCheckMenuItemStyle;
+static GtkStyleContext *mpRadioMenuItemStyle;
+static GtkStyleContext *mpSeparatorMenuItemStyle;
 static GtkStyleContext *mpComboboxStyle;
 static GtkStyleContext *mpComboboxButtonStyle;
 static GtkStyleContext *mpListboxStyle;
 static GtkStyleContext *mpListboxButtonStyle;
-static GtkStyleContext *mpNoteBookStyle;
 static GtkStyleContext *mpFrameInStyle;
 static GtkStyleContext *mpFrameOutStyle;
 static GtkStyleContext *mpFixedHoriLineStyle;
 static GtkStyleContext *mpFixedVertLineStyle;
 static GtkStyleContext *mpTreeHeaderButtonStyle;
 static GtkStyleContext *mpProgressBarStyle;
+static GtkStyleContext *mpProgressBarTroughStyle;
+static GtkStyleContext *mpProgressBarProgressStyle;
+static GtkStyleContext *mpNotebookStyle;
+static GtkStyleContext *mpNotebookStackStyle;
+static GtkStyleContext *mpNotebookHeaderStyle;
+static GtkStyleContext *mpNotebookHeaderTabsStyle;
+static GtkStyleContext *mpNotebookHeaderTabsTabStyle;
+static GtkStyleContext *mpNotebookHeaderTabsTabLabelStyle;
 
 static Rectangle NWGetScrollButtonRect( ControlPart nPart, Rectangle 
aAreaRect );
 static Rectangle NWGetSpinButtonRect( ControlPart nPart, Rectangle 
aAreaRect);
@@ -116,10 +173,16 @@ private:
 ControlType nType,
 ControlPart nPart,
 const ImplControlValue& aValue);
-static void PaintCheckOrRadio(GtkStyleContext *context,
-   cairo_t *cr,
-   const Rectangle& rControlRectangle,
-   ControlType nType);
+static void PaintCheckOrRadio(cairo_t *cr, GtkStyleContext *context,
+  const Rectangle& rControlRectangle,
+  bool bIsCheck, bool bInMenu);
+
+static void PaintCheck(cairo_t *cr, GtkStyleContext *context,
+ 

[Bug 38885] Remove CreateTextFromNode methods

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38885

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 67741] EDITING: Date entry with numeric keypad

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67741

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 95405] Kill focus-stealing search and replace dialog and make functionality available in a sidebar deck

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95405

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82335] Register LibreOffice for Kingsoft Office file types

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82335

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 67832] upgrade our jfreereport libraries

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67832

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 96949] dung out dead code...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96949

jan iversen  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   |ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 53472] FORMATTING: Integral Symbols too small for some integrands

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53472

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.3.0 target:5.2.0   |ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 90222] replace ScaList in scaddins with a std container

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90222

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:5.1.0|ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 62248] REPORTBUILDER: multiple groupings on same field broken

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62248

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97283] merge unit tests in sal module

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97283

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 46892] Provide stacktraces for crashes

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46892

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 53236] Make shadow design updates easier

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53236

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 88462] convert manual XInterface implementations into ::cppu::WeakComponentImplHelper

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88462

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:5.1.0 target:5.2.0   |ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 90792] Enable toolbar code to load HiDPI bitmaps

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90792

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 89860] Ability to print from Android ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89860

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 94865] MENU: Duplicate accelerators in en_US version

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94865

jan iversen  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   |ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 84479] Bibisect Log Should Include Gerrit Link

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84479

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97499] EasyHack: Clean up default arguments in uses of C++ unordered containers

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97499

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82580] get rid of prewin.h / postwin.h wrapper headers

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82580

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.4.0|ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 38837] Reduce power consumption: timers must end eventually

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38837

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.1.0 target:4.5.0   |ToBeReviewed
   |target:4.4.2 target:5.1.0   |
   |target:5.0.1|

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 94306] Replace boost::noncopyable with plain C++11 deleted copy ctors

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94306

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 91222] VclBuilder constructor cleanup ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91222

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 77255] Make BundesGit for LibreOffice work on Windows

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77255

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 77125] Please make the shape of rounded rectangle callout customizable

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77125

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82632] Add bibisectRequest to Regressions

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82632

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97703] EasyHack: Remove empty setUp/tearDown overrides from CppUnit test code

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97703

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 67647] SQL/SingleSelectQueryComposer::getStructuredFilter/HavingClause returns comparison operator in value

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67647

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 93488] Implement password protection for VBA export

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93488

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 89095] Start Center: bigger thumbnails for templates

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89095

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 86249] clean VirtualDevice constructor ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86249

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 88815] simplify service declarations

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88815

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 67763] date & time controls: fractional seconds, timezone support, duration, interval

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67763

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 93243] replace boost::bind with C++11 lambdas

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93243

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:5.1.0|ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 48140] Remove uno calls from xlsx import

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48140

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97527] vcl: reference-count Menu ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97527

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 90730] support overlay/no-overlay for chart title and legend

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90730

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 92529] config written during startup ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92529

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 88695] RowSet and its clones share a cache: can lead to cache trashing

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88695

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97080] FILEOPEN: Need broader filter for delimited text files ("Text CSV" only includes *.csv)

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97080

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 62525] Convert manual refcounting / copy-on-write implementations to cow_wrapper

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62525

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.1.0 target:5.0.0   |ToBeReviewed
   |target:5.1.0|

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 92755] Avoid temporary XML files in winreg configmgr backend

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92755

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 80907] avoid unnecessary allocations in OpenXML import filter

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80907

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.4.0|ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 73993] Summarize additional information in comments

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73993

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 38812] PackageKit / Help integration

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38812

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 91387] create doxygen docs for the LibreOffice build system from inline comments

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91387

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 95857] Sort out German plurals ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95857

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 92346] Copy functionality in the viewer

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92346

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 66754] Remove own implementations of various Perl functions in installer

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66754

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 91054] cleanup weirdo function prototypes ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91054

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:5.0.0 target:5.1.0   |ToBeReviewed
   |target:5.2.0|

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 39674] find / fix all German spellings in internal APIs

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39674

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.1.0 target:4.2.0   |ToBeReviewed
   |target:4.4.0|

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88205

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:4.5.0 target:5.2.0   |ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 96890] The file "groupuinames.xml" is invalid XML because of missing namespace binding

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96890

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 80798] cleanup debug methods

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80798

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 96563] Display embedded graphics via system viewer optionally

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96563

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 92817] misleading error on save with empty lock-file ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92817

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 97563] refresh windows build system

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97563

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 82363] create test files for regression testing of libvisio

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82363

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 91367] replace ApiTokenSequence and UNO formulas in OOXML calc import

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91367

jan iversen  changed:

   What|Removed |Added

 Whiteboard|target:5.0.0|ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 67465] EPS rendering: locating pstoedit on Mac a problem

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67465

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 60696] Edit-Links - cleanup and make it work for movies ...

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60696

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 87026] Move accessibility relations to .ui files

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87026

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


  1   2   3   4   >