Re: [Thunar-dev] getting a plugin in the SVN version.
On Thu, 2008-07-17 at 22:55 +0200, Kees Scherpenhuijzen wrote: > Hey, > Hi > What does it take for an plugin to get implemented in the SVN version? > Are there things it needs to qualify to or > > When is an plugin really merged in the SVN version. > I'm not sure to understand what you mean. If you're asking how you can get a Goodies SVN account and then start a new plugin (or import a new one), just ask for a goodies account on this page: https://foo-projects.org/node/3?q=node/3 Otherwise, please rephrase your question. HTH -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] How to use the eject function
On Wed, 2007-12-12 at 01:18 +0100, Tino Keitel wrote: > Btw., the 4.4.2 version is missing in Bugzilla. > It's there now. -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] user manual isn't fully translated to french
On Tue, 2007-08-21 at 22:01 +0200, Adrien Grellier wrote: > > Hi, > hi > The french translation for the user manual contains some mistakes. > Here is a patch for docs/manuals/fr/Thunar.xml.in to correct some > errors. > I have committed your patch. Thanks. > I have also notice that the manual isn't fully translated to french. > May I try to translate it ? > Please, go ahead. But in the future, you should use the xfce-i18n ML for this kind of things. Cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] Sub Menu on Thunar Custom Actions
Le mercredi 22 août 2007 à 13:05 -0300, Aurélio A. Heckert a écrit : > Hi, > hi > I want to port the Nautilus SVN scripts > http://gnomefiles.org/app.php?soft_id=1059 > for the Thunar but to be useful is needed to enable sub-menu of actions. You have to create a menu as menuitem and them fill it with your sub-menu of actions. Then use this menuitem ain the MenuProvider. HTH -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
[Thunar-dev] Mocha downtime
Hi all, Tomorrow morning (CET), mocha (the server hosting the main www.xfce.org site, goodies, thunar, svn server, ...) will be shut down due to some maintenance requesting power shut down in the university building where the server is hosted. The shut down should happen around 7:45am (CET) tomorrow and hopefully mocha should get back on-line around 11am (CET). This means that www.xfce.org (the main site) and all .xfce.org sites will be unavailable during the down time. Cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] Segfault: Gtk-WARNING **: Error loading theme icon for stock: Icon 'Terminal' not present in theme
Le vendredi 18 août 2006 à 16:36 -0700, Brian Schott a écrit : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I believe I'm having the same problem. My error message: > > Gtk-WARNING **: Error loading theme icon for stock: Icon 'tap-add' not > present in theme > aborting... > Aborted It's because Thunar was compiled with --enable-debug=full (it forces a crash with encountering a g_warning) try using --enable-debug=minimum instead. -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] Thunar SVN crashes on Thunar-thunar-util.o while compiling
Le mercredi 02 août 2006 à 21:06 +0200, Maximilian Schleiss a écrit : > > > Is something wrong on my system that Thunar did not > complain about it during the autogen.sh command? I think that it's an mistake from benny too, i don't think Thunar targets Glib 2.10 anyway. Cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] Thunar SVN crashes on Thunar-thunar-util.o while compiling
Le mercredi 02 août 2006 à 19:09 +0200, Maximilian Schleiss a écrit : > Hi all, > hi > thunar-util.c: In function `thunar_util_humanize_file_time': > thunar-util.c:81: warning: implicit declaration of function > `g_date_set_time_t' Looks like you haven't GLib 2.10 installed. Cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] show total directory sizes?
Le jeudi 23 mars 2006 à 12:09 +0100, Benedikt Meurer a écrit : > It should be a simple job, which uses one or more threads to determine > the size of a directory using opendir(), readdir(), closedir() and lstat(). You can start with the xfburn code (taken from gnomebaker in fact). I'm sure you'll find ways to improve it. guint64 xfburn_calc_dirsize (const gchar * dirname) { /* copied from GnomeBaker */ guint64 size = 0; GDir *dir = g_dir_open (dirname, 0, NULL); if (dir != NULL) { const gchar *name = g_dir_read_name (dir); while (name != NULL) { /* build up the full path to the name */ gchar *fullname = g_build_filename (dirname, name, NULL); struct stat s; if (stat (fullname, &s) == 0) { /* see if the name is actually a directory or a regular file */ if (s.st_mode & S_IFDIR) size += (guint64) s.st_size + xfburn_calc_dirsize (fullname); else if (s.st_mode & S_IFREG) size += (guint64) s.st_size; } g_free (fullname); name = g_dir_read_name (dir); } g_dir_close (dir); } return size; } cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] Thunar 0.1.4 and libexo 0.3.1.1 pre-alpha releases
Le lundi 14 novembre 2005 à 18:52 +0100, Benedikt Meurer a écrit : > Two months late, there's the first pre-alpha release of Thunar (together > with the required libexo package). As the name suggests, I don't > consider this alpha quality yet. The basic stuff is there, but its by no > means feature complete, and there are still some optimizations to come. > This release is intented for early testing, for people that don't > already live on the cutting edge and for packagers, that don't want to > provide SVN snapshots. great job benny, i wish i have more spare time to help you cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] New around here
Le jeudi 27 octobre 2005 à 13:11 +0200, Benedikt Meurer a écrit : > Yep, and I'm pretty sure I've tried that temp. password and it didn't work. it didn't work the first time, Auke had messed something; then he sent another mail to say everything was working right again and i could change my password cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: Ceci est une partie de message numériquement signée ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] compilation error
Le samedi 06 août 2005 à 18:49 +0200, Benedikt Meurer a écrit : > Benedikt Meurer wrote: > > A quick check on espresso tells me that POSIX_MADV_* is defined in > > bits/mman.h, which is included in sys/mman.h. Maybe your system is b0rked? > > I spoke up too early. The posix defines are only visible if > __USE_XOPEN2K is defined i saw that too in sys/mman.h but when i defined it before the #include it didn't work :-s > I added some magic to configure.in.in which should make it > work with glibc. Please check. your magic works fine here now :) cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
Re: [Thunar-dev] compilation error
i forgot to say that HAVE_POSIX_MADVISE was define but it couldn't find posix_madvise ... Le samedi 06 août 2005 à 18:05 +0200, Jean-François Wauthy a écrit : > Hey benny > > i just tried to compile lastest svn thunar and got that error: > > thunar-vfs-mime-cache.c: In function `thunar_vfs_mime_cache_new': > thunar-vfs-mime-cache.c:487: warning: implicit declaration of function > `posix_madvise' > thunar-vfs-mime-cache.c:487: error: `POSIX_MADV_WILLNEED' undeclared > (first use in this function) > thunar-vfs-mime-cache.c:487: error: (Each undeclared identifier is > reported only once > thunar-vfs-mime-cache.c:487: error: for each function it appears in.) > make[1]: *** [libthunar_vfs_la-thunar-vfs-mime-cache.lo] Erreur 1 > make[1]: Leaving directory `/home/jf/Xfce/SVN/thunar/trunk/thunar-vfs' > make: *** [all] Erreur 2 > > using the attached patch solved it but i don't know enough about posix > functions to be sure it's correct... > cheers > > ___ > Thunar-dev mailing list > Thunar-dev@xfce.org > http://foo-projects.org/mailman/listinfo/thunar-dev -- Jean-François Wauthy <[EMAIL PROTECTED]> signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev
[Thunar-dev] compilation error
Hey benny i just tried to compile lastest svn thunar and got that error: thunar-vfs-mime-cache.c: In function `thunar_vfs_mime_cache_new': thunar-vfs-mime-cache.c:487: warning: implicit declaration of function `posix_madvise' thunar-vfs-mime-cache.c:487: error: `POSIX_MADV_WILLNEED' undeclared (first use in this function) thunar-vfs-mime-cache.c:487: error: (Each undeclared identifier is reported only once thunar-vfs-mime-cache.c:487: error: for each function it appears in.) make[1]: *** [libthunar_vfs_la-thunar-vfs-mime-cache.lo] Erreur 1 make[1]: Leaving directory `/home/jf/Xfce/SVN/thunar/trunk/thunar-vfs' make: *** [all] Erreur 2 using the attached patch solved it but i don't know enough about posix functions to be sure it's correct... cheers -- Jean-François Wauthy <[EMAIL PROTECTED]> Index: thunar-vfs/thunar-vfs-mime-cache.c === --- thunar-vfs/thunar-vfs-mime-cache.c (révision 16477) +++ thunar-vfs/thunar-vfs-mime-cache.c (copie de travail) @@ -483,9 +483,7 @@ cache->bufsize = stat.st_size; /* tell the system that we'll use this buffer quite often */ -#ifdef HAVE_POSIX_MADVISE - posix_madvise (buffer, stat.st_size, POSIX_MADV_WILLNEED); -#endif + madvise (buffer, stat.st_size, MADV_WILLNEED); /* cleanup */ done: signature.asc Description: This is a digitally signed message part ___ Thunar-dev mailing list Thunar-dev@xfce.org http://foo-projects.org/mailman/listinfo/thunar-dev