[Libreoffice-bugs] [Bug 42543] Report Designer Wizard missing Label display and editing capability

2012-01-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

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

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |lio...@mamane.lu
   |desktop.org |

--- Comment #20 from Lionel Elie Mamane lio...@mamane.lu 2012-01-30 08:37:28 
PST ---
I don't get the CommandType::TABLE vs CommandType::QUERY problem, so probably
that's an orthogonal problem.

In the case CommandType::TABLE, we have:

if ( bDoEscapeProcessing )
{
Reference XNameAccess  xTables( impl_getTables_throw() );
if ( xTables-hasByName(m_aCommand) )
{
}
else

This empty block there is very suspicious. It contained stuff, which was
commented out in

commit d4d5d883ecbc6e04cd28bb49be4c85f560a1bc48
Author: Ocke Janssen [oj] ocke.jans...@sun.com
Commit: Noel Power noel.po...@novell.com
Date:   Fri Jan 22 08:14:22 2010 +0100

dba33f: #i108548# extend SingleSelectQueryComposer appendFilterByColumn
with additonal parameter


The commented out code itself was removed in

commit 910a1f688b21fb8104f756b108b90836840f70db
Author: Rubén Jáñez rjanez...@gmail.com
Commit: Ocke Janssen [oj] ocke.jans...@sun.com
Date:   Mon Oct 11 10:39:25 2010 +0100

Removes some bogus comments found in Base.


My hunch is that we just have to add that code again. Testing that now.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #16 from Julien Nabet serval2...@yahoo.fr 2012-01-29 02:54:58 PST 
---
(In reply to comment #15)
 The first bt (attachment 56205 [details]) is interesting:
 
  dbtools::throwGenericSQLException (_rMsg=There exists no query named
 \Adresse\. ...)
 
 
 Some code tries to use a query named:
  Adresse.
 insted of just:
  Adresse
 
 So we have to hunt where that extra dot comes from and hopefully this will
 solve this bug!

I put a breakpoint on RowSet just before the message :
(gdb) b RowSet.cxx:2382
Breakpoint 1 at 0x7f7c39cc31d5: file
/home/julien/compile-libreoffice/libo/dbaccess/source/core/api/RowSet.cxx, line
2382.
(gdb) c
...
Breakpoint 1, dbaccess::ORowSet::impl_buildActiveCommand_throw (this=0x353d360)
at
/home/julien/compile-libreoffice/libo/dbaccess/source/core/api/RowSet.cxx:2382
2382sMessage.SearchAndReplaceAscii( $table$,
m_aCommand );
(gdb) print m_aCommand
$1 = Adresse
(gdb) n
2383throwGenericSQLException(sMessage,*this);
(gdb) print sMessage
$2 = There exists no query named \Adresse\.

So m_aCommand seems ok, it's just the message which shows this . in extra.

BTW : I got a log of segmentation faults where trying to gdb the report part.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #17 from Lionel Elie Mamane lio...@mamane.lu 2012-01-29 08:08:22 
PST ---
(In reply to comment #16)
 So m_aCommand seems ok, it's just the message which shows this . in extra.

Ah yes, I confused the dot namespace separator in SQL and the dot end of
sentence in English.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #18 from Lionel Elie Mamane lio...@mamane.lu 2012-01-29 08:19:35 
PST ---
OK, the code path that leads to the SQL exception is:

switch (m_nCommandType)
{
case CommandType::TABLE:
{
   (...)
}
break;

case CommandType::QUERY:
{
Reference XQueriesSupplier   xQueriesAccess(m_xActiveConnection,
UNO_QUERY);
if (xQueriesAccess.is())
{
if (xQueries-hasByName(m_aCommand))
{
   (...)
}
else
{
String sMessage( DBACORE_RESSTRING(
RID_STR_QUERY_DOES_NOT_EXIST ) );
sMessage.SearchAndReplaceAscii( $table$, m_aCommand );
throwGenericSQLException(sMessage,*this);
}
}
}


My guess is that in the example you test on, Adresse is a table and not a
query, so m_nCommandType should be CommandType::TABLE, but it is
CommandType::QUERY. So now the interesting question is: where is that value of
m_nCommandType set, and why is it set incorrectly? Probably somewhere a call to
setPropertyValue(PROPERTY_COMMAND_TYPE).

This also suggests that it might work if one selects a query, and not a table
in step 1 of the query wizard. To be tested.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #19 from Julien Nabet serval2...@yahoo.fr 2012-01-29 09:53:19 PST 
---
I noticed the pb with CommandType::TABLE.
So in gdb, I changed dynamically the value.

Then I had select * from Adresse (something like that) and this time it has 
CommandType::TABLE (so 0) instead of 1 CommandType::QUERY. (Hope I don't
mistake, I didn't record it somewhere)
So I changed this too dynamically on gdb but the result wasn't better :-(

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

 CC||d...@baseanswers.com

--- Comment #10 from Alex Thurgood alex.thurg...@gmail.com 2012-01-26 
00:24:53 PST ---
*** Bug 45258 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #11 from Alex Thurgood alex.thurg...@gmail.com 2012-01-26 
00:26:02 PST ---
(In reply to comment #7)
 is this still busted ?

Both Lionel and Drew have also confirmed that this still occurs (even in RC2
for Drew).


Alex

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #12 from Alex Thurgood alex.thurg...@gmail.com 2012-01-26 
01:40:17 PST ---
Setting as blocker for 3.5 release.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

   Severity|major   |blocker

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

 Blocks||37361

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #13 from Julien Nabet serval2...@yahoo.fr 2012-01-26 13:25:19 PST 
---
Created attachment 56205
  -- https://bugs.freedesktop.org/attachment.cgi?id=56205
First bt with attached symbol

Here is the steps I did :
- Open Base with a file
- Call Wizard for Report
- select fields in first step
- attach gdb (see
http://wiki.documentfoundation.org/Development/How_to_debug#Attaching_to_the_soffice.bin_process)
- since I didn't know where was the pb I runned :
   - catch catch (to stop gdb when catch called)
   - catch thrown (to stop gdb when throw called)
- I had to run a lots of time continue (or C) because of all the catch
and throw
- then I clicked on Next
- first bt

(Pc Debian x86-64)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #14 from Julien Nabet serval2...@yahoo.fr 2012-01-26 13:26:21 PST 
---
Created attachment 56206
  -- https://bugs.freedesktop.org/attachment.cgi?id=56206
Second bt

Following the first bt, i continued gdb and had a second bt.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #15 from Lionel Elie Mamane lio...@mamane.lu 2012-01-26 21:19:50 
PST ---
The first bt (attachment 56205) is interesting:

 dbtools::throwGenericSQLException (_rMsg=There exists no query named
\Adresse\. ...)


Some code tries to use a query named:
 Adresse.
insted of just:
 Adresse

So we have to hunt where that extra dot comes from and hopefully this will
solve this bug!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #7 from Caolán McNamara caol...@redhat.com 2012-01-23 06:32:47 
PST ---
is this still busted ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

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

   What|Removed |Added

 Status|NEEDINFO|NEW
Version|LibO Master |LibO 3.5.0 RC1

--- Comment #8 from Lionel Elie Mamane lio...@mamane.lu 2012-01-23 07:27:20 
PST ---
I reconfirm the bug on current libreoffice-3-5.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2012-01-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #9 from Alex Thurgood alex.thurg...@gmail.com 2012-01-23 07:54:11 
PST ---
Need to test on my Linux box.

Alex

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
   Keywords|NEEDINFO|

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #5 from Lionel Elie Mamane lio...@mamane.lu 2011-11-28 02:16:28 
PST ---
I get a boatload (about 1580 repetitions) of:
 
warn:legacy.osl:10068:1:/home/master/src/libreoffice/core/vcl/source/app/dbggui.cxx:1976:
SolarMutex not locked

May or may not be linked.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #6 from Alex Thurgood alex.thurg...@gmail.com 2011-11-28 02:28:40 
PST ---
(In reply to comment #5)
 I get a boatload (about 1580 repetitions) of:
  
 warn:legacy.osl:10068:1:/home/master/src/libreoffice/core/vcl/source/app/dbggui.cxx:1976:
 SolarMutex not locked
 
 May or may not be linked.



Michael Meeks' GTK3 stuff in your debug build ?

Alex

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2011-11-26 05:04:31 PST 
---
Created attachment 53863
  -- https://bugs.freedesktop.org/attachment.cgi?id=53863
label display ok

On 3.4.4 Debian testing pc x86-32, it's ok.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
   Keywords||NEEDINFO

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2011-11-26 05:05:17 PST 
---
Alex: could you please confirm if it's ok for you too ? (I don't have x64 to
test)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

   Keywords||regression

--- Comment #3 from Alex Thurgood alex.thurg...@gmail.com 2011-11-26 05:26:10 
PST ---
Hi Julien,


I raised the bug against Master, not the 3.4.X series, so this is a regression
with respect to that series and 3.3.x.


Alex

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

--- Comment #4 from Julien Nabet serval2...@yahoo.fr 2011-11-26 05:51:46 UTC 
---
Alex: you're absolutely right, I reproduce it too with master :-(

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 42543] Report Designer Wizard missing Label display and editing capability

2011-11-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42543

Alex Thurgood alex.thurg...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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