Kusi | 1 May 2012 01:42
Favicon

[Bug 298929] cannot assign tags anymore

https://bugs.kde.org/show_bug.cgi?id=298929

--- Comment #3 from Kusi <kusi@...> ---
I came across this link http://www.phplogs.com/the-user-specified-as-a-definer/
so I dropped all 3 triggers I could find and created two of them again,
according to what I've found in dbconfig.xml

delimiter //
CREATE TRIGGER delete_image AFTER DELETE ON Images
                    FOR EACH ROW BEGIN
                        DELETE FROM ImageTags          WHERE imageid=OLD.id;
                        DELETE From ImageHaarMatrix    WHERE imageid=OLD.id;
                        DELETE From ImageInformation   WHERE imageid=OLD.id;
                        DELETE From ImageMetadata      WHERE imageid=OLD.id;
                        DELETE From ImagePositions     WHERE imageid=OLD.id;
                        DELETE From ImageComments      WHERE imageid=OLD.id;
                        DELETE From ImageCopyright     WHERE imageid=OLD.id;
                        DELETE From ImageProperties    WHERE imageid=OLD.id;
                        DELETE From ImageHistory       WHERE imageid=OLD.id;
                        DELETE FROM ImageRelations     WHERE subject=OLD.id OR
object=OLD.id;
                        DELETE FROM ImageTagProperties WHERE imageid=OLD.id;
                        UPDATE Albums SET icon=null    WHERE icon=OLD.id;
                        UPDATE Tags SET icon=null      WHERE icon=OLD.id;
                    END; //

and

CREATE TRIGGER delete_tag AFTER DELETE ON Tags
            FOR EACH ROW BEGIN
(Continue reading)

Gilles Caulier | 1 May 2012 06:40
Picon
Gravatar

[Bug 299071] Digikam crashed on export of one image to picasaweb

https://bugs.kde.org/show_bug.cgi?id=299071

Gilles Caulier <caulier.gilles@...> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|WAITINGFORINFO              |FIXED

--

-- 
You are receiving this mail because:
You are the assignee for the bug.
Antoine FADDI | 1 May 2012 13:43
Picon
Favicon

[Bug 299162] New: Plantage digikam

https://bugs.kde.org/show_bug.cgi?id=299162

            Bug ID: 299162
          Severity: crash
           Version: 2.5.0
          Priority: NOR
          Assignee: digikam-devel <at> kde.org
           Summary: Plantage digikam
    Classification: Unclassified
                OS: Linux
          Reporter: antoine.linux <at> sfr.fr
          Hardware: Ubuntu Packages
            Status: UNCONFIRMED
         Component: general
           Product: digikam

Application: digikam (2.5.0)
KDE Platform Version: 4.8.2 (4.8.2)
Qt Version: 4.8.1
Operating System: Linux 3.2.0-24-generic i686
Distribution: Ubuntu 12.04 LTS

-- Information about the crash:
- What I was doing when the application crashed:
Scanne d'une photo depuis le menu "Importation".
Edition de la photo pour modification.
Fermeture de l'édition.
Demande d'une nouvelle scanne depuis le menu d'Importation.

-- Backtrace:
(Continue reading)

Markus Leuthold | 1 May 2012 13:54
Favicon

documentation for database scheme

> > What is the meaning of the new colums Tags.lft and Tags.rgt?
> 
> used to build the tree of tags, see
> http://www.sitepoint.com/hierarchical-data-database-2/
> 
> Regards,
> Francesco

Thanks for the link, really helpful! Well, it looks like I messed up my 
hierarchical data structure in Tags. lft and rgt of the parent "City" doesn't 
include all children "Paris" "Athens" anymore. Is it possible to recalculate 
the lft and rgt colums from the Tags table?

thanks for your help!
Kusi
Matuki | 1 May 2012 16:52
Picon
Favicon

[Bug 299173] New: Crash during face tagging

https://bugs.kde.org/show_bug.cgi?id=299173

            Bug ID: 299173
          Severity: crash
           Version: 2.5.0
          Priority: NOR
          Assignee: digikam-devel@...
           Summary: Crash during face tagging
    Classification: Unclassified
                OS: Linux
          Reporter: matuki007-prog@...
          Hardware: Ubuntu Packages
            Status: UNCONFIRMED
         Component: general
           Product: digikam

Application: digikam (2.5.0)
KDE Platform Version: 4.8.2 (4.8.2)
Qt Version: 4.8.1
Operating System: Linux 3.2.0-24-generic x86_64
Distribution: Ubuntu 12.04 LTS

