Matthias Clasen wrote: > Here is my recommendation for goals to 'adopt': > GnomeGoals/GSettingsMigration > GnomeGoals/XDGConfigFolders - these 2 are actively being worked on, > and we should just push for completion instead of dragging it out > > GnomeGoals/PortToGtkApplication > GnomeGoals/PortToGMenu - these 2 are important for making our app > story come together > > GnomeGoals/RemoveMarkupInMessages - because it is nice to have some > goal that involves non-developers, and because it is easy, concrete > and useful
I'm fine with those; I'll try to get some automated reports for those; if anybody wants to help with this, be my guest, it's really easy, it's just a matter of writing a script inspecting a module sources to determine if it's relevant, or not. For example http://people.gnome.org/~fpeters/reports/dbus-glib.html is built with a script that is basically this one: import os, sys if os.path.exists('configure.ac'): configure = file('configure.ac').read() elif os.path.exists('configure.in'): configure = file('configure.in').read() else: sys.exit(0) if 'dbus-glib-1' in configure: print 'this module uses dbus-glib-1' Also there are also some facilities for checking source code for given symbols, for reports like this one, checking for G_CONST_RETURN usage: http://people.gnome.org/~fpeters/reports/g_const_return.html And there is support for taking lists of bug numbers or false positives out of a wiki page. Fred _______________________________________________ [email protected] http://mail.gnome.org/mailman/listinfo/release-team Release-team lurker? Do NOT participate in discussions.
