[Xfce4-commits] r27363 - xfcalendar/trunk

2008-07-22 Thread Juha Kautto
Author: juha
Date: 2008-07-22 08:13:18 + (Tue, 22 Jul 2008)
New Revision: 27363

Modified:
   xfcalendar/trunk/configure.in.in
Log:
 new stable release 4.5.13.0



Modified: xfcalendar/trunk/configure.in.in
===
--- xfcalendar/trunk/configure.in.in2008-07-22 08:07:15 UTC (rev 27362)
+++ xfcalendar/trunk/configure.in.in2008-07-22 08:13:18 UTC (rev 27363)
@@ -9,7 +9,7 @@
 dnl
 
 dnl Version information
-m4_define([orage_version], [4.5.14.0-svn])
+m4_define([orage_version], [4.5.14.0])
 
 m4_define([gtk_minimum_version], [2.6.0])
 m4_define([xfce_minimum_version], [4.4.0])

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r27364 - xfcalendar/tags

2008-07-22 Thread Juha Kautto
Author: juha
Date: 2008-07-22 08:17:27 + (Tue, 22 Jul 2008)
New Revision: 27364

Added:
   xfcalendar/tags/orage_4_5_14/
Log:
Tag for Orage release 4.5.14

Copied: xfcalendar/tags/orage_4_5_14 (from rev 27363, xfcalendar/trunk)

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r27365 - in xarchiver/trunk: . src

2008-07-22 Thread Giuseppe Torelli
Author: colossus
Date: 2008-07-22 11:42:38 + (Tue, 22 Jul 2008)
New Revision: 27365

Modified:
   xarchiver/trunk/ChangeLog
   xarchiver/trunk/TODO
   xarchiver/trunk/src/add_dialog.c
   xarchiver/trunk/src/archive.c
   xarchiver/trunk/src/extract_dialog.c
   xarchiver/trunk/src/interface.c
   xarchiver/trunk/src/interface.h
   xarchiver/trunk/src/lha.c
   xarchiver/trunk/src/main.c
   xarchiver/trunk/src/new_dialog.c
   xarchiver/trunk/src/pref_dialog.c
   xarchiver/trunk/src/rar.c
   xarchiver/trunk/src/rar.h
   xarchiver/trunk/src/rpm.c
   xarchiver/trunk/src/window.c
   xarchiver/trunk/src/window.h
Log:
The archive comment window now allows to edit a comment and to insert it into 
the archive,zip todo yet.
Fixed missed visualization of archiver error output when using xa_run_command()
Fixed missed space in the rar extraction string.
Made the file selected status bar to be displayed only when selecting entries.
Made rar archive comment to be detected.
Made the nice Xarchiver icon to be visible when dragging from Xarchiver.
Removed Update_StatusBar() function.
Fixed some UI matters related to the status bar and menus.
Updated ChangeLog file.
Updated TODO file.


Modified: xarchiver/trunk/ChangeLog
===
--- xarchiver/trunk/ChangeLog   2008-07-22 08:17:27 UTC (rev 27364)
+++ xarchiver/trunk/ChangeLog   2008-07-22 11:42:38 UTC (rev 27365)
@@ -1,12 +1,16 @@
 Xarchiver changelog:
 
 xx/08/08 - 0.5:
-   - Archive directories can be browsed just like a file manager.
+   - Archive content can be browsed just like a file manager.
- Mime icon for each of the archive entries.
- New archive type support: lzma and tar.lzma.
+   - Archive directories can be browsed through a sidepane.
+   - Files and directories can be added into archive directories.
+   - Files can be directly opened with the registered application 
within Xarchiver.
+   - Ability to create a comment for those archives supporting it.
- Added a brand new preferences dialog to set Xarchiver's 
options.
- The add and extract dialogs layout have been redesigned.
-   - Context menu on each of the archive entries.
+   - Context menu on each of the entries with cut/copy/paste 
ability from and to archives.
- Ability to rename entries in the archives.
- The cmd-line output window now displays each archiver's 
output.
- The cmd-line output window has a close button and a better 
layout.

