[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - sfx2/source

2014-05-22 Thread Michael Stahl
 sfx2/source/bastyp/fltfnc.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit f3ca9cc78e77dda656b5c39be928fdbb7f8babe8
Author: Michael Stahl mst...@redhat.com
Date:   Mon May 19 18:31:54 2014 +0200

fdo#78742: SfxFilterMatcher: respect requested document service if set

sfx2::DocumentInserter::CreateMediumList() creates a SfxFilterMatcher
that should match Writer filters only, but actually Calc filters may be
returned; check that the document service matches.

(regression from 3da8f3680556e0163f660a0a159930337c8c32ff)

Change-Id: I6208d38c1110355105aa5d1ffa1b57142193a4d7
(cherry picked from commit 805fd1ca343d6295b8114a24cc29bdac332f266d)
Reviewed-on: https://gerrit.libreoffice.org/9404
Reviewed-by: Kohei Yoshida libreoff...@kohei.us
Tested-by: Kohei Yoshida libreoff...@kohei.us

diff --git a/sfx2/source/bastyp/fltfnc.cxx b/sfx2/source/bastyp/fltfnc.cxx
index 65974d0..69c873a 100644
--- a/sfx2/source/bastyp/fltfnc.cxx
+++ b/sfx2/source/bastyp/fltfnc.cxx
@@ -482,7 +482,9 @@ sal_uInt32  SfxFilterMatcher::GuessFilterControlDefaultUI( 
SfxMedium rMedium, c
 // Type detection returned a suitable filter for this.  Use it.
 pFilter = SfxFilter::GetFilterByName(aFilterName);
 
-if (!pFilter)
+// fdo#78742 respect requested document service if set
+if (!pFilter || (!m_rImpl.aName.isEmpty()
+  m_rImpl.aName != pFilter-GetServiceName()))
 {
 // detect filter by given type
 // In case of this matcher is bound to a particular document 
type:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Bug 60270 depends on bug 60533, which changed state.

Bug 60533 Summary: Brackets  (..),{..},[..] inverted  )..(,}..{,]..[ when 
switch to RTL text direction with all fonts (Affect : calc, impress, draw).
https://bugs.freedesktop.org/show_bug.cgi?id=60533

   What|Removed |Added

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

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


LO 4.3.0 beta1: installation error for pyuno

2014-05-22 Thread Jean-Baptiste Faure
Hi,

I build LibreOffice 4.3.0.beta1 under Ubuntu 14.04 x86-64 and I get the
following error when I launch the installation using dpkg :

 Décompactage de libobasis4.3-pyuno (4.3.0.0.beta1-1) ...
 dpkg: error processing archive libobasis4.3-pyuno_4.3.0.0.beta1-1_amd64.deb 
 (--install):
  tentative de remplacement de « /opt/libreoffice4.3/program/pyuno.so », qui 
 appartient aussi au paquet libobasis4.3-core01 4.3.0.0.beta1-1

This error message says that when decompressing
libobasis4.3-pyuno_4.3.0.0.beta1-1_amd64.deb, dpkg find
/opt/libreoffice4.3/program/pyuno.so which belongs already to the
package libobasis4.3-core01 4.3.0.0.beta1-1
As a consequence, pyuno is not installed and the package
libobasis4.3-librelogo can't be installed because it depends on pyuno.

Is there a problem in the makefile or is the problem on my side ?

Best regards.
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.2' - basctl/inc basctl/source include/sfx2

2014-05-22 Thread Jan Holesovsky
 basctl/inc/basidesh.hrc |1 +
 basctl/source/basicide/basidesh.cxx |9 +
 basctl/source/basicide/basidesh.src |4 
 include/sfx2/viewfrm.hxx|2 +-
 4 files changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 6c9492030651fed341d8259b373127e3405cd083
Author: Jan Holesovsky ke...@collabora.com
Date:   Thu May 22 17:29:56 2014 +0200

bnc#467278: Introduce a warning that changes to VBA macros cannot be saved.

As an InfoBar, so hopefully not annoying...

Conflicts:
basctl/source/basicide/basidesh.cxx

Change-Id: I5d4e79273edc03829fdab2d6d5a291576c954e4b

diff --git a/basctl/inc/basidesh.hrc b/basctl/inc/basidesh.hrc
index 623cb0e..a40f788 100644
--- a/basctl/inc/basidesh.hrc
+++ b/basctl/inc/basidesh.hrc
@@ -68,6 +68,7 @@
 #define RID_STR_OPEN( RID_BASICIDE_START + 20 )
 #define RID_STR_SAVE( RID_BASICIDE_START + 21 )
 #define RID_STR_RUNTIMEERROR( RID_BASICIDE_START + 22 )
+#define RID_STR_CANNOTSAVEVBA   ( RID_BASICIDE_START + 23 )
 #define RID_STR_STDDIALOGNAME   ( RID_BASICIDE_START + 24 )
 
 #define RID_STR_STDMODULENAME   ( RID_BASICIDE_START + 27 )
diff --git a/basctl/source/basicide/basidesh.cxx 
b/basctl/source/basicide/basidesh.cxx
index 674775b..f95e6f4 100644
--- a/basctl/source/basicide/basidesh.cxx
+++ b/basctl/source/basicide/basidesh.cxx
@@ -35,6 +35,7 @@
 #include sfx2/app.hxx
 #include sfx2/dinfdlg.hxx
 #include sfx2/dispatch.hxx
+#include sfx2/infobar.hxx
 #include sfx2/minfitem.hxx
 #include sfx2/objface.hxx
 #include svl/aeitem.hxx
@@ -137,6 +138,7 @@ SFX_IMPL_INTERFACE( basctl_Shell, SfxViewShell, IDEResId( 
RID_STR_IDENAME ) )
 {
 SFX_CHILDWINDOW_REGISTRATION( SID_SEARCH_DLG );
 SFX_FEATURED_CHILDWINDOW_REGISTRATION(SID_SHOW_PROPERTYBROWSER, 
BASICIDE_UI_FEATURE_SHOW_BROWSER);
+SFX_CHILDWINDOW_REGISTRATION(SfxInfoBarContainerChild::GetChildWindowId());
 SFX_POPUPMENU_REGISTRATION( IDEResId( RID_POPUP_DLGED ) );
 }
 
@@ -250,7 +252,14 @@ Shell::~Shell()
 void Shell::onDocumentCreated( const ScriptDocument /*_rDocument*/ )
 {
 if (pCurWin)
+{
 pCurWin-OnNewDocument();
+
+// for VBA documents, show a warning that we can save them only in ODF
+if (pCurWin-GetDocument().isInVBAMode())
+GetViewFrame()-AppendInfoBar(vba_save, 
IDE_RESSTR(RID_STR_CANNOTSAVEVBA));
+}
+
 UpdateWindows();
 }
 
diff --git a/basctl/source/basicide/basidesh.src 
b/basctl/source/basicide/basidesh.src
index 6876130..5e019fd 100644
--- a/basctl/source/basicide/basidesh.src
+++ b/basctl/source/basicide/basidesh.src
@@ -216,6 +216,10 @@ String RID_STR_CANNOTCLOSE
 {
 Text [ en-US ] = The window cannot be closed while BASIC is running. ;
 };
+String RID_STR_CANNOTSAVEVBA
+{
+Text [ en-US ] = You are editing a VBA macro. Changes can be saved only 
in OpenDocument Format. ;
+};
 String RID_STR_REPLACESTDLIB
 {
 Text [ en-US ] = The default library cannot be replaced. ;
diff --git a/include/sfx2/viewfrm.hxx b/include/sfx2/viewfrm.hxx
index cf316b7..8541397 100644
--- a/include/sfx2/viewfrm.hxx
+++ b/include/sfx2/viewfrm.hxx
@@ -190,7 +190,7 @@ public:
 The buttons will be added from Right to Left at the right of the info 
bar. The parent, size
 and position of each button will be changed: only the width will 
remain unchanged.
   */
-voidAppendInfoBar( const OUString sId, const 
OUString sMessage, std::vector PushButton*  aButtons );
+voidAppendInfoBar( const OUString sId, const 
OUString sMessage, std::vector PushButton*  aButtons = std::vector 
PushButton* () );
 voidRemoveInfoBar( const OUString sId );
 
 SAL_DLLPRIVATE void SetDowning_Impl();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Depends on|60533   |

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


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Depends on||60533

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


RE: Additional predefined label formats #fdo79068

2014-05-22 Thread Winfried Donkers
Hi Regina,

Having added/changed a lot of the labels already, I'm willing to add these too 
(if that's what you mean). Or do you intend to add them yourself?

Winfried


-Oorspronkelijk bericht-
Van: LibreOffice [mailto:libreoffice-boun...@lists.freedesktop.org] Namens 
Regina Henschel
Verzonden: donderdag 22 mei 2014 23:59
Aan: LO-dev
Onderwerp: Additional predefined label formats #fdo79068

Hi,

in https://bugs.freedesktop.org/show_bug.cgi?id=79068 a manufacture ask to get 
his labels integrated in LibreOffice. Would that be OK?

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


[Libreoffice-qa] LibreOffice 43 bibisect (was: LibreOffice 4.3~beta1 bibisect)

2014-05-22 Thread Bjoern Michaelsen
On Thu, May 22, 2014 at 01:18:11AM +0200, Bjoern Michaelsen wrote:
 I will now merge those and upload a 43all and 43only repo replacing the 
 current
 42all and 42only ones ...

43only merged and uploaded -- so with 42all and 43only you have the range from
mid-3.5 to 4.3 branchoff in two repos.

Best,

Bjoern
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Joel Madero
Hi All,

Don't forget this weekend is our 4.3 bug hunting session! We really need
as many people as possible testing 4.3 now so that developers can fix
nasty regressions before release (which isn't too far away!).

Please join us in the /_*chat*_/:
http://webchat.freenode.net/?channels=libreoffice-qa

An experienced QA person should be around most of the weekend to help
walk you through the steps.

To download /_*latest daily build*_/ of 4.3 please go here:
http://dev-builds.libreoffice.org/daily/master/

For /_*info on the bug hunting session*_/ see our wiki:
https://wiki.documentfoundation.org/BugHunting_Session_4.3.0#How_to_join



*Again - we need testers for 4.3 as it is the _only_ way that we will
find any regressions that need resolved before release. Please - if you
have a spare hour this weekend, join the chat, say hello, and get
involved :)


*Warm Regards,
Joel
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-qa] Add 4.3.0.beta1 to BZ

2014-05-22 Thread Sophie
Hi all,

Could someone add 4.3.0 beta 1 to BZ, thanks :)
Cheers
Sophie
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-qa] LibreOffice Bugzilla: Steps towards FDO migration

2014-05-22 Thread Robinson Tryon
Hi all,

I'd like to thank Norbert for all of his hard work on the Bugzilla
migration process. Many of us have been rather busy over the last few
weeks, so it would be great if we could touch  base again and
determine what todo items are left before migration can start.

I'd be happy to help coordinate a time for a call or an IRC chat in
the next week, if people think that would be useful. If people prefer
conversing over email, we can just continue the coordination in this
thread.

Off the top of my head, here are a few of our todo items:

- Joel will help to coordinate some stress-testing of our Bugzilla test install
- Norbert will be adding a clean copy of Bugzilla to gerrit so that we
can start to tweak various cosmetic pieces, CSS, information on the
password-reset page, etc.
- Tollef needs to implement the redirecting code to forward our old
bug urls to the new ones (already done?)
- We need to notify all of our bugtracker users ahead of the planned
migration (this can actually be a great opportunity to
communicate/reconnect with them)

This is just the start of the list -- feel free to reply and include
items necessary for the migration[1]

Best,
--R

[1] i.e. please don't add new feature requests

-- 
Robinson Tryon
LibreOffice Community Outreach Herald
Senior QA Bug Wrangler
The Document Foundation
qu...@libreoffice.org
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] Add 4.3.0.beta1 to BZ

2014-05-22 Thread Joel Madero
Hey Sophie!

On 05/22/2014 08:17 AM, Sophie wrote:
 Hi all,

 Could someone add 4.3.0 beta 1 to BZ, thanks :)
