[Libreoffice-commits] core.git: vcl/qa

2015-08-27 Thread Thorsten Behrens
 vcl/qa/cppunit/timer.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad3d4a94e5dda6aa2ae39d903f0f9d13c9f85ef7
Author: Thorsten Behrens thorsten.behr...@cib.de
Date:   Thu Aug 27 14:50:57 2015 +0200

vcl: increase timeout for timertest hang by some

Change-Id: I7e61051ca8d7ae2314514e60097ff86481d4ceae

diff --git a/vcl/qa/cppunit/timer.cxx b/vcl/qa/cppunit/timer.cxx
index 2ec940a..76db8a8 100644
--- a/vcl/qa/cppunit/timer.cxx
+++ b/vcl/qa/cppunit/timer.cxx
@@ -46,7 +46,7 @@ public:
 }
 };
 
-static WatchDog aWatchDog( 12 /* 12 secs should be enough */);
+static WatchDog aWatchDog( 120 ); // random high number in secs
 
 class TimerTest : public test::BootstrapFixture
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93712] New: The cursor does not move a way from the text in RTL mode

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93712

Bug ID: 93712
   Summary: The cursor does not move a way from the text in RTL
mode
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: Other
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rah...@aol.com

Created attachment 118221
  -- https://bugs.documentfoundation.org/attachment.cgi?id=118221action=edit
Screencast for RTL Bug in LO 5.0

Whenever I insert a space while typing Arabic text the cursor does not move
away from the text. instead the text moves to the left when it's supposed to
stay in the right hand side. I am attaching s screencast in hope that someone
will be able to fix this bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93713] Unable to right-click Unprotect/Protect cells in Writer Tables

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Charles tansta...@libertytrek.org changed:

   What|Removed |Added

 OS|Windows (All)   |All

--- Comment #1 from Charles tansta...@libertytrek.org ---
One other user on the users list confirmed the bug on Linux Mint, so changed
the OS to All...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93658] selectively delete recent documents at Start Center not possible

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93658

libreofficebugzilla.20.klin...@spamgourmet.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #3 from libreofficebugzilla.20.klin...@spamgourmet.com ---
(In reply to Maxim Monastirsky from comment #2)
 $ sudo apt-get install libreoffice-style-galaxy

This solved the problem. Thank you.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - filter/source include/filter sd/qa sd/source

2015-08-27 Thread Caolán McNamara
 filter/source/msfilter/svdfppt.cxx |   45 +++--
 include/filter/msfilter/dffpropset.hxx |1 
 sd/qa/unit/data/ppt/pass/hang-3.ppt|binary
 sd/source/filter/ppt/pptin.cxx |   35 +++--
 4 files changed, 43 insertions(+), 38 deletions(-)

New commits:
commit 016ae98411175c123f0f20057fff9afee7b53359
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Aug 27 09:13:42 2015 +0100

extend seek, loop ending tests to ppt specific code

(cherry picked from commit c249f93d96ec87b0acbd25ffe087543d6fe9fb14)

Change-Id: Id4419b6b902b742117e248870b6a663c9c58955f
Reviewed-on: https://gerrit.libreoffice.org/18053
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 0942060..9a5ca61 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -706,19 +706,16 @@ void SdrEscherImport::RecolorGraphic( SvStream rSt, 
sal_uInt32 nRecLen, Graphic
 }
 }
 