Modified: xarchiver/trunk/TODO
===
--- xarchiver/trunk/TODO2008-07-22 08:17:27 UTC (rev 27364)
+++ xarchiver/trunk/TODO2008-07-22 11:42:38 UTC (rev 27365)
@@ -1,4 +1,6 @@
+- fix sorting of directories before the files
 - fix store output when test archives
+- handle the matter of the password in window.c:xa_reset_password()
 - fix segfault in xa_launch_external_command
 - recurse with opendir for arj when using the switches from cmd-line
 - fix the remaining bugs in bugzilla.xfce.org

Modified: xarchiver/trunk/src/add_dialog.c
===
--- xarchiver/trunk/src/add_dialog.c2008-07-22 08:17:27 UTC (rev 27364)
+++ xarchiver/trunk/src/add_dialog.c2008-07-22 11:42:38 UTC (rev 27365)
@@ -340,6 +340,7 @@
gchar *compression_string = NULL;
gboolean done = FALSE;
GSList *list = NULL;
+   int response;
 
while ( ! done )
{

Modified: xarchiver/trunk/src/archive.c
===
--- xarchiver/trunk/src/archive.c   2008-07-22 08:17:27 UTC (rev 27364)
+++ xarchiver/trunk/src/archive.c   2008-07-22 11:42:38 UTC (rev 27365)
@@ -78,7 +78,7 @@
xa_set_button_state 
(1,1,1,1,archive-can_add,archive-can_extract,archive-has_sfx,archive-has_test,archive-has_properties);
return;
}
-   g_strfreev ( argv );
+   g_strfreev (argv);
 
if (archive-pb_source == 0)
archive-pb_source = g_timeout_add 
(350,xa_flash_led_indicator,archive);
@@ -88,16 +88,14 @@
g_slist_foreach (archive-error_output, (GFunc) g_free, NULL);
g_slist_free (archive-error_output);
archive-error_output = NULL;
+   archive-list_reversed = FALSE;
}
-   if (archive-parse_output)
-   {
-   ioc = g_io_channel_unix_new (archive-output_fd);
-   g_io_channel_set_encoding (ioc, NULL , NULL);
-   g_io_channel_set_flags ( ioc , G_IO_FLAG_NONBLOCK , NULL );
+   ioc = g_io_channel_unix_new (archive-output_fd);
+   g_io_channel_set_encoding (ioc, NULL , NULL);
+   g_io_channel_set_flags ( ioc , G_IO_FLAG_NONBLOCK , NULL );
 
-   

[Xfce4-commits] r27366 - xfwm4/trunk/themes/default

2008-07-22 Thread Olivier Fourdan
Author: olivier
Date: 2008-07-22 15:42:09 + (Tue, 22 Jul 2008)
New Revision: 27366

Modified:
   xfwm4/trunk/themes/default/themerc
Log:
Increase buttons offset

Modified: xfwm4/trunk/themes/default/themerc
===
--- xfwm4/trunk/themes/default/themerc  2008-07-22 11:42:38 UTC (rev 27365)
+++ xfwm4/trunk/themes/default/themerc  2008-07-22 15:42:09 UTC (rev 27366)
@@ -1,5 +1,5 @@
 active_text_color=#ff
-button_offset=2
+button_offset=4
 button_spacing=-1
 full_width_title=false
 maximized_offset=0

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] r27367 - in xfcalendar/trunk: . src

2008-07-22 Thread Juha Kautto
Author: juha
Date: 2008-07-22 19:59:41 + (Tue, 22 Jul 2008)
New Revision: 27367

Modified:
   xfcalendar/trunk/configure.in.in
   xfcalendar/trunk/src/parameters.c