Done :)

Best,
Joel
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] Add 4.3.0.beta1 to BZ

2014-05-22 Thread Sophie
Le 22/05/2014 17:26, Joel Madero a écrit :
 Hey Sophie!
 
 On 05/22/2014 08:17 AM, Sophie wrote:
 Hi all,

 Could someone add 4.3.0 beta 1 to BZ, thanks :)
 Done :)

Thanks a lot :)

Cheers
Sophie

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


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

2014-05-22 Thread Michael Meeks
* Present
+ Christian, Stephan, Bjoern, Norbert, Eike, Andras, Fridrich, Miklos,
  Michael M, Jacobo, Robinson, Eilidh, Markus, Caolan, Tor, Adam,
  Michael S, Norbert, Kendy
 
* Completed Action Items
+ send address sanitiser example (Markus)
+ http://lists.freedesktop.org/archives/libreoffice/2014-May/061142.html
+ chasing build / test intermittency:
[ seem to have vanished ]
+ Add StarOffice OOoXML export removal to 4.2 release notes (Cloph)
+ Add students to the commiter group (Norbert)
+ Avoiding big binary checkins (update git hook) (Miklos)
[ assuming good faith - chatty message to help people ]
+ walk through old gerrit changes, nag people, abandon changes (Bjoern)
[ done before branch-off, some will be abandoned in a week cf. note,
  could expire these automatically - auto-abandon ? ]
+ fix git importing service (Kendy)
 
* Pending Action Items:
+ crashtest box - more research (Moggi/Cloph)
[ ongoing ]
+ encourage icon authors to put them into git (Astron)
+ fix the Java bridge for MSVC2012 for 4.3 (Michael S.)
[ current plan to do before the branch-off ... (bit late) ]
+ create easy hack to find an auto-abandon config/setting for a gerrit 
(Bjoern)
+ schedule a new coverity build (moggi)
[ tried during the weekend,
  coverity analysis takes longer than 24hours etc. (Caolan)
+ may change the timeout to 36 hours ?
+ have enabled debugging so coverity can see asserts
+ not the problem still timing out ... ]
 
* GSOC Update (Fridrich)
+ started on Monday.
+ poke Fridrich / Cedric if no sign of students.
   + should have sent telephone contacts already.
+ please give them a welcome  help to get spun up.
+ all going well.
 
* FISL Brazil Update (Fridrich)
   + huge event, FOSDEM but in Latin America, and no dev-rooms.
  + several big halls for keynotes
   + LibreOffice well represented: several talks
   + Document Liberation  Flat ODF promoted by Fridrich
   + FISL release of LibreOffice etc.
   + great work there, huge community.
 
* Release Engineering update (Christian)
+ 4.3.0 Beta 1 status
   + tagged yesterday.
   + branch libreoffice-4-3 created
  + Windows build delayed, will be tonight / tomorrow
  + MacOS 10.6 needed a patch, not exactly the tag
  + only Beta1 - no need for a separate tag.
   + investigating Windows test failures (spellchecking)
  + a python issue related to UI mode - not seen when
running from the terminal; different return value
internally; around stdout/in etc.
  + now patched.

http://cgit.freedesktop.org/libreoffice/core/tree/external/python3/python-3.3.3-py17797.patch.1
  + will run on XP and later without crashing.
  + currently a problem with Java runtime on Windows XP
  + problems with Tools-Macros-Python ... tries to init
