# # # patch "lib/Monotone/AutomateStdio.pm" # from [908c8575e7de8d5d6ed8cd95b83d2ac9cf87b238] # to [556c956992d8b6596f233648433a539bb0b9564c] # # patch "lib/Monotone/AutomateStdio.pod" # from [0881096a69bf8d22be25345c4e72138f94f7fe3e] # to [d6b23f43e56230be9419667c4d8e6d65fadd5d9e] # # patch "mtn-tester" # from [831db95aed5538e23a560889a717a799edc19f94] # to [0e8b678d38af8b8a7d3a7d679743f52ba47c79e9] # # patch "mtn-tester-results.log" # from [d3559e20138334fdb1c8142d1089738ebb7df338] # to [6207405df045c9eb7f3d8a0b2a6bb34774bbbd15] # ============================================================ --- lib/Monotone/AutomateStdio.pm 908c8575e7de8d5d6ed8cd95b83d2ac9cf87b238 +++ lib/Monotone/AutomateStdio.pm 556c956992d8b6596f233648433a539bb0b9564c @@ -73,27 +73,29 @@ use constant MTN_COMMON_KEY_HASH # may not provide depending upon its version. use constant MTN_COMMON_KEY_HASH => 0; -use constant MTN_DB_GET => 1; -use constant MTN_DROP_ATTRIBUTE => 2; -use constant MTN_DROP_DB_VARIABLES => 3; -use constant MTN_FILE_MERGE => 4; -use constant MTN_GET_ATTRIBUTES => 5; -use constant MTN_GET_CURRENT_REVISION => 6; -use constant MTN_GET_DB_VARIABLES => 7; -use constant MTN_GET_WORKSPACE_ROOT => 8; -use constant MTN_IGNORING_OF_SUSPEND_CERTS => 9; -use constant MTN_INVENTORY_IN_IO_STANZA_FORMAT => 10; -use constant MTN_INVENTORY_TAKING_OPTIONS => 11; -use constant MTN_INVENTORY_WITH_BIRTH_ID => 12; -use constant MTN_LUA => 13; -use constant MTN_M_SELECTOR => 14; -use constant MTN_P_SELECTOR => 15; -use constant MTN_READ_PACKETS => 16; -use constant MTN_SET_ATTRIBUTE => 17; -use constant MTN_SET_DB_VARIABLE => 18; -use constant MTN_SHOW_CONFLICTS => 19; -use constant MTN_U_SELECTOR => 20; -use constant MTN_W_SELECTOR => 21; +use constant MTN_CONTENT_DIFF_EXTRA_OPTIONS => 1; +use constant MTN_DB_GET => 2; +use constant MTN_DROP_ATTRIBUTE => 3; +use constant MTN_DROP_DB_VARIABLES => 4; +use constant MTN_FILE_MERGE => 5; +use constant MTN_GET_ATTRIBUTES => 6; +use constant MTN_GET_CURRENT_REVISION => 7; +use constant MTN_GET_DB_VARIABLES => 8; +use constant MTN_GET_WORKSPACE_ROOT => 9; +use constant MTN_HASHED_SIGNATURES => 10; +use constant MTN_IGNORING_OF_SUSPEND_CERTS => 11; +use constant MTN_INVENTORY_IN_IO_STANZA_FORMAT => 12; +use constant MTN_INVENTORY_TAKING_OPTIONS => 13; +use constant MTN_INVENTORY_WITH_BIRTH_ID => 14; +use constant MTN_LUA => 15; +use constant MTN_M_SELECTOR => 16; +use constant MTN_P_SELECTOR => 17; +use constant MTN_READ_PACKETS => 18; +use constant MTN_SET_ATTRIBUTE => 19; +use constant MTN_SET_DB_VARIABLE => 20; +use constant MTN_SHOW_CONFLICTS => 21; +use constant MTN_U_SELECTOR => 22; +use constant MTN_W_SELECTOR => 23; # Constants used to represent the different error levels. @@ -139,13 +141,15 @@ my %valid_mtn_options = ("--confdir" # Maps for quickly detecting valid keys and determining their value types. -my %certs_keys = ("key" => STRING, +my %certs_keys = ("key" => HEX_ID | STRING, "name" => STRING, "signature" => STRING, "trust" => STRING_ENUM, "value" => STRING); -my %genkey_keys = ("name" => STRING, +my %genkey_keys = ("given_name" => STRING, "hash" => HEX_ID, + "local_name" => STRING, + "name" => STRING, "public_hash" => HEX_ID, "private_hash" => HEX_ID, "public_location" => STRING_LIST, @@ -189,6 +193,7 @@ my %show_conflicts_keys = ("ancestor" "attr_name" => STRING, "conflict" => BARE_PHRASE, "left" => HEX_ID, + "left_attr_state" => STRING, "left_attr_value" => STRING, "left_file_id" => HEX_ID, "left_name" => STRING, @@ -204,7 +209,7 @@ my %tags_keys = ("branches" => NUL my %tags_keys = ("branches" => NULL | STRING_LIST, "format_version" => STRING_ENUM, "revision" => HEX_ID, - "signer" => STRING, + "signer" => HEX_ID | STRING, "tag" => STRING); # Flag for determining whether the mtn subprocess should be started in a @@ -337,6 +342,7 @@ our %EXPORT_TAGS = (capabilities => [qw( use base qw(Exporter); our %EXPORT_TAGS = (capabilities => [qw(MTN_COMMON_KEY_HASH + MTN_CONTENT_DIFF_EXTRA_OPTIONS MTN_DB_GET MTN_DROP_ATTRIBUTE MTN_DROP_DB_VARIABLES @@ -345,6 +351,7 @@ our %EXPORT_TAGS = (capabilities => [qw( MTN_GET_CURRENT_REVISION MTN_GET_DB_VARIABLES MTN_GET_WORKSPACE_ROOT + MTN_HASHED_SIGNATURES MTN_IGNORING_OF_SUSPEND_CERTS MTN_INVENTORY_IN_IO_STANZA_FORMAT MTN_INVENTORY_TAKING_OPTIONS @@ -394,7 +401,7 @@ sub new_from_db($;$$) shift(); my $db_name = (ref($_[0]) eq "ARRAY") ? undef : shift(); my $options = shift(); - $options = [] if (! defined($options)); + $options = [] unless (defined($options)); my($db, $this, @@ -457,7 +464,7 @@ sub new_from_ws($;$$) shift(); my $ws_path = (ref($_[0]) eq "ARRAY") ? undef : shift(); my $options = shift(); - $options = [] if (! defined($options)); + $options = [] unless (defined($options)); my($db_name, $this); @@ -814,13 +821,22 @@ sub content_diff($$;$$$@) { for (my $i = 0; $i < scalar(@$options); ++ $i) { - push(@opts, {key => $$options[$i], value => $$options[++ $i]}); + if ($$options[$i] eq "reverse" + || $$options[$i] eq "with-header" + || $$options[$i] eq "without-header") + { + push(@opts, {key => $$options[$i], value => ""}); + } + else + { + push(@opts, {key => $$options[$i], value => $$options[++ $i]}); + } } } push(@opts, {key => "r", value => $revision_id1}) - unless (! defined($revision_id1)); + if (defined($revision_id1)); push(@opts, {key => "r", value => $revision_id2}) - unless (! defined($revision_id2)); + if (defined($revision_id2)); return $this->mtn_command_with_options("content_diff", 1, @@ -1568,7 +1584,7 @@ sub get_file_of($$$;$) my @opts; push(@opts, {key => "r", value => $revision_id}) - unless (! defined($revision_id)); + if (defined($revision_id)); return $this->mtn_command_with_options("get_file_of", 1, @@ -2108,13 +2124,29 @@ sub keys($$) { my($i, - @lines); + @lines, + @valid_fields); if (! $this->mtn_command("keys", 0, 1, address@hidden)) { return; } + # Build up a list of valid fields depending upon the version of + # Monotone in use. + + push(@valid_fields, "given_name", "local_name") + if ($this->supports(MTN_HASHED_SIGNATURES)); + if ($this->supports(MTN_COMMON_KEY_HASH)) + { + push(@valid_fields, "hash"); + } + else + { + push(@valid_fields, "public_hash"); + } + push(@valid_fields, "public_location"); + # Reformat the data into a structured array. for ($i = 0, @$ref = (); $i < scalar(@lines); ++ $i) @@ -2130,10 +2162,7 @@ sub keys($$) # Validate it in terms of expected fields and store. - foreach my $key ("name", - ($this->supports(MTN_COMMON_KEY_HASH) - ? "hash" : "public_hash"), - "public_location") + foreach my $key (@valid_fields) { &$croaker("Corrupt keys list, expected " . $key . " field but didn't find it") @@ -3425,7 +3454,8 @@ sub supports($$) return 1 if ($this->{mtn_aif_major} >= 8); } - elsif ($feature == MTN_FILE_MERGE + elsif ($feature == MTN_CONTENT_DIFF_EXTRA_OPTIONS + || $feature == MTN_FILE_MERGE || $feature == MTN_LUA || $feature == MTN_READ_PACKETS) { @@ -3453,6 +3483,14 @@ sub supports($$) return 1 if ($this->{mtn_aif_major} >= 10); } + elsif ($feature == MTN_HASHED_SIGNATURES) + { + + # These are only available from version 0.45 (i/f version 11.x). + + return 1 if ($this->{mtn_aif_major} >= 11); + + } else { @@ -3932,8 +3970,8 @@ sub mtn_command_with_options($$$$$$;@) } # If the output is to be returned as an array of lines as against one lump - # then we need to use read the output into a temporary buffer before - # breaking it up into lines. + # then we need to read the output into a temporary buffer before breaking + # it up into lines. if (ref($ref) eq "SCALAR") { ============================================================ --- lib/Monotone/AutomateStdio.pod 0881096a69bf8d22be25345c4e72138f94f7fe3e +++ lib/Monotone/AutomateStdio.pod d6b23f43e56230be9419667c4d8e6d65fadd5d9e @@ -36,7 +36,7 @@ are supported by this class range from 0 All automate commands have been implemented in this class except for the `stdio' command, hopefully the reason is obvious :-). Versions of Monotone that are supported by this class range from 0.35 up to and including the latest -version (currently 0.44). If you happen to be using a newer version of Monotone +version (currently 0.45). If you happen to be using a newer version of Monotone then this class will hopefully largely work but without the support for new or changed features. @@ -275,7 +275,10 @@ each one containing the following fields address@hidden is passed then the output is returned as a list of anonymous hashes, each one containing the following fields: - key - The signer of the cert. + key - The signer of the cert. Prior to version 0.45 of + Monotone this was in the form of typically an email + address. From version 0.45 onwards this is now a + hash. (feature: MTN_HASHED_SIGNATURES) signature - Signer status. Values can be one of "ok", "bad" or "unknown". name - The cert name. @@ -309,11 +312,13 @@ arguments. For example, one could call t The $options argument is a list of valid options, with some having arguments. For example, one could call this method specifying all of the -options like this: +options like this (feature: MTN_CONTENT_DIFF_EXTRA_OPTIONS): $mtn->content_diff(address@hidden, ["depth" => 1, - "exclude" => "work.cc"], + "exclude" => "work.cc", + "reverse", + "with-header"], "unix"); =item B<$mtn-Edb_get(\$buffer, $domain, $name)> @@ -642,9 +647,9 @@ each one containing one or more of the f changes - A list of change flags. Values can be one of "attrs" or "content". - Please note that some fields are not used by all entries, - in which case they are not present (use Perl's exists() - function to determine their presence and not defined()). +Please note that some fields are not used by all entries, in which case they +are not present (use Perl's exists() function to determine their presence and +not defined()). The $options argument is a list of valid options, with some having arguments. For example, one could call this method specifying all of the @@ -678,8 +683,7 @@ containing the following fields: "keystore". This field is only present if there is a private key. - From version 0.44 of Monotone onwards - (feature: MTN_COMMON_KEY_HASH): + Version 0.44 of Monotone (feature: MTN_COMMON_KEY_HASH): name - The name of the key. hash - The hash code (both public and private). public_locations - A list of locations for the public hash @@ -690,10 +694,25 @@ containing the following fields: "keystore". This field is only present if there is a private key. - Please note that some fields are not used by all entries, - in which case they are not present (use Perl's exists() - function to determine their presence and not defined()). + From version 0.45 of Monotone onwards + (feature: MTN_HASHED_SIGNATURES): + given_name - The name of the key as given when it was + created. + hash - The hash code (both public and private). + local_name - The local name of the key as returned by + the get_local_key_name() hook. + public_locations - A list of locations for the public hash + code. Values can be one of "database" or + "keystore". + private_locations - A list of locations for the private hash + code. Values can be one of "database" or + "keystore". This field is only present if + there is a private key. +Please note that some fields are not used by all entries, in which case they +are not present (use Perl's exists() function to determine their presence and +not defined()). + =item B<$mtn-Eleaves(address@hidden)> Get a list of leaf revisions. @@ -834,9 +853,9 @@ or more of the following fields: directory in the left revision. Values are as documented for left_type. - Please note that some fields are not used by all entries, in - which case they are not present (use Perl's exists() function - to determine their presence and not defined()). +Please note that some fields are not used by all entries, in which case they +are not present (use Perl's exists() function to determine their presence and +not defined()). (feature: MTN_SHOW_CONFLICTS) @@ -846,6 +865,7 @@ that is currently being used by this obj that is currently being used by this object. The list of valid features are: MTN_COMMON_KEY_HASH + MTN_CONTENT_DIFF_EXTRA_OPTIONS MTN_DB_GET MTN_DROP_ATTRIBUTE MTN_DROP_DB_VARIABLES @@ -854,6 +874,7 @@ that is currently being used by this obj MTN_GET_CURRENT_REVISION MTN_GET_DB_VARIABLES MTN_GET_WORKSPACE_ROOT + MTN_HASHED_SIGNATURES MTN_IGNORING_OF_SUSPEND_CERTS MTN_INVENTORY_IN_IO_STANZA_FORMAT MTN_INVENTORY_TAKING_OPTIONS @@ -887,7 +908,10 @@ anonymous hashes, each one containing th tag - The name of the tag. revision_id - The id of a revision that the tag is attached to. - signer - The name of the key used to sign the tag cert. + signer - The signer of the tag. Prior to version 0.45 of + Monotone this was in the form of typically an email + address. From version 0.45 onwards this is now a + hash. (feature: MTN_HASHED_SIGNATURES) branches - A list of all branches that contain this revision. =item B<$mtn-Etoposort(address@hidden, $revision_id ...])> ============================================================ --- mtn-tester 831db95aed5538e23a560889a717a799edc19f94 +++ mtn-tester 0e8b678d38af8b8a7d3a7d679743f52ba47c79e9 @@ -102,6 +102,15 @@ my @test_list = "9b264ec9247ce99cd1fdc5293e869c1a60b01c4c", "f06e40cb1d2b4f5c0db387e7a6c37681f1f89294"]}, + {fn => \&Monotone::AutomateStdio::content_diff, + desc => "content_diff (file - options excluding options.cc)", + feat => MTN_CONTENT_DIFF_EXTRA_OPTIONS, + type => RAW, + args => [[exclude => "options.cc", + "with-header"], + "9b264ec9247ce99cd1fdc5293e869c1a60b01c4c", + "f06e40cb1d2b4f5c0db387e7a6c37681f1f89294"]}, + {fn => \&Monotone::AutomateStdio::db_get, desc => "db_get", feat => MTN_DB_GET, ============================================================ --- mtn-tester-results.log d3559e20138334fdb1c8142d1089738ebb7df338 +++ mtn-tester-results.log 6207405df045c9eb7f3d8a0b2a6bb34774bbbd15 @@ -8379,7 +8379,6 @@ $VAR1 = [ 'net.venge.monotone-viz.debian-diff', 'net.venge.monotone-viz.git', 'net.venge.monotone.asio', - 'net.venge.monotone.auto-regen-caches', 'net.venge.monotone.automate-netsync', 'net.venge.monotone.automate-select.sort-limit', 'net.venge.monotone.automate-stdio-ticker', @@ -8499,19 +8498,19 @@ Added the daleks cert Added the daleks cert ========== certs ========== ---------- Raw Data ---------- - key "address@hidden" + key [7fe029d85af4de40700778b9784ef488fac2c79c] signature "ok" name "author" value "address@hidden" trust "trusted" - key "address@hidden" + key [7fe029d85af4de40700778b9784ef488fac2c79c] signature "ok" name "branch" value "net.venge.monotone.contrib.lib.automate-stdio.test" trust "trusted" - key "address@hidden" + key [7fe029d85af4de40700778b9784ef488fac2c79c] signature "ok" name "changelog" value "This is a test branch for the Monotone::AutomateStdio Perl library. Please do @@ -8519,13 +8518,13 @@ not use. " trust "trusted" - key "address@hidden" + key [7fe029d85af4de40700778b9784ef488fac2c79c] signature "ok" name "daleks" value "exterminate!" trust "trusted" - key "address@hidden" + key [7fe029d85af4de40700778b9784ef488fac2c79c] signature "ok" name "date" value "2008-10-05T17:34:54" @@ -8537,14 +8536,14 @@ $VAR1 = [ 'value' => 'address@hidden', 'trust' => 'trusted', 'name' => 'author', - 'key' => 'address@hidden' + 'key' => '7fe029d85af4de40700778b9784ef488fac2c79c' }, { 'signature' => 'ok', 'value' => 'net.venge.monotone.contrib.lib.automate-stdio.test', 'trust' => 'trusted', 'name' => 'branch', - 'key' => 'address@hidden' + 'key' => '7fe029d85af4de40700778b9784ef488fac2c79c' }, { 'signature' => 'ok', @@ -8553,21 +8552,21 @@ not use. ', 'trust' => 'trusted', 'name' => 'changelog', - 'key' => 'address@hidden' + 'key' => '7fe029d85af4de40700778b9784ef488fac2c79c' }, { 'signature' => 'ok', 'value' => 'exterminate!', 'trust' => 'trusted', 'name' => 'daleks', - 'key' => 'address@hidden' + 'key' => '7fe029d85af4de40700778b9784ef488fac2c79c' }, { 'signature' => 'ok', 'value' => '2008-10-05T17:34:54', 'trust' => 'trusted', 'name' => 'date', - 'key' => 'address@hidden' + 'key' => '7fe029d85af4de40700778b9784ef488fac2c79c' } ]; ========== children ========== @@ -18017,6 +18016,600 @@ $VAR1 = [ MOST_SOURCES = \ $(SANITY_CORE_SOURCES) $(LUAEXT_SOURCES) platform-wrapped.hh \ rev_types.hh mtn-sanity.cc mtn-sanity.hh ui.cc ui.hh \ + ========== content_diff (file - options excluding options.cc) ========== +# +# +# delete "platform.hh" +# +# rename "work.cc" +# to "play.cc" +# +# add_dir "freddy" +# +# add_file "DO-NOT-USE" +# content [da39a3ee5e6b4b0d3255bfef95601890afd80709] +# +# add_file "README-FIRST" +# content [fa4a0466d6c105cf3984af5fe3416c3097452be5] +# +# add_file "script1" +# content [cd89bae8485ee5a3532bb35c764ef43239098af8] +# +# add_file "script2" +# content [cd89bae8485ee5a3532bb35c764ef43239098af8] +# +# add_file "snowdonia.jpg" +# content [2e6af07cbdfbe438adae01ba278a0e7d0eb1c5c8] +# +# add_file "snowdonia.xcf" +# content [fa7079a79ac61b8e41d3932c35875534d69e8ed8] +# +# patch "COPYING" +# from [06877624ea5c77efe3b7e39b0f909eda6e25a4ec] +# to [7d7e3bd4448ca5450c1a211675734ed6a5eae18a] +# +# patch "Makefile.am" +# from [1fb3c2eee0fbdba632764b1eaa1aa61c5596665a] +# to [c6683758c43674944b3d11c383007bd74f4ab043] +# +# set "script2" +# attr "mtn:execute" +# value "true" +# +# set "snowdonia.jpg" +# attr "mtn:manual_merge" +# value "true" +# +# set "snowdonia.xcf" +# attr "mtn:gimp-native-format" +# value "true" +# +# set "snowdonia.xcf" +# attr "mtn:manual_merge" +# value "true" +# +============================================================ +--- DO-NOT-USE da39a3ee5e6b4b0d3255bfef95601890afd80709 ++++ DO-NOT-USE da39a3ee5e6b4b0d3255bfef95601890afd80709 +============================================================ +--- README-FIRST fa4a0466d6c105cf3984af5fe3416c3097452be5 ++++ README-FIRST fa4a0466d6c105cf3984af5fe3416c3097452be5 +@@ -0,0 +1,5 @@ ++This is a test branch for the Monotone::AutomateStdio Perl library. This branch ++is branched off from Monotone version 0.41 and contains random changes in order ++to exercise specific bits of the automate stdio interface and the ++Monotone::AutomateStdio library. This branch must in no way ever be merged back ++to the main Monotone branch. +============================================================ +--- script1 cd89bae8485ee5a3532bb35c764ef43239098af8 ++++ script1 cd89bae8485ee5a3532bb35c764ef43239098af8 +@@ -0,0 +1,3 @@ ++#!/bin/sh ++ls -la ++exit 0 +============================================================ +--- script2 cd89bae8485ee5a3532bb35c764ef43239098af8 ++++ script2 cd89bae8485ee5a3532bb35c764ef43239098af8 +@@ -0,0 +1,3 @@ ++#!/bin/sh ++ls -la ++exit 0 +============================================================ +# snowdonia.jpg is binary +============================================================ +# snowdonia.xcf is binary +============================================================ +--- COPYING 06877624ea5c77efe3b7e39b0f909eda6e25a4ec ++++ COPYING 7d7e3bd4448ca5450c1a211675734ed6a5eae18a +@@ -1,8 +1,8 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + +- Copyright (C) 1989, 1991 Free Software Foundation, Inc., +- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ++ Copyright (C) 1989, 1991 Free Software Foundation, Inc. ++ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +@@ -15,7 +15,7 @@ using it. (Some other Free Software Fou + General Public License applies to most of the Free Software + Foundation's software and to any other program whose authors commit to + using it. (Some other Free Software Foundation software is covered by +-the GNU Lesser General Public License instead.) You can apply it to ++the GNU Library General Public License instead.) You can apply it to + your programs, too. + + When we speak of free software, we are referring to freedom, not +@@ -55,7 +55,7 @@ modification follow. + + The precise terms and conditions for copying, distribution and + modification follow. +- ++ + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +@@ -110,7 +110,7 @@ above, provided that you also meet all o + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) +- ++ + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Program, + and can be reasonably considered independent and separate works in +@@ -168,7 +168,7 @@ compelled to copy the source along with + access to copy the source code from the same place counts as + distribution of the source code, even though third parties are not + compelled to copy the source along with the object code. +- ++ + 4. You may not copy, modify, sublicense, or distribute the Program + except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense or distribute the Program is +@@ -225,7 +225,7 @@ be a consequence of the rest of this Lic + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. +- ++ + 8. If the distribution and/or use of the Program is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Program under this License +@@ -278,7 +278,7 @@ POSSIBILITY OF SUCH DAMAGES. + POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS +- ++ + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +@@ -303,16 +303,17 @@ the "copyright" line and a pointer to wh + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + +- You should have received a copy of the GNU General Public License along +- with this program; if not, write to the Free Software Foundation, Inc., +- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, write to the Free Software ++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + ++ + Also add information on how to contact you by electronic and paper mail. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + +- Gnomovision version 69, Copyright (C) year name of author ++ Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. +@@ -335,5 +336,389 @@ consider it more useful to permit linkin + This General Public License does not permit incorporating your program into + proprietary programs. If your program is a subroutine library, you may + consider it more useful to permit linking proprietary applications with the +-library. If this is what you want to do, use the GNU Lesser General ++library. If this is what you want to do, use the GNU Library General + Public License instead of this License. ++ ++ ++GNU Free Documentation License ++****************************** ++ ++ Version 1.1, March 2000 ++ Copyright (C) 2000 Free Software Foundation, Inc. ++ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ++ ++ Everyone is permitted to copy and distribute verbatim copies ++ of this license document, but changing it is not allowed. ++ ++ 0. PREAMBLE ++ ++ The purpose of this License is to make a manual, textbook, or other ++ written document "free" in the sense of freedom: to assure everyone ++ the effective freedom to copy and redistribute it, with or without ++ modifying it, either commercially or noncommercially. Secondarily, ++ this License preserves for the author and publisher a way to get ++ credit for their work, while not being considered responsible for ++ modifications made by others. ++ ++ This License is a kind of "copyleft", which means that derivative ++ works of the document must themselves be free in the same sense. ++ It complements the GNU General Public License, which is a copyleft ++ license designed for free software. ++ ++ We have designed this License in order to use it for manuals for ++ free software, because free software needs free documentation: a ++ free program should come with manuals providing the same freedoms ++ that the software does. But this License is not limited to ++ software manuals; it can be used for any textual work, regardless ++ of subject matter or whether it is published as a printed book. ++ We recommend this License principally for works whose purpose is ++ instruction or reference. ++ ++ 1. APPLICABILITY AND DEFINITIONS ++ ++ This License applies to any manual or other work that contains a ++ notice placed by the copyright holder saying it can be distributed ++ under the terms of this License. The "Document", below, refers to ++ any such manual or work. Any member of the public is a licensee, ++ and is addressed as "you". ++ ++ A "Modified Version" of the Document means any work containing the ++ Document or a portion of it, either copied verbatim, or with ++ modifications and/or translated into another language. ++ ++ A "Secondary Section" is a named appendix or a front-matter ++ section of the Document that deals exclusively with the ++ relationship of the publishers or authors of the Document to the ++ Document's overall subject (or to related matters) and contains ++ nothing that could fall directly within that overall subject. ++ (For example, if the Document is in part a textbook of ++ mathematics, a Secondary Section may not explain any mathematics.) ++ The relationship could be a matter of historical connection with ++ the subject or with related matters, or of legal, commercial, ++ philosophical, ethical or political position regarding them. ++ ++ The "Invariant Sections" are certain Secondary Sections whose ++ titles are designated, as being those of Invariant Sections, in ++ the notice that says that the Document is released under this ++ License. ++ ++ The "Cover Texts" are certain short passages of text that are ++ listed, as Front-Cover Texts or Back-Cover Texts, in the notice ++ that says that the Document is released under this License. ++ ++ A "Transparent" copy of the Document means a machine-readable copy, ++ represented in a format whose specification is available to the ++ general public, whose contents can be viewed and edited directly ++ and straightforwardly with generic text editors or (for images ++ composed of pixels) generic paint programs or (for drawings) some ++ widely available drawing editor, and that is suitable for input to ++ text formatters or for automatic translation to a variety of ++ formats suitable for input to text formatters. A copy made in an ++ otherwise Transparent file format whose markup has been designed ++ to thwart or discourage subsequent modification by readers is not ++ Transparent. A copy that is not "Transparent" is called "Opaque". ++ ++ Examples of suitable formats for Transparent copies include plain ++ ASCII without markup, Texinfo input format, LaTeX input format, ++ SGML or XML using a publicly available DTD, and ++ standard-conforming simple HTML designed for human modification. ++ Opaque formats include PostScript, PDF, proprietary formats that ++ can be read and edited only by proprietary word processors, SGML ++ or XML for which the DTD and/or processing tools are not generally ++ available, and the machine-generated HTML produced by some word ++ processors for output purposes only. ++ ++ The "Title Page" means, for a printed book, the title page itself, ++ plus such following pages as are needed to hold, legibly, the ++ material this License requires to appear in the title page. For ++ works in formats which do not have any title page as such, "Title ++ Page" means the text near the most prominent appearance of the ++ work's title, preceding the beginning of the body of the text. ++ ++ 2. VERBATIM COPYING ++ ++ You may copy and distribute the Document in any medium, either ++ commercially or noncommercially, provided that this License, the ++ copyright notices, and the license notice saying this License ++ applies to the Document are reproduced in all copies, and that you ++ add no other conditions whatsoever to those of this License. You ++ may not use technical measures to obstruct or control the reading ++ or further copying of the copies you make or distribute. However, ++ you may accept compensation in exchange for copies. If you ++ distribute a large enough number of copies you must also follow ++ the conditions in section 3. ++ ++ You may also lend copies, under the same conditions stated above, ++ and you may publicly display copies. ++ ++ 3. COPYING IN QUANTITY ++ ++ If you publish printed copies of the Document numbering more than ++ 100, and the Document's license notice requires Cover Texts, you ++ must enclose the copies in covers that carry, clearly and legibly, ++ all these Cover Texts: Front-Cover Texts on the front cover, and ++ Back-Cover Texts on the back cover. Both covers must also clearly ++ and legibly identify you as the publisher of these copies. The ++ front cover must present the full title with all words of the ++ title equally prominent and visible. You may add other material ++ on the covers in addition. Copying with changes limited to the ++ covers, as long as they preserve the title of the Document and ++ satisfy these conditions, can be treated as verbatim copying in ++ other respects. ++ ++ If the required texts for either cover are too voluminous to fit ++ legibly, you should put the first ones listed (as many as fit ++ reasonably) on the actual cover, and continue the rest onto ++ adjacent pages. ++ ++ If you publish or distribute Opaque copies of the Document ++ numbering more than 100, you must either include a ++ machine-readable Transparent copy along with each Opaque copy, or ++ state in or with each Opaque copy a publicly-accessible ++ computer-network location containing a complete Transparent copy ++ of the Document, free of added material, which the general ++ network-using public has access to download anonymously at no ++ charge using public-standard network protocols. If you use the ++ latter option, you must take reasonably prudent steps, when you ++ begin distribution of Opaque copies in quantity, to ensure that ++ this Transparent copy will remain thus accessible at the stated ++ location until at least one year after the last time you ++ distribute an Opaque copy (directly or through your agents or ++ retailers) of that edition to the public. ++ ++ It is requested, but not required, that you contact the authors of ++ the Document well before redistributing any large number of ++ copies, to give them a chance to provide you with an updated ++ version of the Document. ++ ++ 4. MODIFICATIONS ++ ++ You may copy and distribute a Modified Version of the Document ++ under the conditions of sections 2 and 3 above, provided that you ++ release the Modified Version under precisely this License, with ++ the Modified Version filling the role of the Document, thus ++ licensing distribution and modification of the Modified Version to ++ whoever possesses a copy of it. In addition, you must do these ++ things in the Modified Version: ++ ++ A. Use in the Title Page (and on the covers, if any) a title ++ distinct from that of the Document, and from those of ++ previous versions (which should, if there were any, be listed ++ in the History section of the Document). You may use the ++ same title as a previous version if the original publisher of ++ that version gives permission. ++ ++ B. List on the Title Page, as authors, one or more persons or ++ entities responsible for authorship of the modifications in ++ the Modified Version, together with at least five of the ++ principal authors of the Document (all of its principal ++ authors, if it has less than five). ++ ++ C. State on the Title page the name of the publisher of the ++ Modified Version, as the publisher. ++ ++ D. Preserve all the copyright notices of the Document. ++ ++ E. Add an appropriate copyright notice for your modifications ++ adjacent to the other copyright notices. ++ ++ F. Include, immediately after the copyright notices, a license ++ notice giving the public permission to use the Modified ++ Version under the terms of this License, in the form shown in ++ the Addendum below. ++ ++ G. Preserve in that license notice the full lists of Invariant ++ Sections and required Cover Texts given in the Document's ++ license notice. ++ ++ H. Include an unaltered copy of this License. ++ ++ I. Preserve the section entitled "History", and its title, and ++ add to it an item stating at least the title, year, new ++ authors, and publisher of the Modified Version as given on ++ the Title Page. If there is no section entitled "History" in ++ the Document, create one stating the title, year, authors, ++ and publisher of the Document as given on its Title Page, ++ then add an item describing the Modified Version as stated in ++ the previous sentence. ++ ++ J. Preserve the network location, if any, given in the Document ++ for public access to a Transparent copy of the Document, and ++ likewise the network locations given in the Document for ++ previous versions it was based on. These may be placed in ++ the "History" section. You may omit a network location for a ++ work that was published at least four years before the ++ Document itself, or if the original publisher of the version ++ it refers to gives permission. ++ ++ K. In any section entitled "Acknowledgments" or "Dedications", ++ preserve the section's title, and preserve in the section all ++ the substance and tone of each of the contributor ++ acknowledgments and/or dedications given therein. ++ ++ L. Preserve all the Invariant Sections of the Document, ++ unaltered in their text and in their titles. Section numbers ++ or the equivalent are not considered part of the section ++ titles. ++ ++ M. Delete any section entitled "Endorsements". Such a section ++ may not be included in the Modified Version. ++ ++ N. Do not retitle any existing section as "Endorsements" or to ++ conflict in title with any Invariant Section. ++ ++ If the Modified Version includes new front-matter sections or ++ appendices that qualify as Secondary Sections and contain no ++ material copied from the Document, you may at your option ++ designate some or all of these sections as invariant. To do this, ++ add their titles to the list of Invariant Sections in the Modified ++ Version's license notice. These titles must be distinct from any ++ other section titles. ++ ++ You may add a section entitled "Endorsements", provided it contains ++ nothing but endorsements of your Modified Version by various ++ parties--for example, statements of peer review or that the text ++ has been approved by an organization as the authoritative ++ definition of a standard. ++ ++ You may add a passage of up to five words as a Front-Cover Text, ++ and a passage of up to 25 words as a Back-Cover Text, to the end ++ of the list of Cover Texts in the Modified Version. Only one ++ passage of Front-Cover Text and one of Back-Cover Text may be ++ added by (or through arrangements made by) any one entity. If the ++ Document already includes a cover text for the same cover, ++ previously added by you or by arrangement made by the same entity ++ you are acting on behalf of, you may not add another; but you may ++ replace the old one, on explicit permission from the previous ++ publisher that added the old one. ++ ++ The author(s) and publisher(s) of the Document do not by this ++ License give permission to use their names for publicity for or to ++ assert or imply endorsement of any Modified Version. ++ ++ 5. COMBINING DOCUMENTS ++ ++ You may combine the Document with other documents released under ++ this License, under the terms defined in section 4 above for ++ modified versions, provided that you include in the combination ++ all of the Invariant Sections of all of the original documents, ++ unmodified, and list them all as Invariant Sections of your ++ combined work in its license notice. ++ ++ The combined work need only contain one copy of this License, and ++ multiple identical Invariant Sections may be replaced with a single ++ copy. If there are multiple Invariant Sections with the same name ++ but different contents, make the title of each such section unique ++ by adding at the end of it, in parentheses, the name of the ++ original author or publisher of that section if known, or else a ++ unique number. Make the same adjustment to the section titles in ++ the list of Invariant Sections in the license notice of the ++ combined work. ++ ++ In the combination, you must combine any sections entitled ++ "History" in the various original documents, forming one section ++ entitled "History"; likewise combine any sections entitled ++ "Acknowledgments", and any sections entitled "Dedications". You ++ must delete all sections entitled "Endorsements." ++ ++ 6. COLLECTIONS OF DOCUMENTS ++ ++ You may make a collection consisting of the Document and other ++ documents released under this License, and replace the individual ++ copies of this License in the various documents with a single copy ++ that is included in the collection, provided that you follow the ++ rules of this License for verbatim copying of each of the ++ documents in all other respects. ++ ++ You may extract a single document from such a collection, and ++ distribute it individually under this License, provided you insert ++ a copy of this License into the extracted document, and follow ++ this License in all other respects regarding verbatim copying of ++ that document. ++ ++ 7. AGGREGATION WITH INDEPENDENT WORKS ++ ++ A compilation of the Document or its derivatives with other ++ separate and independent documents or works, in or on a volume of ++ a storage or distribution medium, does not as a whole count as a ++ Modified Version of the Document, provided no compilation ++ copyright is claimed for the compilation. Such a compilation is ++ called an "aggregate", and this License does not apply to the ++ other self-contained works thus compiled with the Document, on ++ account of their being thus compiled, if they are not themselves ++ derivative works of the Document. ++ ++ If the Cover Text requirement of section 3 is applicable to these ++ copies of the Document, then if the Document is less than one ++ quarter of the entire aggregate, the Document's Cover Texts may be ++ placed on covers that surround only the Document within the ++ aggregate. Otherwise they must appear on covers around the whole ++ aggregate. ++ ++ 8. TRANSLATION ++ ++ Translation is considered a kind of modification, so you may ++ distribute translations of the Document under the terms of section ++ 4. Replacing Invariant Sections with translations requires special ++ permission from their copyright holders, but you may include ++ translations of some or all Invariant Sections in addition to the ++ original versions of these Invariant Sections. You may include a ++ translation of this License provided that you also include the ++ original English version of this License. In case of a ++ disagreement between the translation and the original English ++ version of this License, the original English version will prevail. ++ ++ 9. TERMINATION ++ ++ You may not copy, modify, sublicense, or distribute the Document ++ except as expressly provided for under this License. Any other ++ attempt to copy, modify, sublicense or distribute the Document is ++ void, and will automatically terminate your rights under this ++ License. However, parties who have received copies, or rights, ++ from you under this License will not have their licenses ++ terminated so long as such parties remain in full compliance. ++ ++ 10. FUTURE REVISIONS OF THIS LICENSE ++ ++ The Free Software Foundation may publish new, revised versions of ++ the GNU Free Documentation License from time to time. Such new ++ versions will be similar in spirit to the present version, but may ++ differ in detail to address new problems or concerns. See ++ `http://www.gnu.org/copyleft/'. ++ ++ Each version of the License is given a distinguishing version ++ number. If the Document specifies that a particular numbered ++ version of this License "or any later version" applies to it, you ++ have the option of following the terms and conditions either of ++ that specified version or of any later version that has been ++ published (not as a draft) by the Free Software Foundation. If ++ the Document does not specify a version number of this License, ++ you may choose any version ever published (not as a draft) by the ++ Free Software Foundation. ++ ++ADDENDUM: How to use this License for your documents ++---------------------------------------------------- ++ ++ To use this License in a document you have written, include a copy of ++the License in the document and put the following copyright and license ++notices just after the title page: ++ ++ Copyright (C) YEAR YOUR NAME. ++ Permission is granted to copy, distribute and/or modify this document ++ under the terms of the GNU Free Documentation License, Version 1.1 ++ or any later version published by the Free Software Foundation; ++ with the Invariant Sections being LIST THEIR TITLES, with the ++ Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. ++ A copy of the license is included in the section entitled ``GNU ++ Free Documentation License''. ++ ++ If you have no Invariant Sections, write "with no Invariant Sections" ++instead of saying which ones are invariant. If you have no Front-Cover ++Texts, write "no Front-Cover Texts" instead of "Front-Cover Texts being ++LIST"; likewise for Back-Cover Texts. ++ ++ If your document contains nontrivial examples of program code, we ++recommend releasing these examples in parallel under your choice of ++free software license, such as the GNU General Public License, to ++permit their use in free software. ++ +============================================================ +--- Makefile.am 1fb3c2eee0fbdba632764b1eaa1aa61c5596665a ++++ Makefile.am c6683758c43674944b3d11c383007bd74f4ab043 +@@ -1,27 +1,12 @@ ACLOCAL_AMFLAGS = -I m4 + AUTOMAKE_OPTIONS=subdir-objects 1.7.1 + ACLOCAL_AMFLAGS = -I m4 + +-CMD_SOURCES = \ +- cmd.hh cmd_netsync.cc cmd_list.cc cmd_packet.cc cmd_key_cert.cc \ +- cmd_merging.cc cmd_db.cc cmd_diff_log.cc cmd_ws_commit.cc \ +- cmd_othervcs.cc cmd_automate.cc cmd_files.cc +- + SANITY_CORE_SOURCES = \ + sanity.cc sanity.hh quick_alloc.hh vector.hh base.hh \ + simplestring_xform.cc simplestring_xform.hh \ + constants.cc constants.hh numeric_vocab.hh \ + platform.hh numeric_vocab.cc + +-LUAEXT_SOURCES = \ +- vocab.hh vocab.cc vocab_terms.hh vocab_macros.hh vocab_cast.hh \ +- charset.cc charset.hh paths.cc paths.hh \ +- interner.hh hash_map.hh vocab_hash.hh \ +- luaext_mkstemp.cc luaext_parse_basic_io.cc \ +- luaext_guess_binary.cc luaext_platform.cc luaext_globish.cc \ +- lua.cc lua.hh mkstemp.cc mkstemp.hh file_io.cc file_io.hh \ +- globish.cc globish.hh basic_io.cc basic_io.hh \ +- char_classifiers.hh +- + MOST_SOURCES = \ + $(SANITY_CORE_SOURCES) $(LUAEXT_SOURCES) platform-wrapped.hh \ + rev_types.hh mtn-sanity.cc mtn-sanity.hh ui.cc ui.hh \ ========== descendents ========== $VAR1 = [ '05cb265ad778107218701fa76a91bdf4770b85a8', @@ -18904,16 +19497,16 @@ PROBLEM (2): misuse: internal line merge ==================== PROBLEM (2): misuse: internal line merger failed - at ../mtn-tester line 694 - main::__ANON__(2, 'misuse: internal line merger failed', 'undef') called at ../lib/Monotone/AutomateStdio.pm line 4651 - Monotone::AutomateStdio::warning_handler_wrapper('misuse: internal line merger failed') called at ../lib/Monotone/AutomateStdio.pm line 4061 - Monotone::AutomateStdio::mtn_command_with_options('Monotone::AutomateStdio=HASH(0x9e265b4)', 'file_merge', 1, 1, 'SCALAR(0x9da8dd4)', 'ARRAY(0xa0b83b8)', '5fee1e9c463d3cd7439bea9c483d9d88d0b057d5', 'ui.cc', 'b9a5862a8ba577538f27c69656d8a6bb60ecb777', ...) called at ../lib/Monotone/AutomateStdio.pm line 3812 - Monotone::AutomateStdio::mtn_command('Monotone::AutomateStdio=HASH(0x9e265b4)', 'file_merge', 1, 1, 'SCALAR(0x9da8dd4)', '5fee1e9c463d3cd7439bea9c483d9d88d0b057d5', 'ui.cc', 'b9a5862a8ba577538f27c69656d8a6bb60ecb777', 'ui.cc', ...) called at ../lib/Monotone/AutomateStdio.pm line 1007 - Monotone::AutomateStdio::file_merge('Monotone::AutomateStdio=HASH(0x9e265b4)', 'SCALAR(0x9da8dd4)', '5fee1e9c463d3cd7439bea9c483d9d88d0b057d5', 'ui.cc', 'b9a5862a8ba577538f27c69656d8a6bb60ecb777', 'ui.cc') called at ../mtn-tester line 706 + at ../mtn-tester line 703 + main::__ANON__(2, 'misuse: internal line merger failed', 'undef') called at /home/aecoope/code/monotone.ca/automate-stdio/lib/Monotone/AutomateStdio.pm line 4750 + Monotone::AutomateStdio::warning_handler_wrapper('misuse: internal line merger failed') called at /home/aecoope/code/monotone.ca/automate-stdio/lib/Monotone/AutomateStdio.pm line 4133 + Monotone::AutomateStdio::mtn_command_with_options('Monotone::AutomateStdio=HASH(0x87272cc)', 'file_merge', 1, 1, 'SCALAR(0x8784b28)', 'ARRAY(0x8aa6948)', '5fee1e9c463d3cd7439bea9c483d9d88d0b057d5', 'ui.cc', 'b9a5862a8ba577538f27c69656d8a6bb60ecb777', ...) called at /home/aecoope/code/monotone.ca/automate-stdio/lib/Monotone/AutomateStdio.pm line 3886 + Monotone::AutomateStdio::mtn_command('Monotone::AutomateStdio=HASH(0x87272cc)', 'file_merge', 1, 1, 'SCALAR(0x8784b28)', '5fee1e9c463d3cd7439bea9c483d9d88d0b057d5', 'ui.cc', 'b9a5862a8ba577538f27c69656d8a6bb60ecb777', 'ui.cc', ...) called at /home/aecoope/code/monotone.ca/automate-stdio/lib/Monotone/AutomateStdio.pm line 1027 + Monotone::AutomateStdio::file_merge('Monotone::AutomateStdio=HASH(0x87272cc)', 'SCALAR(0x8784b28)', '5fee1e9c463d3cd7439bea9c483d9d88d0b057d5', 'ui.cc', 'b9a5862a8ba577538f27c69656d8a6bb60ecb777', 'ui.cc') called at ../mtn-tester line 715 OOPS: misuse: internal line merger failed ========== genkey ========== $VAR1 = { - 'hash' => '34f20cccf79c55e835757bb2e845690b5b0bfff6', + 'hash' => '56ac76c803899cb0c7569d652723047b5d18bc78', 'public_location' => [ 'database', 'keystore' @@ -18925,13 +19518,10 @@ $VAR1 = { }; ========== get_attributes (on a file that has none) ========== ---------- Raw Data ---------- -format_version "1" ---------- Structured Data ---------- $VAR1 = []; ========== get_attributes (on a file that now has none) ========== ---------- Raw Data ---------- -format_version "1" - attr "mtn:execute" "true" state "dropped" ---------- Structured Data ---------- @@ -18944,8 +19534,6 @@ $VAR1 = [ ]; ========== get_attributes (on a file that has a few) ========== ---------- Raw Data ---------- -format_version "1" - attr "mtn:gimp-native-format" "true" state "unchanged" @@ -18980,7 +19568,7 @@ format_version "1" ---------- Raw Data ---------- format_version "1" -new_manifest [92210aa88ef435fd026b5ff91db072ec49868c8e] +new_manifest [cd2cb970454f1a753fa7b812017acb0c14809da9] old_revision [ee9d2b736adc24fb9a5926f68304814e93ee8726] @@ -18989,11 +19577,11 @@ add_file "NEW.txt" delete "work.hh" add_file "NEW.txt" - content [e7d563f52bf5295e6dba1d67ac23e9f6a160fab9] + content [e203d4ef09d404fa5c03cf6590e44231665be689] patch "vocab.hh" from [795b362dc61a675f612d99608c8722d1735b2ff0] - to [e7d563f52bf5295e6dba1d67ac23e9f6a160fab9] + to [e203d4ef09d404fa5c03cf6590e44231665be689] clear "contrib/colorize" attr "mtn:execute" @@ -19003,7 +19591,7 @@ $VAR1 = [ ---------- Structured Data ---------- $VAR1 = [ { - 'manifest_id' => '92210aa88ef435fd026b5ff91db072ec49868c8e', + 'manifest_id' => 'cd2cb970454f1a753fa7b812017acb0c14809da9', 'type' => 'new_manifest' }, { @@ -19020,11 +19608,11 @@ $VAR1 = [ }, { 'name' => 'NEW.txt', - 'file_id' => 'e7d563f52bf5295e6dba1d67ac23e9f6a160fab9', + 'file_id' => 'e203d4ef09d404fa5c03cf6590e44231665be689', 'type' => 'add_file' }, { - 'to_file_id' => 'e7d563f52bf5295e6dba1d67ac23e9f6a160fab9', + 'to_file_id' => 'e203d4ef09d404fa5c03cf6590e44231665be689', 'name' => 'vocab.hh', 'type' => 'patch', 'from_file_id' => '795b362dc61a675f612d99608c8722d1735b2ff0' @@ -19047,16 +19635,16 @@ format_version "1" ---------- Raw Data ---------- format_version "1" -new_manifest [0024aad8473bd0f49a55546b412a7fc0fd2b31b1] +new_manifest [2575701424d4a7fdb4654cd587ce42347cdb2c22] old_revision [ee9d2b736adc24fb9a5926f68304814e93ee8726] add_file "NEW.txt" - content [e7d563f52bf5295e6dba1d67ac23e9f6a160fab9] + content [e203d4ef09d404fa5c03cf6590e44231665be689] ---------- Structured Data ---------- $VAR1 = [ { - 'manifest_id' => '0024aad8473bd0f49a55546b412a7fc0fd2b31b1', + 'manifest_id' => '2575701424d4a7fdb4654cd587ce42347cdb2c22', 'type' => 'new_manifest' }, { @@ -19065,7 +19653,7 @@ $VAR1 = [ }, { 'name' => 'NEW.txt', - 'file_id' => 'e7d563f52bf5295e6dba1d67ac23e9f6a160fab9', + 'file_id' => 'e203d4ef09d404fa5c03cf6590e44231665be689', 'type' => 'add_file' } ]; @@ -19076,16 +19664,16 @@ format_version "1" ---------- Raw Data ---------- format_version "1" -new_manifest [0024aad8473bd0f49a55546b412a7fc0fd2b31b1] +new_manifest [2575701424d4a7fdb4654cd587ce42347cdb2c22] old_revision [ee9d2b736adc24fb9a5926f68304814e93ee8726] add_file "NEW.txt" - content [e7d563f52bf5295e6dba1d67ac23e9f6a160fab9] + content [e203d4ef09d404fa5c03cf6590e44231665be689] ---------- Structured Data ---------- $VAR1 = [ { - 'manifest_id' => '0024aad8473bd0f49a55546b412a7fc0fd2b31b1', + 'manifest_id' => '2575701424d4a7fdb4654cd587ce42347cdb2c22', 'type' => 'new_manifest' }, { @@ -19094,7 +19682,7 @@ $VAR1 = [ }, { 'name' => 'NEW.txt', - 'file_id' => 'e7d563f52bf5295e6dba1d67ac23e9f6a160fab9', + 'file_id' => 'e203d4ef09d404fa5c03cf6590e44231665be689', 'type' => 'add_file' } ]; @@ -19105,7 +19693,7 @@ format_version "1" ---------- Raw Data ---------- format_version "1" -new_manifest [92709b80b3316c7c4e08fe9595a414e70164b3bc] +new_manifest [43d337e6a809a9f3ac34d2a0c013db75077b63d8] old_revision [ee9d2b736adc24fb9a5926f68304814e93ee8726] @@ -19114,11 +19702,11 @@ add_file "NEW.txt" delete "work.hh" add_file "NEW.txt" - content [e7d563f52bf5295e6dba1d67ac23e9f6a160fab9] + content [e203d4ef09d404fa5c03cf6590e44231665be689] ---------- Structured Data ---------- $VAR1 = [ { - 'manifest_id' => '92709b80b3316c7c4e08fe9595a414e70164b3bc', + 'manifest_id' => '43d337e6a809a9f3ac34d2a0c013db75077b63d8', 'type' => 'new_manifest' }, { @@ -19135,7 +19723,7 @@ $VAR1 = [ }, { 'name' => 'NEW.txt', - 'file_id' => 'e7d563f52bf5295e6dba1d67ac23e9f6a160fab9', + 'file_id' => 'e203d4ef09d404fa5c03cf6590e44231665be689', 'type' => 'add_file' } ]; @@ -19146,7 +19734,7 @@ format_version "1" ---------- Raw Data ---------- format_version "1" -new_manifest [92709b80b3316c7c4e08fe9595a414e70164b3bc] +new_manifest [43d337e6a809a9f3ac34d2a0c013db75077b63d8] old_revision [ee9d2b736adc24fb9a5926f68304814e93ee8726] @@ -19155,11 +19743,11 @@ add_file "NEW.txt" delete "work.hh" add_file "NEW.txt" - content [e7d563f52bf5295e6dba1d67ac23e9f6a160fab9] + content [e203d4ef09d404fa5c03cf6590e44231665be689] ---------- Structured Data ---------- $VAR1 = [ { - 'manifest_id' => '92709b80b3316c7c4e08fe9595a414e70164b3bc', + 'manifest_id' => '43d337e6a809a9f3ac34d2a0c013db75077b63d8', 'type' => 'new_manifest' }, { @@ -19176,7 +19764,7 @@ $VAR1 = [ }, { 'name' => 'NEW.txt', - 'file_id' => 'e7d563f52bf5295e6dba1d67ac23e9f6a160fab9', + 'file_id' => 'e203d4ef09d404fa5c03cf6590e44231665be689', 'type' => 'add_file' } ]; @@ -41271,7 +41859,7 @@ Variable = `net.venge.monotone.contrib.l ========== get_option (getting the branch option value) ========== Variable = `net.venge.monotone.contrib.lib.automate-stdio.test' ========== get_pid ========== -MTN process id = `3961' +MTN process id = `26412' ========== get_revision ========== ---------- Raw Data ---------- format_version "1" @@ -41307,7 +41895,7 @@ $VAR1 = [ } ]; ========== get_workspace_root ========== -Variable = `/home/aecoope/code/monotone.ca/automate-stdio/MTN-0.40' +Variable = `/home/aecoope/code/monotone.ca/automate-stdio/MTN-0.45' ========== graph ========== ---------- Raw Data ---------- 0005a23e30a9c2d3024d94773eec433bf9acb770 5bdcfee44a3e2da5fb0e437d3623f2227ea2fed4 9e65e330c0d76769296452d68d0c52335edb5f1a @@ -42619,6 +43207,7 @@ 16053f8887e6e619d7ba6c7e943928fb63627783 16035a1a613c7c0dd5225e15c1265b8fd4300977 71fb738a5da56ddcc128376585c27817985334b7 1605344a2c70ab0f55d769f2434f6af415557c95 694ad5dc814dd860c28d12e5b7ee4218d0a33183 16053f8887e6e619d7ba6c7e943928fb63627783 655ac0ab6b16e884ce56fd58948b3a4afce5cab6 +160ac3043d4c3d74a694220d806af261423936a7 57be2109f9f641f09b11f4134e8c46048bd7ac65 160e3d28f1fde46da394a32df9d6a7deae56a5af 5fe4a51c9576cda40d1b585626e94ffb4cddf7ea 1611da35c02535b18eb8486b34407d2962fd76ef be2cb11ef9e778d8c890a904d309607d72c17d3a 16153f169464b15b0b0f6b297dbb9c42ae96360a 2fc8c666354e401ba7e4bdfeec938511402ba511 @@ -44509,6 +45098,7 @@ 3653bb03b0ed987ad98921e00d2b9cf646122165 364a95f5f5a49750c7779008af3bcf49006a63b2 cda1bb96190a1ee6166cc2ae610d082a8d925643 365319fc94f5191f924d45536e0f265a4652d525 c17d3f3a5ec96fe0e294b8bcffb53bc465530f7b 3653bb03b0ed987ad98921e00d2b9cf646122165 00becb64742bde356c89d0a2663bbe070699c039 03704cc04790f0a197cceada059cd77dd9bd42ea +365b4d75ba89daba514aa591798c28b4e262c025 6f30d778a18bca58aaa50a75821406a100a00d4e 365b637671786fcddd494ae653c868fe521e592c 563e4a50dc936bbcd8d38b24fdaf1985d39043aa e92a79a9a56076a4ead5013c29fb705a3c4de719 365d30d743eb2d2f65b2cdb5294e05b67c6a1285 76e206f92ddba3aa1297716efa0df3cc270571e6 365dea3b97a592091f1ea99f58c740bd3e8c25b0 68b08931d97eb17a217e55bb16125b1da5997fb0 @@ -46455,6 +47045,7 @@ 57ba22a8039d524dda344e0f20b326ad8878c092 57a721498b6fbce4df96f2fa6c3f69d4e88ad030 3a133096529c1f76bfe27ad0f6731fc8f71cf0f4 57ae50bf5b0986067b27a330181b163ac7859292 b3004af62b39e8c77e9ebd635d451fa1c453a394 57ba22a8039d524dda344e0f20b326ad8878c092 9d7af3fae907e1ba43c52b35c1a165f74c14b496 +57be2109f9f641f09b11f4134e8c46048bd7ac65 ce5d26ac159c56958820d00e3fcda9dc2d061331 57c0d5a18a238ae831d0a9fd0ca8fe6229b7e5bd 31731d95975a2a84eca68bba03972f8203cad87b 57c3daa06a743b65e40f36b99e85c7728c9a3b84 517776d95d8bc2ef131a3cfdb11e388d0d20e6d8 8e83de4094e99e7d5fc03a4074e3cf4f6ee448c5 57c7c5d63270b80163f2228c9fc351f4d9d91081 e3286a71601568aba4ffe8635692f87b329c4c2f @@ -46774,6 +47365,7 @@ 5d6ad4b79e792be979d1c55579971b6d7cc008bc 5d65f3768a4980dc65f8c69c454aac2afffb7092 26c1aca28e42e0dc944adc8585951eea8e3350c0 5d681427e93999bd5c47b8209abb589c13d760db 1b03b4e99c3e1d9d83fc193e689856eb04ac55ff 5d6ad4b79e792be979d1c55579971b6d7cc008bc cc1b480871e445fb5f379e40eb2651319594518b +5d6b88e48e877ce680168756043ac728da5a38ff f66fd6481f6bcec0f6e3e93a3ce3a146aabce07a 5d782cc603a729dc63962fc102cb72399af2f58e 9d85c0d264a17e40d0d692fc4e7304957a7a14a7 5d7b64c5a61bdcc73a565c8cb9a2b2fdb6fb9644 de0f4ced602f46c9331310a0f6a1f9f338011bd8 5d7de60aab0bde8e68cfea60a74daedfd0ac4ec7 569b2379e589a35be787706289522cff7b1fcecf @@ -47662,6 +48254,7 @@ 6bb339bafbda2f2184f60d04017c315afc4d5ef6 6bb1bc1a813818f13a65f798946c06757b81037e 3ddff66c11612a07b7dbc61622012680d2c57055 6bb2334df4b8a923d929e996d13ba3850545599f 46769a2fa2fc740ec53dc46f6e0b0c144a593152 6bb339bafbda2f2184f60d04017c315afc4d5ef6 2fb665143e6d0e7e9928b3f1044d5dd1551cec66 +6bbe99fc61612b73e024e92c8e5d53454d0a9e20 a3c3f5149bce196593f6ca6287757197f79c0884 6bc1e895e8d3e8905fb52701063768d35e5fa168 5462487db91bbec64630e1d103aa0ef872b31821 6bcec2611f3502f26f62d40fa49269757bad2b13 8ebc87069d1f4533964ca4a4eaf12df0ef8d3e0c 6bd2bfce8ff4dd5e381345e1656f5437140732f0 97a2b0aa17634345ecac6793ce553a1bd546f2ba @@ -47756,6 +48349,7 @@ 6d66013815bf04cf03751f05a354e3d566036150 6d5bf85aec6328a224db992f56d0f29b0b83429d 6a5b374c6779223566b27f4fc20ea5ba085a306e 6d5c0632c7b19b742130be1ba433bd6c326313f0 9f1d97d45d3e5c013e9bc725ffbe7209950e29b4 6d66013815bf04cf03751f05a354e3d566036150 13673c25c5c80403526191ea3a211cacb24c28a1 17fa21f74c7821c2a56dd5ac0507aa0ee98d00fc +6d6b152582351436cef4c8021cf86080acd80b81 8675da8db99a03ac8c65fe92a04943310a771a91 97595a2f1ea4f2b5481627c010e17b8f1dde99ba 6d6b1d948c81d24bf9be831913e3ba01e98640bf 36b6cb016019e675bc24a2fa97d4eb19fa4919af 6ff67f8e7acba5c8c9320ad65db191e5b54d99e9 6d6f7b9f8df695efe4e5f9e79851c2dc0768ebe8 b3c4d5096cad698591ba5cb42ee6eef8f5ee1fc3 6d7b7b4a6b646ce813a61e74d53f1db6d79d839d c3d0d2a34bc0f58d976eaf0bcd85a0e14bfd09b1 @@ -47870,6 +48464,7 @@ 6f2d1930cf09c1e9661ee812607a370aa94ba088 6f27d32f6f047b5c6a5f7d0dc8a0484b9c2bcc56 30f099d35c1a70af1c52ce8aeebb0037d66ae1e8 62961c1dc498b12c49d88c6d372195b1331e1cae 6f2953ef05f2cc5e22412ad1c72061c52652b64f 2648df2eab3205543773f2538040efa904aab550 6f2d1930cf09c1e9661ee812607a370aa94ba088 5dbcc96d7d8eb301d5df7a81f6ae8080996f6561 +6f30d778a18bca58aaa50a75821406a100a00d4e 160ac3043d4c3d74a694220d806af261423936a7 6f3214ccc9ecd905ace02a39fd7a3b684c70caa3 613c5d763b2a69fa08259df555845a312587d108 6f34d22b2cf474413252d27b9c3c01d305ed8aa8 3a0054f98881fb0f64aafa21070ce7976f980fa5 6f3bdac13d2cc6be1d928437b5d8696bde9496c9 0ea65cb31b3c5b6a91d7039448684b33586d14fd 8f76ec63ffb2ce9be90e187c3b6e72b354684be4 @@ -50078,6 +50673,7 @@ 9468f728994782215dcfd12cd82d515d45bcb779 94638968782c1792f41840352f08c50cfdf0785e 28518886ba5be262dd1e6d19acc6935f1f6845ee 9464a57c04f79a25db664313819facfecf24c6b9 b0e98dde4e6fcf53471f487b3dba2da1f3ebcef7 ee7285517b66b01440ca326924058251ce778b54 9468f728994782215dcfd12cd82d515d45bcb779 1c9519c1658b5ca9fb2dfebf546b88c9713eb992 bcf969c7ee78bd8d0be1152159c0f743002815fa +9469db01e1febe16b4673c1715c779e408c3f115 81f69b4fe902d3cc399043aa735a44b19e585b32 946b5a7337218c1a3cf5d002ce1a5085a396559e 2ba3cef21c1df97b9b32840caa9f21358baa1ed0 869baba046ea547aadee135aec6938e2f79d3c50 946dc631505afc15c851974f331961d6e0b963ef 3aa75bd7511a8b4435070de4e005361cea09a097 7ee0e4685df14bf0c2f7d06c61a4c546b8eb1210 946fac2418248a838a611252acd08a57e0935776 39e3f4a1ba57263f03f932a930c3d0609374cf25 @@ -50987,6 +51583,7 @@ a3c365004797dcd32d6dfeaa190ec15944d27437 a3be6b25c930e7436f06373e83e3a36b1432d2e9 81bc367aee2413b7b5c2530ec8f4260419f9fbd3 a3c01009bfb0c7f77a12ba3b6d3a3ad776284334 b3f8795c7a68bebf7f86f0afa8823ee20326e9aa a3c365004797dcd32d6dfeaa190ec15944d27437 357a4c7625fa065b8b2cbdf8c76d81b8c2ae5155 +a3c3f5149bce196593f6ca6287757197f79c0884 6d6b152582351436cef4c8021cf86080acd80b81 a3cb77923de2a269177ca55639980e59f54deac0 f9bf0ab97b46d84bceea1b6d40a7ca3652b79646 a3cd63b72f5cd84e25be1be153085e8eb34e2309 2e919137edb6ce154ed94db72f17f5ecb1de6a16 a3cf9d2123f2435d36628dcafda1178b8d1f5ceb 00862d40b30f11d972198ffb53e61986d3ce7aac 539d5f656cff92c0e3b3dc0ebb925e9138d2b29c @@ -53481,6 +54078,7 @@ ce5a24d3e4eccaa200fb9a3228f81c4cc1369012 ce561e1b7363860920f13475281150d71b4c47dc 96cadeffbf56102018baa43daebecdf81653e13b ce577c763adf0521c7538255bbbcd4982d21dda3 c192c06767157a6a5227c45c95cc99658f89d942 ce5a24d3e4eccaa200fb9a3228f81c4cc1369012 7b3bb3b1f013f896b47d985d3a0050ad72732eaa 814dc20d450361a1f88061bea3326df20a2320da +ce5d26ac159c56958820d00e3fcda9dc2d061331 9469db01e1febe16b4673c1715c779e408c3f115 ce5d9e82d010f175a454374fa084cd46bbe18167 d4593774192d1d06a1d06ea2d595629344d7bce1 ce5e9900b966d24918bed474b35d61d9db151ff7 670369849e8d05545b8cd2e527bf94b5cc1ad3f8 c6abcda809e59599e067810c98817da90a914220 ce659f757c3bb4c9ec77bad618f918914226bbfe 8560c8982d6709f6389fe1586448541efd7f917e @@ -55799,6 +56397,7 @@ f66da7a419fdb9a0a3c0e745a5d5d95b1c66b54d f651aa23c0ac8df54846ec3afb53462f9215707c 13d78e0799cf394d0de6d3e67601d323075f1140 f6659a82f2511d0198c5f0ad26144b19d4449071 2989ae73f597410acc86f16887b475b82e498df8 f66da7a419fdb9a0a3c0e745a5d5d95b1c66b54d fad206d42cdb047b927ac1dc166cb0e26391426f +f66fd6481f6bcec0f6e3e93a3ce3a146aabce07a e7b78eb1b3067bfd23fc9cd048e836064ba0b96a f6731c91cdfec9a8a1c1b0635b191977fef71018 a7ecf9b0aad49534391b3cc975c1378826494740 f6735d98893cae127439f2890a12a89b26e69d47 4ca0569f4830e064c1cc9ffdf46238ab03a2fd6a 9de2361f7c4c52e181867b6a12e1a876d3a82615 f6746032aa78f263baf63149bb152deea6b67498 7ec359f4a55a24b95a0c84fba71abef026aa8eaf @@ -64584,6 +65183,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '160ac3043d4c3d74a694220d806af261423936a7', + 'parent_ids' => [ + '57be2109f9f641f09b11f4134e8c46048bd7ac65' + ] + }, + { 'revision_id' => '160e3d28f1fde46da394a32df9d6a7deae56a5af', 'parent_ids' => [ '5fe4a51c9576cda40d1b585626e94ffb4cddf7ea' @@ -76395,6 +77000,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '365b4d75ba89daba514aa591798c28b4e262c025', + 'parent_ids' => [ + '6f30d778a18bca58aaa50a75821406a100a00d4e' + ] + }, + { 'revision_id' => '365b637671786fcddd494ae653c868fe521e592c', 'parent_ids' => [ '563e4a50dc936bbcd8d38b24fdaf1985d39043aa', @@ -88551,6 +89162,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '57be2109f9f641f09b11f4134e8c46048bd7ac65', + 'parent_ids' => [ + 'ce5d26ac159c56958820d00e3fcda9dc2d061331' + ] + }, + { 'revision_id' => '57c0d5a18a238ae831d0a9fd0ca8fe6229b7e5bd', 'parent_ids' => [ '31731d95975a2a84eca68bba03972f8203cad87b' @@ -90550,6 +91167,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '5d6b88e48e877ce680168756043ac728da5a38ff', + 'parent_ids' => [ + 'f66fd6481f6bcec0f6e3e93a3ce3a146aabce07a' + ] + }, + { 'revision_id' => '5d782cc603a729dc63962fc102cb72399af2f58e', 'parent_ids' => [ '9d85c0d264a17e40d0d692fc4e7304957a7a14a7' @@ -96087,6 +96710,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '6bbe99fc61612b73e024e92c8e5d53454d0a9e20', + 'parent_ids' => [ + 'a3c3f5149bce196593f6ca6287757197f79c0884' + ] + }, + { 'revision_id' => '6bc1e895e8d3e8905fb52701063768d35e5fa168', 'parent_ids' => [ '5462487db91bbec64630e1d103aa0ef872b31821' @@ -96668,6 +97297,13 @@ $VAR1 = [ ] }, { + 'revision_id' => '6d6b152582351436cef4c8021cf86080acd80b81', + 'parent_ids' => [ + '8675da8db99a03ac8c65fe92a04943310a771a91', + '97595a2f1ea4f2b5481627c010e17b8f1dde99ba' + ] + }, + { 'revision_id' => '6d6b1d948c81d24bf9be831913e3ba01e98640bf', 'parent_ids' => [ '36b6cb016019e675bc24a2fa97d4eb19fa4919af', @@ -97383,6 +98019,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '6f30d778a18bca58aaa50a75821406a100a00d4e', + 'parent_ids' => [ + '160ac3043d4c3d74a694220d806af261423936a7' + ] + }, + { 'revision_id' => '6f3214ccc9ecd905ace02a39fd7a3b684c70caa3', 'parent_ids' => [ '613c5d763b2a69fa08259df555845a312587d108' @@ -111181,6 +111823,12 @@ $VAR1 = [ ] }, { + 'revision_id' => '9469db01e1febe16b4673c1715c779e408c3f115', + 'parent_ids' => [ + '81f69b4fe902d3cc399043aa735a44b19e585b32' + ] + }, + { 'revision_id' => '946b5a7337218c1a3cf5d002ce1a5085a396559e', 'parent_ids' => [ '2ba3cef21c1df97b9b32840caa9f21358baa1ed0', @@ -116854,6 +117502,12 @@ $VAR1 = [ ] }, { + 'revision_id' => 'a3c3f5149bce196593f6ca6287757197f79c0884', + 'parent_ids' => [ + '6d6b152582351436cef4c8021cf86080acd80b81' + ] + }, + { 'revision_id' => 'a3cb77923de2a269177ca55639980e59f54deac0', 'parent_ids' => [ 'f9bf0ab97b46d84bceea1b6d40a7ca3652b79646' @@ -132433,6 +133087,12 @@ $VAR1 = [ ] }, { + 'revision_id' => 'ce5d26ac159c56958820d00e3fcda9dc2d061331', + 'parent_ids' => [ + '9469db01e1febe16b4673c1715c779e408c3f115' + ] + }, + { 'revision_id' => 'ce5d9e82d010f175a454374fa084cd46bbe18167', 'parent_ids' => [ 'd4593774192d1d06a1d06ea2d595629344d7bce1' @@ -146936,6 +147596,12 @@ $VAR1 = [ ] }, { + 'revision_id' => 'f66fd6481f6bcec0f6e3e93a3ce3a146aabce07a', + 'parent_ids' => [ + 'e7b78eb1b3067bfd23fc9cd048e836064ba0b96a' + ] + }, + { 'revision_id' => 'f6731c91cdfec9a8a1c1b0635b191977fef71018', 'parent_ids' => [ 'a7ecf9b0aad49534391b3cc975c1378826494740' @@ -280065,676 +280731,796 @@ $VAR1 = [ ]; ========== keys ========== ---------- Raw Data ---------- - name "address@hidden" - hash [7fe029d85af4de40700778b9784ef488fac2c79c] - public_location "database" "keystore" -private_location "keystore" - - name "address@hidden" - hash [d8687f734a1d1af7225cf64e9e2ef19dd206d46d] + hash [001b3d7fe46175069970c725e5d91eb6ce5bc784] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [7a9425a8910bc98b1671ceea937b8ee31e21d3eb] + hash [08f7a2a316a9f7c6b0db544ed20673ea2190964e] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [d9e7a76879a99dad705f058e24299a7b289f03d8] + hash [0d607d8724f015664fa0ca0e1a282fe708f2674b] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [e209e11781173a8b261244f1d09bc99a2f470cfa] + hash [0f012271f17b1ed775684051a632f32b12a27892] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [e61537e0d9f9a7af7597ffccde6e6389861d37ab] + hash [10b5b36b4aadc46c0a946b6e76e087ccdddf8b86] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [dd7cbda15fd0bfac84739745686d1a2d4338b260] + hash [1aaecf3a7c227e5545b0504aea5d3716d3128117] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [77a0ba3deaa568ed3f39b84b7fc4074fed50fda2] + hash [20289365fc90ef501739c57e359a87191476859b] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [20289365fc90ef501739c57e359a87191476859b] + hash [28f149d20e73e59e4694c3066cf5dd4eb7c0ff30] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [3ef5eac10878eacd2d03a279d1212362080c6e76] + hash [352482b9c915aebb3e4665b6003613da58a77bfd] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [9f960ee3b4e37e7b3b8e6b9ba91dc16f905ce5fd] + hash [3c5bcd300193a6b8e9a39a2fbf8185e2fa6942e1] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [50cfc1b4d8bcba48bed57d6d42f58b4a900419ab] + hash [3e68ace3e3ab641f5c26bb2dbdea21c188478f8d] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [3f761f7c10b91628e6f3108bf356bbc7829d806e] + hash [3e6f5225bc2fffacbc20c9de37ff2dae1e20892e] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [6e04a648f8c1f77c5244040d8af6e6632e42626c] + hash [3ef5eac10878eacd2d03a279d1212362080c6e76] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [08f7a2a316a9f7c6b0db544ed20673ea2190964e] + hash [3f761f7c10b91628e6f3108bf356bbc7829d806e] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [475b5e52f544b996f657c143b897287b87b61978] + hash [45f0073abd6bef076934340c9049609e05fbb151] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [10b5b36b4aadc46c0a946b6e76e087ccdddf8b86] + hash [46152fb968a96ebddcde6cc6513af72b6d24bcb7] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [d4e679a6d0a1a4bafd9ab6865737bb99ff5527f6] + hash [475055ec71ad48f5dfaf875b0fea597b5cbbee64] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [9a642175d1f06e69544a2785b71ee988b233a785] + hash [475b5e52f544b996f657c143b897287b87b61978] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [dcc0310c5d21720bcda6dc24d4553a52f3227c3f] + hash [4cd2eb67bb3d65b608170bcb4841474baceb9069] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [3e68ace3e3ab641f5c26bb2dbdea21c188478f8d] + hash [50cfc1b4d8bcba48bed57d6d42f58b4a900419ab] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" hash [530a0fd92cd7d7b670ac41812d62ec678b948ec8] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [352482b9c915aebb3e4665b6003613da58a77bfd] + hash [56ac76c803899cb0c7569d652723047b5d18bc78] + given_name "address@hidden" + local_name "address@hidden" + public_location "database" "keystore" +private_location "keystore" + + hash [5daf6aee9709afea92b1cb9a8179687f66ea69f9] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [7f7dd7ca124226d5a641f7d499868874251ada0d] + hash [69277a24d69f7ae896992a01cf511846d407d88e] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [28f149d20e73e59e4694c3066cf5dd4eb7c0ff30] + hash [6e04a648f8c1f77c5244040d8af6e6632e42626c] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [baca2a48be1711d21240370b43c92da564aee1cb] + hash [77a0ba3deaa568ed3f39b84b7fc4074fed50fda2] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [fa17dc84a60cc727ff1653ea30b6323c40c9455d] + hash [7a9425a8910bc98b1671ceea937b8ee31e21d3eb] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" hash [7bdc27ad344fe39e371e286692a659ad8686d25e] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [5daf6aee9709afea92b1cb9a8179687f66ea69f9] + hash [7f7dd7ca124226d5a641f7d499868874251ada0d] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [b52c1f44ed4317506dc0658054ec14e8060b6a8b] -public_location "database" + hash [7fe029d85af4de40700778b9784ef488fac2c79c] + given_name "address@hidden" + local_name "address@hidden" + public_location "database" "keystore" +private_location "keystore" - name "address@hidden" - hash [ac4c1f29d255238c8af1d04416340dbd5ca4d124] + hash [823379dceb7071cd11589dfbff6e6e0066a97fb6] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [c5180de8b1a23287ac2a3cfd506bd5453726e205] + hash [89e501daafa74082c794588128af9eea371eec85] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [ca09aeca875237679c4bb193d5b2d02747da9ead] + hash [8ad89008af9db804b7cc26045f9c0f4b1e059c7a] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [edc4385187c7b08669d6b466039534e2dd3aaf60] + hash [910ab13e7ff72487fd62c3d099f3a8275b37da1f] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [0d607d8724f015664fa0ca0e1a282fe708f2674b] + hash [9a642175d1f06e69544a2785b71ee988b233a785] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [1aaecf3a7c227e5545b0504aea5d3716d3128117] + hash [9af372ca893b885a0388a540b0de3bd7b7db9bc9] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [910ab13e7ff72487fd62c3d099f3a8275b37da1f] + hash [9f960ee3b4e37e7b3b8e6b9ba91dc16f905ce5fd] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [3e6f5225bc2fffacbc20c9de37ff2dae1e20892e] + hash [a721e7baa4975e3d4ca50b791f3b7f0c1cef81d5] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [89e501daafa74082c794588128af9eea371eec85] + hash [a75aa5f03482ac103ff8b9c9004f3881dcd0e4a5] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [46152fb968a96ebddcde6cc6513af72b6d24bcb7] + hash [ac4c1f29d255238c8af1d04416340dbd5ca4d124] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [de84b575d5e47254393eba49dce9dc4db98ed42d] + hash [b52c1f44ed4317506dc0658054ec14e8060b6a8b] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [0f012271f17b1ed775684051a632f32b12a27892] + hash [baca2a48be1711d21240370b43c92da564aee1cb] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [69277a24d69f7ae896992a01cf511846d407d88e] + hash [bc80b5567c22e4de9adbe60e2b0ece6480d6367f] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [9af372ca893b885a0388a540b0de3bd7b7db9bc9] + hash [c5180de8b1a23287ac2a3cfd506bd5453726e205] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [e5d7097b0d1064ee61732996fa6b79d4e23749b0] + hash [ca09aeca875237679c4bb193d5b2d02747da9ead] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [34f20cccf79c55e835757bb2e845690b5b0bfff6] - public_location "database" "keystore" -private_location "keystore" + hash [d37d08fafaece16e9a79b4ea853326624e185cbd] + given_name "address@hidden" + local_name "address@hidden" +public_location "database" - name "address@hidden" - hash [d37d08fafaece16e9a79b4ea853326624e185cbd] + hash [d4e679a6d0a1a4bafd9ab6865737bb99ff5527f6] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [bc80b5567c22e4de9adbe60e2b0ece6480d6367f] + hash [d8687f734a1d1af7225cf64e9e2ef19dd206d46d] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [8ad89008af9db804b7cc26045f9c0f4b1e059c7a] + hash [d9e7a76879a99dad705f058e24299a7b289f03d8] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [001b3d7fe46175069970c725e5d91eb6ce5bc784] + hash [dcc0310c5d21720bcda6dc24d4553a52f3227c3f] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [a721e7baa4975e3d4ca50b791f3b7f0c1cef81d5] + hash [dd7cbda15fd0bfac84739745686d1a2d4338b260] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [ed5da650ec723c2c4172169df9d9ddf4e6b54f2c] + hash [de84b575d5e47254393eba49dce9dc4db98ed42d] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" hash [e04dc45b93ae30904e06bdf7e5002f1702e2c408] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [f1c27dcf280dbbdd154917614dcba45dcbf2e194] + hash [e209e11781173a8b261244f1d09bc99a2f470cfa] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [475055ec71ad48f5dfaf875b0fea597b5cbbee64] + hash [e5d7097b0d1064ee61732996fa6b79d4e23749b0] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [823379dceb7071cd11589dfbff6e6e0066a97fb6] + hash [e61537e0d9f9a7af7597ffccde6e6389861d37ab] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [45f0073abd6bef076934340c9049609e05fbb151] + hash [ed5da650ec723c2c4172169df9d9ddf4e6b54f2c] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [a75aa5f03482ac103ff8b9c9004f3881dcd0e4a5] + hash [edc4385187c7b08669d6b466039534e2dd3aaf60] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [4cd2eb67bb3d65b608170bcb4841474baceb9069] + hash [f1c27dcf280dbbdd154917614dcba45dcbf2e194] + given_name "address@hidden" + local_name "address@hidden" public_location "database" - name "address@hidden" - hash [3c5bcd300193a6b8e9a39a2fbf8185e2fa6942e1] + hash [fa17dc84a60cc727ff1653ea30b6323c40c9455d] + given_name "address@hidden" + local_name "address@hidden" public_location "database" ---------- Structured Data ---------- $VAR1 = [ { - 'hash' => '7fe029d85af4de40700778b9784ef488fac2c79c', + 'hash' => '001b3d7fe46175069970c725e5d91eb6ce5bc784', 'public_location' => [ - 'database', - 'keystore' + 'database' ], - 'name' => 'address@hidden', - 'private_location' => [ - 'keystore' - ] + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'd8687f734a1d1af7225cf64e9e2ef19dd206d46d', + 'hash' => '08f7a2a316a9f7c6b0db544ed20673ea2190964e', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '7a9425a8910bc98b1671ceea937b8ee31e21d3eb', + 'hash' => '0d607d8724f015664fa0ca0e1a282fe708f2674b', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', + 'hash' => '0f012271f17b1ed775684051a632f32b12a27892', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'e209e11781173a8b261244f1d09bc99a2f470cfa', + 'hash' => '10b5b36b4aadc46c0a946b6e76e087ccdddf8b86', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'e61537e0d9f9a7af7597ffccde6e6389861d37ab', + 'hash' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'dd7cbda15fd0bfac84739745686d1a2d4338b260', + 'hash' => '20289365fc90ef501739c57e359a87191476859b', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '77a0ba3deaa568ed3f39b84b7fc4074fed50fda2', + 'hash' => '28f149d20e73e59e4694c3066cf5dd4eb7c0ff30', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '20289365fc90ef501739c57e359a87191476859b', + 'hash' => '352482b9c915aebb3e4665b6003613da58a77bfd', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '3ef5eac10878eacd2d03a279d1212362080c6e76', + 'hash' => '3c5bcd300193a6b8e9a39a2fbf8185e2fa6942e1', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '9f960ee3b4e37e7b3b8e6b9ba91dc16f905ce5fd', + 'hash' => '3e68ace3e3ab641f5c26bb2dbdea21c188478f8d', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '50cfc1b4d8bcba48bed57d6d42f58b4a900419ab', + 'hash' => '3e6f5225bc2fffacbc20c9de37ff2dae1e20892e', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '3f761f7c10b91628e6f3108bf356bbc7829d806e', + 'hash' => '3ef5eac10878eacd2d03a279d1212362080c6e76', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '6e04a648f8c1f77c5244040d8af6e6632e42626c', + 'hash' => '3f761f7c10b91628e6f3108bf356bbc7829d806e', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '08f7a2a316a9f7c6b0db544ed20673ea2190964e', + 'hash' => '45f0073abd6bef076934340c9049609e05fbb151', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '475b5e52f544b996f657c143b897287b87b61978', + 'hash' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '10b5b36b4aadc46c0a946b6e76e087ccdddf8b86', + 'hash' => '475055ec71ad48f5dfaf875b0fea597b5cbbee64', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'd4e679a6d0a1a4bafd9ab6865737bb99ff5527f6', + 'hash' => '475b5e52f544b996f657c143b897287b87b61978', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '9a642175d1f06e69544a2785b71ee988b233a785', + 'hash' => '4cd2eb67bb3d65b608170bcb4841474baceb9069', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'dcc0310c5d21720bcda6dc24d4553a52f3227c3f', + 'hash' => '50cfc1b4d8bcba48bed57d6d42f58b4a900419ab', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '3e68ace3e3ab641f5c26bb2dbdea21c188478f8d', + 'hash' => '530a0fd92cd7d7b670ac41812d62ec678b948ec8', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '530a0fd92cd7d7b670ac41812d62ec678b948ec8', + 'hash' => '56ac76c803899cb0c7569d652723047b5d18bc78', 'public_location' => [ - 'database' + 'database', + 'keystore' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'private_location' => [ + 'keystore' + ], + 'given_name' => 'address@hidden' }, { - 'hash' => '352482b9c915aebb3e4665b6003613da58a77bfd', + 'hash' => '5daf6aee9709afea92b1cb9a8179687f66ea69f9', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '7f7dd7ca124226d5a641f7d499868874251ada0d', + 'hash' => '69277a24d69f7ae896992a01cf511846d407d88e', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '28f149d20e73e59e4694c3066cf5dd4eb7c0ff30', + 'hash' => '6e04a648f8c1f77c5244040d8af6e6632e42626c', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'baca2a48be1711d21240370b43c92da564aee1cb', + 'hash' => '77a0ba3deaa568ed3f39b84b7fc4074fed50fda2', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'fa17dc84a60cc727ff1653ea30b6323c40c9455d', + 'hash' => '7a9425a8910bc98b1671ceea937b8ee31e21d3eb', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { 'hash' => '7bdc27ad344fe39e371e286692a659ad8686d25e', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '5daf6aee9709afea92b1cb9a8179687f66ea69f9', + 'hash' => '7f7dd7ca124226d5a641f7d499868874251ada0d', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'b52c1f44ed4317506dc0658054ec14e8060b6a8b', + 'hash' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'public_location' => [ - 'database' + 'database', + 'keystore' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'private_location' => [ + 'keystore' + ], + 'given_name' => 'address@hidden' }, { - 'hash' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', + 'hash' => '823379dceb7071cd11589dfbff6e6e0066a97fb6', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'c5180de8b1a23287ac2a3cfd506bd5453726e205', + 'hash' => '89e501daafa74082c794588128af9eea371eec85', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'ca09aeca875237679c4bb193d5b2d02747da9ead', + 'hash' => '8ad89008af9db804b7cc26045f9c0f4b1e059c7a', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'edc4385187c7b08669d6b466039534e2dd3aaf60', + 'hash' => '910ab13e7ff72487fd62c3d099f3a8275b37da1f', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '0d607d8724f015664fa0ca0e1a282fe708f2674b', + 'hash' => '9a642175d1f06e69544a2785b71ee988b233a785', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', + 'hash' => '9af372ca893b885a0388a540b0de3bd7b7db9bc9', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '910ab13e7ff72487fd62c3d099f3a8275b37da1f', + 'hash' => '9f960ee3b4e37e7b3b8e6b9ba91dc16f905ce5fd', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '3e6f5225bc2fffacbc20c9de37ff2dae1e20892e', + 'hash' => 'a721e7baa4975e3d4ca50b791f3b7f0c1cef81d5', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '89e501daafa74082c794588128af9eea371eec85', + 'hash' => 'a75aa5f03482ac103ff8b9c9004f3881dcd0e4a5', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', + 'hash' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', + 'hash' => 'b52c1f44ed4317506dc0658054ec14e8060b6a8b', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '0f012271f17b1ed775684051a632f32b12a27892', + 'hash' => 'baca2a48be1711d21240370b43c92da564aee1cb', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '69277a24d69f7ae896992a01cf511846d407d88e', + 'hash' => 'bc80b5567c22e4de9adbe60e2b0ece6480d6367f', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '9af372ca893b885a0388a540b0de3bd7b7db9bc9', + 'hash' => 'c5180de8b1a23287ac2a3cfd506bd5453726e205', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'e5d7097b0d1064ee61732996fa6b79d4e23749b0', + 'hash' => 'ca09aeca875237679c4bb193d5b2d02747da9ead', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '34f20cccf79c55e835757bb2e845690b5b0bfff6', + 'hash' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'public_location' => [ - 'database', - 'keystore' + 'database' ], - 'name' => 'address@hidden', - 'private_location' => [ - 'keystore' - ] + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', + 'hash' => 'd4e679a6d0a1a4bafd9ab6865737bb99ff5527f6', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'bc80b5567c22e4de9adbe60e2b0ece6480d6367f', + 'hash' => 'd8687f734a1d1af7225cf64e9e2ef19dd206d46d', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '8ad89008af9db804b7cc26045f9c0f4b1e059c7a', + 'hash' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '001b3d7fe46175069970c725e5d91eb6ce5bc784', + 'hash' => 'dcc0310c5d21720bcda6dc24d4553a52f3227c3f', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'a721e7baa4975e3d4ca50b791f3b7f0c1cef81d5', + 'hash' => 'dd7cbda15fd0bfac84739745686d1a2d4338b260', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'ed5da650ec723c2c4172169df9d9ddf4e6b54f2c', + 'hash' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { 'hash' => 'e04dc45b93ae30904e06bdf7e5002f1702e2c408', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'f1c27dcf280dbbdd154917614dcba45dcbf2e194', + 'hash' => 'e209e11781173a8b261244f1d09bc99a2f470cfa', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '475055ec71ad48f5dfaf875b0fea597b5cbbee64', + 'hash' => 'e5d7097b0d1064ee61732996fa6b79d4e23749b0', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '823379dceb7071cd11589dfbff6e6e0066a97fb6', + 'hash' => 'e61537e0d9f9a7af7597ffccde6e6389861d37ab', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '45f0073abd6bef076934340c9049609e05fbb151', + 'hash' => 'ed5da650ec723c2c4172169df9d9ddf4e6b54f2c', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => 'a75aa5f03482ac103ff8b9c9004f3881dcd0e4a5', + 'hash' => 'edc4385187c7b08669d6b466039534e2dd3aaf60', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '4cd2eb67bb3d65b608170bcb4841474baceb9069', + 'hash' => 'f1c27dcf280dbbdd154917614dcba45dcbf2e194', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' }, { - 'hash' => '3c5bcd300193a6b8e9a39a2fbf8185e2fa6942e1', + 'hash' => 'fa17dc84a60cc727ff1653ea30b6323c40c9455d', 'public_location' => [ 'database' ], - 'name' => 'address@hidden' + 'local_name' => 'address@hidden', + 'given_name' => 'address@hidden' } ]; ========== leaves ========== @@ -280772,6 +281558,7 @@ $VAR1 = [ '346276c305130b8e427c176b28c71d5a7470e9b0', '35ea44c46180349654066edd84687a709db6a5a4', '3653bb03b0ed987ad98921e00d2b9cf646122165', + '365b4d75ba89daba514aa591798c28b4e262c025', '36a71ec660140dcaa3ef5a987fba0d3cdd7c90a9', '378aff6e62d7564e762464bed67320db426637cf', '38fc19ea1030796f4b7e67ed61d31a80c2555f87', @@ -280794,6 +281581,7 @@ $VAR1 = [ '558588430023a79baabeb035fedcfaba55a44f53', '599515889a29e0861cbf15b6b221d359c29c24ee', '5cc1ed0346c5129ddd77ae895985bf743f349cae', + '5d6b88e48e877ce680168756043ac728da5a38ff', '5ddb8bffb28ed87c80863c5c0bbf879ddec73852', '5fdc8b142c6549e04a716547c50505c2abfa3b53', '60bd3993419e09405366e18fbe8d294b2b0f2944', @@ -280805,6 +281593,7 @@ $VAR1 = [ '6a014000b650e23ada69c507cde7a1cc980a0668', '6acf828ba82bcc500ef3a881428442e4b178af49', '6b6206a57daa90c380cb1de2f0ea23c14de577ef', + '6bbe99fc61612b73e024e92c8e5d53454d0a9e20', '6c5f277ee80220df961db23a3f3d91854f837872', '71620ce2260bd6c95cdb68ecaf642d382a0abd82', '71be1879dcfd78c088c8558a7dd7ce30d3bd47bc', @@ -280820,9 +281609,7 @@ $VAR1 = [ '7e2b51a34361667b99afe82bb35b9f2d88ba1891', '7f9ca7ae72b3e77d4860d9e2d8d46dfea68a4b71', '81972e7ec41265d7937a367c217f3d7759cb26ca', - '81f69b4fe902d3cc399043aa735a44b19e585b32', '8644c50dada635ae4816d0d096949e80cb88f1f9', - '8675da8db99a03ac8c65fe92a04943310a771a91', '87c49d8c075d248bf6c74bc753c041ac8adfc4c9', '89197d1dface0b291f03dd1bff5295d3a0824a86', '89e83b7a7922be3498891bfe6376d598522de3dc', @@ -280836,7 +281623,6 @@ $VAR1 = [ '955da769aa25eaeaba74fbbb76739693fec40297', '95d91a408c106c664c001e8a9d9a9cca483bc91b', '9600f554fa1810f85bcfba07023afebc9de842ae', - '97595a2f1ea4f2b5481627c010e17b8f1dde99ba', '9b37dfe12bb6cbdfdf2582c7dac6ab82757e2375', '9b895b2c42372021a37b24779e105554bd558198', '9d8c92fc394a058c48dc67caea7b78a7f18968ea', @@ -280875,7 +281661,6 @@ $VAR1 = [ 'df4d884a4dee0e59b16f9e5309c75a7d4d0dc521', 'e118d6cc823d9d6d9724ffee609f7e841c599fe5', 'e60b9f30d088cbc375bbcade80e04bdddd25ebe9', - 'e7b78eb1b3067bfd23fc9cd048e836064ba0b96a', 'e7e8625e400d770c52a6a8a86a8b8c5af2784af8', 'e82382ccb5787a7d341a73bf6664c0fcab04baca', 'e9288dc82cbc19f00b882a7f820d383c70576b1e', @@ -280913,31 +281698,31 @@ H4sIAAAAAAAA/2WOW2rEMAwA/30KkwMU+SFbOssS ========== packets_for_certs ========== [rcert ec5d40149421cbd1b6984de0806d323f9e1e6e60 branch - address@hidden + 7fe029d85af4de40700778b9784ef488fac2c79c bmV0LnZlbmdlLm1vbm90b25lLmNvbnRyaWIubGliLmF1dG9tYXRlLXN0ZGlvLnRlc3Q=] NNp7Kh74l8Of8JY+eCNkEqpyLqCwB+NvP9FL9JKsNmxdlOW2RZM2oLsRR15PpI9jePevHx0l9LSwCFslVbxN2WB05NMqq8RGaquU+Yh6G4w3/bZE8fXKRaMAMb8sJu+YFA85alYi8bfv8o17/bLFhfy0rRT12aSdtQyqfgYbKGQ= [end] [rcert ec5d40149421cbd1b6984de0806d323f9e1e6e60 changelog - address@hidden + 7fe029d85af4de40700778b9784ef488fac2c79c bWVyZ2Ugb2YgJzcwNTNiYzVlZWM1ZGNlZTgzNGUxMjZlYmQyNzZlY2JiMzdlOTIyNGInCiAgICAgYW5kICdkYjY0ODAyN2FjYmUzNzU5OWMxYmUyYzRmNmQ1MmQ5YTdkNDkyODY0Jwo=] EE5D9u86szrFo810vsF+f+Yar0J+wNGzPdKKptCrYnt+vD+IHYlukGdAp1g15D/HNQ/bdoirYhXTqMNdzenSpUlO9viHCdNodcDBkLqALYVLWoWW89i23B1ToZTYKVKF7yB1JRcoOKLl5X03QHTpily09m3MCcf1elAfE4+B4ig= [end] [rcert ec5d40149421cbd1b6984de0806d323f9e1e6e60 date - address@hidden + 7fe029d85af4de40700778b9784ef488fac2c79c MjAwOC0xMC0xMlQwODozMjozNA==] M/wVyrh5T7NhAIrmr+AsYY5vnhCNqPXHs7D3s50mAtZUCyhgZ7RCz58MjnC0vymgqeVtUg4B0EXJHrgOI43babWAflrBECphTOImAr+yujALZv2bvF/8K6Tvph9NSDpHa12mHiWl63qZH70dho2xeAG3jerEYi7V2ftjb6h9QOg= [end] [rcert ec5d40149421cbd1b6984de0806d323f9e1e6e60 author - address@hidden + 7fe029d85af4de40700778b9784ef488fac2c79c YWVjb29wZXJAY29vc29mdC5wbHVzLmNvbQ==] nZcKMhN3QiWoe4Jj4D0VJ8jRIJUrX2YPQxnBfSZrPX2l2bWOKlSpbsSVvB6P0pyCSvugSbRXyPHLRvU61TXGJavxG8PDW+ejwt8x9+VvL2TPbjaLfgBYmfH4IjLTehuHvxtwRoxcvhbWU9oyCcwDMU/Bue2/d9NVrRhXe/ooJtw= [end] [rcert ec5d40149421cbd1b6984de0806d323f9e1e6e60 changelog - address@hidden + 7fe029d85af4de40700778b9784ef488fac2c79c VGhpcyBpcyBhIHRlc3QgYnJhbmNoIGZvciB0aGUgTW9ub3RvbmU6OkF1dG9tYXRlU3RkaW8gUGVybCBsaWJyYXJ5LiBQbGVhc2UgZG8Kbm90IHVzZS4K] fuKsBRBvze9GbNJcg9zDpX1zxWzE3u30mFXqdmUMQVY7r2e0eAULa0wsBTTHR+C9MZ5j7RMElbSdNpkTaqr4roULg3tCw04mWwQceMt3Vpd2JXifpp2cPrGD6BFQtVw3AwQpSE8S2U2b6BxlN8xwMY2tnmwfYhmk9i6GFMHFnZI= [end] @@ -280945,22 +281730,22 @@ db648027acbe37599c1be2c4f6d52d9a7d492864 7053bc5eec5dcee834e126ebd276ecbb37e9224b db648027acbe37599c1be2c4f6d52d9a7d492864 ========== put_file ========== -Put test-put-file.txt, file id = e7d563f52bf5295e6dba1d67ac23e9f6a160fab9 -Put revision, revision id = ee553dc1d3b4dcbca1f2e5481a7b5af7e1a25028 -Put modified test-put-file.txt, file id = 763d8e4b75a41567162ee26dde888e740936035d -Put revision, revision id = 1cb65bf9cf34282d9bf438851e92d3ada69758be +Put test-put-file.txt, file id = e203d4ef09d404fa5c03cf6590e44231665be689 +Put revision, revision id = 15f654b3568e451093fe4b16f04bbafe4a7f3812 +Put modified test-put-file.txt, file id = 84dca3c4c2a464f21963f4ebaefbd0042094d286 +Put revision, revision id = 8f9fefdb9507abe03dae2fc95a1c3fcd2c930868 Displaying revision change log: mtn: updating along branch 'net.venge.monotone.contrib.lib.automate-stdio.test' -mtn: selected update target 1cb65bf9cf34282d9bf438851e92d3ada69758be +mtn: selected update target 8f9fefdb9507abe03dae2fc95a1c3fcd2c930868 mtn: [left] 42ed9d4d3c7da06d47977ad877404b03b73fc177 -mtn: [right] 1cb65bf9cf34282d9bf438851e92d3ada69758be +mtn: [right] 8f9fefdb9507abe03dae2fc95a1c3fcd2c930868 mtn: adding test-put-file.txt -mtn: updated to base revision 1cb65bf9cf34282d9bf438851e92d3ada69758be +mtn: updated to base revision 8f9fefdb9507abe03dae2fc95a1c3fcd2c930868 ----------------------------------------------------------------- -Revision: 1cb65bf9cf34282d9bf438851e92d3ada69758be -Ancestor: ee553dc1d3b4dcbca1f2e5481a7b5af7e1a25028 +Revision: 8f9fefdb9507abe03dae2fc95a1c3fcd2c930868 +Ancestor: 15f654b3568e451093fe4b16f04bbafe4a7f3812 Author: address@hidden -Date: 2008-10-16T18:42:35 +Date: 10/16/08 19:42:35 Branch: net.venge.monotone.contrib.lib.automate-stdio.test Modified files: @@ -280970,10 +281755,10 @@ Automated checkin #2. Automated checkin #2. ----------------------------------------------------------------- -Revision: ee553dc1d3b4dcbca1f2e5481a7b5af7e1a25028 +Revision: 15f654b3568e451093fe4b16f04bbafe4a7f3812 Ancestor: ee9d2b736adc24fb9a5926f68304814e93ee8726 Author: address@hidden -Date: 2008-10-16T18:42:30 +Date: 10/16/08 19:42:30 Branch: net.venge.monotone.contrib.lib.automate-stdio.test Added files: @@ -280987,7 +281772,7 @@ Author: address@hidden Ancestor: 5fee1e9c463d3cd7439bea9c483d9d88d0b057d5 Ancestor: b9a5862a8ba577538f27c69656d8a6bb60ecb777 Author: address@hidden -Date: 2009-01-05T16:57:47 +Date: 01/05/09 16:57:47 Branch: net.venge.monotone.contrib.lib.automate-stdio.test Modified files: @@ -281007,7 +281792,7 @@ Author: address@hidden Revision: 5fee1e9c463d3cd7439bea9c483d9d88d0b057d5 Ancestor: a52a5d08f7e8b4052c23e80ea5e554125c5ee49c Author: address@hidden -Date: 2009-01-05T16:56:02 +Date: 01/05/09 16:56:02 Branch: net.venge.monotone.contrib.lib.automate-stdio.test Modified files: @@ -281021,7 +281806,7 @@ Author: address@hidden Revision: b9a5862a8ba577538f27c69656d8a6bb60ecb777 Ancestor: a52a5d08f7e8b4052c23e80ea5e554125c5ee49c Author: address@hidden -Date: 2009-01-05T16:55:45 +Date: 01/05/09 16:55:45 Branch: net.venge.monotone.contrib.lib.automate-stdio.test Modified files: @@ -281081,7 +281866,7 @@ 3005403ab8d3e3f20badb1aefb4e0a5f5f940648 9af372ca893b885a0388a540b0de3bd7b7db9bc9 address@hidden e5d7097b0d1064ee61732996fa6b79d4e23749b0 address@hidden 3005403ab8d3e3f20badb1aefb4e0a5f5f940648 address@hidden -34f20cccf79c55e835757bb2e845690b5b0bfff6 address@hidden +56ac76c803899cb0c7569d652723047b5d18bc78 address@hidden d37d08fafaece16e9a79b4ea853326624e185cbd address@hidden bc80b5567c22e4de9adbe60e2b0ece6480d6367f address@hidden 8ad89008af9db804b7cc26045f9c0f4b1e059c7a address@hidden @@ -281100,7 +281885,7 @@ 7fe029d85af4de40700778b9784ef488fac2c79c [private keys] 7fe029d85af4de40700778b9784ef488fac2c79c address@hidden -34f20cccf79c55e835757bb2e845690b5b0bfff6 address@hidden +56ac76c803899cb0c7569d652723047b5d18bc78 address@hidden ========== roots ========== $VAR1 = [ @@ -281142,7 +281927,7 @@ $VAR1 = [ $VAR1 = [ '05cb265ad778107218701fa76a91bdf4770b85a8', '110816e646d42ca45e8205778255cece9c8f2159', - '1cb65bf9cf34282d9bf438851e92d3ada69758be', + '15f654b3568e451093fe4b16f04bbafe4a7f3812', '1d848e1155d9c78c0810c7cacf3fdca53cd21b5c', '1d8d91f5976860dbcabe209829ff2e34d8119a58', '299e692218c20a712a502ccb3846f0c9be4782ed', @@ -281156,6 +281941,7 @@ $VAR1 = [ '6be0ee4f6d5f04ce50be594e411eded4a5926ca3', '7053bc5eec5dcee834e126ebd276ecbb37e9224b', '7b56d78dd70bdd95b7ee5e57ba72111777d19946', + '8f9fefdb9507abe03dae2fc95a1c3fcd2c930868', '90d1a3e5c6395667d4c47494443a9cf3252380bd', '95c9125530ea297d244b522426997942635d3891', '9f1fe877d6863b2560779389e54de4bc785677f8', @@ -281168,7 +281954,6 @@ $VAR1 = [ 'db648027acbe37599c1be2c4f6d52d9a7d492864', 'ec5d40149421cbd1b6984de0806d323f9e1e6e60', 'ec729409bd75254d024b618b7447b61530f10c43', - 'ee553dc1d3b4dcbca1f2e5481a7b5af7e1a25028', 'ee9d2b736adc24fb9a5926f68304814e93ee8726', 'ef0223d004c4d8d6a71899d603b508a558437ea7', 'f06e40cb1d2b4f5c0db387e7a6c37681f1f89294' @@ -281243,667 +282028,670 @@ $VAR1 = [ ]; ========== tags (no branch restrictions) ========== ---------- Raw Data ---------- -format_version "1" - tag "0.5-release" revision [5db0a3dfb923d050d096c7c63ab23592c7ebc4c3] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "Monotone-AutomateStdio-0.02" revision [a4a773ecc74c1b80a03c60f57c6cc7bec85fb2cf] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio" tag "Monotone-AutomateStdio-0.03" revision [09a00eb14482dde8876436351c6c4392b1e7f0b1] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio" tag "Monotone-AutomateStdio-0.04" revision [f9258ad6d6194bee2ff31b62d370caf12670bae7] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio" + tag "Monotone-AutomateStdio-0.05" +revision [5d6b88e48e877ce680168756043ac728da5a38ff] + signer [7fe029d85af4de40700778b9784ef488fac2c79c] +branches "net.venge.monotone.contrib.lib.automate-stdio" + tag "Monotone-AutomateStdio-0.1" revision [e68fc9c14e0720d649423a2ec66153a87d4505f2] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio" tag "automate-stdio-duplicate-test-tag" revision [4a0895d850e5273c743ee514f816158e7dea7af7] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio.test" tag "automate-stdio-duplicate-test-tag" revision [a52a5d08f7e8b4052c23e80ea5e554125c5ee49c] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio.test" tag "automate-stdio-test-merge-point-1" revision [ec729409bd75254d024b618b7447b61530f10c43] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio.test" tag "cvssync-0.24" revision [e07b49a2f9e4b64abed0a859e58609c5e81e33e3] - signer "address@hidden" + signer [20289365fc90ef501739c57e359a87191476859b] branches "net.venge.monotone.cvssync" tag "git-viz-0.1" revision [7891617d793bc084d199a7fea1cf7c2647d8bedc] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz.git" tag "git-viz-0.2" revision [c065a4c50426f385048ed22fd4d9434c7682c891] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz.git" tag "guitone-0.2" revision [6bacfd1a7ffa4423dd116e5f44527440daf1336d] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" tag "guitone-0.3" revision [532e31a9e83d91c5eb123718ecf9c1f90f02fb87] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" tag "guitone-0.4" revision [9c76fcfc6e6102452eee0a14e94e45c6e61492f4] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" tag "guitone-0.4.1" revision [bccc8123eb32e898a5ab1609e2f97a3bddb2c937] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" tag "guitone-0.5" revision [bc913980342d5657ddc17bc51d843fef55b857d7] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" tag "guitone-0.6" revision [be2cb11ef9e778d8c890a904d309607d72c17d3a] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" "net.venge.monotone.guitone.releases.0_6" tag "guitone-0.6.1" revision [a2026322a61e065bfacb7e25f9eeebb914d8aa2d] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone.releases.0_6" tag "guitone-0.6.2" revision [9b44350cda2792693bab8efe9f25e5a3da64030a] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone.releases.0_6" tag "guitone-0.6.3" revision [b59d53eeb40051bc9c5920e97175fce8efb5faa0] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone.releases.0_6" tag "guitone-0.6.4" revision [77af74ce93d47d4e067f3dea1e42bd42cebb0fe1] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone.releases.0_6" tag "guitone-0.7" revision [bdb68504d8b555842c6696cd877daaed1d13a1f1] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" "net.venge.monotone.guitone.releases.0_7" tag "guitone-0.7.1" revision [dc63969abd55bcc7e885210a09eda563609a2e7b] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone.releases.0_7" tag "guitone-0.8" revision [693648f1db9ea80d762665f237a0b1faf24f5f0b] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" "net.venge.monotone.guitone.releases.0_8" tag "guitone-0.9" revision [42d8cdf721b282a4fd9c239019daf9f4b56ed391] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone.guitone" tag "monotone-0.10" revision [78f49cbf7c4855bb6fea19283b1c544ad5bb030e] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.11" revision [c35c8f784e0aab480f8f69c825ca0f5651798c03] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.12" revision [9df02637d584d68935b5bfde623f550c52bec51e] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.13" revision [80cac95cf5e4a4073a3c11c892e8a5e6d7f705ba] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.14" revision [7fb50a12b78ef28cfd45ca0e16bb96da1a7ac0c1] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.15" revision [019643b46a060426ecdce8a56030f48ea3ed5bf2] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.changesets" tag "monotone-0.16" revision [bb7574c217b3c9e9d9edec188081b227e9a4b005] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.17" revision [ed73ad79ecc7be6c68c00f18372526443cb72cb5] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" "net.venge.monotone.rebuild_tracking" tag "monotone-0.18" revision [af954fddaae3e259114d60e832fa2633529dafd8] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.19" revision [f51529a1f4035d3acd8c05e65a6dc432db864d31] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.20" revision [72f513befd52c2524ede67c08ca74aa0bac2230c] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.21" revision [b2ea4c2051dc41ef97d50e60a48b70c780809416] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.22" revision [f13371e0c8317e4f4bca575bfea7d585874e227f] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.23" revision [b74dfdb8a1998929f8d28c2e13f02149b861900b] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.24" revision [59a49a49965a02a2b2a3205a462c248218f4a952] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.25" revision [cb8355151f3dede0dd59d1af3721984d2e804409] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.25.2" revision [335e342d9c8a6850b848a5737f39ec0b4090697f] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.0.25-fixes" tag "monotone-0.26" revision [4342565107f26ceda955b66c66b5b7ec152f314e] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.26pre1" revision [e9ee696198eaf2d39b5ed0f7952866c0edf07cd2] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.experiment.rosters" tag "monotone-0.26pre2" revision [9ca37b918cb5309d8d3b0be000dc8a1151df262f] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.26pre3" revision [b3b3ea3aca4e03267a5487d05f717cea24a521de] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.27" revision [341e4a18c594cec49896fa97bd4e74de7bee5827] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.28" revision [8c6ce7cb2ccd21290b435e042c2be4554ec6a048] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.29" revision [796bc8596d6c5c68828fbfb6a620a09a3af15ded] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.30" revision [843924a5e7fd46b3fa2c531eb28ae597b6172aed] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.31" revision [1bd1fe1e811dce82bee09b9f0effca3225bd1cee] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "monotone-0.32" revision [3f0fa5c1d232d37d47f6436fe74919dd3cd003b1] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.33" revision [cfebc8eb7049def476cc5fd61fef64eb14120e68] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone.release-0.33" tag "monotone-0.34" revision [6ae6de16b31495a773ac3002505ad51f2e4a8616] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.35" revision [f92dd754bf5c1e6eddc9c462b8d68691cfeb7f8b] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.36" revision [e4bc808d89e029ce623f9e8f2b10c84006b83fb5] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.36-1" revision [a6d8b6a4b6c95782b1e721b5652cd60d0d56df3b] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.37" revision [c21eefc002b8f9c430e9f4cc16c4af7b852f54ec] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.37-1" revision [aeca651b8fd8db5004a5fdbdfe49d2c536997c89] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.37-2" revision [a601404533352364303a0397dcc35aa5903b6f4b] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.37-2a" revision [bab1e6e94070b83703d9c037ed6ee30b1f964bce] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.37-3" revision [c5a32f5fb334a32c4aadcf3a6ebf140ed4a4df3e] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.37-4" revision [ae02e4c9615687381030cf0e80aaf651921a3f4c] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.38" revision [c1757f6cde49bddd77c82580059105bc470145b2] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.38-1" revision [1abf2fb817e0c873af11692ee25764193e9980e3] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone.debian-diff" tag "monotone-0.39" revision [dedb7e96fe917e0e8a30862b38e8092eefd7afa3] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.39-1" revision [f344a1056aecda30ed42babcd503cfc8f3728ba4] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.40" revision [5ccc279f9dea0444b47f03dd5291ecc985fcb7f6] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone" tag "monotone-0.40-1" revision [4ec0368859a277471aef61213a6d86638f92f9e6] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone.debian-diff" tag "monotone-0.40-2" revision [c35302cf0d387044af072d1dbcac1c78f4fabb17] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.40-3" revision [5ad97245c39ed511dff2003697e1b94c31da9e84] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.40-4" revision [4ede752e094038b1215556f2045a73aa49c38a93] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.40-5" revision [cff68817b42559f7a86b2007a4d032b2eae7bb43] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.40-6" revision [ffd011757a033b9407b4330f7498f104983cf486] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.40-7" revision [ffd011757a033b9407b4330f7498f104983cf486] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone.debian-diff" tag "monotone-0.41" revision [9b264ec9247ce99cd1fdc5293e869c1a60b01c4c] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone" tag "monotone-0.41-1" revision [592d1a58fc22c9e30bd08fd01d9e4466ecd65c9d] - signer "address@hidden" + signer [46152fb968a96ebddcde6cc6513af72b6d24bcb7] branches "net.venge.monotone.debian-diff" tag "monotone-0.42" revision [75ac12dd5b02025981edd6cd03caebb54721e481] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone" tag "monotone-0.42-1" revision [c231d1e222a047a6b7323495d4af1901bc442050] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone.debian-diff" tag "monotone-0.43" revision [ddc6546051abf6475c40a3fdba272e2f82a40e94] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone" tag "monotone-0.44" revision [7a4832143b3146ca89f5cb91e0e571d05e29d4b9] - signer "address@hidden" + signer [1aaecf3a7c227e5545b0504aea5d3716d3128117] branches "net.venge.monotone" tag "monotone-viz-0.1" revision [b2f049f070b3e66e59609121a4b8a0788afe870f] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.10" revision [f9bf0ab97b46d84bceea1b6d40a7ca3652b79646] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.11" revision [7d7563827180ddac77c7b76eeeea394fc036956f] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.12" revision [9c43823e16594bcdc66833270f0718b138dcb862] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.13" revision [09d052dc79a14006901ae946c9bbab117715f62e] - signer "address@hidden" + signer [d9e7a76879a99dad705f058e24299a7b289f03d8] branches "net.venge.monotone-viz" tag "monotone-viz-0.14" revision [b75ee84cd6f41295e19b900ab52a9f136173c8e3] - signer "address@hidden" + signer [d9e7a76879a99dad705f058e24299a7b289f03d8] branches "net.venge.monotone-viz" tag "monotone-viz-0.15" revision [2ed4efc209552085f604decfe5466ac429babd43] - signer "address@hidden" + signer [d9e7a76879a99dad705f058e24299a7b289f03d8] branches "net.venge.monotone-viz" tag "monotone-viz-0.2" revision [3b111a4e72fb5adfe774e4a0f9f858b4642512d0] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.3" revision [232652aa6421992450c2d9f9053966a4aa66c42a] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.4" revision [a308ffaadad87db31f88a1d64b42da76240b1fdb] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.5" revision [f258dc911d0b88a38af4a7f3be3628c8f63eae6b] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.6" revision [b21a5ecea2dd82a0ae21e3e17bafe56fa70a9371] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.7" revision [98fc30e0589d9ac5a6070faef36164ba1518db64] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.8" revision [fef4e36d576c36353cfb058a8863d1d47800f019] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-0.9" revision [512685c9aa1923637ed8a8a7b2fc20d18f1d4c26] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone-viz" tag "monotone-viz-1.0" revision [4e1fae6483377e742dbef3491595a48fdb018d89] - signer "address@hidden" + signer [d9e7a76879a99dad705f058e24299a7b289f03d8] branches "net.venge.monotone-viz.automate" tag "monotone-viz-1.0.1" revision [7d875567ae9e126bd84ceb6ba73fb4cc7c474006] - signer "address@hidden" + signer [d9e7a76879a99dad705f058e24299a7b289f03d8] branches "net.venge.monotone-viz.automate" tag "monotone-viz-1.0.1-1" revision [3d44c5dc2819aea71f826cedc5a1cb6745b06943] - signer "address@hidden" + signer [ac4c1f29d255238c8af1d04416340dbd5ca4d124] branches "net.venge.monotone-viz.debian-diff" tag "monotone-viz-1.0.1-1" revision [c6450ab9fae0a566a53d57a7cb6bed6b6587912f] - signer "address@hidden" + signer [d37d08fafaece16e9a79b4ea853326624e185cbd] branches "net.venge.monotone-viz.debian-diff" tag "monotree-0.1" revision [8a121346ce2920b6f85df68b3b620de96bd14a8d] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.contrib" "net.venge.monotone.contrib.monotree" tag "monotree-0.2" revision [5d288b39b49613b0d9dca8ece6b9a42c3773f35b] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.contrib.monotree" tag "monotree-0.3" revision [35cff8e8ba14155f5f7ddf7965073f514fd60f61] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.contrib.monotree" tag "monotree-0.4" revision [f1afc520474f83c58262896ede027ef77226046e] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.contrib.monotree" tag "mtn-browse-0.1b" revision [c5611a7c7cc9efb53ec135954205fa29eb2ce06b] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.2b" revision [d5950cd70dd58540d33812087d87ebbde2654379] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.3b" revision [6138acce2ac1364da497f48324e5c103a78926f7] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.41b" revision [8545213b7806a9d8fed4c4ee7566617f8a381c0a] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.42b" revision [e4fef0e0e5aa51b702fea46442c85628bd1e4b3e] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.43b" revision [84ebc3ffcf4be16d546918a597a5ce0da728e80f] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.44b" revision [866d069e56f1a253fddfb18a8fdb8d5a67363d3e] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.45" revision [b596f518d7116e3feb10ad1be8346d815b8fc9c6] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.45" revision [f287281486e54970f7496521cf4c157f5c0d0722] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.4b" revision [43fe14a63ad8d76544bfa88fdc61316022207c1a] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.60" revision [b596f518d7116e3feb10ad1be8346d815b8fc9c6] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.61" revision [2a5a3c6b9ecdc61be60afd07d524b7e92e83834f] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtn-browse-0.62" revision [c4c287c3b4548ad54775c46f401c9e862408a3af] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "mtsh-0.1" revision [c0f9fe1dc6bf268258f300b842b55150f88ec875] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.contrib.mtsh" tag "mtsh-0.1x" revision [034af8b07592f1bf5265ebbbe70a3cc91c449b3c] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone.contrib.mtsh" tag "popt-1.7" revision [5db981f29bc87ed0dbdc184e719dc36cfc8d41d4] - signer "address@hidden" + signer [de84b575d5e47254393eba49dce9dc4db98ed42d] branches "net.venge.monotone" tag "toolbar-customisation-attempt" revision [459004c7341b8f264e62f61f7f50e1cc94eee72b] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.mtn-browse" tag "viewmtn-0.01" revision [fb01334b957909a7ff44f4071c48456abedadbc5] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.02" revision [bcda6a2845c1f4dad86e2bc00549ba72fc877d23] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.03" revision [ef7706f1c6a8121b4fd022683c0022a0975e14f8] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.04" revision [a75a8c705a7a735941cc5032aecfa132a398c0d8] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.05" revision [4822854912d3716cb201d6efa0aa5713f0c43e02] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.06" revision [90481e30f05343daa34fedb1aeb13d99624b3167] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.07" revision [4f6930b2c426072bccdecc945cd0027a22628db6] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.08" revision [9707a8f628663da4792e08f936fdb379a4902811] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.09" revision [936d1a8e3f0ceef17608357644dc9128941b708d] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches tag "viewmtn-0.10" revision [ff6f92608b076dabc1da2f37b4aa326f47a8a7eb] - signer "address@hidden" + signer [475b5e52f544b996f657c143b897287b87b61978] branches ---------- Structured Data ---------- $VAR1 = [ { 'revision_id' => '5db0a3dfb923d050d096c7c63ab23592c7ebc4c3', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -281911,7 +282699,7 @@ $VAR1 = [ }, { 'revision_id' => 'a4a773ecc74c1b80a03c60f57c6cc7bec85fb2cf', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio' ], @@ -281919,7 +282707,7 @@ $VAR1 = [ }, { 'revision_id' => '09a00eb14482dde8876436351c6c4392b1e7f0b1', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio' ], @@ -281927,15 +282715,23 @@ $VAR1 = [ }, { 'revision_id' => 'f9258ad6d6194bee2ff31b62d370caf12670bae7', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio' ], 'tag' => 'Monotone-AutomateStdio-0.04' }, { + 'revision_id' => '5d6b88e48e877ce680168756043ac728da5a38ff', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', + 'branches' => [ + 'net.venge.monotone.contrib.lib.automate-stdio' + ], + 'tag' => 'Monotone-AutomateStdio-0.05' + }, + { 'revision_id' => 'e68fc9c14e0720d649423a2ec66153a87d4505f2', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio' ], @@ -281943,7 +282739,7 @@ $VAR1 = [ }, { 'revision_id' => '4a0895d850e5273c743ee514f816158e7dea7af7', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio.test' ], @@ -281951,7 +282747,7 @@ $VAR1 = [ }, { 'revision_id' => 'a52a5d08f7e8b4052c23e80ea5e554125c5ee49c', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio.test' ], @@ -281959,7 +282755,7 @@ $VAR1 = [ }, { 'revision_id' => 'ec729409bd75254d024b618b7447b61530f10c43', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio.test' ], @@ -281967,7 +282763,7 @@ $VAR1 = [ }, { 'revision_id' => 'e07b49a2f9e4b64abed0a859e58609c5e81e33e3', - 'signer' => 'address@hidden', + 'signer' => '20289365fc90ef501739c57e359a87191476859b', 'branches' => [ 'net.venge.monotone.cvssync' ], @@ -281975,7 +282771,7 @@ $VAR1 = [ }, { 'revision_id' => '7891617d793bc084d199a7fea1cf7c2647d8bedc', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz.git' ], @@ -281983,7 +282779,7 @@ $VAR1 = [ }, { 'revision_id' => 'c065a4c50426f385048ed22fd4d9434c7682c891', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz.git' ], @@ -281991,7 +282787,7 @@ $VAR1 = [ }, { 'revision_id' => '6bacfd1a7ffa4423dd116e5f44527440daf1336d', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone' ], @@ -281999,7 +282795,7 @@ $VAR1 = [ }, { 'revision_id' => '532e31a9e83d91c5eb123718ecf9c1f90f02fb87', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone' ], @@ -282007,7 +282803,7 @@ $VAR1 = [ }, { 'revision_id' => '9c76fcfc6e6102452eee0a14e94e45c6e61492f4', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone' ], @@ -282015,7 +282811,7 @@ $VAR1 = [ }, { 'revision_id' => 'bccc8123eb32e898a5ab1609e2f97a3bddb2c937', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone' ], @@ -282023,7 +282819,7 @@ $VAR1 = [ }, { 'revision_id' => 'bc913980342d5657ddc17bc51d843fef55b857d7', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone' ], @@ -282031,7 +282827,7 @@ $VAR1 = [ }, { 'revision_id' => 'be2cb11ef9e778d8c890a904d309607d72c17d3a', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone', 'net.venge.monotone.guitone.releases.0_6' @@ -282040,7 +282836,7 @@ $VAR1 = [ }, { 'revision_id' => 'a2026322a61e065bfacb7e25f9eeebb914d8aa2d', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone.releases.0_6' ], @@ -282048,7 +282844,7 @@ $VAR1 = [ }, { 'revision_id' => '9b44350cda2792693bab8efe9f25e5a3da64030a', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone.releases.0_6' ], @@ -282056,7 +282852,7 @@ $VAR1 = [ }, { 'revision_id' => 'b59d53eeb40051bc9c5920e97175fce8efb5faa0', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone.releases.0_6' ], @@ -282064,7 +282860,7 @@ $VAR1 = [ }, { 'revision_id' => '77af74ce93d47d4e067f3dea1e42bd42cebb0fe1', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone.releases.0_6' ], @@ -282072,7 +282868,7 @@ $VAR1 = [ }, { 'revision_id' => 'bdb68504d8b555842c6696cd877daaed1d13a1f1', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone', 'net.venge.monotone.guitone.releases.0_7' @@ -282081,7 +282877,7 @@ $VAR1 = [ }, { 'revision_id' => 'dc63969abd55bcc7e885210a09eda563609a2e7b', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone.releases.0_7' ], @@ -282089,7 +282885,7 @@ $VAR1 = [ }, { 'revision_id' => '693648f1db9ea80d762665f237a0b1faf24f5f0b', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone', 'net.venge.monotone.guitone.releases.0_8' @@ -282098,7 +282894,7 @@ $VAR1 = [ }, { 'revision_id' => '42d8cdf721b282a4fd9c239019daf9f4b56ed391', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone.guitone' ], @@ -282106,7 +282902,7 @@ $VAR1 = [ }, { 'revision_id' => '78f49cbf7c4855bb6fea19283b1c544ad5bb030e', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282114,7 +282910,7 @@ $VAR1 = [ }, { 'revision_id' => 'c35c8f784e0aab480f8f69c825ca0f5651798c03', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282122,7 +282918,7 @@ $VAR1 = [ }, { 'revision_id' => '9df02637d584d68935b5bfde623f550c52bec51e', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282130,7 +282926,7 @@ $VAR1 = [ }, { 'revision_id' => '80cac95cf5e4a4073a3c11c892e8a5e6d7f705ba', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282138,7 +282934,7 @@ $VAR1 = [ }, { 'revision_id' => '7fb50a12b78ef28cfd45ca0e16bb96da1a7ac0c1', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282146,7 +282942,7 @@ $VAR1 = [ }, { 'revision_id' => '019643b46a060426ecdce8a56030f48ea3ed5bf2', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.changesets' ], @@ -282154,7 +282950,7 @@ $VAR1 = [ }, { 'revision_id' => 'bb7574c217b3c9e9d9edec188081b227e9a4b005', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282162,7 +282958,7 @@ $VAR1 = [ }, { 'revision_id' => 'ed73ad79ecc7be6c68c00f18372526443cb72cb5', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone', 'net.venge.monotone.rebuild_tracking' @@ -282171,7 +282967,7 @@ $VAR1 = [ }, { 'revision_id' => 'af954fddaae3e259114d60e832fa2633529dafd8', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282179,7 +282975,7 @@ $VAR1 = [ }, { 'revision_id' => 'f51529a1f4035d3acd8c05e65a6dc432db864d31', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282187,7 +282983,7 @@ $VAR1 = [ }, { 'revision_id' => '72f513befd52c2524ede67c08ca74aa0bac2230c', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282195,7 +282991,7 @@ $VAR1 = [ }, { 'revision_id' => 'b2ea4c2051dc41ef97d50e60a48b70c780809416', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282203,7 +282999,7 @@ $VAR1 = [ }, { 'revision_id' => 'f13371e0c8317e4f4bca575bfea7d585874e227f', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282211,7 +283007,7 @@ $VAR1 = [ }, { 'revision_id' => 'b74dfdb8a1998929f8d28c2e13f02149b861900b', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282219,7 +283015,7 @@ $VAR1 = [ }, { 'revision_id' => '59a49a49965a02a2b2a3205a462c248218f4a952', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282227,7 +283023,7 @@ $VAR1 = [ }, { 'revision_id' => 'cb8355151f3dede0dd59d1af3721984d2e804409', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282235,7 +283031,7 @@ $VAR1 = [ }, { 'revision_id' => '335e342d9c8a6850b848a5737f39ec0b4090697f', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.0.25-fixes' ], @@ -282243,7 +283039,7 @@ $VAR1 = [ }, { 'revision_id' => '4342565107f26ceda955b66c66b5b7ec152f314e', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282251,7 +283047,7 @@ $VAR1 = [ }, { 'revision_id' => 'e9ee696198eaf2d39b5ed0f7952866c0edf07cd2', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.experiment.rosters' ], @@ -282259,7 +283055,7 @@ $VAR1 = [ }, { 'revision_id' => '9ca37b918cb5309d8d3b0be000dc8a1151df262f', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282267,7 +283063,7 @@ $VAR1 = [ }, { 'revision_id' => 'b3b3ea3aca4e03267a5487d05f717cea24a521de', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282275,7 +283071,7 @@ $VAR1 = [ }, { 'revision_id' => '341e4a18c594cec49896fa97bd4e74de7bee5827', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282283,7 +283079,7 @@ $VAR1 = [ }, { 'revision_id' => '8c6ce7cb2ccd21290b435e042c2be4554ec6a048', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282291,7 +283087,7 @@ $VAR1 = [ }, { 'revision_id' => '796bc8596d6c5c68828fbfb6a620a09a3af15ded', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282299,7 +283095,7 @@ $VAR1 = [ }, { 'revision_id' => '843924a5e7fd46b3fa2c531eb28ae597b6172aed', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282307,7 +283103,7 @@ $VAR1 = [ }, { 'revision_id' => '1bd1fe1e811dce82bee09b9f0effca3225bd1cee', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282315,7 +283111,7 @@ $VAR1 = [ }, { 'revision_id' => '3f0fa5c1d232d37d47f6436fe74919dd3cd003b1', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282323,7 +283119,7 @@ $VAR1 = [ }, { 'revision_id' => 'cfebc8eb7049def476cc5fd61fef64eb14120e68', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone.release-0.33' ], @@ -282331,7 +283127,7 @@ $VAR1 = [ }, { 'revision_id' => '6ae6de16b31495a773ac3002505ad51f2e4a8616', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282339,7 +283135,7 @@ $VAR1 = [ }, { 'revision_id' => 'f92dd754bf5c1e6eddc9c462b8d68691cfeb7f8b', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282347,7 +283143,7 @@ $VAR1 = [ }, { 'revision_id' => 'e4bc808d89e029ce623f9e8f2b10c84006b83fb5', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282355,7 +283151,7 @@ $VAR1 = [ }, { 'revision_id' => 'a6d8b6a4b6c95782b1e721b5652cd60d0d56df3b', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282363,7 +283159,7 @@ $VAR1 = [ }, { 'revision_id' => 'c21eefc002b8f9c430e9f4cc16c4af7b852f54ec', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282371,7 +283167,7 @@ $VAR1 = [ }, { 'revision_id' => 'aeca651b8fd8db5004a5fdbdfe49d2c536997c89', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282379,7 +283175,7 @@ $VAR1 = [ }, { 'revision_id' => 'a601404533352364303a0397dcc35aa5903b6f4b', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282387,7 +283183,7 @@ $VAR1 = [ }, { 'revision_id' => 'bab1e6e94070b83703d9c037ed6ee30b1f964bce', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282395,7 +283191,7 @@ $VAR1 = [ }, { 'revision_id' => 'c5a32f5fb334a32c4aadcf3a6ebf140ed4a4df3e', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282403,7 +283199,7 @@ $VAR1 = [ }, { 'revision_id' => 'ae02e4c9615687381030cf0e80aaf651921a3f4c', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282411,7 +283207,7 @@ $VAR1 = [ }, { 'revision_id' => 'c1757f6cde49bddd77c82580059105bc470145b2', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282419,7 +283215,7 @@ $VAR1 = [ }, { 'revision_id' => '1abf2fb817e0c873af11692ee25764193e9980e3', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282427,7 +283223,7 @@ $VAR1 = [ }, { 'revision_id' => 'dedb7e96fe917e0e8a30862b38e8092eefd7afa3', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282435,7 +283231,7 @@ $VAR1 = [ }, { 'revision_id' => 'f344a1056aecda30ed42babcd503cfc8f3728ba4', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282443,7 +283239,7 @@ $VAR1 = [ }, { 'revision_id' => '5ccc279f9dea0444b47f03dd5291ecc985fcb7f6', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone' ], @@ -282451,7 +283247,7 @@ $VAR1 = [ }, { 'revision_id' => '4ec0368859a277471aef61213a6d86638f92f9e6', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282459,7 +283255,7 @@ $VAR1 = [ }, { 'revision_id' => 'c35302cf0d387044af072d1dbcac1c78f4fabb17', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282467,7 +283263,7 @@ $VAR1 = [ }, { 'revision_id' => '5ad97245c39ed511dff2003697e1b94c31da9e84', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282475,7 +283271,7 @@ $VAR1 = [ }, { 'revision_id' => '4ede752e094038b1215556f2045a73aa49c38a93', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282483,7 +283279,7 @@ $VAR1 = [ }, { 'revision_id' => 'cff68817b42559f7a86b2007a4d032b2eae7bb43', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282491,7 +283287,7 @@ $VAR1 = [ }, { 'revision_id' => 'ffd011757a033b9407b4330f7498f104983cf486', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282499,7 +283295,7 @@ $VAR1 = [ }, { 'revision_id' => 'ffd011757a033b9407b4330f7498f104983cf486', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282507,7 +283303,7 @@ $VAR1 = [ }, { 'revision_id' => '9b264ec9247ce99cd1fdc5293e869c1a60b01c4c', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone' ], @@ -282515,7 +283311,7 @@ $VAR1 = [ }, { 'revision_id' => '592d1a58fc22c9e30bd08fd01d9e4466ecd65c9d', - 'signer' => 'address@hidden', + 'signer' => '46152fb968a96ebddcde6cc6513af72b6d24bcb7', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282523,7 +283319,7 @@ $VAR1 = [ }, { 'revision_id' => '75ac12dd5b02025981edd6cd03caebb54721e481', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone' ], @@ -282531,7 +283327,7 @@ $VAR1 = [ }, { 'revision_id' => 'c231d1e222a047a6b7323495d4af1901bc442050', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone.debian-diff' ], @@ -282539,7 +283335,7 @@ $VAR1 = [ }, { 'revision_id' => 'ddc6546051abf6475c40a3fdba272e2f82a40e94', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone' ], @@ -282547,7 +283343,7 @@ $VAR1 = [ }, { 'revision_id' => '7a4832143b3146ca89f5cb91e0e571d05e29d4b9', - 'signer' => 'address@hidden', + 'signer' => '1aaecf3a7c227e5545b0504aea5d3716d3128117', 'branches' => [ 'net.venge.monotone' ], @@ -282555,7 +283351,7 @@ $VAR1 = [ }, { 'revision_id' => 'b2f049f070b3e66e59609121a4b8a0788afe870f', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282563,7 +283359,7 @@ $VAR1 = [ }, { 'revision_id' => 'f9bf0ab97b46d84bceea1b6d40a7ca3652b79646', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282571,7 +283367,7 @@ $VAR1 = [ }, { 'revision_id' => '7d7563827180ddac77c7b76eeeea394fc036956f', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282579,7 +283375,7 @@ $VAR1 = [ }, { 'revision_id' => '9c43823e16594bcdc66833270f0718b138dcb862', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282587,7 +283383,7 @@ $VAR1 = [ }, { 'revision_id' => '09d052dc79a14006901ae946c9bbab117715f62e', - 'signer' => 'address@hidden', + 'signer' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282595,7 +283391,7 @@ $VAR1 = [ }, { 'revision_id' => 'b75ee84cd6f41295e19b900ab52a9f136173c8e3', - 'signer' => 'address@hidden', + 'signer' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282603,7 +283399,7 @@ $VAR1 = [ }, { 'revision_id' => '2ed4efc209552085f604decfe5466ac429babd43', - 'signer' => 'address@hidden', + 'signer' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282611,7 +283407,7 @@ $VAR1 = [ }, { 'revision_id' => '3b111a4e72fb5adfe774e4a0f9f858b4642512d0', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282619,7 +283415,7 @@ $VAR1 = [ }, { 'revision_id' => '232652aa6421992450c2d9f9053966a4aa66c42a', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282627,7 +283423,7 @@ $VAR1 = [ }, { 'revision_id' => 'a308ffaadad87db31f88a1d64b42da76240b1fdb', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282635,7 +283431,7 @@ $VAR1 = [ }, { 'revision_id' => 'f258dc911d0b88a38af4a7f3be3628c8f63eae6b', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282643,7 +283439,7 @@ $VAR1 = [ }, { 'revision_id' => 'b21a5ecea2dd82a0ae21e3e17bafe56fa70a9371', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282651,7 +283447,7 @@ $VAR1 = [ }, { 'revision_id' => '98fc30e0589d9ac5a6070faef36164ba1518db64', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282659,7 +283455,7 @@ $VAR1 = [ }, { 'revision_id' => 'fef4e36d576c36353cfb058a8863d1d47800f019', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282667,7 +283463,7 @@ $VAR1 = [ }, { 'revision_id' => '512685c9aa1923637ed8a8a7b2fc20d18f1d4c26', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone-viz' ], @@ -282675,7 +283471,7 @@ $VAR1 = [ }, { 'revision_id' => '4e1fae6483377e742dbef3491595a48fdb018d89', - 'signer' => 'address@hidden', + 'signer' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', 'branches' => [ 'net.venge.monotone-viz.automate' ], @@ -282683,7 +283479,7 @@ $VAR1 = [ }, { 'revision_id' => '7d875567ae9e126bd84ceb6ba73fb4cc7c474006', - 'signer' => 'address@hidden', + 'signer' => 'd9e7a76879a99dad705f058e24299a7b289f03d8', 'branches' => [ 'net.venge.monotone-viz.automate' ], @@ -282691,7 +283487,7 @@ $VAR1 = [ }, { 'revision_id' => '3d44c5dc2819aea71f826cedc5a1cb6745b06943', - 'signer' => 'address@hidden', + 'signer' => 'ac4c1f29d255238c8af1d04416340dbd5ca4d124', 'branches' => [ 'net.venge.monotone-viz.debian-diff' ], @@ -282699,7 +283495,7 @@ $VAR1 = [ }, { 'revision_id' => 'c6450ab9fae0a566a53d57a7cb6bed6b6587912f', - 'signer' => 'address@hidden', + 'signer' => 'd37d08fafaece16e9a79b4ea853326624e185cbd', 'branches' => [ 'net.venge.monotone-viz.debian-diff' ], @@ -282707,7 +283503,7 @@ $VAR1 = [ }, { 'revision_id' => '8a121346ce2920b6f85df68b3b620de96bd14a8d', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.contrib', 'net.venge.monotone.contrib.monotree' @@ -282716,7 +283512,7 @@ $VAR1 = [ }, { 'revision_id' => '5d288b39b49613b0d9dca8ece6b9a42c3773f35b', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.contrib.monotree' ], @@ -282724,7 +283520,7 @@ $VAR1 = [ }, { 'revision_id' => '35cff8e8ba14155f5f7ddf7965073f514fd60f61', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.contrib.monotree' ], @@ -282732,7 +283528,7 @@ $VAR1 = [ }, { 'revision_id' => 'f1afc520474f83c58262896ede027ef77226046e', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.contrib.monotree' ], @@ -282740,7 +283536,7 @@ $VAR1 = [ }, { 'revision_id' => 'c5611a7c7cc9efb53ec135954205fa29eb2ce06b', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282748,7 +283544,7 @@ $VAR1 = [ }, { 'revision_id' => 'd5950cd70dd58540d33812087d87ebbde2654379', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282756,7 +283552,7 @@ $VAR1 = [ }, { 'revision_id' => '6138acce2ac1364da497f48324e5c103a78926f7', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282764,7 +283560,7 @@ $VAR1 = [ }, { 'revision_id' => '8545213b7806a9d8fed4c4ee7566617f8a381c0a', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282772,7 +283568,7 @@ $VAR1 = [ }, { 'revision_id' => 'e4fef0e0e5aa51b702fea46442c85628bd1e4b3e', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282780,7 +283576,7 @@ $VAR1 = [ }, { 'revision_id' => '84ebc3ffcf4be16d546918a597a5ce0da728e80f', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282788,7 +283584,7 @@ $VAR1 = [ }, { 'revision_id' => '866d069e56f1a253fddfb18a8fdb8d5a67363d3e', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282796,7 +283592,7 @@ $VAR1 = [ }, { 'revision_id' => 'b596f518d7116e3feb10ad1be8346d815b8fc9c6', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282804,7 +283600,7 @@ $VAR1 = [ }, { 'revision_id' => 'f287281486e54970f7496521cf4c157f5c0d0722', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282812,7 +283608,7 @@ $VAR1 = [ }, { 'revision_id' => '43fe14a63ad8d76544bfa88fdc61316022207c1a', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282820,7 +283616,7 @@ $VAR1 = [ }, { 'revision_id' => 'b596f518d7116e3feb10ad1be8346d815b8fc9c6', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282828,7 +283624,7 @@ $VAR1 = [ }, { 'revision_id' => '2a5a3c6b9ecdc61be60afd07d524b7e92e83834f', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282836,7 +283632,7 @@ $VAR1 = [ }, { 'revision_id' => 'c4c287c3b4548ad54775c46f401c9e862408a3af', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282844,7 +283640,7 @@ $VAR1 = [ }, { 'revision_id' => 'c0f9fe1dc6bf268258f300b842b55150f88ec875', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.contrib.mtsh' ], @@ -282852,7 +283648,7 @@ $VAR1 = [ }, { 'revision_id' => '034af8b07592f1bf5265ebbbe70a3cc91c449b3c', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone.contrib.mtsh' ], @@ -282860,7 +283656,7 @@ $VAR1 = [ }, { 'revision_id' => '5db981f29bc87ed0dbdc184e719dc36cfc8d41d4', - 'signer' => 'address@hidden', + 'signer' => 'de84b575d5e47254393eba49dce9dc4db98ed42d', 'branches' => [ 'net.venge.monotone' ], @@ -282868,7 +283664,7 @@ $VAR1 = [ }, { 'revision_id' => '459004c7341b8f264e62f61f7f50e1cc94eee72b', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.mtn-browse' ], @@ -282876,88 +283672,86 @@ $VAR1 = [ }, { 'revision_id' => 'fb01334b957909a7ff44f4071c48456abedadbc5', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.01' }, { 'revision_id' => 'bcda6a2845c1f4dad86e2bc00549ba72fc877d23', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.02' }, { 'revision_id' => 'ef7706f1c6a8121b4fd022683c0022a0975e14f8', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.03' }, { 'revision_id' => 'a75a8c705a7a735941cc5032aecfa132a398c0d8', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.04' }, { 'revision_id' => '4822854912d3716cb201d6efa0aa5713f0c43e02', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.05' }, { 'revision_id' => '90481e30f05343daa34fedb1aeb13d99624b3167', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.06' }, { 'revision_id' => '4f6930b2c426072bccdecc945cd0027a22628db6', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.07' }, { 'revision_id' => '9707a8f628663da4792e08f936fdb379a4902811', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.08' }, { 'revision_id' => '936d1a8e3f0ceef17608357644dc9128941b708d', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.09' }, { 'revision_id' => 'ff6f92608b076dabc1da2f37b4aa326f47a8a7eb', - 'signer' => 'address@hidden', + 'signer' => '475b5e52f544b996f657c143b897287b87b61978', 'branches' => [], 'tag' => 'viewmtn-0.10' } ]; ========== tags (with branch restriction) ========== ---------- Raw Data ---------- -format_version "1" - tag "automate-stdio-duplicate-test-tag" revision [4a0895d850e5273c743ee514f816158e7dea7af7] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio.test" tag "automate-stdio-duplicate-test-tag" revision [a52a5d08f7e8b4052c23e80ea5e554125c5ee49c] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio.test" tag "automate-stdio-test-merge-point-1" revision [ec729409bd75254d024b618b7447b61530f10c43] - signer "address@hidden" + signer [7fe029d85af4de40700778b9784ef488fac2c79c] branches "net.venge.monotone.contrib.lib.automate-stdio.test" ---------- Structured Data ---------- $VAR1 = [ { 'revision_id' => '4a0895d850e5273c743ee514f816158e7dea7af7', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio.test' ], @@ -282965,7 +283759,7 @@ $VAR1 = [ }, { 'revision_id' => 'a52a5d08f7e8b4052c23e80ea5e554125c5ee49c', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio.test' ], @@ -282973,7 +283767,7 @@ $VAR1 = [ }, { 'revision_id' => 'ec729409bd75254d024b618b7447b61530f10c43', - 'signer' => 'address@hidden', + 'signer' => '7fe029d85af4de40700778b9784ef488fac2c79c', 'branches' => [ 'net.venge.monotone.contrib.lib.automate-stdio.test' ], @@ -282982,9 +283776,9 @@ $VAR1 = [ ]; ========== toposort ========== $VAR1 = [ - 'afd43cf2ce01fa4513fb1673eae47be3b48008f6', '805c482bc9bb80cd393be7d3ba01a65377d91d9c', - 'b8e6b77245cf29caa1f69bfb13749d785b13eac7' + 'b8e6b77245cf29caa1f69bfb13749d785b13eac7', + 'afd43cf2ce01fa4513fb1673eae47be3b48008f6' ]; Last error message `misuse: internal line merger failed' $VAR1 = \bless( { @@ -283004,23 +283798,23 @@ $VAR1 = \bless( { 'poll' => bless( [ { '5' => { - 'GLOB(0x9f353e8)' => 1 + 'GLOB(0x8934088)' => 19 } }, { '5' => 1 }, { - 'GLOB(0x9f353e8)' => ${$VAR1}->{'mtn_out'} + 'GLOB(0x8934088)' => ${$VAR1}->{'mtn_out'} } ], 'IO::Poll' ), 'io_wait_handler' => undef, 'db_locked_handler' => undef, - 'ws_path' => '/home/aecoope/code/monotone.ca/automate-stdio/MTN-0.40', - 'mtn_pid' => 3961, - 'cmd_cnt' => 113, + 'ws_path' => '/home/aecoope/code/monotone.ca/automate-stdio/MTN-0.45', + 'mtn_pid' => 26412, + 'cmd_cnt' => 114, 'db_name' => undef, - 'mtn_aif_major' => 10, + 'mtn_aif_major' => 11, 'mtn_aif_minor' => '0', 'db_locked_handler_data' => undef, 'io_wait_handler_timeout' => 1,