-namespace
+sal_uLong DffPropSet::SanitizeEndPos(SvStream rIn, sal_uLong nEndRecPos)
 {
-sal_uLong SanitizeEndPos(SvStream rIn, sal_uLong nEndRecPos)
+auto nStreamLen = rIn.Tell() + rIn.remainingSize();
+if (nEndRecPos  nStreamLen)
 {
-auto nStreamLen = rIn.Tell() + rIn.remainingSize();
-if (nEndRecPos  nStreamLen)
-{
-SAL_WARN(filter.ms, Parsing error:   nStreamLen 
-  max end pos, but   nEndRecPos   claimed, 
truncating);
-nEndRecPos = nStreamLen;
-}
-return nEndRecPos;
+SAL_WARN(filter.ms, Parsing error:   nStreamLen 
+  max end pos, but   nEndRecPos   claimed, truncating);
+nEndRecPos = nStreamLen;
 }
+return nEndRecPos;
 }
 
 /* ProcessObject is called from ImplSdPPTImport::ProcessObj to handle all 
application specific things,
@@ -2650,7 +2647,7 @@ void ImportComment10( SvxMSDffManager rMan, SvStream 
rStCtrl, SdrPage* pPage,
 sal_Int32   nPosY = 0;
 
 
-auto nEndRecPos = SanitizeEndPos(rStCtrl, rComment10Hd.GetRecEndFilePos());
+auto nEndRecPos = DffPropSet::SanitizeEndPos(rStCtrl, 
rComment10Hd.GetRecEndFilePos());
 while ( ( rStCtrl.GetError() == 0 )  ( rStCtrl.Tell()  nEndRecPos ) )
 {
 DffRecordHeader aCommentHd;
@@ -3192,7 +3189,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 pListHd-SeekToContent( rSt );
 if ( !rMan.SeekToContentOfProgTag( 9, rSt, *pListHd, aContentDataHd ) )
 break;
-auto nEndRecPos = SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
+auto nEndRecPos = DffPropSet::SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  nEndRecPos ) )
 {
 ReadDffRecordHeader( rSt, aHd );
@@ -3200,7 +3197,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 {
 case PPT_PST_ExtendedBuGraContainer :
 {
-auto nHdEndRecPos = SanitizeEndPos(rSt, 
aHd.GetRecEndFilePos());
+auto nHdEndRecPos = DffPropSet::SanitizeEndPos(rSt, 
aHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
nHdEndRecPos ) )
 {
 sal_uInt16 nType;
@@ -3275,7 +3272,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 {   // get the extended paragraph styles on mainmaster ( graphical 
bullets, num ruling ... )
 if ( !rMan.SeekToContentOfProgTag( 9, rSt, *pHd, aContentDataHd ) )
 break;
-auto nEndRecPos = SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
+auto nEndRecPos = DffPropSet::SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  nEndRecPos ) )
 {
 ReadDffRecordHeader( rSt, aHd );
@@ -3289,7 +3286,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 rSt.ReadUInt16( nDepth );
 if ( i = 5 )
 {
-auto nHdEndRecPos = SanitizeEndPos(rSt, 
aHd.GetRecEndFilePos());
+auto nHdEndRecPos = 
DffPropSet::SanitizeEndPos(rSt, aHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
nHdEndRecPos )  ( i  nDepth ) )
 {
 bStyles = true;
@@ -4052,7 +4049,7 @@ PPTStyleSheet::PPTStyleSheet( const DffRecordHeader 
rSlideHd, SvStream rIn, Sd
 {
 pEnvHeader-SeekToContent( rIn );
 DffRecordHeader aTxMasterStyleHd;
-auto nEndRecPos = SanitizeEndPos(rIn, pEnvHeader-GetRecEndFilePos());
+auto 

[Libreoffice-qa] minutes of ESC call ...

2015-08-27 Thread Michael Meeks
* Present:
+ Caolan, Eike, Michael M, Norbert, Stephan, Sophie, David, Jan-Marek, 
Robinson,
  Noel, Muthu, Cedric, Robinson, Thorsten, Michael S, Bjoern (late), Bubli
 
* Completed Action Items:
+ create under-the-hood wiki page to accumulate for 5.1 (DTardon)
[ page with categories at: 
https://wiki.documentfoundation.org/UnderTheHood/5.1 ]
 
* Pending Action Items:
+ look at 'make check' failures on win32 again if interested (Michael S)
+ have a look at the CppUnit to implement 'expected failure' (Jan-Marek)
[ investigated the current CPPUNIT version and Qt test suite,
  will be able to hack on that the next week @DebCamp.
  was busy at the conference. ]
+ 'make -k stagingcheck' prototype (Bjoern)
+ have a look at revert notification (author + committer + the person who 
reverted) (Norbert)
+ review Giuseppe's webdav work in gerrit (Kendy/?)
+ https://gerrit.libreoffice.org/#/c/17189/
[ Merged a couple of patches (Michael) ]
+ re-arrange the help XML for the menu changes (Jay)
[ Jay was away for vacation, promised to have a look at
  HelpAuthoring.oxt over the weekend (Kendy) ]
+ UserAgent - drop bundled-languages (Michael)
+ UserAgent - produce a patch for review (Michael)
+ promote Development Mentoring Lead Job Offer through all channels: 
Universities, Companies, Clubs, ex-GSoCers etc. (all)
  
https://blog.documentfoundation.org/2015/07/15/tdf-freelance-job-opening-201507-01-development-mentoring-lead/
[ need more applicants, help appreciated pwrt. finding experienced 
candidates.
  application period is theoretically over. ]
+ add a conditional to disable google warable bits for freedroid (Cloph)
+ ask students to write their own wrap-ups to aggregate (Cedric)
 
* Release Engineering update (Robinson/Christian)
+ 4.4.6 (last of the 4.4.x line) - status
+ RC1 - week 40 (week starting 28th September)
+ 5.0.1 - RC2 status
+ Has been announced to public
+ just released it.
+ 5.0.2 - RC1 - freeze Tue/Wed
+ some translations cut off
+ some toolchain problem with some Linux distros (Rene?)
 + German help - front-page is not translated eg. (Cloph)
 + easy to spot if it's an issue.
+ perhaps some po syntax errors tooling doesn't like.
+ Rene provided his logs, this complains about non-matching 
tags, but
  the XML seems OK. He'll try with LO included tool chain to 
double-check (Christian)
+ Late OpenGL Status (Michael)
 + heading for review / merge as default for RC1
 + various bits to reduce impact
 + catching bad drivers; implemented:
+ https://bugs.documentfoundation.org/show_bug.cgi?id=93546
+ user-friendly Windows / OpenGL disable implemented
+ just merge a .reg fragment that locks that down / off
  
https://bug-attachments.documentfoundation.org/attachment.cgi?id=118060
+ in -5-0
+ https://bugs.documentfoundation.org/show_bug.cgi?id=93547
+ detect SEGV's inside OpenGL code paths and disable GL
+ in -5-0
+ https://bugs.documentfoundation.org/show_bug.cgi?id=93614
+ watchdog thread detects hanging OpenGL code paths  
disables GL
  also exits the app if dead for 5 seconds.
+ in -5-0
+ extensive legacy H/W black-list coming - or white-list ?
+ plenty more bugs in-progress.
+ tracker:
+ 
https://bugs.documentfoundation.org/showdependencytree.cgi?id=93529
+ OpenGL by default poke for 5.0.2
  + tripple review needed - re-visit it later.
 + lots of fixing still going on.
+ Android  iOS Remote
 
* UX Update (Kendy)
+ Kendy on vacation.
 
* Documentation (Olivier)
+ move to flat ODT progress / filter issues ?
 
* QA / Blocker name (Robinson)
+ come up with a sensible new name for 'blocker'
+ which doesn't imply blocking-ness.
+ decision time today.
+ ¨very-critical suggested by Bjoern
+ fair enough - could do this.
 + renaming right now.
+ restrict access to it.
+ do we need to rename  restrict access ? (Michael)
 = go for what you see fit (Robinson)
 
* Crashtest update (Caolán)
+ 2 import failures, 5 export failures, 6 coverity warnings
   import failures fixed again
   export failures not locally reprodible, all odb-odb
   coverity warnings all fixed again
+ fftester fuzzing trajectory
   the pattern is for each new filter, find most in the first hour
   

minutes of ESC call ...

2015-08-27 Thread Michael Meeks
* Present:
+ Caolan, Eike, Michael M, Norbert, Stephan, Sophie, David, Jan-Marek, 
Robinson,
  Noel, Muthu, Cedric, Robinson, Thorsten, Michael S, Bjoern (late), Bubli
 
* Completed Action Items:
+ create under-the-hood wiki page to accumulate for 5.1 (DTardon)
[ page with categories at: 
https://wiki.documentfoundation.org/UnderTheHood/5.1 ]
 
* Pending Action Items:
+ look at 'make check' failures on win32 again if interested (Michael S)
+ have a look at the CppUnit to implement 'expected failure' (Jan-Marek)
[ investigated the current CPPUNIT version and Qt test suite,
  will be able to hack on that the next week @DebCamp.
  was busy at the conference. ]
+ 'make -k stagingcheck' prototype (Bjoern)
+ have a look at revert notification (author + committer + the person who 
reverted) (Norbert)
+ review Giuseppe's webdav work in gerrit (Kendy/?)
+ https://gerrit.libreoffice.org/#/c/17189/
[ Merged a couple of patches (Michael) ]
+ re-arrange the help XML for the menu changes (Jay)
[ Jay was away for vacation, promised to have a look at
  HelpAuthoring.oxt over the weekend (Kendy) ]
+ UserAgent - drop bundled-languages (Michael)
+ UserAgent - produce a patch for review (Michael)
+ promote Development Mentoring Lead Job Offer through all channels: 
Universities, Companies, Clubs, ex-GSoCers etc. (all)
  
https://blog.documentfoundation.org/2015/07/15/tdf-freelance-job-opening-201507-01-development-mentoring-lead/
[ need more applicants, help appreciated pwrt. finding experienced 
candidates.
  application period is theoretically over. ]
+ add a conditional to disable google warable bits for freedroid (Cloph)
+ ask students to write their own wrap-ups to aggregate (Cedric)
 
* Release Engineering update (Robinson/Christian)
+ 4.4.6 (last of the 4.4.x line) - status
+ RC1 - week 40 (week starting 28th September)
+ 5.0.1 - RC2 status
+ Has been announced to public
+ just released it.
+ 5.0.2 - RC1 - freeze Tue/Wed
+ some translations cut off
+ some toolchain problem with some Linux distros (Rene?)
 + German help - front-page is not translated eg. (Cloph)
 + easy to spot if it's an issue.
+ perhaps some po syntax errors tooling doesn't like.
+ Rene provided his logs, this complains about non-matching 
tags, but
  the XML seems OK. He'll try with LO included tool chain to 
double-check (Christian)
+ Late OpenGL Status (Michael)
 + heading for review / merge as default for RC1
 + various bits to reduce impact
 + catching bad drivers; implemented:
+ https://bugs.documentfoundation.org/show_bug.cgi?id=93546
+ user-friendly Windows / OpenGL disable implemented
+ just merge a .reg fragment that locks that down / off
  
https://bug-attachments.documentfoundation.org/attachment.cgi?id=118060
+ in -5-0
+ https://bugs.documentfoundation.org/show_bug.cgi?id=93547
+ detect SEGV's inside OpenGL code paths and disable GL
+ in -5-0
+ https://bugs.documentfoundation.org/show_bug.cgi?id=93614
+ watchdog thread detects hanging OpenGL code paths  
disables GL
  also exits the app if dead for 5 seconds.
+ in -5-0
+ extensive legacy H/W black-list coming - or white-list ?
+ plenty more bugs in-progress.
+ tracker:
+ 
https://bugs.documentfoundation.org/showdependencytree.cgi?id=93529
+ OpenGL by default poke for 5.0.2
  + tripple review needed - re-visit it later.
 + lots of fixing still going on.
+ Android  iOS Remote
 
* UX Update (Kendy)
+ Kendy on vacation.
 
* Documentation (Olivier)
+ move to flat ODT progress / filter issues ?
 
* QA / Blocker name (Robinson)
+ come up with a sensible new name for 'blocker'
+ which doesn't imply blocking-ness.
+ decision time today.
+ ¨very-critical suggested by Bjoern
+ fair enough - could do this.
 + renaming right now.
+ restrict access to it.
+ do we need to rename  restrict access ? (Michael)
 = go for what you see fit (Robinson)
 
* Crashtest update (Caolán)
+ 2 import failures, 5 export failures, 6 coverity warnings
   import failures fixed again
   export failures not locally reprodible, all odb-odb
   coverity warnings all fixed again
+ fftester fuzzing trajectory
   the pattern is for each new filter, find most in the first hour
   

[Libreoffice-bugs] [Bug 93685] WORKDAYINTL function has a new parameter that make old spreadsheet in error

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93685

--- Comment #3 from Rpnpif rpn...@free.fr ---
Created attachment 118222
  -- https://bugs.documentfoundation.org/attachment.cgi?id=118222action=edit
A calc file with WORKDAY function from LO 4.4

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 63927] Export (HTML, DOC, DOCX): handles weak bidi characters as strong ones

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63927

--- Comment #5 from Lior Kaplan kaplanl...@gmail.com ---
Please give the version info you've used for your test.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: include/xmloff xmloff/source

2015-08-27 Thread Michael Stahl
 include/xmloff/xmlexppr.hxx  |3 ++-
 xmloff/source/style/impastpl.cxx |1 +
 xmloff/source/style/styleexp.cxx |8 +++-
 xmloff/source/style/xmlexppr.cxx |   23 ---
 4 files changed, 26 insertions(+), 9 deletions(-)

New commits:
commit b1922eecb55b233de3e6abaaa644fe9f313cf0f1
Author: Michael Stahl mst...@redhat.com
Date:   Thu Aug 27 15:14:20 2015 +0200

xmloff: ODF export: actually ODF 1.2 does not allow graphic-properties

... in a style with family paragraph, as detected by a
--with-export-validation build due to the unit test added yesterday.

So use the loext namespace for the style:graphic-properties element,
and also omit it entirely (and rely on the style:paragraph-properties
attributes fo:background-*) if the ODF version is set to 1.2 or 1.1.

Also adapt a previous check that was missing the drawing-page style
family, where the style:graphic-properties is allowed (commit
9746dc9ad62e7f3a39961733f2ac204e90289034)

(regression from 7d9bb549d498d6beed2c4050c402d09643febdfa)

Change-Id: Iedd66483f63020328bd61e1c1e19c62787b8ff6b

diff --git a/include/xmloff/xmlexppr.hxx b/include/xmloff/xmlexppr.hxx
index 9a67145..91d323c 100644
--- a/include/xmloff/xmlexppr.hxx
+++ b/include/xmloff/xmlexppr.hxx
@@ -133,7 +133,8 @@ public:
 void exportXML(
 SvXMLExport rExport,
 const ::std::vector XMLPropertyState  rProperties,
-SvXmlExportFlags nFlags = SvXmlExportFlags::NONE ) const;
+SvXmlExportFlags nFlags = SvXmlExportFlags::NONE,
+bool bUseExtensionNamespaceForGraphicProperties = false ) const;
 
 /** like above but only properties whose property map index is within the
  *  specified range are exported
diff --git a/xmloff/source/style/impastpl.cxx b/xmloff/source/style/impastpl.cxx
index 7c98e3e..51221b3 100644
--- a/xmloff/source/style/impastpl.cxx
+++ b/xmloff/source/style/impastpl.cxx
@@ -684,6 +684,7 @@ void SvXMLAutoStylePoolP_Impl::exportXML(
 GetExport().AddAttribute(
 XML_NAMESPACE_STYLE, XML_FAMILY, aStrFamilyName );
 if(aStrFamilyName != graphic 
+aStrFamilyName != drawing-page 
 aStrFamilyName != presentation 
 aStrFamilyName != chart )
 bExtensionNamespace = true;
diff --git a/xmloff/source/style/styleexp.cxx b/xmloff/source/style/styleexp.cxx
index c6b62e8..0ab12cc 100644
--- a/xmloff/source/style/styleexp.cxx
+++ b/xmloff/source/style/styleexp.cxx
@@ -316,8 +316,14 @@ bool XMLStyleExport::exportStyle(
 // style:properties
 ::std::vector XMLPropertyState  xPropStates =
 rPropMapper-Filter( xPropSet, true );
+bool const bUseExtensionNamespaceForGraphicProperties(
+rXMLFamily != drawing-page 
+rXMLFamily != graphic 
+rXMLFamily != presentation 
+rXMLFamily != chart);
 rPropMapper-exportXML( GetExport(), xPropStates,
-SvXmlExportFlags::IGN_WS );
+SvXmlExportFlags::IGN_WS,
+bUseExtensionNamespaceForGraphicProperties );
 
 rPropMapper-SetStyleName( OUString() );
 
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx
index a7876d4..04608346 100644
--- a/xmloff/source/style/xmlexppr.cxx
+++ b/xmloff/source/style/xmlexppr.cxx
@@ -749,16 +749,18 @@ void SvXMLExportPropertyMapper::exportXML( 
SvXMLAttributeList rAttrList,
 void SvXMLExportPropertyMapper::exportXML(
 SvXMLExport rExport,
 const ::std::vector XMLPropertyState  rProperties,
-SvXmlExportFlags nFlags ) const
+SvXmlExportFlags nFlags,
+bool bUseExtensionNamespaceForGraphicProperties) const
 {
-exportXML( rExport, rProperties, -1, -1,  nFlags );
+exportXML(rExport, rProperties, -1, -1,  nFlags, 
bUseExtensionNamespaceForGraphicProperties);
 }
 
+
 void SvXMLExportPropertyMapper::exportXML(
 SvXMLExport rExport,
 const ::std::vector XMLPropertyState  rProperties,
 sal_Int32 nPropMapStartIdx, sal_Int32 nPropMapEndIdx,
-SvXmlExportFlags nFlags, bool bExtensionNamespace ) const
+SvXmlExportFlags nFlags, bool 
bUseExtensionNamespaceForGraphicProperties) const
 {
 sal_uInt16 nPropTypeFlags = 0;
 for( sal_uInt16 i=0; iMAX_PROP_TYPES; ++i )
@@ -766,6 +768,17 @@ void SvXMLExportPropertyMapper::exportXML(
 sal_uInt16 nPropType = aPropTokens[i].nType;
 if( 0==i || (nPropTypeFlags  (1  nPropType)) != 0 )
 {
+sal_uInt16 nNamespace = XML_NAMESPACE_STYLE;
+if (bUseExtensionNamespaceForGraphicProperties 
+aPropTokens[i].eToken == xmloff::token::XML_GRAPHIC_PROPERTIES)
+{
+nNamespace = XML_NAMESPACE_LO_EXT;
+if 

[Libreoffice-bugs] [Bug 91061] LO writer shows only 1 page of a .docx file when the actual doc is 11 pages

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91061

Timur gti...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high
 CC||gti...@gmail.com
Version|4.4.1.2 release |4.0.0.3 release
 Depends on||89100
   Severity|normal  |major

--- Comment #6 from Timur gti...@gmail.com ---
Regression from 4.0. beta. It was rather fine with 3.6.7.2. Somewhat different,
but reproduced with 4.4.5. 5.0+ can't be open due to bug 89100.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93713] Unable to right-click Unprotect/Protect cells in Writer Tables

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Charles tansta...@libertytrek.org changed:

   What|Removed |Added

   Priority|medium  |high

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93713] New: Unable to right-click Unprotect/Protect cells in Writer Tables

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Bug ID: 93713
   Summary: Unable to right-click Unprotect/Protect cells in
Writer Tables
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tansta...@libertytrek.org

We have a ton of Writer Templates with Tables in them, that have certain cells
protected (containing formulas). Users sometimes unprotect (right-click on cell
 Cell  Unprotect) to delete the formula and manually enter numbers.

I just discovered - after updating a lot of our users - that apparently
this is broken in the first 5.x release. There simply is no 'Cell'
context menu option, and nothing in any of the Menus to allow me to
Protect/Unprotect the cell...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: What autogen.sh for an alternative ContentProvider for dav:// scheme?

2015-08-27 Thread Stephan Bergmann

On 08/27/2015 03:27 PM, Giuseppe Castagno wrote:

On 08/27/2015 01:37 PM, Stephan Bergmann wrote:

On 08/27/2015 12:35 PM, Giuseppe Castagno wrote:

Saw commit [1], probably INetProtocol needs adjusting too.


Don't think so.  Since INetURLObject falls back to INetProtocol::Generic
now, there's rarely need these days to keep adding schemes to
INetURLObject/INetProtocol.  (For example, dav and davs are not
there, either.)


Then, while checking for the scheme of a url to determine if it's webdav
or not, in SfxMedium::LockOrigFileOnDemand and SfxMedium::UnlockFile I
used:

INetProtocol aProto =  GetURLObject().GetProtocol();
if( aProto ==  INetProtocol::Http || aProto ==  INetProtocol::Https ||
aProto ==  INetProtocol::VndSunStarWebdav )
{
// WebDAV !
}

Or is there another way to detect the protocol ?


Yeah, only after pressing send I understood that your probably 
INetProtocol needs adjusting too was meant in the context of your 
pending https://gerrit.libreoffice.org/#/c/17189.


See https://gerrit.libreoffice.org/#/c/18060/ for tentative new 
functionality to allow to easily check also for an 
INetProtocol::Generic's INetURLObject scheme.  And feel free to push in 
combination with your 17189 if it proves useful for your needs.

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


Re: build breaks in dbaccess

2015-08-27 Thread Regina Henschel

Hi all,

julien2412 schrieb:

Hello Regina,

I suppose it must have been fixed thanks to Michael's commit, see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=13cd7ea2b3123e24bb5ff29a8dcbb55a8fcf3859.


Yes it is OK now, the build has finished now successful. Hi Michael, you 
are really fast :)


Kind regards
Regina

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


[Libreoffice-commits] core.git: 9 commits - editeng/source filter/source include/editeng sd/qa sd/source

2015-08-27 Thread Caolán McNamara
 editeng/source/editeng/editattr.cxx|6 ---
 editeng/source/items/textitem.cxx  |   38 +++--
 filter/source/graphicfilter/itiff/lzwdecom.cxx |8 ++---
 filter/source/msfilter/svdfppt.cxx |   28 +++---
 include/editeng/colritem.hxx   |1 
 sd/qa/unit/data/ppt/pass/hang-10.ppt   |binary
 sd/qa/unit/data/ppt/pass/hang-4.ppt|binary
 sd/qa/unit/data/ppt/pass/hang-5.ppt|binary
 sd/qa/unit/data/ppt/pass/hang-6.ppt|binary
 sd/qa/unit/data/ppt/pass/hang-7.ppt|binary
 sd/qa/unit/data/ppt/pass/hang-8.ppt|binary
 sd/qa/unit/data/ppt/pass/hang-9.ppt|binary
 sd/source/filter/ppt/pptin.cxx |   16 +++---
 sd/source/filter/ppt/propread.cxx  |   31 +---
 14 files changed, 72 insertions(+), 56 deletions(-)

New commits:
commit 7e373e92fc02393732422d05264dd5115076183f
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Aug 27 14:40:37 2015 +0100

crashtesting: tiff loop detection too slow

moz323894-1.tiff and moz456356-1.tiff take too long to load

Change-Id: Iaafa064fd05e4a4152004e7ceb6256af68aeef01

diff --git a/filter/source/graphicfilter/itiff/lzwdecom.cxx 
b/filter/source/graphicfilter/itiff/lzwdecom.cxx
index 5fb7514..dc437e2 100644
--- a/filter/source/graphicfilter/itiff/lzwdecom.cxx
+++ b/filter/source/graphicfilter/itiff/lzwdecom.cxx
@@ -20,7 +20,7 @@
 
 #include lzwdecom.hxx
 #include algorithm
-#include vector
+#include set
 
 #define MAX_TABLE_SIZE 4096
 
@@ -163,16 +163,16 @@ void LZWDecompressor::AddToTable(sal_uInt16 nPrevCode, 
sal_uInt16 nCodeFirstData
 return;
 }
 
-std::vectorsal_uInt16 aSeenIndexes;
+unsigned char aSeenIndexes[MAX_TABLE_SIZE] = {0};
 while (pTable[nCodeFirstData].nDataCount1)
 {
-if (std::find(aSeenIndexes.begin(), aSeenIndexes.end(), 
nCodeFirstData) != aSeenIndexes.end())
+if (aSeenIndexes[nCodeFirstData])
 {
 SAL_WARN(filter.tiff, Loop in chain);
 bEOIFound = true;
 return;
 }
-aSeenIndexes.push_back(nCodeFirstData);
+aSeenIndexes[nCodeFirstData] = 1;
 nCodeFirstData=pTable[nCodeFirstData].nPrevCode;
 }
 
commit 932f6de91904f86f38d2914b9ce07b94dfadac0c
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Aug 27 14:28:35 2015 +0100

check status of SeekTo

Change-Id: Ia2bb397c3fdd783cab77a6b0dbc31c9e3d19326b

diff --git a/sd/qa/unit/data/ppt/pass/hang-10.ppt 
b/sd/qa/unit/data/ppt/pass/hang-10.ppt
new file mode 100644
index 000..99a81c4
Binary files /dev/null and b/sd/qa/unit/data/ppt/pass/hang-10.ppt differ
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx
index d37855d..31fe108 100644
--- a/sd/source/filter/ppt/pptin.cxx
+++ b/sd/source/filter/ppt/pptin.cxx
@@ -787,7 +787,8 @@ bool ImplSdPPTImport::Import()
 if ( nObjCount++ )  // 
skipping the first object
 {
 Rectangle aEmpty;
-
aHd2.SeekToBegOfRecord( rStCtrl );
+if 
(!aHd2.SeekToBegOfRecord(rStCtrl))
+break;
 SdrObject* pImpObj = 
ImportObj( rStCtrl, static_castvoid*(aProcessData), aEmpty, aEmpty );
 if ( pImpObj )
 {
@@ -796,7 +797,8 @@ bool ImplSdPPTImport::Import()
 }
 }
 }
-aHd2.SeekToEndOfRecord( 
rStCtrl );
+if 
(!aHd2.SeekToEndOfRecord(rStCtrl))
+break;
 }
 }
 }
commit de71eae5807ff94c8eace0eccaabf1ffa08e77b6
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Aug 27 14:22:23 2015 +0100

avoid loops in atom chains

Change-Id: Icc40c0ee6c7d8d305cf7cc60cbf3e511c763aedd

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 30e8cfc..0f419dd 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -2553,11 +2553,17 @@ bool SdrPowerPointImport::GetColorFromPalette( 
sal_uInt16 nNum, Color rColor )
 while( ( pMasterPersist  
pMasterPersist-aSlideAtom.nFlags  2 )  // it is possible that a masterpage
   

[Libreoffice-bugs] [Bug 46406] EDITING: LibO hangs on Copy+Paste sometimes

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46406

--- Comment #27 from Timur gti...@gmail.com ---
(In reply to Timur from comment #24)
 The only solution I can think of is to have some automatic procedure of
 starting debugging with WinDBG (in Windows) each time I start LO, but I
 don't know how to make it.
Well, I found out and wrote:
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg#Automation

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2015-08-27 Thread Stephan Bergmann
 i18npool/source/localedata/LocaleNode.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 186c82e81f3d75be0971ff1b561172a182e46a97
Author: Stephan Bergmann sberg...@redhat.com
Date:   Thu Aug 27 15:02:04 2015 +0200

Actually process the escaped character

...was like this ever since it got introduced in
b75958473503f7eca096b8843e57a031bbabe0ab implemented date acceptance 
patterns
API.  Found with clang-tidy's clang-analyzer-deadcode.DeadStores.

Change-Id: Ib1572ca9f254e3e835dbbe088f6a48c24dbd8235

diff --git a/i18npool/source/localedata/LocaleNode.cxx 
b/i18npool/source/localedata/LocaleNode.cxx
index 4a41aa5..7db424c 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -1101,7 +1101,7 @@ void LCFormatNode::generateCode (const OFileWriter of) 
const
 break;
 case '\\':
 cChar = sTheDateEditFormat.iterateCodePoints( nIndex);
-break;
+goto handleDefault;
 case '-':
 case '.':
 case '/':
@@ -1114,6 +1114,7 @@ void LCFormatNode::generateCode (const OFileWriter of) 
const
 cDateSep2 = cChar;
 // fallthru
 default:
+handleDefault:
 if (!cDateSep)
 cDateSep = cChar;
 if (!cDateSep2)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 93708] [Feature request] Add search bar for recently opened documents

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93708

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
  Component|LibreOffice |ux-advise
 Ever confirmed|0   |1
   Severity|minor   |enhancement

--- Comment #1 from V Stuart Foote vstuart.fo...@utsa.edu ---
Thanks for the enhancement suggestion. But, the Recent Documents list is capped
at 25 documents, and that is all the more that will reside as thumbnail views
in the Start Center.

The File - Recent Document split button provides a quick selection by file
name and extension

Adding a Search capability to the GUI would add a lot of clutter for little
actual need.

Personally I'd prefer to see the effort go into implementing enhancement of bug
80934 -- START CENTER: A GUI means to filter the thumbnail view list of MRU
recent documents by module

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


[Libreoffice-commits] core.git: vcl/workben

2015-08-27 Thread Michael Meeks
 vcl/workben/vcldemo.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 5fba7ebf5c465b218b650141eab28c27cc19c79e
Author: Michael Meeks michael.me...@collabora.com
Date:   Thu Aug 27 14:48:36 2015 +0100

vcldemo: quit popup on mouse click.

Change-Id: I0fc1967d3863723b0c8e3e082fac19cc49aba345

diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx
index d140b4f..9218afd 100644
--- a/vcl/workben/vcldemo.cxx
+++ b/vcl/workben/vcldemo.cxx
@@ -1636,6 +1636,11 @@ class DemoPopup : public FloatingWindow
 DrawRect( Rectangle( Point( 1, 1 ), aSize ) );
 SetLineColor( aColor );
 }
+
+virtual void MouseButtonDown( const MouseEvent  ) SAL_OVERRIDE
+{
+Application::Quit();
+}
 };
 
 class DemoApp : public Application
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89100] FILEOPEN: DOCX - File no longer opens in LO 5.0+

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89100

Timur gti...@gmail.com changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=89 |
   |858 |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80175] FILEOPEN: error message opening particular .docx

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80175

Timur gti...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||gti...@gmail.com
 Depends on||89100
 Resolution|--- |WORKSFORME

--- Comment #18 from Timur gti...@gmail.com ---
File opens fine and doesn't crash with LO 4.4.5 in Windows and Linux.
Newer versions can't be tested because of Bug 89100.
All 48 footnotes open fine.
So, the original problem is gone adn I mark this -- RESOLVED WORKSFORME

Please open a CLEAN, NEW report about the new or residual issues about that
file (for example: 33 pages in LO and 30 in MSO) - which is rather useless
until Bug 89100 is solved.

Since I spent some time looking into this, let me write my impression that
@synerzip is not responding to LO anymore. I concluded that from same bugs
which are their regressions.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93676] docx: Graph export Offset and mislabelled

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93676

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Depends on||89903

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export ( import?) badly corrupt

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Depends on||89903

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export ( import?) badly corrupt

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Blocks||89903
 Depends on|89903   |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93676] docx: Graph export Offset and mislabelled

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93676

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Blocks||89903
 Depends on|89903   |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89100] FILEOPEN: DOCX - File no longer opens in LO 5.0+

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89100

Timur gti...@gmail.com changed:

   What|Removed |Added

 Blocks||80175

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89858] Filesave as DOCX looses text, 3 of 7 pages saved

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89858

Timur gti...@gmail.com changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=89 |
   |100 |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93713] Unable to right-click Unprotect/Protect cells in Writer Tables

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
Hi Charles,

Thanks for your report here!

The items is removed from the context menu. Via Table  Protect cells, you can
protect them...
However, I see now that Table  Protect cells is disabled in ... protected
cells :\

So that means you cannot unprotect.

OK for you to change this report in a bug for that?

Cheers - Cor

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93713] Unable to right-click Unprotect/Protect cells in Writer Tables

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

--- Comment #3 from Charles tansta...@libertytrek.org ---
Hi Cor,

Thanks for the fast response...

(In reply to Cor Nouws from comment #2)
 The items is removed from the context menu. Via Table  Protect cells, you
 can protect them...

Can you point me to a/the issue where the rationale for removing this very
useful function from the context menu was discussed?

We use that feature from the context menu all the time.

I'd be fine with it being changed to Table  [Un}Protect Cell, but in my
opinion this ability really should be in the context menu.

 However, I see now that Table  Protect cells is disabled in ... protected
 cells :\
 
 So that means you cannot unprotect.
 
 OK for you to change this report in a bug for that?

I will do so now.

Thanks for confirming...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93711] New: Translation error (German: Leerezeichen) in chapter numbering

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93711

Bug ID: 93711
   Summary: Translation error (German: Leerezeichen) in chapter
numbering
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

The string for space is mis-translated for German at the chapter numbering
dialog: Leerezeichen should be Leerzeichen.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93708] [Feature request] Add search bar for recently opened documents

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93708

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 OS|Linux (All) |All

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 92710] Right-to-Left direction for Arabic is not working

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92710

--- Comment #19 from Maxim Monastirsky momonas...@gmail.com ---
*** Bug 93712 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93712] The cursor does not move a way from the text in RTL mode

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93712

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Maxim Monastirsky momonas...@gmail.com ---
@Mohammed: There is no need to fill the same bug over and over again. It won't
make it fixed faster.

*** This bug has been marked as a duplicate of bug 92710 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - filter/source sd/qa sd/source

2015-08-27 Thread Caolán McNamara
 filter/source/msfilter/svdfppt.cxx  |  112 ++--
 sd/qa/unit/data/ppt/pass/hang-2.ppt |binary
 sd/source/filter/ppt/propread.cxx   |6 +
 3 files changed, 74 insertions(+), 44 deletions(-)

New commits:
commit 1bb226646e4d3b6ee3b25511e3c9c79373874359
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Aug 26 14:26:40 2015 +0100

various hangs, check seeks and record lengths

(cherry picked from commit a8b2dc80c41022515c3a1df6f7ea245c3390dc39)

Change-Id: Ided7f9376f41ee8cb1f6903e54a2d51e0e07e1a7
Reviewed-on: https://gerrit.libreoffice.org/18026
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index fb6d3a6..0942060 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -706,6 +706,21 @@ void SdrEscherImport::RecolorGraphic( SvStream rSt, 
sal_uInt32 nRecLen, Graphic
 }
 }
 
+namespace
+{
+sal_uLong SanitizeEndPos(SvStream rIn, sal_uLong nEndRecPos)
+{
+auto nStreamLen = rIn.Tell() + rIn.remainingSize();
+if (nEndRecPos  nStreamLen)
+{
+SAL_WARN(filter.ms, Parsing error:   nStreamLen 
+  max end pos, but   nEndRecPos   claimed, 
truncating);
+nEndRecPos = nStreamLen;
+}
+return nEndRecPos;
+}
+}
+
 /* ProcessObject is called from ImplSdPPTImport::ProcessObj to handle all 
application specific things,
such as the import of text, animation effects, header footer and 
placeholder.
 
@@ -731,7 +746,8 @@ SdrObject* SdrEscherImport::ProcessObj( SvStream rSt, 
DffObjData rObjData, voi
 {
 sal_Int16 nHeaderFooterInstance = -1;
 DffRecordHeader aClientDataHd;
-while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
maShapeRecords.Current()-GetRecEndFilePos() ) )
+auto nEndRecPos = SanitizeEndPos(rSt, 
maShapeRecords.Current()-GetRecEndFilePos());
+while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  nEndRecPos ) )
 {
 ReadDffRecordHeader( rSt, aClientDataHd );
 switch ( aClientDataHd.nRecType )
@@ -1342,9 +1358,8 @@ SdrPowerPointImport::SdrPowerPointImport( 
PowerPointImportParam rParam, const O
 while( nCurrentEditAtomStrmPos )
 {
 sal_uInt32 nPersistIncPos = 
aCurrentEditAtom.nOffsetPersistDirectory;
-if ( nPersistIncPos )
+if (nPersistIncPos  rStCtrl.Seek(nPersistIncPos) == 
nPersistIncPos)
 {
-rStCtrl.Seek( nPersistIncPos );
 DffRecordHeader aPersistHd;
 ReadDffRecordHeader( rStCtrl, aPersistHd );
 if ( aPersistHd.nRecType == 
PPT_PST_PersistPtrIncrementalBlock )
@@ -1774,8 +1789,10 @@ SdrObject* SdrPowerPointImport::ImportOLE( long nOLEId,
 if ( ((SdrPowerPointImport*)this)-maShapeRecords.SeekToContent( rStCtrl, 
DFF_msofbtClientData, SEEK_FROM_CURRENT_AND_RESTART ) )
 {
 DffRecordHeader aPlaceHd;
+
+auto nEndRecPos = SanitizeEndPos(rStCtrl, 
const_castSdrPowerPointImport*(this)-maShapeRecords.Current()-GetRecEndFilePos());
 while ( ( rStCtrl.GetError() == 0 )
- ( rStCtrl.Tell()  
((SdrPowerPointImport*)this)-maShapeRecords.Current()-GetRecEndFilePos() ) )
+ ( rStCtrl.Tell()  nEndRecPos ) )
 {
 ReadDffRecordHeader( rStCtrl, aPlaceHd );
 if ( aPlaceHd.nRecType == PPT_PST_RecolorInfoAtom )
@@ -2632,7 +2649,9 @@ void ImportComment10( SvxMSDffManager rMan, SvStream 
rStCtrl, SdrPage* pPage,
 sal_Int32   nPosX = 0;
 sal_Int32   nPosY = 0;
 
-while ( ( rStCtrl.GetError() == 0 )  ( rStCtrl.Tell()  
rComment10Hd.GetRecEndFilePos() ) )
+
+auto nEndRecPos = SanitizeEndPos(rStCtrl, rComment10Hd.GetRecEndFilePos());
+while ( ( rStCtrl.GetError() == 0 )  ( rStCtrl.Tell()  nEndRecPos ) )
 {
 DffRecordHeader aCommentHd;
 ReadDffRecordHeader( rStCtrl, aCommentHd );
@@ -2707,7 +2726,8 @@ void SdrPowerPointImport::ImportPage( SdrPage* pRet, 
const PptSlidePersistEntry*
 {
 rSlidePersist.pHeaderFooterEntry = new HeaderFooterEntry( 
pMasterPersist );
 ProcessData aProcessData( rSlidePersist, (SdPage*)pRet );
-while ( ( rStCtrl.GetError() == 0 )  ( rStCtrl.Tell()  
aPageHd.GetRecEndFilePos() ) )
+auto nEndRecPos = SanitizeEndPos(rStCtrl, aPageHd.GetRecEndFilePos());
+while ( ( rStCtrl.GetError() == 0 )  ( rStCtrl.Tell()  nEndRecPos ) 
)
 {
 DffRecordHeader aHd;
 ReadDffRecordHeader( rStCtrl, aHd );
@@ -2742,7 +2762,8 @@ void SdrPowerPointImport::ImportPage( SdrPage* pRet, 
const PptSlidePersistEntry*
 sal_uInt32 nPPDrawOfs = rStCtrl.Tell();
 
 // importing the background object 

[Libreoffice-bugs] [Bug 93714] New: Bring back [Un]Protect Cell context menu for protecting/unprotecting cells

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93714

Bug ID: 93714
   Summary: Bring back [Un]Protect Cell context menu for
protecting/unprotecting cells
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tansta...@libertytrek.org

I just discovered, when reporting the bug in 5.x that there is no way to
Unprotect protected cells in 5.x in Writer Tables, that this feature was
intentionally removed from the context menu.

Our users use this feature all the time.

Please bring back the context menu choice for this, even if it changes to
'Table  [Un]Protect Cell(s)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93606] The file LibreOffice_5.0.0_Win_x86.msi will only install in C:\Program Files(x86) not on the path given when selecting Custom

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93606

--- Comment #19 from Peter Raynor floortes...@gmail.com ---
Thanks

Your comment explained why it did not install but I am unsure how it happened.

This PC is connected to a standard 4 port ethernet broadband modem with another
PC running Mint Linux, used now and again and a high speed laser all wired.
As far as I was aware I was using the basic Windows 7 works network, home
network would not connect,  so as to connect to a Linux PC and have shared some
data directories, not D:

I will have to look up what you are saying and try and correct it- I have a
suspicion that the latest Windows 7 Upgrade was not good, a couple of pieces of
software do not work as they used to before the upgrade. I normally do not do
upgrades as I find that they add more problems than they fix but it got the
better of my judgement.

Regards

Peter

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93606] The file LibreOffice_5.0.0_Win_x86.msi will only install in C:\Program Files(x86) not on the path given when selecting Custom

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93606

--- Comment #18 from V Stuart Foote vstuart.fo...@utsa.edu ---
@Peter, *

Thanks for the install log. Things are a bit clearer now.  You did not mention
that you were on a managed network user profile, and that your system (is it
VDI or just a thin client?) has machine GPOs locking down the installation.

These lines from the install log are telling:
MSI (c) (C8:C0) [11:14:57:927]: Machine policy value 'EnableUserControl' is 0
MSI (c) (C8:C0) [11:14:57:927]: PROPERTY CHANGE: Adding RestrictedUserControl
property. Its value is '1'.
MSI (c) (C8:C0) [11:14:57:927]: Ignoring disallowed property INSTALDIR
MSI (c) (C8:C0) [11:14:57:927]: Ignoring disallowed property TARGETDIR
MSI (c) (C8:C0) [11:14:57:927]: Ignoring disallowed property INSTALLLOCATION

In other words it WILL alwasy install to the C:\Program Files, or C:\Program
Files (x86) because that is what your virtualized network profile allows.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 92114] UI Flickering in line spacing dropdown

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92114

Katarina Behrens (CIB) katarina.behr...@cib.de changed:

   What|Removed |Added

Version|5.1.0.0.alpha0+ Master  |5.0.0.1 rc

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89100] FILEOPEN: DOCX - File no longer opens in LO 5.0+

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89100

Timur gti...@gmail.com changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #8 from Timur gti...@gmail.com ---
*** Bug 92157 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 92157] particular Docx document not opening: File format error / SAXParseException

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92157

Timur gti...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #14 from Timur gti...@gmail.com ---
Looks like a duplicate of an annoying Bug 89100.
Pity for 2 bibisecs.

*** This bug has been marked as a duplicate of bug 89100 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 92710] Right-to-Left direction for Arabic is not working

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92710

--- Comment #20 from Maxim Monastirsky momonas...@gmail.com ---
One thing that I noticed while watching the video, is that the status bar says
Hindi (which is, according to Wikipedia, written LTR). So the first thing I
would try is to open Tools-Options...-Language Settings-Languages, and set
Arabic for Complex text layout (CTL). And also under LibreOffice
Writer-Basic Fonts (CTL), make sure that the default fonts are ones that
support Arabic.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93685] WORKDAYINTL function has a new parameter that make old spreadsheet in error

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93685

Rpnpif rpn...@free.fr changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Rpnpif rpn...@free.fr ---
My normal locale is fr_FR.UTF-8.
When I run :
LANG=C libreoffice4.4 Plan\ d_annee_2.ods
the function is named WORKDAY.

But if I run :
LANG=C libreoffice5.0 Plan\ d_annee_2.ods
the function is named WORKDAYINTL.

Is it normal ?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93710] New: Allow special character as separator for numbered headings (and similar)

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93710

Bug ID: 93710
   Summary: Allow special character as separator for numbered
headings (and similar)
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

Currently you can select whether to insert
a space
a TAB
nothing
between the number generated automatically and the text of a heading (similar
may apply for legends and other things automatically creating a number).
Maybe the user wants to insert nut a blank space, but one of the Unicode space
characters like EN QUAD, EM QUAD, FIGURE SPACE, etc.  Currently this is
not possible.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: What autogen.sh for an alternative ContentProvider for dav:// scheme?

2015-08-27 Thread Giuseppe Castagno

On 08/27/2015 01:37 PM, Stephan Bergmann wrote:

On 08/27/2015 12:35 PM, Giuseppe Castagno wrote:

On 08/27/2015 11:45 AM, Stephan Bergmann wrote:

So added support for vnd.sun.star.webdavs to LO 5.1 now,
https://wiki.documentfoundation.org/index.php?title=ReleaseNotes/5.1oldid=116154#Core.



Saw commit [1], probably INetProtocol needs adjusting too.


Don't think so.  Since INetURLObject falls back to INetProtocol::Generic
now, there's rarely need these days to keep adding schemes to
INetURLObject/INetProtocol.  (For example, dav and davs are not
there, either.)


Then, while checking for the scheme of a url to determine if it's webdav 
or not, in SfxMedium::LockOrigFileOnDemand and SfxMedium::UnlockFile I used:


INetProtocol aProto =  GetURLObject().GetProtocol();
if( aProto ==  INetProtocol::Http || aProto ==  INetProtocol::Https || 
aProto ==  INetProtocol::VndSunStarWebdav )

{
// WebDAV !
}

Or is there another way to detect the protocol ?

For example one may be this:

::ucbhelper::Content aContent;
OUString aScheme;

aContent = ::ucbhelper::Content(sURL, xCommandEnv, 
comphelper::getProcessComponentContext());


css::uno::Reference css::ucb::XContentIdentifier  xContId( 
aContent.get().is() ? aContent.get()-getIdentifier() : 0 );


if ( xContId.is() )
  aScheme = xContId-getContentProviderScheme().toAsciiLowerCase();

if ( aScheme == http || aScheme == https || aScheme == 
vnd.sun.star.webdav )

{
//  WebDAV !
}

what's the better?

This is where I got the idea:

http://opengrok.libreoffice.org/xref/core/sfx2/source/doc/docfile.cxx#385

Perhaps another better way?

Thanks
--
Kind Regards,
Giuseppe Castagno aka beppec56
Acca Esse http://www.acca-esse.eu
giuseppe.castagno at acca-esse.eu

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


[Libreoffice-bugs] [Bug 93708] [Feature request] Add search bar for recently opened documents

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93708

--- Comment #2 from matthias.t...@gmx-topmail.de ---
(In reply to V Stuart Foote from comment #1)
 Thanks for the enhancement suggestion. But, the Recent Documents list is
 capped at 25 documents, and that is all the more that will reside as
 thumbnail views in the Start Center.
I was not aware of that. Thanks for that information.

 Personally I'd prefer to see the effort go into implementing enhancement of
 bug 80934 -- START CENTER: A GUI means to filter the thumbnail view list of
 MRU recent documents by module

That also sounds like a good idea but the user has to know the format of the
desired document (writer/calc/..) in previous. So if i would like to open
something like finance, it could be a calc or a writer document.

With the following facts i would agree to close this/my request:
* The amount of entries is limited which is intended (i was not aware of that).
* The operating system could provide that functionality (argument from your
mentioned bug 80934, thats correct).
* The implementing enhancement (bug 80934) suggests a fimilar way to find the
desired document.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 93708] [Feature request] Add search bar for recently opened documents

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93708

--- Comment #2 from matthias.t...@gmx-topmail.de ---
(In reply to V Stuart Foote from comment #1)
 Thanks for the enhancement suggestion. But, the Recent Documents list is
 capped at 25 documents, and that is all the more that will reside as
 thumbnail views in the Start Center.
I was not aware of that. Thanks for that information.

 Personally I'd prefer to see the effort go into implementing enhancement of
 bug 80934 -- START CENTER: A GUI means to filter the thumbnail view list of
 MRU recent documents by module

That also sounds like a good idea but the user has to know the format of the
desired document (writer/calc/..) in previous. So if i would like to open
something like finance, it could be a calc or a writer document.

With the following facts i would agree to close this/my request:
* The amount of entries is limited which is intended (i was not aware of that).
* The operating system could provide that functionality (argument from your
mentioned bug 80934, thats correct).
* The implementing enhancement (bug 80934) suggests a fimilar way to find the
desired document.

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


[Libreoffice-bugs] [Bug 71690] TDF Site: Download - System Requirements: Add Windows Server 2008 R2, 2012 and Windows 8.1 + Windows 10 + FreeBSD

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71690

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

   Priority|highest |high
 CC||qu...@runcibility.com

--- Comment #9 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to Gerry from comment #5)
 Please also add Windows 10 to the system requirements page.
 

Win8 and win10 now appear on the sys req page. I'm not sure about the other
OSes being considered under the label 'supported', so let me do more research
there.

Dropping priority - high, as all known supported OSes now listed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93710] Allow special character as separator for numbered headings (and similar)

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93710

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi Ulrich,

Thanks for your report.

When I look at Tools  Outline numbering, I can set the Separator before and
After. Any special character can be set there. (Mind: there is some crash
around inserting special characters in a dialiog, in 5.0 - don't know
details)

Does that help for you?
The same applies for any list style, on the tab Options.

Apologies if I misunderstood your problem. Then please explain a bit more.
Cheers - Cor

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - filter/source include/filter sd/qa sd/source

2015-08-27 Thread Caolán McNamara
 filter/source/msfilter/svdfppt.cxx |   45 +++--
 include/filter/msfilter/dffpropset.hxx |1 
 sd/qa/unit/data/ppt/pass/hang-3.ppt|binary
 sd/source/filter/ppt/pptin.cxx |   35 +++--
 4 files changed, 43 insertions(+), 38 deletions(-)

New commits:
commit 867bffb0fddbb9311e90f6426b4399f6d2a071d2
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Aug 27 09:13:42 2015 +0100

extend seek, loop ending tests to ppt specific code

Change-Id: Id4419b6b902b742117e248870b6a663c9c58955f
(cherry picked from commit c249f93d96ec87b0acbd25ffe087543d6fe9fb14)
Reviewed-on: https://gerrit.libreoffice.org/18052
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: David Tardon dtar...@redhat.com

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index 3f898b6..428708a 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -707,19 +707,16 @@ void SdrEscherImport::RecolorGraphic( SvStream rSt, 
sal_uInt32 nRecLen, Graphic
 }
 }
 
-namespace
+sal_uLong DffPropSet::SanitizeEndPos(SvStream rIn, sal_uLong nEndRecPos)
 {
-sal_uLong SanitizeEndPos(SvStream rIn, sal_uLong nEndRecPos)
+auto nStreamLen = rIn.Tell() + rIn.remainingSize();
+if (nEndRecPos  nStreamLen)
 {
-auto nStreamLen = rIn.Tell() + rIn.remainingSize();
-if (nEndRecPos  nStreamLen)
-{
-SAL_WARN(filter.ms, Parsing error:   nStreamLen 
-  max end pos, but   nEndRecPos   claimed, 
truncating);
-nEndRecPos = nStreamLen;
-}
-return nEndRecPos;
+SAL_WARN(filter.ms, Parsing error:   nStreamLen 
+  max end pos, but   nEndRecPos   claimed, truncating);
+nEndRecPos = nStreamLen;
 }
+return nEndRecPos;
 }
 
 /* ProcessObject is called from ImplSdPPTImport::ProcessObj to handle all 
application specific things,
@@ -2661,7 +2658,7 @@ void ImportComment10( SvxMSDffManager rMan, SvStream 
rStCtrl, SdrPage* pPage,
 sal_Int32   nPosY = 0;
 
 
-auto nEndRecPos = SanitizeEndPos(rStCtrl, rComment10Hd.GetRecEndFilePos());
+auto nEndRecPos = DffPropSet::SanitizeEndPos(rStCtrl, 
rComment10Hd.GetRecEndFilePos());
 while ( ( rStCtrl.GetError() == 0 )  ( rStCtrl.Tell()  nEndRecPos ) )
 {
 DffRecordHeader aCommentHd;
@@ -3195,7 +3192,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 pListHd-SeekToContent( rSt );
 if ( pListHd  SdrPowerPointImport::SeekToContentOfProgTag( 9, rSt, 
*pListHd, aContentDataHd ) )
 {
-auto nEndRecPos = SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
+auto nEndRecPos = DffPropSet::SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  nEndRecPos ) )
 {
 ReadDffRecordHeader( rSt, aHd );
@@ -3203,7 +3200,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 {
 case PPT_PST_ExtendedBuGraContainer :
 {
-auto nHdEndRecPos = SanitizeEndPos(rSt, 
aHd.GetRecEndFilePos());
+auto nHdEndRecPos = DffPropSet::SanitizeEndPos(rSt, 
aHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
nHdEndRecPos ) )
 {
 sal_uInt16 nType;
@@ -3275,7 +3272,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 
 if ( pHd  SdrPowerPointImport::SeekToContentOfProgTag( 9, rSt, *pHd, 
aContentDataHd ) )
 {   // get the extended paragraph styles on mainmaster ( graphical 
bullets, num ruling ... )
-auto nEndRecPos = SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
+auto nEndRecPos = DffPropSet::SanitizeEndPos(rSt, 
aContentDataHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  nEndRecPos ) )
 {
 ReadDffRecordHeader( rSt, aHd );
@@ -3289,7 +3286,7 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 rSt.ReadUInt16( nDepth );
 if ( i = 5 )
 {
-auto nHdEndRecPos = SanitizeEndPos(rSt, 
aHd.GetRecEndFilePos());
+auto nHdEndRecPos = 
DffPropSet::SanitizeEndPos(rSt, aHd.GetRecEndFilePos());
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
nHdEndRecPos )  ( i  nDepth ) )
 {
 bStyles = true;
@@ -4051,7 +4048,7 @@ PPTStyleSheet::PPTStyleSheet( const DffRecordHeader 
rSlideHd, SvStream rIn, Sd
 {
 pEnvHeader-SeekToContent( rIn );
 DffRecordHeader aTxMasterStyleHd;
-auto nEndRecPos = SanitizeEndPos(rIn, pEnvHeader-GetRecEndFilePos());
+auto 

[Libreoffice-bugs] [Bug 93713] Unable to Unprotect Protected cells in Writer Tables from 'Table' menu

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Charles tansta...@libertytrek.org changed:

   What|Removed |Added

Summary|Unable to right-click   |Unable to Unprotect
   |Unprotect/Protect cells in  |Protected cells in Writer
   |Writer Tables   |Tables from 'Table' menu

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93713] Unable to Unprotect Protected cells in Writer Tables from 'Table' menu

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

--- Comment #4 from Charles tansta...@libertytrek.org ---
Changed summary to reflect that [Un]Protect Cell was removed from the context
menu, but that the new way will not allow me to Unprotect a Protected cell.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: sw/qa sw/source writerfilter/source

2015-08-27 Thread Mark Hung
 sw/qa/extras/ooxmlimport/data/tdf49073.docx   |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx  |   17 +
 sw/qa/extras/rtfexport/data/tdf49073.rtf  |  248 ++
 sw/qa/extras/rtfexport/rtfexport.cxx  |   17 +
 sw/source/filter/ww8/rtfattributeoutput.cxx   |  151 -
 writerfilter/source/dmapper/ConversionHelper.cxx  |   26 ++
 writerfilter/source/dmapper/ConversionHelper.hxx  |1 
 writerfilter/source/dmapper/DomainMapper.cxx  |   70 ++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |   77 ++
 writerfilter/source/dmapper/DomainMapper_Impl.hxx |   28 ++
 writerfilter/source/dmapper/PropertyIds.cxx   |3 
 writerfilter/source/dmapper/PropertyIds.hxx   |3 
 writerfilter/source/ooxml/model.xml   |   44 +++
 13 files changed, 669 insertions(+), 16 deletions(-)

New commits:
commit e2be23d1718b363650bf1853d629df89347d906e
Author: Mark Hung mark...@gmail.com
Date:   Thu Jul 16 02:55:32 2015 +0800

Improving Asian phonetic guide for docx and rtf files.

RTF import, export, and ooxml export for ruby text are implemented.

tdf#49073 - FILEOPEN: Furigana (ruby text) and characters with them are
missing in opened .docx files.

tdf#50786 - [TASK, METABUG] FILEOPEN, FILESAVE, FORMATTING : Japanese
ruby-character handling is broken

Change-Id: I4a5c30bad180241e3344e9da7efe7da4369fb325
Reviewed-on: https://gerrit.libreoffice.org/17241
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Michael Stahl mst...@redhat.com

diff --git a/sw/qa/extras/ooxmlimport/data/tdf49073.docx 
b/sw/qa/extras/ooxmlimport/data/tdf49073.docx
new file mode 100644
index 000..2fe82a3
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf49073.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 820d6f5..4108c49 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -51,6 +51,7 @@
 #include com/sun/star/text/XTextEmbeddedObjectsSupplier.hpp
 #include com/sun/star/text/XTextViewCursorSupplier.hpp
 #include com/sun/star/style/BreakType.hpp
+#include com/sun/star/text/RubyAdjust.hpp
 #include com/sun/star/style/ParagraphAdjust.hpp
 #include com/sun/star/style/LineSpacing.hpp
 #include com/sun/star/style/LineSpacingMode.hpp
@@ -2706,6 +2707,22 @@ DECLARE_OOXMLIMPORT_TEST(mathtype, mathtype.docx)
 
CPPUNIT_ASSERT(xModel-supportsService(com.sun.star.formula.FormulaProperties));
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf49073, tdf49073.docx)
+{
+// test case for Asisan phontic guide ( ruby text.)
+sal_Unicode aRuby[3] = {0x304D,0x3082,0x3093};
+OUString sRuby = OUString(aRuby, SAL_N_ELEMENTS(aRuby));
+
CPPUNIT_ASSERT_EQUAL(sRuby,getPropertyOUString(getParagraph(1)-getStart(), 
RubyText));
+OUString sStyle = getPropertyOUString( getParagraph(1)-getStart(), 
RubyCharStyleName);
+uno::Referencebeans::XPropertySet 
xPropertySet(getStyles(CharacterStyles)-getByName(sStyle), uno::UNO_QUERY );
+CPPUNIT_ASSERT_EQUAL(5.f, getPropertyfloat(xPropertySet, CharHeight));
+CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_CENTER) 
,getPropertysal_Int16(getParagraph(2)-getStart(),RubyAdjust));
+CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_BLOCK)  
,getPropertysal_Int16(getParagraph(3)-getStart(),RubyAdjust));
+
CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_INDENT_BLOCK),getPropertysal_Int16(getParagraph(4)-getStart(),RubyAdjust));
+CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_LEFT)   
,getPropertysal_Int16(getParagraph(5)-getStart(),RubyAdjust));
+CPPUNIT_ASSERT_EQUAL(sal_Int16(text::RubyAdjust_RIGHT)  
,getPropertysal_Int16(getParagraph(6)-getStart(),RubyAdjust));
+}
+
 DECLARE_OOXMLIMPORT_TEST(testTdf8255, tdf8255.docx)
 {
 uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
diff --git a/sw/qa/extras/rtfexport/data/tdf49073.rtf 
b/sw/qa/extras/rtfexport/data/tdf49073.rtf
new file mode 100755
index 000..20fb927
--- /dev/null
+++ b/sw/qa/extras/rtfexport/data/tdf49073.rtf
@@ -0,0 +1,248 @@
+{\rtf1\adeflang1025\ansi\ansicpg950\uc2\adeff0\deff0\stshfdbch11\stshfloch21\stshfhich21\stshfbi0\deflang1033\deflangfe1028\themelang1033\themelangfe1041\themelangcs0{\fonttbl{\f0\fbidi
 \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
+{\f11\fbidi \fmodern\fcharset128\fprq1{\*\panose 02020609040205080304}MS 
Mincho{\*\falt \'82\'6c\'82\'72 \'96\'be\'92\'a9};}{\f14\fbidi 
\froman\fcharset136\fprq2{\*\panose 
02020500}\'b7\'73\'b2\'d3\'a9\'fa\'c5\'e9{\*\falt PMingLiU};}
+{\f21\fbidi \froman\fcharset0\fprq2{\*\panose 
02040604050505020304}Century;}{\f21\fbidi \froman\fcharset0\fprq2{\*\panose 
02040604050505020304}Century;}{\f38\fbidi \fmodern\fcharset128\fprq1{\*\panose 
02020609040205080304}@MS Mincho;}
+{\f39\fbidi \froman\fcharset136\fprq2{\*\panose 

[Libreoffice-bugs] [Bug 93665] START CENTER: Entries without preview should have white background behind icon

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93665

--- Comment #3 from steve -_- st...@openmailbox.org ---
Agree with VSF. Looking good to my eyes. I think I'd even prefer the current
solution above having something white behind that icon.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export working but when opened with Word displayed differently than in LO

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

--- Comment #6 from Dr. David Alan Gilbert dgilb...@redhat.com ---
(In reply to Joel Madero from comment #5)
 Ubuntu 15.04 x64
 LibreOffice 4.4.5.2, 5.0.0.5, master (Build ID:
 b103e7d786f5b7ec6cfe4f53f2ca317f06ceabc5)
 
 
 Setting as:
 NEW
 Normal - can prevent high quality work;
 Low - fodt is not popular to begin with, then saving that as a docx with a
 complexish chart . . . not going to impact many users at all.
 

The 'fodt' is not part of the problem; it fails in the same way for me  with a
normal odt as well; I just tend to save as fodt before posting so I can check
to make sure nothing confidential is left in it.

 Would be nice to find out if this ever worked (by testing older versions).
 If you have time please do so and report back:
 http://downloadarchive.documentfoundation.org/libreoffice/old/
 
 Thanks for reporting

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93610] cannot flip .PNG properly in Writer and Draw

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93610

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #13 from steve -_- st...@openmailbox.org ---
Works on OS X 10.10.5
LO Version: 5.1.0.0.alpha1+
Build ID: b2363e98af7b0281279617e43b8fec5b898b9120
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2015-08-25_23:42:33
Locale: de-DE (de.UTF-8)

So since this could not be reproduced on neither WIN, OSX nor Linux, setting to
WORKSFORME.

Please try with LO 5.1 newest master build.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93704] App crash when load any .ods files

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93704

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from steve -_- st...@openmailbox.org ---
This bug report has much too little information to make anything useful out of
it.

Version: 5.1.0.0.alpha1+
Build ID: b2363e98af7b0281279617e43b8fec5b898b9120
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2015-08-25_23:42:33
Locale: de-DE (de.UTF-8)

WORKSFORME. Please retry with the latest master build. If this persists, please
give exact version info of LO being used from the about screen and exact OS of
yours.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93685] WORKDAYINTL function has a new parameter that make old spreadsheet in error

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93685

--- Comment #5 from Rpnpif rpn...@free.fr ---
 LANG=C libreoffice4.4 Plan\ d_annee_2.ods

I think you have understand that I use Debian Linux and this command is typed
in a X terminal. But this issue probably exists on another OS.

Regards.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93716] FILESAVE (HTML): handles weak bidi characters as strong ones

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93716

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Depends on||63927

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 63927] Export (HTML, DOC, DOCX): handles weak bidi characters as strong ones

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63927

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Blocks||93716

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Depends on||93716

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93717] New: Libre documents are no filed under Adobe and will not open.

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93717

Bug ID: 93717
   Summary: Libre documents are no filed under Adobe and will not
open.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nil...@cox.net

My Libre documents have been taken over by Adobe and cannot be opened.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 31481] [RFE] Split pane in same window for side-by-side proof reading/ translating of 2 different files

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=31481

--- Comment #61 from Dan Martin danspeak...@gmx.com ---
I agree. Being able to view two documents side by side, either as a vertical or
a horizontal align, is a must for many professionals, including translators,
editors, lawyers and physicians. 

The loss of its good old MDI (multiple document interface) was one of those
improvements for the worse that make the discerning LibreOffice user facepalm.
An SDI might be easier to understand for some users, but honestly, having MDI
as an option didn’t harm anyone.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - vcl/unx

2015-08-27 Thread Jan-Marek Glogowski
 vcl/unx/kde4/KDESalGraphics.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 125fd9e3df5b33b9cd80de1ee3e4fa64c8587387
Author: Jan-Marek Glogowski glo...@fbihome.de
Date:   Wed Aug 26 15:29:15 2015 +

tdf#80512 KDE4: fix RTL scrollbar handling

Just invert the scrollbar the same way gtk+ does by checking the
button positions and adjust the drawing style accordingly.

Change-Id: I3475c33e074c1509a73da618a4efa44dc61a1a77
(cherry picked from commit 273df1762707d1d44c9f9b3911e06f7a5a4fa08f)
Reviewed-on: https://gerrit.libreoffice.org/18033
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Katarina Behrens katarina.behr...@cib.de

diff --git a/vcl/unx/kde4/KDESalGraphics.cxx b/vcl/unx/kde4/KDESalGraphics.cxx
index 7e1a881..a1a5351 100644
--- a/vcl/unx/kde4/KDESalGraphics.cxx
+++ b/vcl/unx/kde4/KDESalGraphics.cxx
@@ -475,6 +475,8 @@ bool KDESalGraphics::drawNativeControl( ControlType type, 
ControlPart part,
 option.sliderValue = sbVal-mnCur;
 option.sliderPosition = sbVal-mnCur;
 option.pageStep = sbVal-mnVisibleSize;
+if (part == PART_DRAW_BACKGROUND_HORZ)
+option.upsideDown = sbVal-maButton1Rect.Left()  
sbVal-maButton2Rect.Left();
 
 //setup the active control...always the slider
 if (sbVal-mnThumbState  ControlState::ROLLOVER)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 63430] FILESAVE: Image captions disappear

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63430

--- Comment #10 from Joel Madero jmadero@gmail.com ---
So this bug was closed as INVALID - please report a new bug and we NEED
(absolutely need) a test document. If your current file is confidential -
please create a new (simple) test document that demonstrates the issue. Our QA
team is small and we can't be responsible for making tens of thousands of test
cases...thanks for understanding

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93717] Libre documents are now filed under Adobe and will not open.

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93717

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jmadero@gmail.com
 Resolution|--- |NOTOURBUG

--- Comment #1 from Joel Madero jmadero@gmail.com ---
I'm not sure why you think this is our bugit's not.

Closing as NOTOURBUG. You can get user help from the user mailing lists or
ask.libreoffice.org.

https://www.libreoffice.org/get-help/mailing-lists/

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93718] New: PRINTING: Envelopes #10 Brother Printer changes to C5

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93718

Bug ID: 93718
   Summary: PRINTING: Envelopes #10 Brother Printer changes to C5
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gail...@phuhque.com

I start out with Letter sized paper option
http://i.imgur.com/wOGhDng.png

After configuring to print #10 envelope
http://i.imgur.com/oMhNWBB.png

Proceeding to print, the paper type is changed to C5
http://i.imgur.com/Xl7OLrx.png

These become the printer properties
http://i.imgur.com/hQShUfv.png

There is no option to print to any envelope type paper size.

This is similar to Bug ID 77277 but this is under Windows, not Linux

We should see they various envelopes listed under the paper size or at least it
keep custom paper size settings for the given envelope type.

Further, orientation is inverted, similar to BUG ID 82370, but again under
windows.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export working but when opened with Word displayed differently than in LO

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
Summary|docx: Diagram export ( |docx: Diagram export
   |import?) badly corrupt  |working but when opened
   ||with Word displayed
   ||differently than in LO

--- Comment #2 from steve -_- st...@openmailbox.org ---
WORKSFORME with LO Version: 5.1.0.0.alpha1+
Build ID: b2363e98af7b0281279617e43b8fec5b898b9120
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2015-08-25_23:42:33
Locale: de-DE (de.UTF-8)

Screenshot of fodt file and docx (exported to that) both opened with
LibreOffice.

The docx file looks indeed different when opened with Word. But that might as
well be a glitch in Word.

Please correct me if I did miss anything. I'll also ping another QA team member
to look at this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export working but when opened with Word displayed differently than in LO

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

--- Comment #3 from steve -_- st...@openmailbox.org ---
Created attachment 118228
  -- https://bugs.documentfoundation.org/attachment.cgi?id=118228action=edit
docx (left) and fodt (right) worksforme

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93714] Bring back [Un]Protect Cell context menu for protecting/unprotecting cells

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93714

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
*** Bug 93713 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 93665] START CENTER: Entries without preview should have white background behind icon

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93665

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from steve -_- st...@openmailbox.org ---
Jay, if you disagree or want further UX advise, please re-open and set keyword
accordingly.

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


[Libreoffice-bugs] [Bug 61914] [META] Start Center -- implementation UI and UX

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914
Bug 61914 depends on bug 93665, which changed state.

Bug 93665 Summary: START CENTER: Entries without preview should have white 
background behind icon
https://bugs.documentfoundation.org/show_bug.cgi?id=93665

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93665] START CENTER: Entries without preview should have white background behind icon

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93665

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from steve -_- st...@openmailbox.org ---
Jay, if you disagree or want further UX advise, please re-open and set keyword
accordingly.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 93558] Preview of Bullets is hard to see with a dark theme

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93558

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:5.1.0

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


[Libreoffice-ux-advise] [Bug 93558] Preview of Bullets is hard to see with a dark theme

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93558

--- Comment #13 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=fa1807ad5457d10f8fa073c209a27547e8922c8c

tdf#93558 Hardcode black text on white background

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 93625] FILESAVE: DOC: inline drawing lost after roundtrip

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93625

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from steve -_- st...@openmailbox.org ---
OSX 10.10.5
LO ersion: 5.1.0.0.alpha1+
Build ID: c9df840d207c8d965b2df993e0a90be89f52c254
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2015-08-27_02:25:46
Locale: de-DE (de.UTF-8)

trying to reproduce.
both original docx and saved as doc look identical in LO (they also look
different from either of the screenshots).

When looking at both files in Word I do see identical behavior than in your
screenshot so confirming → NEW.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: What autogen.sh for an alternative ContentProvider for dav:// scheme?

2015-08-27 Thread Giuseppe Castagno

On 08/27/2015 03:37 PM, Stephan Bergmann wrote:

On 08/27/2015 03:27 PM, Giuseppe Castagno wrote:

On 08/27/2015 01:37 PM, Stephan Bergmann wrote:

On 08/27/2015 12:35 PM, Giuseppe Castagno wrote:

Saw commit [1], probably INetProtocol needs adjusting too.


Don't think so.  Since INetURLObject falls back to INetProtocol::Generic
now, there's rarely need these days to keep adding schemes to
INetURLObject/INetProtocol.  (For example, dav and davs are not
there, either.)


Then, while checking for the scheme of a url to determine if it's webdav
or not, in SfxMedium::LockOrigFileOnDemand and SfxMedium::UnlockFile I
used:

INetProtocol aProto =  GetURLObject().GetProtocol();
if( aProto ==  INetProtocol::Http || aProto ==  INetProtocol::Https ||
aProto ==  INetProtocol::VndSunStarWebdav )
{
// WebDAV !
}

Or is there another way to detect the protocol ?


Yeah, only after pressing send I understood that your probably
INetProtocol needs adjusting too was meant in the context of your
pending https://gerrit.libreoffice.org/#/c/17189.

See https://gerrit.libreoffice.org/#/c/18060/ for tentative new
functionality to allow to easily check also for an
INetProtocol::Generic's INetURLObject scheme.  And feel free to push in
combination with your 17189 if it proves useful for your needs.


worked like a charm! Thanks Stephan, I'll add it to my patch set list, 
that will became three patch long, yours the first.


I wonder if in INetURLObject I can put a single method  like this:

bool INetURLObject::IsWebDAV()
{
return ( hasScheme( http ) ||
  hasScheme( https ) ||
  hasScheme( vnd.sun.start.webdav ) ||
  hasScheme( vnd.sun.start.webdavs ) );
}

to have this test in a single place? Currently I repeat it four times.

Finally, looking at the code in INetURLObject I noticed this comment:
http://opengrok.libreoffice.org/xref/core/tools/source/fsys/urlobj.cxx#114

and this chunk of code:
http://opengrok.libreoffice.org/xref/core/tools/source/fsys/urlobj.cxx#335

should vnd.sun.star.webdavs be added as well?


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



--
Kind Regards,
Giuseppe Castagno
Acca Esse http://www.acca-esse.eu
giuseppe.castagno at acca-esse.eu
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Translating comments

2015-08-27 Thread Lucas Satabin

Hi all,

I started translating some german comments.
So far I translated all german comments I found in rsc.
The changes were submitted to gerrit [0] and [1].

I am open to comments and feedback on these changes.
I am not sure whether it is better to submit patches to gerrit or on 
this mailing list for comment translation. Tell me if must submit 
patches here.


Thanks in advance.

Lucas

[0] https://gerrit.libreoffice.org/#/c/17999/
[1] https://gerrit.libreoffice.org/#/c/18000/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 93713] Unable to Unprotect Protected cells in Writer Tables from 'Table' menu

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #7 from Cor Nouws c...@nouenoff.nl ---
it's enough to have one issue. Marking this as duplicate.

*** This bug has been marked as a duplicate of bug 93714 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93665] START CENTER: Entries without preview should have white background behind icon

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93665

--- Comment #2 from steve -_- st...@openmailbox.org ---
Created attachment 118229
  -- https://bugs.documentfoundation.org/attachment.cgi?id=118229action=edit
OSX LO 5.1 looks good to me

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export working but when opened with Word displayed differently than in LO

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

--- Comment #7 from Dr. David Alan Gilbert dgilb...@redhat.com ---
Created attachment 118230
  -- https://bugs.documentfoundation.org/attachment.cgi?id=118230action=edit
Screenshot showing corruption

Hi Steve__,
  As you can see from this screenshot on 5.0.1.1 it's well - VERY corrupt (and
the same on the 4.x I have).  So if we're lucky someone just fixed in the 5.1.

When you say it looks different in Word, can you describe how?
When I tried it, chunks of the text were swapped around compared to where LO
had it.  To my mind the docx has to look 'right' on Word or there isn't much
point in exporting to it.

But IMHO this isn't a 'low' - trying to collaborate with other people using
Word is unfortunate but necessary for me.

(I'm out for a few days, so might not respond quickly).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93675] docx: Diagram export working but when opened with Word displayed differently than in LO

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

--- Comment #8 from Joel Madero jmadero@gmail.com ---
A couple points:

This is a low priority bug - yes you use it in this very particular way but
I've been using LibreOffice (and a contributor) for years and I can say with
full confidence that the vast majority of users don't use it like this (you're
using an unpopular feature...these charting type features);

Plus - it's a non-native format (docx);

Lastly, just know that low does not mean that a volunteer won't fix it, it's
an *objective* criteria as to how impacted our users will be because of the
bug. If a *volunteer* thinks this bug is interesting, they will fix it (whether
it's highest or lowest or something in between). This could happen tomorrow or
it could happen years from now...that's how the project works.

If you absolutely need a fix I suggest considering getting L3 support from a
certified developer:
https://www.documentfoundation.org/certification/developers/

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: include/svx svx/source

2015-08-27 Thread Maxim Monastirsky
 include/svx/numvset.hxx |1 -
 svx/source/dialog/svxbmpnumvalueset.cxx |   11 +++
 2 files changed, 3 insertions(+), 9 deletions(-)

New commits:
commit fa1807ad5457d10f8fa073c209a27547e8922c8c
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Thu Aug 27 21:18:58 2015 +0300

tdf#93558 Hardcode black text on white background

As agreed in the bug report, a preview shouldn't be
themed by the OS theme.

Change-Id: Icdc5021c3ac614fe1d490fd513a407a81dbc169e

diff --git a/include/svx/numvset.hxx b/include/svx/numvset.hxx
index 7565178..903921c 100644
--- a/include/svx/numvset.hxx
+++ b/include/svx/numvset.hxx
@@ -57,7 +57,6 @@ enum class NumberingPageType
 
 class SVX_DLLPUBLIC SvxNumValueSet : public ValueSet
 {
-Color   aLineColor;
 NumberingPageType ePageType;
 boolbHTMLMode;
 Rectangle   aOrgRect;
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx 
b/svx/source/dialog/svxbmpnumvalueset.cxx
index 5d11b04..1d01cd9 100644
--- a/svx/source/dialog/svxbmpnumvalueset.cxx
+++ b/svx/source/dialog/svxbmpnumvalueset.cxx
@@ -136,9 +136,8 @@ void  SvxNumValueSet::UserDraw( const UserDrawEvent rUDEvt 
)
 25, 90,
 };
 
-const StyleSettings rStyleSettings = GetSettings().GetStyleSettings();
-const Color aBackColor = rStyleSettings.GetFieldColor();
-const Color aTextColor = rStyleSettings.GetFieldTextColor();
+const Color aBackColor(COL_WHITE);
+const Color aTextColor(COL_BLACK);
 
 vcl::RenderContext* pDev = rUDEvt.GetRenderContext();
 Rectangle aRect = rUDEvt.GetRect();
@@ -182,10 +181,7 @@ void  SvxNumValueSet::UserDraw( const UserDrawEvent 
rUDEvt )
  pVDev-SetOutputSize( aRectSize );
 aOrgRect = aRect;
 pVDev-SetFillColor( aBackColor );
-
-if(aBackColor == aLineColor)
-aLineColor.Invert();
-pVDev-SetLineColor(aLineColor);
+pVDev-SetLineColor(COL_LIGHTGRAY);
 // Draw line only once
 if(ePageType != NumberingPageType::OUTLINE)
 {
@@ -397,7 +393,6 @@ VCL_BUILDER_FACTORY_ARGS(SvxNumValueSet, WB_TABSTOP)
 
 void SvxNumValueSet::init(NumberingPageType eType)
 {
-aLineColor = COL_LIGHTGRAY;
 ePageType = eType;
 bHTMLMode = false;
 pVDev = NULL;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93675] docx: Diagram export working but when opened with Word displayed differently than in LO

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93675

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Priority|medium  |low
 Status|RESOLVED|NEW
   Hardware|Other   |All
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1
 OS|All |Linux (All)

--- Comment #5 from Joel Madero jmadero@gmail.com ---
Ubuntu 15.04 x64
LibreOffice 4.4.5.2, 5.0.0.5, master (Build ID:
b103e7d786f5b7ec6cfe4f53f2ca317f06ceabc5)


Setting as:
NEW
Normal - can prevent high quality work;
Low - fodt is not popular to begin with, then saving that as a docx with a
complexish chart . . . not going to impact many users at all.


Would be nice to find out if this ever worked (by testing older versions). If
you have time please do so and report back:
http://downloadarchive.documentfoundation.org/libreoffice/old/

Thanks for reporting

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93681] FILEOPEN: PPTX Import reverse order of columns in a right-to-left table

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93681

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from steve -_- st...@openmailbox.org ---
Hi Ofir,

thanks for the report. I can confirm the attached file in questions should
reverse order than the attached example PDF.

Assuming that Powerpoint would show this correctly (as shown in the PDF)
setting to NEW.

I have no Powerpoint atm to test.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: Translating comments

2015-08-27 Thread Michael Meeks
Hi Lucas,

On Thu, 2015-08-27 at 20:03 +0200, Lucas Satabin wrote:
 I started translating some german comments.
 So far I translated all german comments I found in rsc.
 The changes were submitted to gerrit [0] and [1].

Nice work =)

 I am open to comments and feedback on these changes.

I'm no expert in German - but the English looks sensible and clean to
me, thanks ! if no-one else gets to checking them, will try to merge
early next week.

One minor point - could you patch bin/find-german-comments to disable
'rsc' if you've completed that module =)

 I am not sure whether it is better to submit patches to gerrit or on 
 this mailing list for comment translation. Tell me if must submit 
 patches here.

Gerrit is great.

Thanks !

Michael.

-- 
 michael.me...@collabora.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice-bugs] [Bug 93713] Unable to Unprotect Protected cells in Writer Tables from 'Table' menu

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Charles tansta...@libertytrek.org changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93656] Unable to organize forms in subfolders

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93656

--- Comment #5 from rob...@familiegrosskopf.de ---
Could be the same as https://bugs.documentfoundation.org/show_bug.cgi?id=93018.

I have tried with LO 5.0.0.5 - copying of forms doesn't work. Moving into
subfolders doesn't work.
But first I tried the LO 5.0.1.2. Here it works.
Seems the bug has been gone with 5.0.1.2.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56403] RTL UI: with RTL locales presentations appear with text align to the right instead of to the left

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56403

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---

--- Comment #8 from Lior Kaplan kaplanl...@gmail.com ---
Still happens in 5.0.1 (LibO 5.0.1 packages for Debian GNU/Linux, 64bit)

Notice the test in step #4 is with left to right interface, where the original
file is aligned to the left, while the saved file is aligned to the right.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808
Bug 43808 depends on bug 56403, which changed state.

Bug 56403 Summary: RTL UI: with RTL locales presentations appear with text 
align to the right instead of to the left
https://bugs.documentfoundation.org/show_bug.cgi?id=56403

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79253] While editing text in table, writer application freezes. Work since last save could not be recovered.

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79253

Mark Neuffer mhneuf...@me.com changed:

   What|Removed |Added

Summary|TABLE: can not edit |While editing text in
   |document with tables -  |table, writer application
   |writer freeze - no response |freezes. Work since last
   ||save could not be
   ||recovered.

--- Comment #8 from Mark Neuffer mhneuf...@me.com ---
I am not sure that

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91061] LO writer shows only 1 page of a .docx file when the actual doc is 11 pages

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91061

Timur gti...@gmail.com changed:

   What|Removed |Added

   Keywords||regression
 Whiteboard||bibisectRequest

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 63927] Export (HTML, DOC, DOCX): handles weak bidi characters as strong ones

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63927

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
 Resolution|WORKSFORME  |FIXED

--- Comment #6 from Lior Kaplan kaplanl...@gmail.com ---
Verified fix in 5.0.1 (Debian GNU/Linux, 64bit).

Notice the fix works fine in File - Export, but doesn't work in File - Save
As.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93716] FILESAVE (HTML): handles weak bidi characters as strong ones

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93716

--- Comment #2 from Lior Kaplan kaplanl...@gmail.com ---
Created attachment 118225
  -- https://bugs.documentfoundation.org/attachment.cgi?id=118225action=edit
Output of save as HTML

Attached output of export (with LibO 5.0.1), comparing to save as HTML. The
problem as described in bug #63927 still happens while doing save as HTML.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56403] RTL UI: with RTL locales presentations appear with text align to the right instead of to the left

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56403

--- Comment #9 from Lior Kaplan kaplanl...@gmail.com ---
Still happens in 5.0.1 (LibO 5.0.1 packages for Debian GNU/Linux, 64bit)

Notice the test in step #4 is with left to right interface, where the original
file is aligned to the left, while the saved file is aligned to the right.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: sw/source sw/uiconfig

2015-08-27 Thread Rishabh Kumar
 sw/source/uibase/sidebar/WrapPropertyPanel.cxx |  163 ++---
 sw/source/uibase/sidebar/WrapPropertyPanel.hxx |   25 +++
 sw/uiconfig/swriter/ui/sidebarwrap.ui  |  186 +
 3 files changed, 320 insertions(+), 54 deletions(-)

New commits:
commit 30c2ae28eecb3f1a4454784974c0c2bffc60334e
Author: Rishabh Kumar kris.kr...@gmail.com
Date:   Thu Aug 27 14:48:34 2015 +0530

Addition of new controls to Wrap sidebar tab in Writer

Addition of Enable Contour and Edit Contour button to the sidebar

Change-Id: I9cadbcc9643b9fc87b3dbe3a9a2355cd674d1e53
Reviewed-on: https://gerrit.libreoffice.org/17324
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Katarina Behrens katarina.behr...@cib.de

diff --git a/sw/source/uibase/sidebar/WrapPropertyPanel.cxx 
b/sw/source/uibase/sidebar/WrapPropertyPanel.cxx
index d312ced..00c6435 100644
--- a/sw/source/uibase/sidebar/WrapPropertyPanel.cxx
+++ b/sw/source/uibase/sidebar/WrapPropertyPanel.cxx
@@ -22,15 +22,18 @@
 
 #include cmdid.h
 #include swtypes.hxx
-
+#include svx/svxids.hrc
 #include sfx2/bindings.hxx
 #include sfx2/dispatch.hxx
 #include sfx2/sidebar/ControlFactory.hxx
 #include sfx2/imagemgr.hxx
 #include svl/eitem.hxx
 #include vcl/svapp.hxx
+#include vcl/lstbox.hxx
 #include vcl/settings.hxx
-
+#include editeng/lrspitem.hxx
+#include editeng/ulspitem.hxx
+#include hintids.hxx
 #include com/sun/star/lang/IllegalArgumentException.hpp
 
 const char UNO_WRAPOFF[] = .uno:WrapOff;
@@ -67,7 +70,13 @@ WrapPropertyPanel::WrapPropertyPanel(
 : PanelLayout(pParent, WrapPropertyPanel, 
modules/swriter/ui/sidebarwrap.ui, rxFrame)
 , mxFrame( rxFrame )
 , mpBindings(pBindings)
+// spacing
+, nTop(0)
+, nBottom(0)
+, nLeft(0)
+, nRight(0)
 // resources
+, aCustomEntry()
 , aWrapIL(6,2)
 // controller items
 , maSwNoWrapControl(FN_FRAME_NOWRAP, *pBindings, *this)
@@ -76,6 +85,9 @@ WrapPropertyPanel::WrapPropertyPanel(
 , maSwWrapParallelControl(FN_FRAME_WRAP_LEFT, *pBindings, *this)
 , maSwWrapThroughControl(FN_FRAME_WRAPTHRU, *pBindings, *this)
 , maSwWrapIdealControl(FN_FRAME_WRAP_IDEAL, *pBindings, *this)
+, maSwEnableContourControl(FN_FRAME_WRAP_CONTOUR, *pBindings, *this)
+, maSwLRSpacingControl(SID_ATTR_LRSPACE, *pBindings, *this)
+, maSwULSpacingControl(SID_ATTR_ULSPACE, *pBindings, *this)
 {
 get(mpRBNoWrap, buttonnone);
 get(mpRBWrapLeft, buttonbefore);
@@ -83,6 +95,10 @@ WrapPropertyPanel::WrapPropertyPanel(
 get(mpRBWrapParallel, buttonparallel);
 get(mpRBWrapThrough, buttonthrough);
 get(mpRBIdealWrap, buttonoptimal);
+get(mpEnableContour, enablecontour);
+get(mpEditContour, editcontour);
+get(mpSpacingLB, spacingLB);
+get(mpCustomEntry, customlabel);
 
 Initialize();
 }
@@ -100,6 +116,10 @@ void WrapPropertyPanel::dispose()
 mpRBWrapParallel.clear();
 mpRBWrapThrough.clear();
 mpRBIdealWrap.clear();
+mpEnableContour.clear();
+mpEditContour.clear();
+mpSpacingLB.clear();
+mpCustomEntry.clear();
 
 maSwNoWrapControl.dispose();
 maSwWrapLeftControl.dispose();
@@ -107,6 +127,9 @@ void WrapPropertyPanel::dispose()
 maSwWrapParallelControl.dispose();
 maSwWrapThroughControl.dispose();
 maSwWrapIdealControl.dispose();
+maSwEnableContourControl.dispose();
+maSwLRSpacingControl.dispose();
+maSwULSpacingControl.dispose();
 
 PanelLayout::dispose();
 }
@@ -121,6 +144,12 @@ void WrapPropertyPanel::Initialize()
 mpRBWrapThrough-SetClickHdl(aLink);
 mpRBIdealWrap-SetClickHdl(aLink);
 
+LinkButton*,void EditContourLink = LINK(this, WrapPropertyPanel, 
EditContourHdl);
+mpEditContour-SetClickHdl(EditContourLink);
+LinkButton*, void EnableContourLink = LINK(this,WrapPropertyPanel, 
EnableContourHdl);
+mpEnableContour-SetClickHdl(EnableContourLink);
+mpSpacingLB-SetSelectHdl(LINK(this, WrapPropertyPanel, SpacingLBHdl));
+
 aWrapIL.AddImage( UNO_WRAPOFF,
   ::GetImage( mxFrame, UNO_WRAPOFF, false ) );
 aWrapIL.AddImage( UNO_WRAPLEFT,
@@ -149,6 +178,8 @@ void WrapPropertyPanel::Initialize()
 mpRBWrapThrough-SetModeRadioImage( aWrapIL.GetImage(UNO_WRAPTHROUGH) );
 mpRBIdealWrap-SetModeRadioImage( aWrapIL.GetImage(UNO_WRAPIDEAL) );
 
+aCustomEntry = mpCustomEntry-GetText();
+
 mpRBNoWrap-SetAccessibleName(mpRBNoWrap-GetQuickHelpText());
 mpRBWrapLeft-SetAccessibleName(mpRBWrapLeft-GetQuickHelpText());
 mpRBWrapRight-SetAccessibleName(mpRBWrapRight-GetQuickHelpText());
@@ -162,6 +193,56 @@ void WrapPropertyPanel::Initialize()
 mpBindings-Update( FN_FRAME_WRAP_LEFT );
 mpBindings-Update( FN_FRAME_WRAPTHRU );
 mpBindings-Update( FN_FRAME_WRAP_IDEAL );
+mpBindings-Update( FN_FRAME_WRAP_CONTOUR );
+mpBindings-Update( SID_ATTR_LRSPACE );
+mpBindings-Update( SID_ATTR_ULSPACE );
+
+}
+
+void WrapPropertyPanel::UpdateSpacingLB()
+{
+if( 

[Libreoffice-bugs] [Bug 93713] Unable to Unprotect Protected cells in Writer Tables from 'Table' menu

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93713

Charles tansta...@libertytrek.org changed:

   What|Removed |Added

Version|5.0.0.5 release |5.0.1.2 release

--- Comment #5 from Charles tansta...@libertytrek.org ---
Updated to reflect that this bug is still present in the new 5.0.1.2 release
just announced today.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91743] Consider adding directory indexing/search

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91743

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Hi David -

I've talked to a couple QA people about this an no one really understands what
you are requesting. Can you please clarify and then set the bug to UNCONFIRMED.
Thanks

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93656] Unable to organize forms in subfolders

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93656

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

 Whiteboard|bibisectRequest |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80512] UI: Horizontal scrollbar backwards with RTL sheet and kde4 ui

2015-08-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80512

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard| target:5.1.0   | target:5.1.0 target:5.0.2

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   >