Java VM.
AI:  + create / promote a 4.3 MAB for WinXP/Java (Cloph)
+ 4.2.5 RC1 status ...
   + deadline next Monday: get fixes into gerrit so on the radar ...
 
+ ... Now Feature Frozen ...
+ tripple approval needed for new features.
+ bug bug fixes welcome on the branch with no review.

+ Late features ?
+ libreofficekit bits / rename etc.
+ OpenGL pieces / status
   + experimentalising 3D chart bits.
   + impress work as well.
+ some changes in language listbox (Eike)
   + switching to a combo-box, so can enter an arbitrary lang_tag
  + due today.
+ preserving  rendering OOXML Artistic Effects (Jacobo)
 
+ Android / iOS remote
   + will build a new version with buttons to start/exit remote
 ptr. feature.
 
+ Credits update:
http://www.libreoffice.org/about-us/credits/
+ crediting translators (Cloph)
   + pointing to the pootle page, that lists translators.
 https://translations.documentfoundation.org/about/contributors/
AI:+ should link to it there (Cloph)
+ page is usually updated for a final release when we update
  the source code.
+ some bugs:
   + 'Contributors to Bundled Templates' - oddly coloured heading.
   + can we separate rows better for readability ?
  + embolden bold name perhaps ?
 
* 4.3 Features Page (Michael)
+ https://wiki.documentfoundation.org/ReleaseNotes/4.3
 
* UX Update (Bjoern)
+ getting into the start menu a 'get involved' button
  - a help / extensions - in start center
  + add a get involved button linking to the web / feedback page
  + or replace the help button in the start center (not the prime context 
for help).
 
* Distro branches  commits (Michael)
+ it would be great to see what others are doing in distro 

Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Pedro
Hi Joel


jmadero wrote
 To download /_*latest daily build*_/ of 4.3 please go here:
 http://dev-builds.libreoffice.org/daily/master/

Clearly none of my business but wouldn't it make more sense that everybody
is using the same build aka the official Beta1 instead of getting a build
from some random Tinderbox?

Just my 2 cents.

Have fun!



--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-4-3-Bug-Hunting-Weekend-tp4109732p4109746.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Sophie
Hi all,
Le 22/05/2014 18:02, Pedro a écrit :
 Hi Joel
 
 
 jmadero wrote
 To download /_*latest daily build*_/ of 4.3 please go here:
 http://dev-builds.libreoffice.org/daily/master/
 
 Clearly none of my business but wouldn't it make more sense that everybody
 is using the same build aka the official Beta1 instead of getting a build
 from some random Tinderbox?

I've added the pre-release link to the wiki page, so I think people will
download this one. Moztrap is ready too. The reminder has been sent to
the social networks, I hope we will see many people during the week end :)

Cheers
Sophie

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Bjoern Michaelsen
Hi Pedro, Joel,

On Thu, May 22, 2014 at 09:02:09AM -0700, Pedro wrote:
 jmadero wrote
  To download /_*latest daily build*_/ of 4.3 please go here:
  http://dev-builds.libreoffice.org/daily/master/
 
 ... wouldn't it make more sense that everybody is using the same build aka
 the official Beta1 instead of getting a build from some random Tinderbox?

I tend to agree with Pedro here. People who have done a lot of testing will
have various builds anyway, but for people trying out QA for the first time,
the beta1 build is likely the best thing to get started.

Best,

Bjoern
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Joel Madero
On May 22, 2014 9:09 AM, Bjoern Michaelsen 
bjoern.michael...@canonical.com wrote:

 Hi Pedro, Joel,

 On Thu, May 22, 2014 at 09:02:09AM -0700, Pedro wrote:
  jmadero wrote
   To download /_*latest daily build*_/ of 4.3 please go here:
   http://dev-builds.libreoffice.org/daily/master/
 
  ... wouldn't it make more sense that everybody is using the same build
aka
  the official Beta1 instead of getting a build from some random
Tinderbox?

 I tend to agree with Pedro here. People who have done a lot of testing
will
 have various builds anyway, but for people trying out QA for the first
time,
 the beta1 build is likely the best thing to get started.

Indeed my mistake.

Pedro - you are a big part of the team of course it's your business if I
give bad info ;)

Can we get the right link? I'm responding via phone.

Thanks again!

Joel
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Sophie
Le 22/05/2014 18:32, Joel Madero a écrit :
 On May 22, 2014 9:09 AM, Bjoern Michaelsen 
 bjoern.michael...@canonical.com wrote:

 Hi Pedro, Joel,

 On Thu, May 22, 2014 at 09:02:09AM -0700, Pedro wrote:
 jmadero wrote
 To download /_*latest daily build*_/ of 4.3 please go here:
 http://dev-builds.libreoffice.org/daily/master/

 ... wouldn't it make more sense that everybody is using the same build
 aka
 the official Beta1 instead of getting a build from some random
 Tinderbox?

 I tend to agree with Pedro here. People who have done a lot of testing
 will
 have various builds anyway, but for people trying out QA for the first
 time,
 the beta1 build is likely the best thing to get started.
 
 Indeed my mistake.
 
 Pedro - you are a big part of the team of course it's your business if I
 give bad info ;)
 
 Can we get the right link? I'm responding via phone.

http://dev-builds.libreoffice.org/pre-releases/

Cheers
Sophie

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-qa] [ANN] LibreOfficeDev 4.3.0 beta1 test builds available

2014-05-22 Thread Christian Lohmaier
Hi *,

for the upcoming new version 4.3.0 the builds for Beta1 are now
available on pre-releases. (some win helppacks still uploading)

It is a LibreOfficeDev build, meaning that it won't replace your
stable version of LibreOffice, but can be installed alongside
LibreOffice 4.2

Also note that while the build is also a key-ID build for translators,
and beta marks feature freeze, string and ui freeze are still to come.

Significant non-code-related change for 4.3.0 is an updated build
environment on Windows (Windows Server 2012R2 with Visual Studio 2012):
ATTENTION to users of Windows XP
** https://bugs.freedesktop.org/show_bug.cgi?id=77891 still occurs.
LibreOffice crashes on Windows XP when it tries to initialize python -
this happens when spellcheck is activated or when you go to
Tools|Macros..
As a workaround, you can install cygwin and launch LibreOffice from
the cygwin shell. Then everything works as it should. (Other
workaround is to disable auto-spellchecking)

See

https://wiki.documentfoundation.org/ReleasePlan/4.3#4.3.0_release

for the complete schedule.

Grab the builds from here here:

 http://dev-builds.libreoffice.org/pre-releases/

The list of fixed bugs relative to 4.3.0 alpha1 is here:

http://dev-builds.libreoffice.org/pre-releases/src/bugs-libreoffice-4-3-release-4.3.0.0.beta1.log

So playing with the areas touched there also greatly appreciated  -
and validation that those bugs are really fixed.

Thanks a lot for your help,
Christian
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


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

2014-05-22 Thread Christian Lohmaier
Hi *,

On Thu, May 22, 2014 at 5:57 PM, Michael Meeks
michael.me...@collabora.com wrote:
 [...]
 * Release Engineering update (Christian)
 + 4.3.0 Beta 1 status
 [...]
+ investigating Windows test failures (spellchecking)
   + a python issue related to UI mode - not seen when
 running from the terminal; different return value
 internally; around stdout/in etc.
   + now patched.
 
 http://cgit.freedesktop.org/libreoffice/core/tree/external/python3/python-3.3.3-py17797.patch.1
   + will run on XP and later without crashing.

Turns out that the patch is not as reliable as it should be :-/
Beta1 build on XP still suffers from the problem.

Workarounds:
* run LibreOffice from a cygwin shell (then everything works, also
java and python scripts)
or
* disable auto-spellchecking and don't use Tools|Macros (i.e. avoid to
load python in any way).