Log:
 Fixed problem with _NL_TIME_FIRST_WEEKDAY in bsd systems,
 which do not have this variable defined at all.
 This issue was caused by fix for bug #3898.


Modified: xfcalendar/trunk/configure.in.in
===
--- xfcalendar/trunk/configure.in.in2008-07-22 15:42:09 UTC (rev 27366)
+++ xfcalendar/trunk/configure.in.in2008-07-22 19:59:41 UTC (rev 27367)
@@ -9,7 +9,7 @@
 dnl
 
 dnl Version information
-m4_define([orage_version], [4.5.14.0])
+m4_define([orage_version], [4.5.14.1-svn])
 
 m4_define([gtk_minimum_version], [2.6.0])
 m4_define([xfce_minimum_version], [4.4.0])
@@ -172,6 +172,21 @@
 esac
 AC_SUBST([PTHREAD_LIBS])
 
+dnl **
+dnl *** check if we have _NL_TIME_FIRST_WEEKDAY 
+dnl *** note that it is an enum and not a define
+dnl **
+AC_MSG_CHECKING([for _NL_TIME_FIRST_WEEKDAY])
+AC_TRY_LINK([#include langinfo.h], [
+char c;
+c = *((unsigned char *)  nl_langinfo(_NL_TIME_FIRST_WEEKDAY));
+], nl_ok=yes, nl_ok=no)
+AC_MSG_RESULT($nl_ok)
+if test $nl_ok = yes; then
+  AC_DEFINE([HAVE__NL_TIME_FIRST_WEEKDAY], [1],
+  [Define if _NL_TIME_FIRST_WEEKDAY is available])
+fi
+
 AM_CONDITIONAL([INCLUDED_LIBICAL], [test x$ac_INCLUDED_LIBICAL = xyes])
 AM_CONDITIONAL([HAVE_PTHREAD], [test x$have_pthread = xyes])
 AM_CONDITIONAL([WITH_BDB4], [test x$WITH_BDB4 = xyes])

Modified: xfcalendar/trunk/src/parameters.c
===
--- xfcalendar/trunk/src/parameters.c   2008-07-22 15:42:09 UTC (rev 27366)
+++ xfcalendar/trunk/src/parameters.c   2008-07-22 19:59:41 UTC (rev 27367)
@@ -30,7 +30,10 @@
 
 #include stdio.h
 #include locale.h
+
+#ifdef HAVE__NL_TIME_FIRST_WEEKDAY
 #include langinfo.h
+#endif
 
 #include glib.h
 #include glib/gprintf.h
@@ -129,6 +132,7 @@
  * to return 0..6 mon..sun, which is what libical uses */
 int get_first_weekday_from_locale()
 {
+#ifdef HAVE__NL_TIME_FIRST_WEEKDAY
 union { unsigned int word; char *string; } langinfo;
 int week_1stday = 0;
 int first_weekday = 1;
@@ -147,6 +151,10 @@
 orage_message(150, get_first_weekday: unknown value of 
_NL_TIME_WEEK_1STDAY.);
 
 return((week_1stday + first_weekday - 2 + 7) % 7);
+#else
+orage_message(150, get_first_weekday: Can not find first weekday. Using 
default: Monday=0. If this is wrong guess. please set undocumented parameter: 
Ical week start day (Sunday=6));
+return(0);
+#endif
 }
 
 static void dialog_response(GtkWidget *dialog, gint response_id
@@ -682,8 +690,9 @@
 
 static void create_parameter_dialog_extra_setup_tab(Itf *dialog)
 {
-GtkWidget *hbox, *vbox, *label, *event;
+GtkWidget *hbox, *vbox, *label;
 /* code removed. relying in get_first_weekday_from_locale now
+GtkWidget *event;
 gchar *weekday_array[7] = {
 _(Monday), _(Tuesday), _(Wednesday), _(Thursday)
   , _(Friday), _(Saturday), _(Sunday)};

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits