Bug#679425: kdevelop: request for adding the xdebug support plugin

2012-06-28 Thread Thomas Pierson
Package: kdevelop
Version: 4:4.3.1-3
Severity: wishlist

Dear maintainers,

I begin to use kdevelop for my php developments and it works great on
Wheezy. Thanks for your work!

The last missing thing I need to got the perfect php dev environment is
xdebug support and I found a git repo [1]. I built it and test it and it
works.

Do you plan to add this plugin to kdevelop in Debian archive soon?
If you have no time for this I can try to package it myself.

[1] : git://anongit.kde.org/kdev-xdebug

Best regards,

Thomas Pierson




-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fec70ed.6010...@thomaspierson.fr



Bug#612315: plasma-widgets-workspace: notifications appear and cover videos in fullscreen mode with some player like vlc

2011-02-07 Thread Thomas PIERSON
Package: plasma-widgets-workspace
Version: 4:4.4.5-8
Severity: normal

Hi,

Kde notifications displayed by plasma cover videos in fullscreen mode with vlc 
and others player.
With dragon-player, notifications are succesfully hidden.

I am using wheezy to make this report but I could reproduce this issue on 
Squeeze/stable.

Best regards,
Thomas PIERSON

-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (900, 'testing'), (90, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.37-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages plasma-widgets-workspace depends on:
ii  kdebase-runtime   4:4.4.5-1  runtime components from the 
offici
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared 
lib
ii  libkdecore5   4:4.4.5-3  the KDE Platform Core Library
ii  libkdeui5 4:4.4.5-3  the KDE Platform User Interface 
Li
ii  libkio5   4:4.4.5-3  the Network-enabled File 
Managemen
ii  libkunitconversion4   4:4.4.5-3  the Unit Conversion library for 
th
ii  libkutils44:4.4.5-3  various utility classes for the 
KD
ii  libkworkspace44:4.4.5-8  library for the kdebase workspace
ii  libplasma34:4.4.5-3  the Plasma Library for the KDE 
Pla
ii  libplasmaclock4a  4:4.4.5-8  library for Plasma clocks
ii  libqt4-dbus   4:4.6.3-4  Qt 4 D-Bus module
ii  libqt4-webkit 4:4.6.3-4  Qt 4 WebKit module
ii  libqt4-xml4:4.6.3-4  Qt 4 XML module
ii  libqtcore44:4.6.3-4  Qt 4 core module
ii  libqtgui4 4:4.6.3-4  Qt 4 GUI module
ii  libsolid4 4:4.4.5-3  Solid Library for KDE Platform
ii  libsolidcontrol4  4:4.4.5-8  library for Solid based network 
ma
ii  libstdc++64.4.5-10   The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxcomposite11:0.4.3-1  X11 Composite extension library
ii  libxdamage1   1:1.1.3-1  X11 damaged region extension 
libra
ii  libxfixes31:4.0.5-1  X11 miscellaneous 'fixes' 
extensio
ii  libxrender1   1:0.9.6-1  X Rendering Extension client 
libra
ii  libxss1   1:1.2.1-1  X11 Screen Saver extension 
library
ii  plasma-dataengines-workspace  4:4.4.5-8  KDE Plasma data engines

plasma-widgets-workspace recommends no packages.

plasma-widgets-workspace suggests no packages.

-- no debconf information


signature.asc
Description: This is a digitally signed message part.


Bug#582023: dolphin: Patch fixing bug 582023 (better properly formatted patch)

2010-08-27 Thread Thomas PIERSON
Package: dolphin
Version: 4:4.4.5-1
Severity: normal
Tags: patch

Hi,

This bugfix: http://websvn.kde.org/?view=revrevision=1132120 seem to be not 
include in kde 4.4.x releases.

So, I created a patch properly formatted better than in my previous message.
I join it to this mail.

Best regards,

Thomas PIERSON
--- a/apps/dolphin/src/dolphincolumnviewcontainer.cpp	2010-02-26 19:31:49.0 +0100
+++ b/apps/dolphin/src/dolphincolumnviewcontainer.cpp	2010-08-27 14:18:36.0 +0200
@@ -69,7 +69,7 @@
 
 DolphinColumnView* column = new DolphinColumnView(viewport(), this, m_controller-url());
 m_columns.append(column);
-setActiveColumnIndex(0);
+requestActivation(column);
 
 m_emptyViewport = new QFrame(viewport());
 m_emptyViewport-setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
@@ -171,12 +171,7 @@
 }
 }
 