ciao
Christian
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread Pedro
Hi Sophie


sophi wrote
 I've added the pre-release link to the wiki page, so I think people will
 download this one. Moztrap is ready too. The reminder has been sent to
 the social networks, I hope we will see many people during the week end :)

Maybe you could add to the wiki page a big warning about the limitations for
XP users (if there are any, other than me...) as mentioned by Christian 

ATTENTION to users of Windows XP
** https://bugs.freedesktop.org/show_bug.cgi?id=77891 still occurs.
LibreOffice crashes on Windows XP when it tries to initialize python -
this happens when spellcheck is activated or when you go to
Tools|Macros..
As a workaround, you can install cygwin and launch LibreOffice from
the cygwin shell. Then everything works as it should. (Other
workaround is to disable auto-spellchecking) 

http://nabble.documentfoundation.org/Libreoffice-qa-ANN-LibreOfficeDev-4-3-0-beta1-test-builds-available-td4109795.html

Have a nice beta testing weekend ;)
Pedro



--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-4-3-Bug-Hunting-Weekend-tp4109732p4109802.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread dE

On 05/22/14 20:23, Joel Madero wrote:

Hi All,

Don't forget this weekend is our 4.3 bug hunting session! We really 
need as many people as possible testing 4.3 now so that developers can 
fix nasty regressions before release (which isn't too far away!).


Please join us in the /_*chat*_/: 
http://webchat.freenode.net/?channels=libreoffice-qa


An experienced QA person should be around most of the weekend to help 
walk you through the steps.


To download /_*latest daily build*_/ of 4.3 please go here: 
http://dev-builds.libreoffice.org/daily/master/


For /_*info on the bug hunting session*_/ see our wiki: 
https://wiki.documentfoundation.org/BugHunting_Session_4.3.0#How_to_join




*Again - we need testers for 4.3 as it is the _only_ way that we will 
find any regressions that need resolved before release. Please - if 
you have a spare hour this weekend, join the chat, say hello, and get 
involved :)



*Warm Regards,
Joel


___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


http://forums.gentoo.org/viewtopic-p-7553238.html

Check out the comments.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] 4.3 Bug Hunting Weekend!

2014-05-22 Thread V Stuart Foote
A reminder for folks that with the 4.3.0beta they will need to install the
Microsoft Visual Studio 2012 C++ run-time if not already present.

Available here: 
http://www.microsoft.com/en-us/download/details.aspx?id=30679#








--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-4-3-Bug-Hunting-Weekend-tp4109732p4109820.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-bugs] [Bug 77313] CoinMP has broken format strings; fails -Werror=format-security

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77313

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

   What|Removed |Added

 Whiteboard||target:4.3.0

--- Comment #2 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Matuš Kukan committed a patch related to this issue.
It has been pushed to master:

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

fdo#77313: coinmp: error: format not a string literal and no format arguments



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 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 43157] Clean up OSL_ASSERT, DBG_ASSERT, etc.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43157

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

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

fdo#43157 - Clean up OSL_ASSERT, DBG_ASSERT



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 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 79049] OOXML Workbook file hangs when opening

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79049

Urmas davian...@gmail.com changed:

   What|Removed |Added

Summary|Excel file hangs when   |OOXML Workbook file hangs
   |opening |when opening

-- 
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 79059] New: UI: I'm asking for improvement in UI (status bar)

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79059

  Priority: medium
Bug ID: 79059
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI: I'm asking for improvement in UI (status bar)
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: robertwa...@poczta.fm
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.1.0.4 release
 Component: Writer
   Product: LibreOffice

Problem description: 
Word counter in the status bar shows only words amonut and chars with space
(correctly)

Steps to reproduce:
1. start LibreOffice Writer
2. look at the word counter in the status bar :)

Current behavior: only chars with space are shown

Expected behavior: right click on word counter area in status bar should open a
short menu and user will decide which value will be shown: words  chars with
space, words  chars without space or something else (or - optionally - none of
this)


Operating System: Ubuntu
Version: 4.1.0.4 release

-- 
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 79022] Please bundle Source Serif Pro

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79022

--- Comment #3 from Urmas davian...@gmail.com ---
Source Sans/Serif should not be included _at all_ as they contain no Cyrillic
characters.

-- 
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 79022] Please bundle Source Serif Pro

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79022

--- Comment #4 from Tor Lillqvist t...@iki.fi ---
Or else!?

-- 
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 79000] English install of LibreOffice has no option for Asian/Japanese language we need.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79000

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #2 from Urmas davian...@gmail.com ---
What are you talking about exactly?

-- 
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 77761] EDITING: Calc locks up when copying a range of cells to entire column.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77761

--- Comment #6 from Raphael raphael.biol...@ac-grenoble.fr ---
Same problem for me since 4.2 releases (even the last 4.2.4.2)

Each time I select 2 entire lines and I right-click to change height, Calc
slows down. With more lines it's slower and slower.
The size of the file is not the problem.

The worst is a select-all and then change the font for all the spreadsheet
-- really slow to operate (1 minute or more) and the lag lasts till I exit
Calc, there's no other way to get it fixed (save and exit each time...)

I tried with Linux and Windows 7, I have the same problem.

-- 
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 57113] Macros: Unicode vs. password protected user libraries

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57113

Karel Behounek behou...@ckdkh.cz changed:

   What|Removed |Added

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

--- Comment #5 from Karel Behounek behou...@ckdkh.cz ---
Thanks for the feedback, unfortunately it does not work for me.

Xubuntu 14.04 x86 (Ubuntu 14.04 LTS + Xfce 4.10), Czech localization in case it
matters
LibreOffice 4.2.4.2 release

I tried both original test file included in attachment 70101 (comment 2 in this
thread) and a new file created from the scratch (in 4.2.4.2) and the behaviour
is identical (broken) in both cases. On Windows platform it is the same.

Steps to reproduce:

- download the attachment 70101 above
- open the file password-test-protected.ods from within it
- click on the Run Test button
- text string This should display in cyrillic: ? . appears in
the A1 cell, i. e. question marks instead of cyrillic characters

When I do the same with the file password-test-unprotected.ods, the string is
displayed correctly after pressing the Run Test button. See attached pair of
screenshots.

It is important to NOT unlock the library (by entering the password) before
pressing the Run Test button.

-- 
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 79062] New: FILESAVE: File having Footnote with Text Effect got corrupted after RT

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79062

  Priority: medium
Bug ID: 79062
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: File having Footnote with Text Effect got
corrupted after RT
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: ravindra.vidh...@synerzip.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.3.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 99563
  -- https://bugs.freedesktop.org/attachment.cgi?id=99563action=edit
FootNote File

Problem description: 

Steps to reproduce:
1. Open DOCX file in LO which contains footnote with text effect.
2. Export the file in DOCX format.
3. Open the exported file in MS Office.

Current behavior:
The file is getting corrupted.

Expected behavior:
The file should not get corrupted.
In the footnotes.xml, the w14 namespaces were not being added.

This is issue exists for EndNote as well.

Operating System: Ubuntu
Version: 4.3.0.0.alpha0+ Master

-- 
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 79062] FILESAVE: File having Footnote with Text Effect got corrupted after RT

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79062

--- Comment #1 from Ravindra Vidhate ravindra.vidh...@synerzip.com ---
Created attachment 99564
  -- https://bugs.freedesktop.org/attachment.cgi?id=99564action=edit
EndNote File

-- 
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 79062] FILESAVE: File having Footnote with Text Effect got corrupted after RT

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79062

Ravindra Vidhate ravindra.vidh...@synerzip.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |Ravindra.Vidhate@synerzip.c
   |desktop.org |om

-- 
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 57113] Macros: Unicode vs. password protected user libraries

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57113