-- Information about the crash:
In face interface: select large amount of pictures of someone and tag them.
Digikam may crashes during processing

Details:
Not seen if less than 100 pictures are selected
Option to write tags in metadata enable

(Continue reading)

Smit Mehta | 1 May 2012 18:07
Picon

[Bug 299173] Crash during face tagging

https://bugs.kde.org/show_bug.cgi?id=299173

Smit Mehta <smit.meh@...> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |smit.meh@...
         Resolution|---                         |DUPLICATE

--- Comment #1 from Smit Mehta <smit.meh@...> ---

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

--

-- 
You are receiving this mail because:
You are the assignee for the bug.
Smit Mehta | 1 May 2012 18:07
Picon

[Bug 262596] Digikam 2.0 (beta): Crash when finding faces

https://bugs.kde.org/show_bug.cgi?id=262596

Smit Mehta <smit.meh@...> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |matuki007-prog@...

--- Comment #36 from Smit Mehta <smit.meh@...> ---
*** Bug 299173 has been marked as a duplicate of this bug. ***

--

-- 
You are receiving this mail because:
You are the assignee for the bug.
Francesco Riosa | 1 May 2012 19:21
Picon
Favicon

[Bug 298929] cannot assign tags anymore

https://bugs.kde.org/show_bug.cgi?id=298929

Francesco Riosa <francesco+kde@...> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |francesco+kde@...

--- Comment #4 from Francesco Riosa <francesco+kde@...> ---
> I came across this link
> http://www.phplogs.com/the-user-specified-as-a-definer/
> so I dropped all 3 triggers I could find and created two of them again,
> according to what I've found in dbconfig.xml
> 
> delimiter //
> CREATE TRIGGER delete_image AFTER DELETE ON Images
>                     FOR EACH ROW BEGIN
>                         DELETE FROM ImageTags          WHERE imageid=OLD.id;
>                         DELETE From ImageHaarMatrix    WHERE imageid=OLD.id;
>                         DELETE From ImageInformation   WHERE imageid=OLD.id;
>                         DELETE From ImageMetadata      WHERE imageid=OLD.id;
>                         DELETE From ImagePositions     WHERE imageid=OLD.id;
>                         DELETE From ImageComments      WHERE imageid=OLD.id;
>                         DELETE From ImageCopyright     WHERE imageid=OLD.id;
>                         DELETE From ImageProperties    WHERE imageid=OLD.id;
>                         DELETE From ImageHistory       WHERE imageid=OLD.id;
>                         DELETE FROM ImageRelations     WHERE subject=OLD.id
> OR object=OLD.id;
>                         DELETE FROM ImageTagProperties WHERE imageid=OLD.id;
>                         UPDATE Albums SET icon=null    WHERE icon=OLD.id;
(Continue reading)

dinhptra | 1 May 2012 20:59
Picon

[Bug 299191] New: Digikam advanced slideshow crash

https://bugs.kde.org/show_bug.cgi?id=299191

            Bug ID: 299191
          Severity: crash
           Version: 2.5.0
          Priority: NOR
          Assignee: digikam-devel@...
           Summary: Digikam advanced slideshow crash
    Classification: Unclassified
                OS: Linux
          Reporter: dinhptra@...
          Hardware: Other
            Status: UNCONFIRMED
         Component: general
           Product: digikam

Application: digikam (2.5.0)
KDE Platform Version: 4.7.4 (4.7.4)
Qt Version: 4.7.4
Operating System: Linux 3.0.0-12-generic x86_64
Distribution: Linux Mint 12 Lisa

-- Information about the crash:
- What I was doing when the application crashed:
I was running Digikam advanced slideshow. Digikam does not crash if I run
normal slideshow. I have kipi-plugins 2.5.0.

The crash can be reproduced every time.

-- Backtrace:
(Continue reading)

Smit Mehta | 1 May 2012 21:03
Picon

[Bug 299191] Digikam advanced slideshow crash

https://bugs.kde.org/show_bug.cgi?id=299191

Smit Mehta <smit.meh@...> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |smit.meh@...

--- Comment #1 from Smit Mehta <smit.meh@...> ---
Hi

Can you please clearly give "Steps to Reproduce"? It is not clear when does it
exactly crash on your system.

--

-- 
You are receiving this mail because:
You are the assignee for the bug.

Gmane