<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.gnome.apps.geeqie.scm">
    <title>gmane.comp.gnome.apps.geeqie.scm</title>
    <link>http://blog.gmane.org/gmane.comp.gnome.apps.geeqie.scm</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/852"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/851"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/850"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/849"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/848"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/847"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/846"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/845"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/844"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/843"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/842"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/841"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/840"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/839"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/838"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/837"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/836"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/835"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/834"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/833"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/852">
    <title>SF.net SVN: geeqie:[1917] trunk/src</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/852</link>
    <description>&lt;pre&gt;Revision: 1917
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1917&amp;amp;view=rev
Author:   mow
Date:     2010-05-10 11:33:13 +0000 (Mon, 10 May 2010)

Log Message:
-----------
Some small logic mistakes

Use boolean operators for booleans and bitwise otherwise only.

Modified Paths:
--------------
    trunk/src/view_file_icon.c
    trunk/src/view_file_list.c

Modified: trunk/src/view_file_icon.c
===================================================================
--- trunk/src/view_file_icon.c2010-05-10 11:32:56 UTC (rev 1916)
+++ trunk/src/view_file_icon.c2010-05-10 11:33:13 UTC (rev 1917)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1014,11 +1014,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 {
 case MTS_MODE_SET: selected = mark_val;
 break;
-case MTS_MODE_OR: selected = mark_val | selected;
+case MTS_MODE_OR: selected = mark_val || selected;
 break;
-case MTS_MODE_AND: selected = mark_val &amp;amp; selected;
+case MTS_MODE_AND: selected = mark_val &amp;amp;&amp;amp; selected;
 break;
-case MTS_MODE_MINUS: selected = !mark_val &amp;amp; selected;
+case MTS_MODE_MINUS: selected&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-05-10T11:33:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/851">
    <title>SF.net SVN: geeqie:[1916] trunk/src</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/851</link>
    <description>&lt;pre&gt;Revision: 1916
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1916&amp;amp;view=rev
Author:   mow
Date:     2010-05-10 11:32:56 +0000 (Mon, 10 May 2010)

Log Message:
-----------
GTK marks several functions as deprecated

The following functions has been replaced and deprecated by version
2.20:
   - GTK_WIDGET_CAN_FOCUS
   - GTK_WIDGET_DRAWABLE
   - GTK_WIDGET_HAS_FOCUS
   - GTK_WIDGET_HAS_GRAB
   - GTK_WIDGET_IS_SENSITIVE
   - GTK_WIDGET_NO_WINDOW
   - GTK_WIDGET_REALIZED
   - GTK_WIDGET_SENSITIVE
   - GTK_WIDGET_STATE
   - GTK_WIDGET_TOPLEVEL
   - GTK_WIDGET_VISIBLE

Modified Paths:
--------------
    trunk/src/bar.c
    trunk/src/bar_comment.c
    trunk/src/bar_exif.c
    trunk/src/bar_histogram.c
    trunk/src/bar_keywords.c
    trunk/src/bar_sort.c
    trunk/src/cache_maint.c
    trunk/src/cellrenderericon.c
    trunk/src/collect-table.c
    trunk/src/dupe.c
    trunk/src/image.c
    trunk/src/layout.c
    trunk/src/layout_util.c
    trunk/src/logwindow.c
    trunk/src/pan-view.c
    trunk/src/pixbuf-r&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-05-10T11:32:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/850">
    <title>SF.net SVN: geeqie:[1915] trunk/src</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/850</link>
    <description>&lt;pre&gt;Revision: 1915
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1915&amp;amp;view=rev
Author:   mow
Date:     2010-02-28 22:55:37 +0000 (Sun, 28 Feb 2010)

Log Message:
-----------
Add unknown file class to grouping

Modified Paths:
--------------
    trunk/src/filefilter.c
    trunk/src/options.c

Modified: trunk/src/filefilter.c
===================================================================
--- trunk/src/filefilter.c2010-02-28 15:17:12 UTC (rev 1914)
+++ trunk/src/filefilter.c2010-02-28 22:55:37 UTC (rev 1915)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -283,6 +283,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 if (g_ascii_strcasecmp(ext, "%image") == 0) file_class = FORMAT_CLASS_IMAGE;
 else if (g_ascii_strcasecmp(ext, "%raw") == 0) file_class = FORMAT_CLASS_RAWIMAGE;
 else if (g_ascii_strcasecmp(ext, "%meta") == 0) file_class = FORMAT_CLASS_META;
+else if (g_ascii_strcasecmp(ext, "%unknown") == 0) file_class = FORMAT_CLASS_UNKNOWN;
 
 if (file_class == -1) 
 {

Modified: trunk/src/options.c
===================================================================
--- tr&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-28T22:55:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/849">
    <title>SF.net SVN: geeqie:[1914] trunk/src/exif-common.c</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/849</link>
    <description>&lt;pre&gt;Revision: 1914
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1914&amp;amp;view=rev
Author:   mow
Date:     2010-02-28 15:17:12 +0000 (Sun, 28 Feb 2010)

Log Message:
-----------
Fix a small issue with strptime

strptime do not initialize all fields. So the undefined fields could end
in crash later on.

Modified Paths:
--------------
    trunk/src/exif-common.c

Modified: trunk/src/exif-common.c
===================================================================
--- trunk/src/exif-common.c2010-02-27 23:31:07 UTC (rev 1913)
+++ trunk/src/exif-common.c2010-02-28 15:17:12 UTC (rev 1914)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -207,6 +207,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 }
 
 /* Convert the stuff into a tm struct */
+memset(&amp;amp;tm, 0, sizeof(tm)); /* Uh, strptime could let garbage in tm! */
 if (text &amp;amp;&amp;amp; strptime(text, "%Y:%m:%d %H:%M:%S", &amp;amp;tm))
 {
 buflen = strftime(buf, sizeof(buf), "%x %X", &amp;amp;tm);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

--------------------------------------------&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-28T15:17:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/848">
    <title>SF.net SVN: geeqie:[1913] trunk/src</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/848</link>
    <description>&lt;pre&gt;Revision: 1913
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1913&amp;amp;view=rev
Author:   zas_
Date:     2010-02-27 23:31:07 +0000 (Sat, 27 Feb 2010)

Log Message:
-----------
Allow scrollview to grow when generic dialog is resized (ie. Metadata write ? dialog). Do not force scrollbar if not needed.

Modified Paths:
--------------
    trunk/src/ui_utildlg.c
    trunk/src/utilops.c

Modified: trunk/src/ui_utildlg.c
===================================================================
--- trunk/src/ui_utildlg.c2010-02-27 20:35:26 UTC (rev 1912)
+++ trunk/src/ui_utildlg.c2010-02-27 23:31:07 UTC (rev 1913)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -178,7 +178,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 GtkWidget *vbox;
 GtkWidget *label;
 
-hbox = pref_box_new(gd-&amp;gt;vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
+hbox = pref_box_new(gd-&amp;gt;vbox, TRUE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE);
 if (icon_stock_id)
 {
 GtkWidget *image;

Modified: trunk/src/utilops.c
===================================================================
--- trunk/src/utilops.c2010-02-27&lt;/pre&gt;</description>
    <dc:creator>zas_-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-27T23:31:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/847">
    <title>SF.net SVN: geeqie:[1912] trunk/src</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/847</link>
    <description>&lt;pre&gt;Revision: 1912
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1912&amp;amp;view=rev
Author:   mow
Date:     2010-02-27 20:35:26 +0000 (Sat, 27 Feb 2010)

Log Message:
-----------
Add the feature to add single keywords to selection

This patch adds a context menu entry to keywords to ad the current
keyword to all selected images.

Modified Paths:
--------------
    trunk/src/bar_keywords.c
    trunk/src/metadata.c
    trunk/src/metadata.h

Modified: trunk/src/bar_keywords.c
===================================================================
--- trunk/src/bar_keywords.c2010-02-27 20:35:09 UTC (rev 1911)
+++ trunk/src/bar_keywords.c2010-02-27 20:35:26 UTC (rev 1912)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1085,6 +1085,62 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 bar_keyword_tree_sync(pkd);
 }
 
+/**
+ * \brief Callback for adding selected keyword to all selected images.
+ */
+static void bar_pane_keywords_add_to_selected_cb(GtkWidget *menu_widget, gpointer data)
+{
+PaneKeywordsData *pkd = data;
+GtkTreeIter iter; /* This is the iter which initial holds the current keyword */
+&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-27T20:35:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/846">
    <title>SF.net SVN: geeqie:[1911] trunk/src/exif.h</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/846</link>
    <description>&lt;pre&gt;Revision: 1911
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1911&amp;amp;view=rev
Author:   mow
Date:     2010-02-27 20:35:09 +0000 (Sat, 27 Feb 2010)

Log Message:
-----------
Little macro correction

Modified Paths:
--------------
    trunk/src/exif.h

Modified: trunk/src/exif.h
===================================================================
--- trunk/src/exif.h2010-02-27 20:34:54 UTC (rev 1910)
+++ trunk/src/exif.h2010-02-27 20:35:09 UTC (rev 1911)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -27,7 +27,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 #ifndef __EXIF_H
 #define __EXIF_H
 
-#define EXIF_FORMATTED(x) "formatted."x
+#define EXIF_FORMATTED() "formatted."
 #define EXIF_FORMATTED_LEN (sizeof(EXIF_FORMATTED()) - 1)
 
 /*


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

------------------------------------------------------------------------------
Download Intel&amp;amp;#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications fo&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-27T20:35:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/845">
    <title>SF.net SVN: geeqie:[1910] trunk/src</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/845</link>
    <description>&lt;pre&gt;Revision: 1910
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1910&amp;amp;view=rev
Author:   mow
Date:     2010-02-27 20:34:54 +0000 (Sat, 27 Feb 2010)

Log Message:
-----------
Unifying the datetime output

The output of %date% and %formatted.DateTime% should be equivalent.

Modified Paths:
--------------
    trunk/src/exif-common.c
    trunk/src/filedata.c

Modified: trunk/src/exif-common.c
===================================================================
--- trunk/src/exif-common.c2010-02-17 21:19:22 UTC (rev 1909)
+++ trunk/src/exif-common.c2010-02-27 20:34:54 UTC (rev 1910)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -9,6 +9,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 #  include "config.h"
 #endif
 
+#define _XOPEN_SOURCE
+
 #include &amp;lt;stdio.h&amp;gt;
 #include &amp;lt;string.h&amp;gt;
 #include &amp;lt;fcntl.h&amp;gt;
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -188,6 +190,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 {
 gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeOriginal");
 gchar *subsec = NULL;
+gchar buf[128];
+gchar *tmp;
+gint buflen;
+struct tm tm;
+GError *error = NULL;
 
 if (text)
 {
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -198,9 +205,30 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 text = exif_get_data_as_text(exif, "Exif.I&lt;/pre&gt;</description>
    <dc:creator>mow-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-27T20:34:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/844">
    <title>SF.net SVN: geeqie:[1909] tags/GEEQIE_1_0/</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/844</link>
    <description>&lt;pre&gt;Revision: 1909
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1909&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-17 21:19:22 +0000 (Wed, 17 Feb 2010)

Log Message:
-----------
tagging 1.0 release

Added Paths:
-----------
    tags/GEEQIE_1_0/


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev
&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-17T21:19:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/843">
    <title>SF.net SVN: geeqie:[1908] trunk/ChangeLog</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/843</link>
    <description>&lt;pre&gt;Revision: 1908
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1908&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-17 21:05:10 +0000 (Wed, 17 Feb 2010)

Log Message:
-----------
updated ChangeLog file

Modified Paths:
--------------
    trunk/ChangeLog

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog2010-02-16 21:18:03 UTC (rev 1907)
+++ trunk/ChangeLog2010-02-17 21:05:10 UTC (rev 1908)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,4 +1,673 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 ------------------------------------------------------------------------
+r1907 | nadvornik | 2010-02-16 22:18:03 +0100 (Tue, 16 Feb 2010) | 2 lines
+
+added 2010 to copyright text
+
+------------------------------------------------------------------------
+r1906 | nadvornik | 2010-02-16 22:10:12 +0100 (Tue, 16 Feb 2010) | 2 lines
+
+updated version string
+
+------------------------------------------------------------------------
+r1905 | zas_ | 2010-02-16 21:07:05 +0100 (Tue, 16 Feb 2010) | 1 line
+
+Restore translators list, remo&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-17T21:05:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/842">
    <title>SF.net SVN: geeqie:[1907] trunk</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/842</link>
    <description>&lt;pre&gt;Revision: 1907
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1907&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-16 21:18:03 +0000 (Tue, 16 Feb 2010)

Log Message:
-----------
added 2010 to copyright text

Modified Paths:
--------------
    trunk/CODING
    trunk/configure.in
    trunk/debian/copyright
    trunk/src/advanced_exif.c
    trunk/src/advanced_exif.h
    trunk/src/bar.c
    trunk/src/bar.h
    trunk/src/bar_comment.c
    trunk/src/bar_comment.h
    trunk/src/bar_exif.c
    trunk/src/bar_exif.h
    trunk/src/bar_gps.c
    trunk/src/bar_gps.h
    trunk/src/bar_histogram.c
    trunk/src/bar_histogram.h
    trunk/src/bar_keywords.c
    trunk/src/bar_keywords.h
    trunk/src/bar_sort.c
    trunk/src/bar_sort.h
    trunk/src/cache-loader.c
    trunk/src/cache-loader.h
    trunk/src/cache.c
    trunk/src/cache.h
    trunk/src/cache_maint.c
    trunk/src/cache_maint.h
    trunk/src/collect-dlg.c
    trunk/src/collect-dlg.h
    trunk/src/collect-io.c
    trunk/src/collect-io.h
    trunk/src/colle&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-16T21:18:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/841">
    <title>SF.net SVN: geeqie:[1906] trunk/configure.in</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/841</link>
    <description>&lt;pre&gt;Revision: 1906
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1906&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-16 21:10:12 +0000 (Tue, 16 Feb 2010)

Log Message:
-----------
updated version string

Modified Paths:
--------------
    trunk/configure.in

Modified: trunk/configure.in
===================================================================
--- trunk/configure.in2010-02-16 20:07:05 UTC (rev 1905)
+++ trunk/configure.in2010-02-16 21:10:12 UTC (rev 1906)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -15,7 +15,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 dnl GNU General Public License for more details.
 
 AC_PREREQ(2.57)
-AC_INIT(geeqie, 1.0beta2, geeqie-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org)
+AC_INIT(geeqie, 1.0, geeqie-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org)
 
 # Check for rightly dirs
 AC_CONFIG_SRCDIR([src/main.c])


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

------------------------------------------------------------------------------
SOLARIS 10 is th&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-16T21:10:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/840">
    <title>SF.net SVN: geeqie:[1905] trunk/po/pt_BR.po</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/840</link>
    <description>&lt;pre&gt;Revision: 1905
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1905&amp;amp;view=rev
Author:   zas_
Date:     2010-02-16 20:07:05 +0000 (Tue, 16 Feb 2010)

Log Message:
-----------
Restore translators list, removed by revision 1899.

Revision Links:
--------------
    http://geeqie.svn.sourceforge.net/geeqie/?rev=1899&amp;amp;view=rev

Modified Paths:
--------------
    trunk/po/pt_BR.po

Modified: trunk/po/pt_BR.po
===================================================================
--- trunk/po/pt_BR.po2010-02-16 19:55:35 UTC (rev 1904)
+++ trunk/po/pt_BR.po2010-02-16 20:07:05 UTC (rev 1905)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,3 +1,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+# geeqie pt_BR.po file.
+#
+# Created by Guilherme M. Schroeder &amp;lt;slump&amp;lt; at &amp;gt;linuxall.org&amp;gt;, 2001.
+# Updated by Herval Ribeiro de Azevêdo &amp;lt;heraze&amp;lt; at &amp;gt;gmail.com&amp;gt;, 2005.
+# Updated by Sérgio Cipolla &amp;lt;secipolla&amp;lt; at &amp;gt;gmail.com&amp;gt;, 2010.
 msgid ""
 msgstr ""
 "Project-Id-Version: Geeqie 2.1.1\n"
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2,3 +7,3 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-02 21:16+0100\n"
+"POT-Creation-Date: 2010-02-16 21:05+0100\n"&lt;/pre&gt;</description>
    <dc:creator>zas_-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-16T20:07:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/839">
    <title>SF.net SVN: geeqie:[1904] trunk/po/ru.po</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/839</link>
    <description>&lt;pre&gt;Revision: 1904
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1904&amp;amp;view=rev
Author:   zas_
Date:     2010-02-16 19:55:35 +0000 (Tue, 16 Feb 2010)

Log Message:
-----------
Update russian translation. Thanks to Denis Silakov.

Modified Paths:
--------------
    trunk/po/ru.po

Modified: trunk/po/ru.po
===================================================================
--- trunk/po/ru.po2010-02-14 22:00:23 UTC (rev 1903)
+++ trunk/po/ru.po2010-02-16 19:55:35 UTC (rev 1904)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -6,16 +6,18 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 # Edited by Oleg Andryuschenko &amp;lt;oandr&amp;lt; at &amp;gt;itek.com.ua&amp;gt;, 2002.
 # Edited by drF_ckoff &amp;lt;dfo&amp;lt; at &amp;gt;antex.ru&amp;gt;, 2003-2004.
 # Edited by Vitaly Lipatov &amp;lt;lav&amp;lt; at &amp;gt;altlinux.ru&amp;gt;, 2005.
+# Edited by Alexandre Prokoudine &amp;lt;alexandre.prokoudine&amp;lt; at &amp;gt;gmail.com&amp;gt;, 2008.
+# Edited by Denis Silakov &amp;lt;d_uragan&amp;lt; at &amp;gt;rambler.ru&amp;gt;, 2010.
 #
 # $Id$
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: geeqie 1.0alpha1\n"
+"Project-Id-Version: geeqie 1.0beta2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-05-14 18:36+0400\n"
-"PO-Revision-Date: 2008-05-14 20:&lt;/pre&gt;</description>
    <dc:creator>zas_-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-16T19:55:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/838">
    <title>SF.net SVN: geeqie:[1903] trunk/src/exif.c</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/838</link>
    <description>&lt;pre&gt;Revision: 1903
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1903&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-14 22:00:23 +0000 (Sun, 14 Feb 2010)

Log Message:
-----------
fixed segfault in exif parser

http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2950617&amp;amp;group_id=222125&amp;amp;atid=1054682

Modified Paths:
--------------
    trunk/src/exif.c

Modified: trunk/src/exif.c
===================================================================
--- trunk/src/exif.c2010-02-14 21:35:11 UTC (rev 1902)
+++ trunk/src/exif.c2010-02-14 22:00:23 UTC (rev 1903)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1458,6 +1458,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 gint exif_item_get_integer(ExifItem *item, gint *value)
 {
 if (!item) return FALSE;
+if (!item-&amp;gt;elements) return FALSE;
 
 switch (item-&amp;gt;format)
 {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

------------------------------------------------------------------------------
SOLARIS 10 is the OS for Data Centers - provides features such as DTr&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-14T22:00:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/837">
    <title>SF.net SVN: geeqie:[1902] trunk/src/utilops.c</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/837</link>
    <description>&lt;pre&gt;Revision: 1902
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1902&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-14 21:35:11 +0000 (Sun, 14 Feb 2010)

Log Message:
-----------
fixed reference count

there was a bug in reference count on writting unsaved metadata
before starting an external editor

Modified Paths:
--------------
    trunk/src/utilops.c

Modified: trunk/src/utilops.c
===================================================================
--- trunk/src/utilops.c2010-02-07 13:16:35 UTC (rev 1901)
+++ trunk/src/utilops.c2010-02-14 21:35:11 UTC (rev 1902)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2744,11 +2744,15 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 FileData *fd = work-&amp;gt;data;
 work = work-&amp;gt;next;
 
-if (fd-&amp;gt;change) return FALSE; /* another op. in progress, let the caller handle it */
+if (fd-&amp;gt;change) 
+{
+filelist_free(unsaved);
+return FALSE; /* another op. in progress, let the caller handle it */
+}
 
 if (fd-&amp;gt;modified_xmp) /* has unsaved metadata */
 {
-unsaved = g_list_prepend(unsaved, fd);
+unsaved = g_list_prepend(unsav&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-14T21:35:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/836">
    <title>SF.net SVN: geeqie:[1900] trunk/README</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/836</link>
    <description>&lt;pre&gt;Revision: 1900
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1900&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-07 12:44:55 +0000 (Sun, 07 Feb 2010)

Log Message:
-----------
dropped obsolete sections, gqview changelog moved to wiki

Modified Paths:
--------------
    trunk/README

Modified: trunk/README
===================================================================
--- trunk/README2010-02-02 20:21:11 UTC (rev 1899)
+++ trunk/README2010-02-07 12:44:55 UTC (rev 1900)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,7 +1,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 ###################################################################
-##                          Geeqie 1.0alpha3                     ##
+##                            Geeqie 1.0                         ##
 ##                                                               ##
-##              Copyright (C) 2008 - 2009 The Geeqie Team        ##
+##              Copyright (C) 2008 - 2010 The Geeqie Team        ##
 ##              Copyright (C) 1999 - 2006 John Ellis.            ##
 ##                                &lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-07T12:44:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/835">
    <title>SF.net SVN: geeqie:[1901] trunk</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/835</link>
    <description>&lt;pre&gt;Revision: 1901
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1901&amp;amp;view=rev
Author:   nadvornik
Date:     2010-02-07 13:16:35 +0000 (Sun, 07 Feb 2010)

Log Message:
-----------
test gnome-doc-tool in configure

Modified Paths:
--------------
    trunk/configure.in
    trunk/doc/Makefile.am

Modified: trunk/configure.in
===================================================================
--- trunk/configure.in2010-02-07 12:44:55 UTC (rev 1900)
+++ trunk/configure.in2010-02-07 13:16:35 UTC (rev 1901)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -218,6 +218,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 AC_DEFINE_UNQUOTED(GQ_HELPDIR, "$readmedir", [Location of documentation files])
 AC_DEFINE_UNQUOTED(GQ_HTMLDIR, "$htmldir", [Location of html documentation])
 
+AC_PATH_PROG(GNOME_DOC_TOOL, gnome-doc-tool)
+
 AC_SUBST(readmedir)
 AC_SUBST(htmldir)
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -469,6 +471,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 Documentation:
   Doxygen:       $DOXYGEN
   Formats:       $doxy_formats_report
+  doc-tool:      $GNOME_DOC_TOOL
+
 END
 
 cat config.report

Modified: trunk/doc/Makefile.am
=========================================&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-07T13:16:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/834">
    <title>SF.net SVN: geeqie:[1899] trunk/po/pt_BR.po</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/834</link>
    <description>&lt;pre&gt;Revision: 1899
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1899&amp;amp;view=rev
Author:   zas_
Date:     2010-02-02 20:21:11 +0000 (Tue, 02 Feb 2010)

Log Message:
-----------
Brazilian Portuguese translation was updated. 

Thanks to Sergio Cipolla.

References:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=567824

Modified Paths:
--------------
    trunk/po/pt_BR.po

Modified: trunk/po/pt_BR.po
===================================================================
--- trunk/po/pt_BR.po2010-01-27 22:27:10 UTC (rev 1898)
+++ trunk/po/pt_BR.po2010-02-02 20:21:11 UTC (rev 1899)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,172 +1,357 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
-# gqview pt_BR.po file.
-# Copyright (C) Guilherme M. Schroeder.
-# Guilherme M. Schroeder &amp;lt;slump&amp;lt; at &amp;gt;linuxall.org&amp;gt;, 2001.
-# Herval Ribeiro de Azevêdo &amp;lt;heraze&amp;lt; at &amp;gt;gmail.com&amp;gt;, 2005.
-#
 msgid ""
 msgstr ""
 "Project-Id-Version: Geeqie 2.1.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-05-13 22:14+0200\n"
-"PO-Revision-Date: 2005-11-01 19:50-0200\n"
-"Last-Translator: Herval Ribeiro de Azevêdo &amp;lt;heraze&amp;lt; at &amp;gt;gma&lt;/pre&gt;</description>
    <dc:creator>zas_-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-02-02T20:21:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/833">
    <title>SF.net SVN: geeqie:[1898] trunk/po/cs.po</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/833</link>
    <description>&lt;pre&gt;Revision: 1898
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1898&amp;amp;view=rev
Author:   nadvornik
Date:     2010-01-27 22:27:10 +0000 (Wed, 27 Jan 2010)

Log Message:
-----------
czech translation fixes

Modified Paths:
--------------
    trunk/po/cs.po

Modified: trunk/po/cs.po
===================================================================
--- trunk/po/cs.po2010-01-27 19:58:11 UTC (rev 1897)
+++ trunk/po/cs.po2010-01-27 22:27:10 UTC (rev 1898)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -577,7 +577,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 
 #: ../src/collect.c:1135 ../src/collect.c:1139
 msgid "Close collection"
-msgstr "Uzavřít sbírku"
+msgstr "Uzavřít kolekci"
 
 #: ../src/collect.c:1140
 msgid ""
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -721,7 +721,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 
 #: ../src/collect-table.c:876
 msgid "Append from collection..."
-msgstr "Připojit ze sbírky..."
+msgstr "Připojit z kolekce..."
 
 #: ../src/collect-table.c:880
 msgid "_Selection"
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -764,7 +764,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 #: ../src/layout_util.c:1270 ../src/layout_util.c:1271 ../src/pan-view.c:2835
 #: ../src/search.c:1023 ../src/view_dir.c:667 ../src/view_file&lt;/pre&gt;</description>
    <dc:creator>nadvornik-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-01-27T22:27:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/832">
    <title>SF.net SVN: geeqie:[1897] trunk/po/ca.po</title>
    <link>http://comments.gmane.org/gmane.comp.gnome.apps.geeqie.scm/832</link>
    <description>&lt;pre&gt;Revision: 1897
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1897&amp;amp;view=rev
Author:   zas_
Date:     2010-01-27 19:58:11 +0000 (Wed, 27 Jan 2010)

Log Message:
-----------
Update catalan translation, by angel mompo.

Modified Paths:
--------------
    trunk/po/ca.po

Modified: trunk/po/ca.po
===================================================================
--- trunk/po/ca.po2010-01-17 13:34:48 UTC (rev 1896)
+++ trunk/po/ca.po2010-01-27 19:58:11 UTC (rev 1897)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,18 +1,17 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 # Penbwrdd yn Gymraeg.
 # Copyright (C) 2003 Free Software Foundation, Inc.
 # www.kyfieithu.co.uk, www.gyfieithu.co.uk, 2003.
-#
-#
+# angel mompo &amp;lt;mecatxis&amp;lt; at &amp;gt;ya.com&amp;gt;, 2010.
 msgid ""
 msgstr ""
 "Project-Id-Version: Geeqie 1.5.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-30 22:37+0200\n"
-"PO-Revision-Date: 2009-07-01 23:31+0200\n"
-"Last-Translator: Jordi Vilalta Prat &amp;lt;jvprat&amp;lt; at &amp;gt;gmail.com&amp;gt;\n"
-"Language-Team: catux.org &amp;lt;mecatxis&amp;lt; at &amp;gt;ya.com&amp;gt;\n"
+"POT-Creation-Date: 2010-01-27 20:56+0100\n"
+"PO-Revision-Date: 2&lt;/pre&gt;</description>
    <dc:creator>zas_-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-01-27T19:58:11</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.gnome.apps.geeqie.scm">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.gnome.apps.geeqie.scm</link>
  </textinput>
</rdf:RDF>