--- Comment #6 from Karel Behounek behou...@ckdkh.cz ---
Created attachment 99565
  -- https://bugs.freedesktop.org/attachment.cgi?id=99565action=edit
Illustration of behaviour (for comment 5)

-- 
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 57113] Macros: Unicode vs. password protected user libraries

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57113

Karel Behounek behou...@ckdkh.cz changed:

   What|Removed |Added

Version|3.6.3.2 release |4.2.4.2 release

-- 
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 78887] FILESAVE: w:br tag is not being preserved after exported from LO

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78887

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

   What|Removed |Added

 Whiteboard|BSA |BSA target:4.3.0

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

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

fdo#78887 w:br tag is not being preserved after export.



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 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 79063] New: cell height after cut/paste

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79063

  Priority: medium
Bug ID: 79063
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: cell height after cut/paste
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: raphael.biol...@ac-grenoble.fr
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.2.4.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 99568
  -- https://bugs.freedesktop.org/attachment.cgi?id=99568action=edit
2 files to show the bug with lines when printing

I work with a spreadsheet that has these cell properties :
- border lines of 0.25pt
- content space : 0.49 mm

I use some lines as spacers (0.05mm height) between celles containing data.

- If I print from Calc, no problem, lines are ok on the paper.
- If I cut/paste a part of my spreadsheet to a Writer page, when printing it,
some lines don't have the correct spacement, sometimes lines disapear
(especially those on top of the spreadsheet parts).

I didn't had this problem with Libreoffice 4.1.

-- 
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 78776] : Help Menu broken

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78776

--- Comment #2 from Alan awill...@yahoo.co.uk ---
Great! So what's the big deal with being able to go direct to the main page
from the program instead of
https://help.libreoffice.org/swriter/.uno:HelpIndex?Language=en-USSystem=WINVersion=4.2#bm_id3149178
(not the page you suggested) where it currently takes me? If I click on Help -
LibreOffice Help I expect to get help. Other programs can do 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 68983] Save As a document containing a macro library protected by password corrupts the password of the macro library

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68983

--- Comment #7 from Noel Power nopo...@novell.com ---
https://gerrit.libreoffice.org/#/c/9431/ is a possibly patch, seems to work on
a quick test, I'd love if someone could give this a really good whirl (in
particular with other saving scenarios (e.g. mixed libraries and/or dialogs
etc.) unfortunately these days my time is limited :/

-- 
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 79028] UI: XY diagrams forgets axis settings

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79028

--- Comment #2 from Jorendc jore...@libreoffice.org ---
Created attachment 99570
  -- https://bugs.freedesktop.org/attachment.cgi?id=99570action=edit
Sample document

Sample document.

* Double click on the chart to select it.
* Format  Axis  X axis (or Y)
* In tab 'Scale' uncheck 'automatic' for the 'Major interval'
* Enter '00:10:00' as value for the Major interval
* OK

Behavior: major interval changes to 00:10:00, which is good. Although, if you
go back to the same dialog - Major interval is changed to 24:00:00
If you now change something else, and don't notice this and hit OK - major
interval will be 24:00:00

Summary: major interval is resetted all the time

Kind regards,
Joren

-- 
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 79028] UI: XY-scatter diagrams reset Major Interval axis settings

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79028

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

Summary|UI: XY diagrams forgets |UI: XY-scatter diagrams
   |axis settings   |reset Major Interval axis
   ||settings

-- 
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 79064] New: FORMATTING: variable Zeilenzahl in der Fußzeile springt nach Seite 2 auf 1 zurück

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79064

  Priority: medium
Bug ID: 79064
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: variable Zeilenzahl in der Fußzeile
springt nach Seite 2 auf 1 zurück
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: hugo.golddol...@gmx.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.4.2 release
 Component: Writer
   Product: LibreOffice

Problem description: 
variable pagenumber in the footer turns back to number 1 on page 3

Steps to reproduce:
1. just try to do this


Current behavior:
f.e. 1/3 - 2/3 - 1/3

Expected behavior:
 1/3 - 2/3 - 3/3



Operating System: Windows 7
Version: 4.2.4.2 release

-- 
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 78693] The following piece of code generates an error when closing the document.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78693

--- Comment #3 from Noel Power nopo...@novell.com ---
(In reply to comment #2)
 Noel - thoughts on this one? Are you the one who I should be pinging about
 this ? ;) This macro stuff always throws us for a loop :-D

Sorry, I have no idea, especially from the description, not even a hint as to
what the error is or what it says. It is unlikely to be a 'macro' (e.g. basic)
error.
The example here seems to be using visual basic  exercising/communicating with
libreoffice over activex so more likely the problem here is with the ole
bridge. However also equally likley that the problem is some lifecycle issue
with soffice and *any* client, it would be interesting if someone could convert
the same example below to pyuno or java (using the uno api) and see if also
generates the error. Additionally converting the example to a pure libreoffice
basic macro and running it from inside libreoffice basic would also be useful
(to rule out a more manageable and self contained error)

-- 
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 79022] Please bundle Source Serif Pro

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79022

--- Comment #5 from Mirek2 maz...@gmail.com ---
Agreed that it should be added in the future, but I would hold off until it has
italic variants.

-- 
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 78939] FILEOPEN: Writer Hangs Loading .docx part 2

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78939

Vinaya Mandke vinaya.man...@synerzip.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |vinaya.man...@synerzip.com
   |desktop.org |

-- 
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 77891] LibO crashes as soon as one enters text in a module

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77891

--- Comment #33 from suokunl...@gmail.com ---
Just now I installed LibreDev 4.3.0.0.alpha1+, Build ID:
cd11bc699ac50af4f560ed5f2e5e7903de0898b8
WinXP SP3

The problem still exists. crash with the following error message:
(translated) soffice.bin - application error: ... unknow software exception
(0x4015), position: 0x0036327c

-- 
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 76624] EDITING: LibreOffice Writer hangs copy paste image into document

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=76624

--- Comment #5 from Tomaz Vajngerl qui...@gmail.com ---
OK, then I'll close 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 79028] UI: XY-scatter diagrams reset Major Interval axis date settings

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79028

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

Summary|UI: XY-scatter diagrams |UI: XY-scatter diagrams
   |reset Major Interval axis   |reset Major Interval axis
   |settings|date settings

-- 
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 77891] LibO crashes as soon as one enters text in a module

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77891

--- Comment #34 from V Stuart Foote vstuart.fo...@utsa.edu ---
Yes as reported comment 28 and comment 29 with trace. Next functional build
to test should be the beta1 spin-up.  Look for it in
http://dev-builds.libreoffice.org/pre-releases/win/x86/ when posted.

-- 
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 79026] Content of memo fields in MS Access tables get truncated in LibreOffice Base forms.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79026

--- Comment #3 from Albrecht Müller albrecht.muel...@astrail.de ---
Hi Alex,

After I switched the user interface language to English (UK) I found:
right click to some object (can be a table or a form) - Database - Advanced
Settings - Form data input checks for required fields.

The corresponding check box was checked and I unchecked it.

I was not able to notice a difference. When I close a form showing truncated
content I sometimes get a dialog box asking me I a want to save the changed
record. I have got the impression that this message does not appear if I just
navigated to some record containing truncated content. If I had set the focus
into the control containing the truncated content (without changing anything)
the dialog appears when I close the form. It is complicated to assess when
changes to the database occur as the table view seems not to reflect these
changes immediately, i.e. I have to close and reopen the table view if want to
see current content of database.

