/usr/lib/perl5/Gnome2/GConf/ChangeSet.pod is in libgnome2-gconf-perl 1.044-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | =head1 NAME
Gnome2::GConf::ChangeSet - A set of configuration changes to be made
=cut
=for position SYNOPSIS
=head1 SYNOPSIS
$cs = {
'/apps/someapp/some_int_key' => { type => 'int', value => 42 },
'/apps/someapp/some_string_key' => { type => 'string', value => 'hi' },
};
$reverse_cs = $client->reverse_change_set($cs);
$client->commit_change_set($cs, FALSE);
=cut
=for position DESCRIPTION
=head1 DESCRIPTION
A C<GConfChangeSet> allows you to collect a set of changes to configuration keys
(set/unset operations). You can then commit all the changes at once.
In C, C<GConfChangeSet> is an hash containing keys and C<GConfValue>s to be
committed in a single pass (though not yet with an atomic operation). Since
perl has hashes as a built-in type, C<GConfChangeSet> is threated as an hash
with the GConf keys as keys, and their relative L<Gnome2::GConf::Value> as
payload.
=cut
=for object Gnome2::GConf::ChangeSet A set of configuration changes to be made
=cut
=for see_also
=head1 SEE ALSO
L<Gnome2::GConf>(3pm), L<Gnome2::GConf::Value>(3pm).
=cut
=head1 SEE ALSO
L<Gnome2::GConf>
=cut
=head1 COPYRIGHT
Copyright (C) 2003-2006 by the gtk2-perl team.
This software is licensed under the LGPL. See L<Gnome2::GConf> for a full
notice.
=cut
|