-// set the last column as active column without modifying the controller
-// and hence the history
-m_columns[m_index]-setActive(false);
-m_index = columnIndex;
-m_columns[m_index]-setActive(true);
-assureVisibleActiveColumn();
+requestActivation(m_columns[columnIndex]);
 }
 
 void DolphinColumnViewContainer::mousePressEvent(QMouseEvent* event)
@@ -188,7 +183,9 @@
 void DolphinColumnViewContainer::keyPressEvent(QKeyEvent* event)
 {
 if (event-key() == Qt::Key_Left) {
-setActiveColumnIndex(m_index - 1);
+if (m_index  0) {
+requestActivation(m_columns[m_index - 1]);
+}
 } else {
 QScrollArea::keyPressEvent(event);
 }
@@ -246,24 +243,6 @@
 m_controller-setUrl(activeUrl);
 }
 
-void DolphinColumnViewContainer::setActiveColumnIndex(int index)
-{
-if ((m_index == index) || (index  0) || (index = m_columns.count())) {
-return;
-}
-
-const bool hasActiveColumn = (m_index = 0);
-if (hasActiveColumn) {
-m_columns[m_index]-setActive(false);
-}
-
-m_index = index;
-m_columns[m_index]-setActive(true);
-
-assureVisibleActiveColumn();
-m_activeUrlTimer-start(); // calls slot updateActiveUrl()
-}
-
 void DolphinColumnViewContainer::layoutColumns()
 {
 const int gap = 4;
@@ -338,18 +317,39 @@
 
 void DolphinColumnViewContainer::requestActivation(DolphinColumnView* column)
 {
-m_controller-setItemView(column);
+if (m_controller-itemView() != column) {
+m_controller-setItemView(column);
+}
+if (focusProxy() != column) {
+setFocusProxy(column);
+}
+
 if (column-isActive()) {
 assureVisibleActiveColumn();
 } else {
+// Deactivate the currently active column
+if (m_index = 0) {
+m_columns[m_index]-setActive(false);
+}
+
+// Get the index of the column that should get activated
 int index = 0;
 foreach (DolphinColumnView* currColumn, m_columns) {
 if (currColumn == column) {
-setActiveColumnIndex(index);
-return;
+break;
 }
 ++index;
 }
+
+Q_ASSERT(index != m_index);
+Q_ASSERT(index  m_columns.count());
+
+// Activate the requested column
+m_index = index;
+m_columns[m_index]-setActive(true);
+
+assureVisibleActiveColumn();
+m_activeUrlTimer-start(); // calls slot updateActiveUrl()
 }
 }
 
--- a/apps/dolphin/src/dolphincolumnviewcontainer.h	2010-01-31 20:30:05.0 +0100
+++ b/apps/dolphin/src/dolphincolumnviewcontainer.h	2010-08-27 14:18:36.0 +0200
@@ -87,14 +87,6 @@
 void updateActiveUrl();
 
 private:
-/**
- * Deactivates the currently active column and activates
- * the new column indicated by \a index. m_index represents
- * the active column afterwards. Also the URL of the navigator
- * will be adjusted to reflect the column URL.
- */
-void setActiveColumnIndex(int index);
-
 void layoutColumns();
 void updateScrollBar();
 
--- a/apps/dolphin/src/dolphincolumnview.cpp	2010-02-26 19:31:49.0 +0100
+++ b/apps/dolphin/src/dolphincolumnview.cpp	2010-08-27 14:18:36.0 +0200
@@ -150,10 +150,6 @@
 
 void DolphinColumnView::setActive(bool active)
 {
-if (active  (m_container-focusProxy() != this)) {
-m_container-setFocusProxy(this);
-}
-
 if (m_active != active) {
 m_active = active;
 
@@ -308,7 +304,6 @@
 void DolphinColumnView::keyPressEvent(QKeyEvent* event)
 {
 QListView::keyPressEvent(event);
-requestActivation();
 
 DolphinController* controller = m_container-m_controller;
 controller-handleKeyPressEvent(event);
@@ -439,10 +434,16 @@
 disconnect(this, SIGNAL(doubleClicked(const QModelIndex)),
m_container-m_controller, SLOT(triggerItem(const QModelIndex)));
 }
-
+// It is important to disconnect the connection to requestActivation() temporary, otherwise the internal
+// clearing of the selection would result

Bug#582023: dolphin: Fixed upstream, Patch available.

2010-05-29 Thread Thomas PIERSON
Package: dolphin
Version: 4:4.4.3-1
Severity: normal
Tags: patch

This bug was just fixed upstream:
http://websvn.kde.org/?view=revrevision=1132120

3 files are updated :
http://websvn.kde.org/trunk/KDE/kdebase/apps/dolphin/src/dolphincolumnview.cpp?r1=1109228r2=1132120pathrev=1132120
http://websvn.kde.org/trunk/KDE/kdebase/apps/dolphin/src/dolphincolumnviewcontainer.cpp?r1=1109228r2=1132120pathrev=1132120
http://websvn.kde.org/trunk/KDE/kdebase/apps/dolphin/src/dolphincolumnviewcontainer.h?r1=1109228r2=1132120pathrev=1132120
So, I think this can be fixed in this current version in Squeeze because the 
previous revision is old.

Patch for kdebase/apps/dolphin/src/dolphincolumnview.cpp :
http://websvn.kde.org/trunk/KDE/kdebase/apps/dolphin/src/dolphincolumnview.cpp?r1=1109228r2=1132120pathrev=1132120view=patch
Patch for kdebase/apps/dolphin/src/dolphincolumnviewcontainer.cpp :
http://websvn.kde.org/trunk/KDE/kdebase/apps/dolphin/src/dolphincolumnviewcontainer.cpp?r1=1109228r2=1132120pathrev=1132120view=patch
Patch for kdebase/apps/dolphin/src/dolphincolumnviewcontainer.h :
http://websvn.kde.org/trunk/KDE/kdebase/apps/dolphin/src/dolphincolumnviewcontainer.h?r1=1109228r2=1132120pathrev=1132120view=patch

Best regards,

Thomas PIERSON



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201005292229.05930.web.pier...@gmail.com



Bug#573421: kdeprint: deletes some files when printing multiple files

2010-05-26 Thread Thomas PIERSON
Package: kdeprint
Version: 4:3.5.9.dfsg.1-6+lenny1
Severity: critical
Justification: causes serious data loss

Hi,

I can reproduce this bug by following the steps you have specified.
I suggest to set this bug to CONFIRMED.

Regards,
Thomas PIERSON


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (90, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kdeprint depends on:
ii  enscript   1.6.5.1-1 converts text to Postscript, HTML
ii  kdelibs4c2a4:3.5.10.dfsg.1-3 core libraries and binaries for al
ii  libc6  2.10.2-6  Embedded GNU C Library: Shared lib
ii  libgcc11:4.4.4-1 GCC support library
ii  libqt3-mt  3:3.3.8b-6Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.4.4-1   The GNU Standard C++ Library v3
ii  poster 1:20050907-1  Create large posters out of PostSc
ii  psutils1.17-27   A collection of PostScript documen

Versions of packages kdeprint recommends:
ii  ghostscript [postscript 8.71~dfsg-4  The GPL Ghostscript PostScript/PDF
ii  kghostview [postscript- 4:3.5.9-3+lenny2 PostScript viewer for KDE
ii  okular [postscript-view 4:4.4.3-1document viewer for KDE 4

Versions of packages kdeprint suggests:
pn  efax | hylafax-client | m none (no description available)
pn  khelpcenter   none (no description available)
ii  smbclient 2:3.4.8~dfsg-1 command-line SMB/CIFS clients for

-- no debconf information


signature.asc
Description: This is a digitally signed message part.


Bug#582023: dolphin: Navigation with keyboard broken in Column view mode

2010-05-17 Thread Thomas PIERSON
Package: dolphin
Version: 4:4.4.3-1
Severity: normal
Tags: squeeze

Hi,

In dolphin file manager, the keyboard navigation control seem to be broken in 
Column View mode.
For example, first time you choose a directory with arrow and press right-arrow 
to jump to this directory and it is ok. But after that, if you back to parent 
directory and try an other directory you can not jump column to colmun to this 
new directory. 

Best regards,
Thomas PIERSON


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (90, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dolphin depends on:
ii  kdebase-runtime 4:4.4.3-1runtime components from the offici
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libkdecore5 4:4.4.3-1the KDE Platform Core Library
ii  libkdeui5   4:4.4.3-1the KDE Platform User Interface Li
ii  libkfile4   4:4.4.3-1the File Selection Dialog Library 
ii  libkio5 4:4.4.3-1the Network-enabled File Managemen
ii  libknewstuff3-4 4:4.4.3-1the Get Hot New Stuff v3 Library
ii  libkonq54:4.4.3-1core libraries for Konqueror
ii  libkparts4  4:4.4.3-1the Framework for the KDE Platform
ii  libkutils4  4:4.4.3-1various utility classes for the KD
ii  libnepomuk4 4:4.4.3-1the Nepomuk Meta Data Library
ii  libnepomukquery4a   4:4.4.3-1the Nepomuk Query Library for the 
ii  libphonon4  4:4.6.0really4.4.0-4 the core library of the Phonon mul
ii  libqt4-dbus 4:4.6.2-4Qt 4 D-Bus module
ii  libqtcore4  4:4.6.2-4Qt 4 core module
ii  libqtgui4   4:4.6.2-4Qt 4 GUI module
ii  libsoprano4 2.4.2+dfsg.1-1   libraries for the Soprano RDF fram
ii  libstdc++6  4.4.4-1  The GNU Standard C++ Library v3
ii  phonon  4:4.6.0really4.4.0-4 metapackage for the Phonon multime

Versions of packages dolphin recommends:
ii  kfind 4:4.4.3-1  file search utility for KDE 4
ii  ruby  4.4An interpreter of object-oriented 

dolphin suggests no packages.

-- no debconf information


signature.asc
Description: This is a digitally signed message part.


Bug#580163: kwalletmanager: Can't start and The name org.kde.kwalletd was not provided by any service files in kde config

2010-05-03 Thread Thomas Pierson
Package: kwalletmanager
Version: 4:4.3.4-2
Severity: important
Tags: squeeze

Hi,

I try to use Kwallet manager but when I run the command : kwalletmanager ,
nothing happend and no output appear.
I go to the kde system config in kwallet section but I can see this message
in wallet select box :
The name org.kde.kwalletd was not provided by any service files
It is the kwalletd service is missing?
I find this report seem to be the same issue of me :
https://bugs.kde.org/show_bug.cgi?id=206171
Thanks for your help,

Best regards,
Thomas PIERSON


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (90, 'unstable'), (1,
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kwalletmanager depends on:
ii  kdebase-runtime   4:4.3.4-2  runtime components from the
offici
ii  kdelibs5  4:4.3.4-3  core libraries for all KDE 4
appli
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared
lib
ii  libknotificationitem-1-1  4:4.3.4-1  library for new way of handling
sy
ii  libqt4-dbus   4:4.6.2-4  Qt 4 D-Bus module
ii  libqt4-qt3support 4:4.6.2-4  Qt 3 compatibility library for
Qt
ii  libqt4-xml4:4.6.2-4  Qt 4 XML module
ii  libqtcore44:4.6.2-4  Qt 4 core module
ii  libqtgui4 4:4.6.2-4  Qt 4 GUI module
ii  libstdc++64.4.2-9The GNU Standard C++ Library v3

kwalletmanager recommends no packages.

kwalletmanager suggests no packages.

-- no debconf information


Bug#568776: dolphin: new upstream release (4.3.5) needed to fix dolphin crash bugs.

2010-02-07 Thread Thomas Pierson
Package: dolphin
Version: 4:4.3.4-1
Severity: wishlist

Hi,

Some dolphin bugs are now fixed in the new release 4.3.5 of KDE.
I think this new upstream version of kdebase will fix this bug for example:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=558010
This forwarded report topic confirm that:
https://bugs.kde.org/show_bug.cgi?id=208921#c118 .

Could you consider to packaging it?

Best regards,

Thomas PIERSON