I don't think this is a duplicate of 65644 as this bug is related to version
LibreOffice 4.0.3.3.
My problem in related to Access 97 databases, and to my knowledge the
Access2Base feature is not included in versions before 4.2. (see
http://www.access2base.com/access2base.html) Using previous versions I had no
easy way to connect to MS Access databases.

The behavior of this bug seems to have changed between versions 4.2.3.3 and
4.2.4.2: In version 4.2.3.3 memo fields were truncated in the table view. In
4.2.4.2 the table view shows the full content. (I don't have 4.2.3.3. installed
now therefore I cannot verify this observation again). Both versions are unable
to display the full content in forms.

I think this bug is really dangerous as it makes it very easy to inadvertently
destroy database content.

Albrecht

-- 
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 68983] Save As a document containing a macro library protected by password corrupts the password of the macro library

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68983

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

   What|Removed |Added

 Whiteboard|odf |odf target:4.3.0

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

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

fdo#68983: Revert remove #if 0 block (from ...



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 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 68983] Save As a document containing a macro library protected by password corrupts the password of the macro library

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68983

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

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

fdo#68983: basic: if the library is not loaded fully, copy source storage



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 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 79066] New: VIEWING: minimize/maximize/exit buttons missing

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79066

  Priority: medium
Bug ID: 79066
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: minimize/maximize/exit buttons missing
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: liz.miller2...@gmail.com
  Hardware: Other
Whiteboard: BSA PossibleRegression
Status: UNCONFIRMED
   Version: 4.3.0.0.alpha1
 Component: Writer
   Product: LibreOffice

Created attachment 99578
  -- https://bugs.freedesktop.org/attachment.cgi?id=99578action=edit
picture of desktop, with mouse hovered over where the buttons should be, and
how instead it appears

Problem description: 
i am using ubuntu 14.04 on unity. when i hover my mouse over the area that they
should be, only the word libreoffice appears where they should be. 
Steps to reproduce:
1. use unity, it may be the only desktop this appears on
2. open libreoffice
3. hover mouse over the area where it should be

Current behavior:
they do not appear
Expected behavior:
they need to appear

Operating System: Ubuntu
Version: 4.3.0.0.alpha1
Last worked in: 4.2.3.3 release

-- 
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 79066] VIEWING: minimize/maximize/exit buttons missing

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79066

--- Comment #1 from Liz liz.miller2...@gmail.com ---
this may actually be a ubuntu problem, because chromium is doing the same thing
too

-- 
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 79064] FORMATTING: variable pagenumber in the footer turns back to number 1 on page 3

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79064

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it
Summary|FORMATTING: variable|FORMATTING: variable
   |Zeilenzahl in der Fußzeile  |pagenumber in the footer
   |springt nach Seite 2 auf 1  |turns back to number 1 on
   |zurück  |page 3

--- Comment #1 from tommy27 ba...@quipo.it ---
edited summary notes with english translation

would you please describe step by step procedure to activate pagenumber in the
footes? a test file would be useful as well

-- 
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 79066] VIEWING: minimize/maximize/exit buttons missing

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79066

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #2 from tommy27 ba...@quipo.it ---
for the record, no issue under Win7x64

-- 
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 77183] Redesign Data Form dialog to make it more intuitive and scale with larger data.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77183

--- Comment #15 from Bernard du Toit bernarddt+b...@gmail.com ---
Created attachment 99579
  -- https://bugs.freedesktop.org/attachment.cgi?id=99579action=edit
Oracle SQL Developer's Single Row window layout.

For some inspiration, here is a sample of Oracle SQL Developer's design of this
window. 

I don't think I need to explain it's functionality. But it is a very neat
layout.

-- 
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 79064] FORMATTING: variable pagenumber in the footer turns back to number 1 on page 3

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79064

hugo.golddol...@gmx.de changed:

   What|Removed |Added

   Hardware|Other   |All

--- Comment #2 from hugo.golddol...@gmx.de ---
Hello,

so sorry, but i just tried to repeat the bug and found no mistake!
When I open an old file, the bug appears. so it might be, that this is a bug of
an older version.
Ig it appears again, I will call back.

Thanks for support.

greetings

 H.

-- 
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 78887] FILESAVE: w:br tag is not being preserved after exported from LO

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78887

Ravindra Vidhate ravindra.vidh...@synerzip.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
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 78887] FILESAVE: w:br tag is not being preserved after exported from LO

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78887

Ravindra Vidhate ravindra.vidh...@synerzip.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
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 79067] New: MAILMERGE: mailmerge takes ages to create documents

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79067

  Priority: medium
Bug ID: 79067
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: MAILMERGE: mailmerge takes ages to create documents
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: stefankoeh...@linux.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.3.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Created attachment 99580
  -- https://bugs.freedesktop.org/attachment.cgi?id=99580action=edit
template to use as starting document

Problem description: When creating a larger number of documents (8000, real
life example) using mailmerge, the process is very slow in the beginning and is
even slowing down constantly with a growing number of created documents. LO
seems to scan every single document, so in the end it will have to check an
insane number of documents. It usually crashes before reaching a large number,
though.

While creating the documents the process sucks 100% CPU time and LO is quite
unresponsive.

Some benchmarks, taken on a rather fast i5 machine:

Number of docs crated | time consumed (in minutes)

 500 |  3:20
 750 |  8:10
1000 | 17:15
1500 | 56:50
1750 | 92:20

Version tested: 4.4.0.0.alpha0+. The exact same problem also exists in versions
4.1.3, 4.1.5 and 4.2.4, all tested on a deb-based Linux.

Steps to reproduce:

Open attached document mailmerge_testtemplate.ott, enter mailmerge wizard,
choose attached document mailmerge_datasource_8000.ods, match data fields and
go!

Current behavior: As stated above the time and ressources consumed are just
crazy, it is unpossible to use mailmerge for creating a larger number of
documents.

Expected behavior: Documents should be created within a reasonable time span,
the application should be responsive during that time.


Operating System: Ubuntu
Version: 4.3.0.0.alpha0+ Master

-- 
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 79067] MAILMERGE: mailmerge takes ages to create documents

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79067

--- Comment #1 from Stefan Koehler stefankoeh...@linux.com ---
Created attachment 99581
  -- https://bugs.freedesktop.org/attachment.cgi?id=99581action=edit
datasource for testing mailmerge containing 8000 recipients

-- 
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 79064] FORMATTING: variable pagenumber in the footer turns back to number 1 on page 3

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79064

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from tommy27 ba...@quipo.it ---
I set status to NEEDINFO
revert to UNCONFIRMED if you still reproduce the bug or RESOLVED WORKSFORME if
you don't

-- 
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 79068] New: Label Manufacture wanting to add own products into label list

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79068

  Priority: medium
Bug ID: 79068
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Label Manufacture wanting to add own products into
label list
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: kei...@westdesignproducts.co.uk
  Hardware: All
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

Hi!

I work for a UK Label Manufacturer and I'd like to add our labels into the
listing of labels under Libre Writer.  These labels are sold UK wide (and I
think in Europe?) under the Blick brand.  We also produce labels for UK and
Europe office Suppliers under their own brand.  Ideally we would like to add
these label formats also.


I am happy to produce the XML code for the above, but I would like to confirm:

a) Is it okay to do so?
b) If I provide the XML code can I ask someone to add it to the code
repository?  I presume I don't have access to submit the update (nor indeed do
I need to)

-- 
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 79067] MAILMERGE: mailmerge takes ages to create documents

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79067

--- Comment #2 from Stefan Koehler stefankoeh...@linux.com ---
Addendum: on a 64bit platform performance is significantly worse: 1000
documents took slightly more than one hour.

-- 
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 77001] Calc crashes when highlighting a few lines in particular file

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77001

--- Comment #4 from wendr...@web.de ---
LO 4.2.4.2 / CALC:

Experienced the same behavior:
Highlighting more than 5 to 8 lines using STRG makes LO 4.2.4.2 respondig
*VERY, VERY* slow and than nonresponding even to the attempt to close the
program.

Environment:  WIN7-ultimate-x64, Intel 2-core T5500@1.77 GHz, 2 GB RAM
File:  32 KB L.O. origin calc file, single sheet, range used: A-AA/1-80 = ca.
2000 cells.

