~ubuntu-branches/ubuntu/oneiric/avant-window-navigator/oneiric

« back to all changes in this revision

Viewing changes to awn-applet-activation/main.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2009-01-19 19:35:52 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090119193552-6briat37meu8bar8
Tags: 0.3.2-0ubuntu1
* New upstream release (Closes : #514681) (LP: #327443)
 - Add a script to delay the start of awn when using the autostart. 
   (Closes: #493640)
 - Fix awn-manager permission when trying to edit some desktop file 
  (LP: #260987)
 - Update position on screen resolution changes (LP: #276734)
* debian/awn.wrapper
 - A script to update applets path using awn-applets-migration script.
* debian/*.install: 
 - Add the themes directory to avant-window-navigator-data.install.
 - Add awn-autostart to avant-window-navigator.install.
 - Add awn-applets-migration to awn-manager.install.
 - Remove usr/bin/avant-window-navigator, handle by debian/rules.
 - Install python bindings in *-packages instead of site-packages only, 
   needed for the python migration in squeeze (LP: #335785).
* debian/control:
 - Add missing ${misc:Depends}.
 - Bump Build-Depends and Depends for vala to (>= 0.5.4).
 - Set awn-manager as Depends rather than Recommends, needed by the 
   awn-applets-migration script.
 - Remove unnecessary "Section: gnome"
 - Note that the libawn0-dbg contains debuggins symbols.
 - Set Build-Depends on python (>= 2.5) instead of hardcoding the python 
   version.
* debian/awn-autostart.1 & debian/awn-applets-migrations:
 - Add new man pages.
* debian/avant-window-navigator.links
 - Symlink awn.1 with avant-window-navigator.1
* debian/rules:
 - Move avant-window-navigator to awn, and copy awn.wrapper to 
   avant-window-navigator
 - Add new man pages.
* debian/patches/
 - 00-wm-behavior.patch : Don't bring the windows to the current workspace 
   when the icon of the bar is clicked. Keep the same behavior that the 
   gnome-panel applet.
 - 01-tasks-have-arrow.patch: Set the option "Tasks have arrow" by default.
 - 03-python-import.path : Update.
* debian/copyright
 - Replace (C) by ©.

Show diffs side-by-side

added added

removed removed

Lines of Context:
243
243
  if (module == NULL)
244
244
  {
245
245
    g_warning("Unable to load module %s\n", path);
246
 
    g_warning(g_module_error());
 
246
    g_warning("%s", g_module_error());
247
247
    return NULL;
248
248
  }
249
249
 
325
325
  }
326
326
 
327
327
 
328
 
  cmd = g_strdup_printf("python %s --uid=%s --window=%lld --orient=%d "
329
 
 
330
 
                        "--height=%d",
 
328
  cmd = g_strdup_printf("python %s --uid=%s --window=%" G_GINT64_FORMAT " "
 
329
                        " --orient=%d --height=%d",
331
330
                        exec, uid, window, orient, height);
332
331
  g_spawn_command_line_async(cmd, &err);
333
332
 
334
333
  if (err)
335
334
  {
336
 
    g_warning(err->message);
 
335
    g_warning("%s", err->message);
337
336
    g_error_free(err);
338
337
  }
339
338