Failure: absolute identical reproduceable

No such prob. with same file in re-installed V. 4.1.5.3.

-- 
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 77001] Calc crashes when highlighting a few lines in particular file

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77001

wendr...@web.de changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
 OS|All |Windows (All)
   Priority|medium  |high
Version|4.2.2.1 release |4.2.4.2 release

--- Comment #5 from wendr...@web.de ---
This bug makes LO calc component 4.2.4.2 literally unuseable.

((Now, I realized I reported this to the wrong version - (where the search lead
me to). Please forgive I don't know ho to transfer))

-- 
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 78630] LibreLogo: point in the center of the turtle

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78630

László Németh nem...@numbertext.org changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from László Németh nem...@numbertext.org ---
It is possible to add a “reticle” to the turtle:

– text: double click on the turtle, and type a big X or the ⊙ (U+2299), and
press Esc. 
– hatching: set Red crossing pattern in the local menu of the turtle
(Area-Hatching).

Unfortunately, with thick lines, the turtle is not so precise (but this is a
bug). Programming with hiding the turtle is the solution for these problems.

-- 
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 34722] FILEOPEN: Text boxes are not shown in .doc document

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34722

--- Comment #11 from Foss f...@openmailbox.org ---
Confirmed:4.4.0.0a0+:OSX

OSX 10.9.3 and LO Version: 4.4.0.0.alpha0+
Build ID: 2c61edfdf57dabbd86ecc440444b6b00443f916a
TinderBox: MacOSX-x86@49-TDF, Branch:master, Time: 2014-05-22_01:02:26

-- 
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 78659] DOCX : CORRUPTION : FIle gets corrupt after Roundtrip

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78659

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Foss f...@openmailbox.org ---
Verified with LO Version: 4.4.0.0.alpha0+
Build ID: 2c61edfdf57dabbd86ecc440444b6b00443f916a
TinderBox: MacOSX-x86@49-TDF, Branch:master, Time: 2014-05-22_01:02:26

on OSX 10.9.3 file saved under LO 4.4 as docx and docx file opens fine with
Word 2011.

Tried testing with 4.2.4.2 as well and was unable to even save as docx. File
could not be written.

So assuming this is fixed. Please re-open if I'm mistaken.

-- 
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 78659] DOCX : CORRUPTION : FIle gets corrupt after Roundtrip

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78659

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

-- 
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 79069] New: Table edit undo failure.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79069

  Priority: medium
Bug ID: 79069
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Table edit undo failure.
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: michael.me...@collabora.com
  Hardware: Other
Status: NEW
   Version: 4.2.4.1 rc
 Component: Writer
   Product: LibreOffice

-- 
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 78953] crash after formatting odg layer from within impress

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78953

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Foss f...@openmailbox.org ---
Could you attach a test case with all the file required to reproduce the issue
please. After that set the bug back 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 79069] Table edit undo failure.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79069

--- Comment #1 from Michael Meeks michael.me...@collabora.com ---
Created attachment 99583
  -- https://bugs.freedesktop.org/attachment.cgi?id=99583action=edit
test document ...

This guy has some serious issues ...

Load in Word and also in LibreOffice - we show a two column page (for some
unknown reason).

Delete between the marks and undo - bang a different document.

Another annoyance ;-)

Turn on change-tracking; (and hide changes) delete the table as before - then
export to DOCX and re-load:
  + settings for show / hide changes not serialized.
  + the deleted table re-appears but with no content ;-)

I guess these latter two are a real pain to fix but ...

-- 
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 78958] Changing column width in Table Format - Columns doesn't always work.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78958

Foss f...@openmailbox.org changed:

   What|Removed |Added

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

--- Comment #1 from Foss f...@openmailbox.org ---
Is this bug still valid / reproducible with the latest LO release?  Currently
4.2.4: http://www.libreoffice.org/download/libreoffice-fresh/

Please also try resetting your user profile and let us know if that helps:
https://wiki.documentfoundation.org/UserProfile

Using 4.2.4.2 this is WORKSFORME.

Not sure why you are still on LO 4.1 which is already End Of Live. Maybe update
your ppa, I'm not familiar enough with Linux to give details about that. But
the LO pages have instructions.

Re-open if this persists with 4.2.4.2 or newer.

-- 
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 78151] FORMATTING: Not possible to format auto layout text - it's locked to outline style

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78151

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

-- 
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 78959] Setting certain Font Effects, then unsetting them doesn't work without closing the dialog first.

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78959

Foss f...@openmailbox.org changed:

   What|Removed |Added

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

--- Comment #1 from Foss f...@openmailbox.org ---
Bascially invalid since in 4.2.4.2 menus have changed quite a big.

Please always check you are using the latest LO version. Is this bug still
valid / reproducible with the latest LO release?  Currently 4.2.4:
http://www.libreoffice.org/download/libreoffice-fresh/

For me the menu is called format  character... then font effects.

I do not see an apply button. Only ok cancle help reset.

So this issue is solved. Marking 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 78961] Database Connection to XLSX file hangs after XLSX file is modified in Calc

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78961

--- Comment #2 from Foss f...@openmailbox.org ---
Can you attach a test case file to reproduce this issue?

-- 
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 72653] LibreLogo: ABC button creates paragraph marks

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72653

--- Comment #5 from László Németh nem...@numbertext.org ---
Could you check in LibreOffice 4.2.4, or with a new text (copying text with CR
characters may result this kind of problem)?

-- 
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 78962] EDITING: Comments made in OS X not visible in Linux, Windows

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78962

Foss f...@openmailbox.org changed:

   What|Removed |Added

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

--- Comment #1 from Foss f...@openmailbox.org ---
WORKSFORME

10.9.3, LO 4.2.4.2.

What I did:

* create new LO writer file (test file attached above) with a comment
* store as .doc file
* close LO
* open doc file with LO and Word 2011 on OSX 10.9.3

- I see the comment in both programs.

Please test with my test file and see if the comment shows. If the issue
persists please attach a test file of yours where the comment does not show and
set the bug back to UNCONFIRMED.

-- 
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 78962] EDITING: Comments made in OS X not visible in Linux, Windows

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78962

--- Comment #2 from Foss f...@openmailbox.org ---
Created attachment 99584
  -- https://bugs.freedesktop.org/attachment.cgi?id=99584action=edit
test file, 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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #8 from Richard_416282 richard416...@yahoo.ca ---
Steps Taken;


A) Download Newer Version of 4.3.0.0.alpha.1+

B) Install New Version in separate Program File space (Change Default = LO
dev4), save as LOdev43

C) Verify Changes did nothing special to document handling, notice, Save As
dialogue reverted to Windows.. SaveAs 

D) Attempt Windows.. SaveAs.. 'NewFolder.
-- Works as designed, creates a NewFolder, poplulates the name NewFolder in
the folder box. (Normal Operation).

--notice missing Connect to Server button not in windows dialoge.

-- Check help.. Document.. SaveAs

-- Option to use OpenOffice Dialogue, not set.

D.1) Set Tools.. Options .. General.. Use OpenOffice Dialogues checkbox.

D.2) Restart System.

E) Verify if SaveAs  displays dialogue. Yes.

F) Verify if NewFolder button functions. 
-- Opens NewFolder Dialoge, with cursor at input field, and BlankSpace is
filled in with AutoDefault of Folder. (Windows uses NewFolder).

G) Check if Folder is generated, Yes.

Perform same Uncheck box, Reset System, Set Checkbox on Stable 4.2..
version, Opens NewFolder Dialogue and AutoCompletes blank field with
Folder, as part of Dialogue.

See Pictures Attached.

Yeah 4.3.0.0.alpha1+ seems to have bug fixed or was bug in registry in
first place? Now OK.

-- 
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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #9 from Richard_416282 richard416...@yahoo.ca ---
Created attachment 99585
  -- https://bugs.freedesktop.org/attachment.cgi?id=99585action=edit
Tools_Options_General_BeforeChange

-- 
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 79070] New: Other: Libreoffice crashes ubuntu

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79070

  Priority: medium
Bug ID: 79070
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Libreoffice crashes ubuntu
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: cvsbolsatrab...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.3.0.0.alpha1
 Component: Writer
   Product: LibreOffice

Problem description: when i opne libreoffice ubuntus screen blurs or ths system
crashes.

Steps to reproduce:
1. 
2. 
3. 

Current behavior:

Expected behavior:


Operating System: Ubuntu
Version: 4.3.0.0.alpha1

-- 
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 57113] Macros: Unicode vs. password protected user libraries

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57113

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

Version|4.2.4.2 release |3.6.3.2 release

--- Comment #7 from Joel Madero jmadero@gmail.com ---
Please don't change the version - it reflects the oldest confirmed version not
the latest tested on. 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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #10 from Richard_416282 richard416...@yahoo.ca ---
Created attachment 99586
  -- https://bugs.freedesktop.org/attachment.cgi?id=99586action=edit
Tools_Options_General_AfterChange

-- 
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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #11 from Richard_416282 richard416...@yahoo.ca ---
Created attachment 99587
  -- https://bugs.freedesktop.org/attachment.cgi?id=99587action=edit
Reversion_Capture

-- 
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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #12 from Richard_416282 richard416...@yahoo.ca ---
Comment on attachment 99587
  -- https://bugs.freedesktop.org/attachment.cgi?id=99587
Reversion_Capture

This Screen Capture shows the results of the Windows  SaveAs Function after
reversion to Uncheck Use OpenOffice Dialogue in Tools..Options..General..
back to default (use windows Dialogue).

-- 
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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #13 from Richard_416282 richard416...@yahoo.ca ---
Created attachment 99588
  -- https://bugs.freedesktop.org/attachment.cgi?id=99588action=edit
Tools_Options_General_AfterChange_Reversion2

After Reset tools..options.. Use OpenOffice Dialogues by using a  checkmark,
and a Re-Boot.

-- 
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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

--- Comment #14 from Richard_416282 richard416...@yahoo.ca ---
Created attachment 99589
  -- https://bugs.freedesktop.org/attachment.cgi?id=99589action=edit
Tools_Options_General_AfterChange_Reversion3

Works... As it should.

-- 
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 78845] UI Icon Create New Folder in dialog File Save (As) closes dialog and doesn't show the needed dialog

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78845

Richard_416282 richard416...@yahoo.ca changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from Richard_416282 richard416...@yahoo.ca ---
By Resetting the Tools.. Options.. UseOpenOffice Dialogues in the General
Features section of Options, this re-set the paramater, that, may not have been
migrated across version upgrades .. (MySpeculations).

Could be new Code in 4.3.0.0.alpaha1+ that is not in 4.3.0.0.alpaha0+?

Not sure.

But is now working and Opens up a little window (at least its not hiddden under
another window) that asks the name of the new folder.

Appears to be fixed.
(4.2 may not have had the problem)

May have been an install issue during the installation of the 4.3.0.0.alpha0
version from December 2013.

-- 
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 59818] VIEWING: Bad Font Rendering in KDE

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59818

Michael Meeks michael.me...@collabora.com changed:

   What|Removed |Added

 CC||michael.me...@collabora.com

--- Comment #25 from Michael Meeks michael.me...@collabora.com ---
Do you see this Lubos ? :-) [ie. can we mark it 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


[Libreoffice-bugs] [Bug 79072] New: Freeze when inserting a chart from a selected range

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79072

  Priority: medium
Bug ID: 79072
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Freeze when inserting a chart from a selected range
  Severity: critical
Classification: Unclassified
OS: Linux (All)
  Reporter: gautier.sop...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.3.0.0.alpha1
 Component: Chart
   Product: LibreOffice

Hi, I'm using Version: 4.3.0.0.beta1
Build ID: 2e39c7e59c8fc8b16a54c3d981dceef27fb0c07f on Ubuntu 14.04.

Step to reproduce:
- select the data table you want for a chart
- clic on the chart icon
== a bar chart is created and Calc freeze, the wizzard is not displayed.

If you create the chart without selecting a data range the wizzard opens, but
step 2 and 3 are grayed, no possibility to select the range

Once inserted the chart data table is grayed out. Sophie

-- 
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 79072] Freeze when inserting a chart from a selected range

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79072

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high
 CC||gautier.sop...@gmail.com

-- 
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 68983] Save As a document containing a macro library protected by password corrupts the password of the macro library

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68983

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

   What|Removed |Added

 Whiteboard|odf target:4.3.0|odf target:4.3.0
   ||target:4.2.5

--- Comment #10 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Michael Stahl committed a patch related to this issue.
It has been pushed to libreoffice-4-2:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=1926ab7e68be80eb5431a0a11a45e3d5eccf0f50h=libreoffice-4-2

fdo#68983: Revert remove #if 0 block (from ...


It will be available in LibreOffice 4.2.5.

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 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 65205] : Print Component fails to recognize 'Tabloid' as 11x17, uses Letter instead

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65205

--- Comment #7 from Charles tansta...@libertytrek.org ---
This bug is very simple.

Every Copier/Printer I've checked that is capable of printing to Letter, Legal
and Tabloid size paper refer to these sizes as:

Letter (8.50 x 11.00)
Legal (8.50 x 14.00)
and
11x17 (11.00 x 17.00)

LibreOffice/AOO both refer to these sizes as:

Letter (8.50 x 11.00)
Legal (8.50 x 14.00)
and
Tabloid (11.00 x 17.00)

This is the exact cause of this problem - since the Paper Size Name of
'Tabloid' doesn't exist on the target printer, Libreoffice falls back to the
default of 'Letter'.

So, as far as I can see, there are only two ways to fix this:

1. Change the Paper Size Name from 'Tabloid' to '11x17', or

2. Create an alternate/secondary name that has the exact same paper size that
Libreoffice falls back to if 'Tabloid' is unavailable on the target printer.

Would some kind soul *please please please* fix this? It can't be that hard can
it? I mean, it should just be a string change or something...

-- 
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 79073] New: FILESAVE: Multi-Save Extension wants upgrading to work with latest Libre Writer!

2014-05-22 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79073

  Priority: medium
Bug ID: 79073
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: Multi-Save Extension wants upgrading to work
with latest Libre Writer!
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: wordserv...@yahoo.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.4.2 release
 Component: Writer
   Product: LibreOffice

Hi,

Multi-Save is a brilliant extension!  Because whenever you are collaborating on
a document, you want to be absolutely certain you are saving and sharing the
latest version of that document in the most compatible format for your
co-workers and friends.  

Please fix the bug in this Extension so that it will work with the latest
versions of Libre Writer in Windows 7 and 8!  

Briefly, here's what happened to me:  

1)  It seemed that the Multi-Save Extension installed successfully into my
brand new (to me) Libre 4.2.4.2.  
2)  Under the File drop down menu, I could successfully click on the the
Multi-Save option. 
3)  I could select multiple formats for saving (.ODT, .DOC or .DOCX, and .PDF). 
4)  However, after that, at this point, the screen locked up and when did a
kind of hard exit, a De-Bug screen of some kind came up, indicating a bug.  

Please help!  I need this extension, and I am no expert on debugging.  If you
want me to, I can take a screen shot or picture of the error / bug screen and
send it as an attachment.  

I understand you're having a Bug Hunt this coming weekend, so I hope this is
one more bug you can find and fix.  Thank you! 

V. Taylor


Operating System: Windows 8
Version: 4.2.4.2 release

-- 
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   4   >