-
Notifications
You must be signed in to change notification settings - Fork 2
/
libxml2-2.9.1.vc10.patch
6471 lines (6415 loc) · 391 KB
/
libxml2-2.9.1.vc10.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff -rupN libxml2-2.9.1/.git/FETCH_HEAD libxml2/.git/FETCH_HEAD
--- libxml2-2.9.1/.git/FETCH_HEAD Thu Jan 1 08:00:00 1970
+++ libxml2/.git/FETCH_HEAD Wed Sep 25 15:10:44 2013
@@ -0,0 +1,4 @@
+75d13092f2886176fa8e8f354eb8a0e51f7409fd branch 'master' of git://git.gnome.org/libxml2
+b42dc2bb2d66d31d2f811ad72880b4ba655a8f58 not-for-merge branch 'LIBXML2_2_5_X' of git://git.gnome.org/libxml2
+0b348def38d88a639dae39870a23757dfdc4d4b7 not-for-merge branch 'LIB_XML_1_BRANCH' of git://git.gnome.org/libxml2
+7e6f5f5e02cd8cb5c3977c708370f975729063af not-for-merge branch 'USING_LIBUNICODE' of git://git.gnome.org/libxml2
diff -rupN libxml2-2.9.1/.git/HEAD libxml2/.git/HEAD
--- libxml2-2.9.1/.git/HEAD Thu Jan 1 08:00:00 1970
+++ libxml2/.git/HEAD Thu Sep 3 20:15:32 2009
@@ -0,0 +1 @@
+ref: refs/heads/master
diff -rupN libxml2-2.9.1/.git/ORIG_HEAD libxml2/.git/ORIG_HEAD
--- libxml2-2.9.1/.git/ORIG_HEAD Thu Jan 1 08:00:00 1970
+++ libxml2/.git/ORIG_HEAD Tue Sep 24 16:14:17 2013
@@ -0,0 +1 @@
+75d13092f2886176fa8e8f354eb8a0e51f7409fd
diff -rupN libxml2-2.9.1/.git/config libxml2/.git/config
--- libxml2-2.9.1/.git/config Thu Jan 1 08:00:00 1970
+++ libxml2/.git/config Thu Sep 3 20:15:32 2009
@@ -0,0 +1,13 @@
+[core]
+ repositoryformatversion = 0
+ filemode = false
+ bare = false
+ logallrefupdates = true
+ symlinks = false
+ ignorecase = true
+[remote "origin"]
+ fetch = +refs/heads/*:refs/remotes/origin/*
+ url = git://git.gnome.org/libxml2
+[branch "master"]
+ remote = origin
+ merge = refs/heads/master
diff -rupN libxml2-2.9.1/.git/description libxml2/.git/description
--- libxml2-2.9.1/.git/description Thu Jan 1 08:00:00 1970
+++ libxml2/.git/description Thu Sep 3 20:12:06 2009
@@ -0,0 +1 @@
+Unnamed repository; edit this file 'description' to name the repository.
diff -rupN libxml2-2.9.1/.git/hooks/applypatch-msg.sample libxml2/.git/hooks/applypatch-msg.sample
--- libxml2-2.9.1/.git/hooks/applypatch-msg.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/applypatch-msg.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# An example hook script to check the commit log message taken by
+# applypatch from an e-mail message.
+#
+# The hook should exit with non-zero status after issuing an
+# appropriate message if it wants to stop the commit. The hook is
+# allowed to edit the commit message file.
+#
+# To enable this hook, rename this file to "applypatch-msg".
+
+. git-sh-setup
+test -x "$GIT_DIR/hooks/commit-msg" &&
+ exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
+:
diff -rupN libxml2-2.9.1/.git/hooks/commit-msg.sample libxml2/.git/hooks/commit-msg.sample
--- libxml2-2.9.1/.git/hooks/commit-msg.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/commit-msg.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# An example hook script to check the commit log message.
+# Called by git-commit with one argument, the name of the file
+# that has the commit message. The hook should exit with non-zero
+# status after issuing an appropriate message if it wants to stop the
+# commit. The hook is allowed to edit the commit message file.
+#
+# To enable this hook, rename this file to "commit-msg".
+
+# Uncomment the below to add a Signed-off-by line to the message.
+# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
+# hook is more suited to it.
+#
+# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
+# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
+
+# This example catches duplicate Signed-off-by lines.
+
+test "" = "$(grep '^Signed-off-by: ' "$1" |
+ sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
+ echo >&2 Duplicate Signed-off-by lines.
+ exit 1
+}
diff -rupN libxml2-2.9.1/.git/hooks/post-commit.sample libxml2/.git/hooks/post-commit.sample
--- libxml2-2.9.1/.git/hooks/post-commit.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/post-commit.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,8 @@
+#!/bin/sh
+#
+# An example hook script that is called after a successful
+# commit is made.
+#
+# To enable this hook, rename this file to "post-commit".
+
+: Nothing
diff -rupN libxml2-2.9.1/.git/hooks/post-receive.sample libxml2/.git/hooks/post-receive.sample
--- libxml2-2.9.1/.git/hooks/post-receive.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/post-receive.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# An example hook script for the "post-receive" event.
+#
+# The "post-receive" script is run after receive-pack has accepted a pack
+# and the repository has been updated. It is passed arguments in through
+# stdin in the form
+# <oldrev> <newrev> <refname>
+# For example:
+# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
+#
+# see contrib/hooks/ for an sample, or uncomment the next line and
+# rename the file to "post-receive".
+
+#. /usr/share/doc/git-core/contrib/hooks/post-receive-email
diff -rupN libxml2-2.9.1/.git/hooks/post-update.sample libxml2/.git/hooks/post-update.sample
--- libxml2-2.9.1/.git/hooks/post-update.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/post-update.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,8 @@
+#!/bin/sh
+#
+# An example hook script to prepare a packed repository for use over
+# dumb transports.
+#
+# To enable this hook, rename this file to "post-update".
+
+exec git-update-server-info
diff -rupN libxml2-2.9.1/.git/hooks/pre-applypatch.sample libxml2/.git/hooks/pre-applypatch.sample
--- libxml2-2.9.1/.git/hooks/pre-applypatch.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/pre-applypatch.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# An example hook script to verify what is about to be committed
+# by applypatch from an e-mail message.
+#
+# The hook should exit with non-zero status after issuing an
+# appropriate message if it wants to stop the commit.
+#
+# To enable this hook, rename this file to "pre-applypatch".
+
+. git-sh-setup
+test -x "$GIT_DIR/hooks/pre-commit" &&
+ exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
+:
diff -rupN libxml2-2.9.1/.git/hooks/pre-commit.sample libxml2/.git/hooks/pre-commit.sample
--- libxml2-2.9.1/.git/hooks/pre-commit.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/pre-commit.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# An example hook script to verify what is about to be committed.
+# Called by git-commit with no arguments. The hook should
+# exit with non-zero status after issuing an appropriate message if
+# it wants to stop the commit.
+#
+# To enable this hook, rename this file to "pre-commit".
+
+if git-rev-parse --verify HEAD >/dev/null 2>&1
+then
+ against=HEAD
+else
+ # Initial commit: diff against an empty tree object
+ against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
+fi
+
+exec git diff-index --check --cached $against --
diff -rupN libxml2-2.9.1/.git/hooks/pre-rebase.sample libxml2/.git/hooks/pre-rebase.sample
--- libxml2-2.9.1/.git/hooks/pre-rebase.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/pre-rebase.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,169 @@
+#!/bin/sh
+#
+# Copyright (c) 2006, 2008 Junio C Hamano
+#
+# The "pre-rebase" hook is run just before "git-rebase" starts doing
+# its job, and can prevent the command from running by exiting with
+# non-zero status.
+#
+# The hook is called with the following parameters:
+#
+# $1 -- the upstream the series was forked from.
+# $2 -- the branch being rebased (or empty when rebasing the current branch).
+#
+# This sample shows how to prevent topic branches that are already
+# merged to 'next' branch from getting rebased, because allowing it
+# would result in rebasing already published history.
+
+publish=next
+basebranch="$1"
+if test "$#" = 2
+then
+ topic="refs/heads/$2"
+else
+ topic=`git symbolic-ref HEAD` ||
+ exit 0 ;# we do not interrupt rebasing detached HEAD
+fi
+
+case "$topic" in
+refs/heads/??/*)
+ ;;
+*)
+ exit 0 ;# we do not interrupt others.
+ ;;
+esac
+
+# Now we are dealing with a topic branch being rebased
+# on top of master. Is it OK to rebase it?
+
+# Does the topic really exist?
+git show-ref -q "$topic" || {
+ echo >&2 "No such branch $topic"
+ exit 1
+}
+
+# Is topic fully merged to master?
+not_in_master=`git-rev-list --pretty=oneline ^master "$topic"`
+if test -z "$not_in_master"
+then
+ echo >&2 "$topic is fully merged to master; better remove it."
+ exit 1 ;# we could allow it, but there is no point.
+fi
+
+# Is topic ever merged to next? If so you should not be rebasing it.
+only_next_1=`git-rev-list ^master "^$topic" ${publish} | sort`
+only_next_2=`git-rev-list ^master ${publish} | sort`
+if test "$only_next_1" = "$only_next_2"
+then
+ not_in_topic=`git-rev-list "^$topic" master`
+ if test -z "$not_in_topic"
+ then
+ echo >&2 "$topic is already up-to-date with master"
+ exit 1 ;# we could allow it, but there is no point.
+ else
+ exit 0
+ fi
+else
+ not_in_next=`git-rev-list --pretty=oneline ^${publish} "$topic"`
+ perl -e '
+ my $topic = $ARGV[0];
+ my $msg = "* $topic has commits already merged to public branch:\n";
+ my (%not_in_next) = map {
+ /^([0-9a-f]+) /;
+ ($1 => 1);
+ } split(/\n/, $ARGV[1]);
+ for my $elem (map {
+ /^([0-9a-f]+) (.*)$/;
+ [$1 => $2];
+ } split(/\n/, $ARGV[2])) {
+ if (!exists $not_in_next{$elem->[0]}) {
+ if ($msg) {
+ print STDERR $msg;
+ undef $msg;
+ }
+ print STDERR " $elem->[1]\n";
+ }
+ }
+ ' "$topic" "$not_in_next" "$not_in_master"
+ exit 1
+fi
+
+exit 0
+
+################################################################
+
+This sample hook safeguards topic branches that have been
+published from being rewound.
+
+The workflow assumed here is:
+
+ * Once a topic branch forks from "master", "master" is never
+ merged into it again (either directly or indirectly).
+
+ * Once a topic branch is fully cooked and merged into "master",
+ it is deleted. If you need to build on top of it to correct
+ earlier mistakes, a new topic branch is created by forking at
+ the tip of the "master". This is not strictly necessary, but
+ it makes it easier to keep your history simple.
+
+ * Whenever you need to test or publish your changes to topic
+ branches, merge them into "next" branch.
+
+The script, being an example, hardcodes the publish branch name
+to be "next", but it is trivial to make it configurable via
+$GIT_DIR/config mechanism.
+
+With this workflow, you would want to know:
+
+(1) ... if a topic branch has ever been merged to "next". Young
+ topic branches can have stupid mistakes you would rather
+ clean up before publishing, and things that have not been
+ merged into other branches can be easily rebased without
+ affecting other people. But once it is published, you would
+ not want to rewind it.
+
+(2) ... if a topic branch has been fully merged to "master".
+ Then you can delete it. More importantly, you should not
+ build on top of it -- other people may already want to
+ change things related to the topic as patches against your
+ "master", so if you need further changes, it is better to
+ fork the topic (perhaps with the same name) afresh from the
+ tip of "master".
+
+Let's look at this example:
+
+ o---o---o---o---o---o---o---o---o---o "next"
+ / / / /
+ / a---a---b A / /
+ / / / /
+ / / c---c---c---c B /
+ / / / \ /
+ / / / b---b C \ /
+ / / / / \ /
+ ---o---o---o---o---o---o---o---o---o---o---o "master"
+
+
+A, B and C are topic branches.
+
+ * A has one fix since it was merged up to "next".
+
+ * B has finished. It has been fully merged up to "master" and "next",
+ and is ready to be deleted.
+
+ * C has not merged to "next" at all.
+
+We would want to allow C to be rebased, refuse A, and encourage
+B to be deleted.
+
+To compute (1):
+
+ git-rev-list ^master ^topic next
+ git-rev-list ^master next
+
+ if these match, topic has not merged in next at all.
+
+To compute (2):
+
+ git-rev-list master..topic
+
+ if this is empty, it is fully merged to "master".
diff -rupN libxml2-2.9.1/.git/hooks/prepare-commit-msg.sample libxml2/.git/hooks/prepare-commit-msg.sample
--- libxml2-2.9.1/.git/hooks/prepare-commit-msg.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/prepare-commit-msg.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,36 @@
+#!/bin/sh
+#
+# An example hook script to prepare the commit log message.
+# Called by git-commit with the name of the file that has the
+# commit message, followed by the description of the commit
+# message's source. The hook's purpose is to edit the commit
+# message file. If the hook fails with a non-zero status,
+# the commit is aborted.
+#
+# To enable this hook, rename this file to "prepare-commit-msg".
+
+# This hook includes three examples. The first comments out the
+# "Conflicts:" part of a merge commit.
+#
+# The second includes the output of "git diff --name-status -r"
+# into the message, just before the "git status" output. It is
+# commented because it doesn't cope with --amend or with squashed
+# commits.
+#
+# The third example adds a Signed-off-by line to the message, that can
+# still be edited. This is rarely a good idea.
+
+case "$2,$3" in
+ merge,)
+ perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
+
+# ,|template,)
+# perl -i.bak -pe '
+# print "\n" . `git diff --cached --name-status -r`
+# if /^#/ && $first++ == 0' "$1" ;;
+
+ *) ;;
+esac
+
+# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
+# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
diff -rupN libxml2-2.9.1/.git/hooks/update.sample libxml2/.git/hooks/update.sample
--- libxml2-2.9.1/.git/hooks/update.sample Thu Jan 1 08:00:00 1970
+++ libxml2/.git/hooks/update.sample Thu Sep 3 20:12:06 2009
@@ -0,0 +1,118 @@
+#!/bin/sh
+#
+# An example hook script to blocks unannotated tags from entering.
+# Called by git-receive-pack with arguments: refname sha1-old sha1-new
+#
+# To enable this hook, rename this file to "update".
+#
+# Config
+# ------
+# hooks.allowunannotated
+# This boolean sets whether unannotated tags will be allowed into the
+# repository. By default they won't be.
+# hooks.allowdeletetag
+# This boolean sets whether deleting tags will be allowed in the
+# repository. By default they won't be.
+# hooks.allowdeletebranch
+# This boolean sets whether deleting branches will be allowed in the
+# repository. By default they won't be.
+# hooks.denycreatebranch
+# This boolean sets whether remotely creating branches will be denied
+# in the repository. By default this is allowed.
+#
+
+# --- Command line
+refname="$1"
+oldrev="$2"
+newrev="$3"
+
+# --- Safety check
+if [ -z "$GIT_DIR" ]; then
+ echo "Don't run this script from the command line." >&2
+ echo " (if you want, you could supply GIT_DIR then run" >&2
+ echo " $0 <ref> <oldrev> <newrev>)" >&2
+ exit 1
+fi
+
+if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
+ echo "Usage: $0 <ref> <oldrev> <newrev>" >&2
+ exit 1
+fi
+
+# --- Config
+allowunannotated=$(git config --bool hooks.allowunannotated)
+allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
+denycreatebranch=$(git config --bool hooks.denycreatebranch)
+allowdeletetag=$(git config --bool hooks.allowdeletetag)
+
+# check for no description
+projectdesc=$(sed -e '1q' "$GIT_DIR/description")
+case "$projectdesc" in
+"Unnamed repository"* | "")
+ echo "*** Project description file hasn't been set" >&2
+ exit 1
+ ;;
+esac
+
+# --- Check types
+# if $newrev is 0000...0000, it's a commit to delete a ref.
+zero="0000000000000000000000000000000000000000"
+if [ "$newrev" = "$zero" ]; then
+ newrev_type=delete
+else
+ newrev_type=$(git-cat-file -t $newrev)
+fi
+
+case "$refname","$newrev_type" in
+ refs/tags/*,commit)
+ # un-annotated tag
+ short_refname=${refname##refs/tags/}
+ if [ "$allowunannotated" != "true" ]; then
+ echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
+ echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
+ exit 1
+ fi
+ ;;
+ refs/tags/*,delete)
+ # delete tag
+ if [ "$allowdeletetag" != "true" ]; then
+ echo "*** Deleting a tag is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ refs/tags/*,tag)
+ # annotated tag
+ ;;
+ refs/heads/*,commit)
+ # branch
+ if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
+ echo "*** Creating a branch is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ refs/heads/*,delete)
+ # delete branch
+ if [ "$allowdeletebranch" != "true" ]; then
+ echo "*** Deleting a branch is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ refs/remotes/*,commit)
+ # tracking branch
+ ;;
+ refs/remotes/*,delete)
+ # delete tracking branch
+ if [ "$allowdeletebranch" != "true" ]; then
+ echo "*** Deleting a tracking branch is not allowed in this repository" >&2
+ exit 1
+ fi
+ ;;
+ *)
+ # Anything else (is there anything else?)
+ echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
+ exit 1
+ ;;
+esac
+
+# --- Finished
+exit 0
Binary files libxml2-2.9.1/.git/index and libxml2/.git/index differ
diff -rupN libxml2-2.9.1/.git/info/exclude libxml2/.git/info/exclude
--- libxml2-2.9.1/.git/info/exclude Thu Jan 1 08:00:00 1970
+++ libxml2/.git/info/exclude Thu Sep 3 20:12:06 2009
@@ -0,0 +1,6 @@
+# git-ls-files --others --exclude-from=.git/info/exclude
+# Lines that start with '#' are comments.
+# For a project mostly in C, the following would be a good set of
+# exclude patterns (uncomment them if you want to use them):
+# *.[oa]
+# *~
diff -rupN libxml2-2.9.1/.git/info/refs libxml2/.git/info/refs
--- libxml2-2.9.1/.git/info/refs Thu Jan 1 08:00:00 1970
+++ libxml2/.git/info/refs Wed Sep 25 17:24:28 2013
@@ -0,0 +1,280 @@
+75d13092f2886176fa8e8f354eb8a0e51f7409fd refs/heads/master
+75d13092f2886176fa8e8f354eb8a0e51f7409fd refs/remotes/origin/HEAD
+b42dc2bb2d66d31d2f811ad72880b4ba655a8f58 refs/remotes/origin/LIBXML2_2_5_X
+0b348def38d88a639dae39870a23757dfdc4d4b7 refs/remotes/origin/LIB_XML_1_BRANCH
+7e6f5f5e02cd8cb5c3977c708370f975729063af refs/remotes/origin/USING_LIBUNICODE
+75d13092f2886176fa8e8f354eb8a0e51f7409fd refs/remotes/origin/master
+6f67896efe30c2c748a77fa152fa318fdd31863c refs/tags/ChangeLog
+30fbd3f40eb514294b0f1a32f73db30a86c5b2e4 refs/tags/ChangeLog^{}
+6278cf2922e700a5122943e4a9d3b8e0f08e599b refs/tags/EAZEL-NAUTILUS-MS-AUG07
+76234da1520f108588bbec7428f7d7f663e4b96e refs/tags/EAZEL-NAUTILUS-MS-AUG07^{}
+58f71630e32934536da0b122e839853fcb213f00 refs/tags/FOR_GNOME_0_99_1
+8f8b4c80f6dfcc5d3985367cfd078c8b6d6e3f4b refs/tags/FOR_GNOME_0_99_1^{}
+069c04b1511d99804f72e3dcbe876001e2806984 refs/tags/GNOME_0_30
+8e0137ced4d14942286fe9ff8d423d986973795d refs/tags/GNOME_0_30^{}
+bcb6b9d6261a3f831ec611a433ab7e6f938dac24 refs/tags/GNOME_PRINT_0_24
+4b0755c68b0182809a7db5b6ab1478cb2767abfb refs/tags/GNOME_PRINT_0_24^{}
+555474d5bf57162b5bbef8d11c4d1cb615a8ffe3 refs/tags/GNUMERIC_FIRST_PUBLIC_RELEASE
+8e0137ced4d14942286fe9ff8d423d986973795d refs/tags/GNUMERIC_FIRST_PUBLIC_RELEASE^{}
+5fef2815562c67e6367f15f5aefb50c91548f85a refs/tags/LIBXML2.6.31
+216850b27ecf0a48bff5802f04760f5bdf027bfc refs/tags/LIBXML2.6.31^{}
+f4e1fc182582ff420cf8b7d2aa52b4c5085a1cd6 refs/tags/LIBXML2.6.32
+596da973eb47ae1c5fcec9e0085994a689648868 refs/tags/LIBXML2.6.32^{}
+0461a0c499a6a58ad1a6732f2f76e38789b31e6b refs/tags/LIBXML2.7.0
+1572425c2774b3fef6af062b87351a0e42c3e172 refs/tags/LIBXML2.7.0^{}
+2d3852c8072758184e8d1ef084cd8f2f0fc81236 refs/tags/LIBXML2.7.1
+a7036d93a0fd81c34e1d1f25b9a099454c8b8ac5 refs/tags/LIBXML2.7.1^{}
+d9e71cf4744d527b6f27ef3b8f51afa8155ca924 refs/tags/LIBXML2.7.2
+7f4547cdbd76a2931553759fb433df88b8b99452 refs/tags/LIBXML2.7.2^{}
+a30f67e606819120fa84931004eacb45db9e716d refs/tags/LIBXML2.7.3
+97ff9b367a6428f7703aa7938595c03ad39652e0 refs/tags/LIBXML2.7.3^{}
+493ecdf13794c5c28b2cb5997932e53bd744af44 refs/tags/LIBXML2_2_4_21
+fc57b41cb14a9920fa73cbb9fa1e495047970f2b refs/tags/LIBXML2_2_4_21^{}
+98b6e2e0ad4133df54ea9e6ba11aec5693930a65 refs/tags/LIBXML2_2_5_0
+7b4b2f9d8fc712c49beaf75985161a130c77d13a refs/tags/LIBXML2_2_5_0^{}
+ae174f24106a3faee155f4ac363943e05c423547 refs/tags/LIBXML2_2_5_10
+cfba2fe0bbbdd1158666fc1090c7f48c0fdb00e1 refs/tags/LIBXML2_2_5_10^{}
+ef1152a1bb47d73162ebb169f2187010e78853e8 refs/tags/LIBXML2_2_5_11
+b42dc2bb2d66d31d2f811ad72880b4ba655a8f58 refs/tags/LIBXML2_2_5_11^{}
+594a62a749038ccfeddb97090526c81e92902a5f refs/tags/LIBXML2_2_5_7
+92fc02cc52326430de4d7009b177e845fb69dba0 refs/tags/LIBXML2_2_5_7^{}
+0e641fffb721aadb23c4221b8c0cd7f5e0bb2e58 refs/tags/LIBXML2_2_5_8
+560c2a441bf27f5b9d55252a70f3d5952d9ae351 refs/tags/LIBXML2_2_5_8^{}
+dbd8be27bbd3f3c1fd0502e3bbd6ffc43bf984f8 refs/tags/LIBXML2_2_5_9
+83ee40de7569cf3e4cb45080fc9c9cb337a1e8cd refs/tags/LIBXML2_2_5_9^{}
+945d471f5eae6adb42841e57f6df34d7cbf478d6 refs/tags/LIBXML2_2_5_x
+cfba2fe0bbbdd1158666fc1090c7f48c0fdb00e1 refs/tags/LIBXML2_2_5_x^{}
+1866f526ba0d9dc85fe68d77657c42fb54579354 refs/tags/LIBXML2_2_6_1
+ceffd451992ced3747ecd7477d74e3c88d3ad681 refs/tags/LIBXML2_2_6_1^{}
+d621edb6f28d8a91ba066b17c7eda5b5170e07a3 refs/tags/LIBXML2_2_6_11
+45cb0f41e457439d508f03a19d7a6c98d9803d9f refs/tags/LIBXML2_2_6_11^{}
+fadd1eaf40a8960444cc078c4193ced10756ac80 refs/tags/LIBXML2_2_6_12
+b331fffbb90064c98e4e6ec5c08bfbe8efa17ffd refs/tags/LIBXML2_2_6_12^{}
+1351130ccb631fc0c60a1be9d128145f3850442c refs/tags/LIBXML2_2_6_13
+d1de4a3da9e5364a37469108b932e5ad66055a5e refs/tags/LIBXML2_2_6_13^{}
+6e4939285c4ca104695a45d78caf29e98011f378 refs/tags/LIBXML2_2_6_14
+210818b18aec4674f43b45143f4f4eed850c9e50 refs/tags/LIBXML2_2_6_14^{}
+6070cd3f5d98c15ee39f6b3b8d0b7fec6c6cc33c refs/tags/LIBXML2_2_6_15
+c2f83d1fad48c4483f34213dcf6935e308e0c596 refs/tags/LIBXML2_2_6_15^{}
+deea881c69a077adbe6289f22511f116f097846a refs/tags/LIBXML2_2_6_16
+c3d7cb4e582da89a442d6da32b13950af4cf7067 refs/tags/LIBXML2_2_6_16^{}
+31398af43568e5dd3a216f54147e83c1c8694564 refs/tags/LIBXML2_2_6_18
+57c000e33d0f970846aaa35d47a2b7faf5262032 refs/tags/LIBXML2_2_6_18^{}
+82466b40494d537d2c050dd96ca5a8d92714f385 refs/tags/LIBXML2_2_6_19
+771971f2e5077482fce3d9c234455118f2352f73 refs/tags/LIBXML2_2_6_19^{}
+3a1b40aba764c9319781c4535b404b95036e7470 refs/tags/LIBXML2_2_6_2
+6d373a26fff17281ac1c872adae95b14727ca959 refs/tags/LIBXML2_2_6_2^{}
+2ff310f0463982c9ed9ec2b6fc2fc8771437c399 refs/tags/LIBXML2_2_6_20
+e4aaae2640843b4e1453f57c62a64d70faf95edb refs/tags/LIBXML2_2_6_20^{}
+1144760805ea47e56ce26556cccb9281db8e7e69 refs/tags/LIBXML2_2_6_21
+0bcc7f6ae97a8bd8615dfd9d3acf8188ab66580e refs/tags/LIBXML2_2_6_21^{}
+83f982c60e1abf40ed98a1ba242629ec6e422077 refs/tags/LIBXML2_2_6_22
+33b20b70e2b0cc036bd23909fe262f816228f305 refs/tags/LIBXML2_2_6_22^{}
+7ccf4c8f185a87d846e48385cdaf2bc244e34344 refs/tags/LIBXML2_2_6_23
+6795260135a78da60182504a2d7efb4e3177eb57 refs/tags/LIBXML2_2_6_23^{}
+76ae427a860d53da573126c5d3defd1fbb1ae2a4 refs/tags/LIBXML2_2_6_24
+b2f8f1de7a02900f3e62a8170618ac35bd189269 refs/tags/LIBXML2_2_6_24^{}
+6990c2948bab125fb3216e58981be116b9af5d90 refs/tags/LIBXML2_2_6_26
+7cb3fa9d51a0a57d1e538854e4be84db82b75098 refs/tags/LIBXML2_2_6_26^{}
+4093371c160d427494f2b459e34762ca49cad824 refs/tags/LIBXML2_2_6_27
+c8338f1a52e7712dbba5e7c2fd5f76ecf01bf14f refs/tags/LIBXML2_2_6_27^{}
+c23b0423f20e59dc2eeaf3913bef1c78b9404705 refs/tags/LIBXML2_2_6_28
+e61d75f11e1e061d0394db395937cd8cdad7d689 refs/tags/LIBXML2_2_6_28^{}
+3283d0df55d21811897074b757cf32746a75f030 refs/tags/LIBXML2_2_6_29
+9049c1c50a9e2454f2b43c988c6069631d313c1e refs/tags/LIBXML2_2_6_29^{}
+3d508f7d89b6c069f3d730a55e01e0ddf4fdf09d refs/tags/LIBXML2_2_6_3
+c480c4ea56bbb5aad5ac991dafef5702dabb6360 refs/tags/LIBXML2_2_6_3^{}
+bba1bb9e7ca47ca5a3e73ccecede542da47f3964 refs/tags/LIBXML2_2_6_30
+22f476e0f2f5549e0a246be62a3affba276f4b75 refs/tags/LIBXML2_2_6_30^{}
+d3e8c95b24821db0a34332f877e2f1f4919391f0 refs/tags/LIBXML2_2_6_4
+e6e59cdf33e02648fc8f33c357accadf2a657668 refs/tags/LIBXML2_2_6_4^{}
+e5e563aa3507fc2d1c708b8d2bfe17869cf103f4 refs/tags/LIBXML2_2_6_5
+189f46b18cf94b0c941f34138611dc56a16cc6f1 refs/tags/LIBXML2_2_6_5^{}
+f9548bdf541a0a1261034dee1749e9ba255858f9 refs/tags/LIBXML2_2_6_6
+5c9547e4f3173e92501d735193767705eab9ac31 refs/tags/LIBXML2_2_6_6^{}
+cd9ffc78f627bda4b38322e4994873b80711ec24 refs/tags/LIBXML2_2_6_7
+9291449d9e7ca7179a2b26182ef1ab375ff4731e refs/tags/LIBXML2_2_6_7^{}
+954f4c261bcf5e7b0e33076198886867b79895ee refs/tags/LIBXML2_2_6_8
+252004df14b680d40c29e2ab479660162e15431e refs/tags/LIBXML2_2_6_8^{}
+c292b6aeacf7a0d17f7e938e548b704d6840dd36 refs/tags/LIBXML2_2_6_9
+f70f7b2da92c10e551724fdc955c8b668e5ec0b6 refs/tags/LIBXML2_2_6_9^{}
+d1b1f19d55e17a37afa91f87909366f4bfd01788 refs/tags/LIBXML2_6_0
+2189b59b1005976970ebadb65edbb289f9e091ff refs/tags/LIBXML2_6_0^{}
+f5210f2ab3bd0d3030d19b904421e905fcd79a03 refs/tags/LIBXML_0_99
+29fb727eb480f10010f37ca9e0b984bbd4dcae3b refs/tags/LIBXML_0_99^{}
+6e7609f2a73f3633f6e090e27c9ce0d7420e0f6a refs/tags/LIBXML_1_5_0
+424af3912493b654c46e569b06b7cd58cb2947c9 refs/tags/LIBXML_1_5_0^{}
+f64eef45b0dec07ef6e69d277aeb430f8d05da47 refs/tags/LIBXML_1_8_10
+7cb7a77c30b4d64a276c43f9c446be165e5b6b1e refs/tags/LIBXML_1_8_10^{}
+7872d3ee8561df9a75937b5762077c73fea74a54 refs/tags/LIBXML_1_8_10_REAL
+c0408519798f2e10497cb46e4d01b53cc7a08ce6 refs/tags/LIBXML_1_8_10_REAL^{}
+a05e695a83ae96dda7712fd63614714992324952 refs/tags/LIBXML_1_8_12
+73a4bfe95229a0f89ac9335a4f5f3960561d0158 refs/tags/LIBXML_1_8_12^{}
+42344bf524ffced12be408577a1b78095350b72a refs/tags/LIBXML_1_8_14
+146f50561fa2ad63cbf81571887b1e26101d64be refs/tags/LIBXML_1_8_14^{}
+66cab196da7c222b0cb26e4de7812cb6806e1c8c refs/tags/LIBXML_1_8_16
+a1ac9b0c7a23734d77fdd9235cb385f0e8b70025 refs/tags/LIBXML_1_8_16^{}
+bb50ea3628cbd82f2869b5f27e2b63726277dec2 refs/tags/LIBXML_1_8_17
+ead1ea69da2cceea4018cb411971261f8952444c refs/tags/LIBXML_1_8_17^{}
+09e31436c4e938f3eba2b3f726c1da83d62dcb65 refs/tags/LIBXML_1_8_5
+461a66c9428af63ee8de68fbb45deaf58c0f79fc refs/tags/LIBXML_1_8_5^{}
+501e80104894e407e267da087f4a488cdc4a4163 refs/tags/LIBXML_1_8_6
+e41f2b74c53d9d97b51dfc1d20aa201e4b2c9201 refs/tags/LIBXML_1_8_6^{}
+b22494c4ada06e09e2aeed3be32b249291e277e2 refs/tags/LIBXML_1_8_8
+08746ae6f0fe219b8c760ff6e85bddf9f39ac1ab refs/tags/LIBXML_1_8_8^{}
+7ba7b81be0b6f52564a7395d5c87e02d3b7561b2 refs/tags/LIBXML_1_8_9
+e98991955c4e6661ed1bfe8c84951ff6fd2ed1d6 refs/tags/LIBXML_1_8_9^{}
+8d86f6fc6a5ef306638ae0bb59bac7cbe2750886 refs/tags/LIBXML_2_0_0
+18b0ef6d41fdc3905e60fce0123f9ff5f48581da refs/tags/LIBXML_2_0_0^{}
+1270f021d26d5ec3f8fba2fd932cc27fa2634518 refs/tags/LIBXML_2_1_0
+c230410eadbada15092c04f92d01068af8a19f8d refs/tags/LIBXML_2_1_0^{}
+ca834ba122b807fb2ce88142385a1475de22de5e refs/tags/LIBXML_2_1_1
+663a607aa40e095a2e43a78a950a73a8ac1299dd refs/tags/LIBXML_2_1_1^{}
+f8457304220ac4e34b0343d82d589ab9e1108409 refs/tags/LIBXML_2_2_1
+69f94a3b722e33fc980ee9e59a78f5ec26863d26 refs/tags/LIBXML_2_2_1^{}
+30a3c2d958db6a20c783cb87b2282a7911aad603 refs/tags/LIBXML_2_2_3
+04698d9e1c56467007fcbb9472e5db67cf5938f5 refs/tags/LIBXML_2_2_3^{}
+360a48b58ccbb9beddb707e6a0a3db237283d954 refs/tags/LIBXML_2_2_4
+3bff2b0e5d2428cff9778ae60d38476f6c58c43b refs/tags/LIBXML_2_2_4^{}
+1c168bcf814a286a761f3652b4ea0ca5bcb51b30 refs/tags/LIBXML_2_2_6
+29a11cc696655f9ac841a5ca28b272e4150aafa1 refs/tags/LIBXML_2_2_6^{}
+2da5a07b0b3bc69c9d74b310e27e6248a66b313d refs/tags/LIBXML_2_2_7
+a4964b75003d138d4643ab03e3e116a8453f8308 refs/tags/LIBXML_2_2_7^{}
+7e3278760ac64a94adcacfbb1837b6e175410e58 refs/tags/LIBXML_2_2_8
+4e19074bc26bac984de1d8eb3e54a5aeee421af1 refs/tags/LIBXML_2_2_8^{}
+a7ed8d41e2498fca91da0fe05b2245a2dd288c67 refs/tags/LIBXML_2_3_0
+6a2e40604393375cf4c42c464a532dee0be82845 refs/tags/LIBXML_2_3_0^{}
+b92adf88125b7e9d3a88b58fb004fc54d73bfa2e refs/tags/LIBXML_2_3_10
+b3a182e53326cce1438bc2951372ffc1ca4eb18c refs/tags/LIBXML_2_3_10^{}
+ec28ff67eb27b33d3a025d8675ed5be7373f787b refs/tags/LIBXML_2_3_11
+6d473ed349020894228f29d334cba4749f9a7cea refs/tags/LIBXML_2_3_11^{}
+e8544c76a86f17d33c7e6cd62ea43b530e27e40d refs/tags/LIBXML_2_3_12
+823a77f8f9effd47b22715f66883bfd889c771ff refs/tags/LIBXML_2_3_12^{}
+1aa09dd44d790f3583f000cbc4ade9ed5908a181 refs/tags/LIBXML_2_3_13
+b37ecd0e51908bc9922fa37d1ec0aaaf9dc9d8e8 refs/tags/LIBXML_2_3_13^{}
+a445536c5a474948ef1ac271be3f4d201fbfc298 refs/tags/LIBXML_2_3_14
+5b43fde43de0b9a507f25238ad6ff3aec7cdafb2 refs/tags/LIBXML_2_3_14^{}
+8accf226f0600685d5ed2127153ef5d329b572c2 refs/tags/LIBXML_2_3_2
+59a3bd3744b5e46e30ab63dc772bfe924ad81469 refs/tags/LIBXML_2_3_2^{}
+bf5e305a26c27f3a72a61430a49c563a972438e8 refs/tags/LIBXML_2_3_3
+b402c07ca541924d89cd6ff49f99bd1b59097278 refs/tags/LIBXML_2_3_3^{}
+00943a4a2de3546bf14b913378883103c023cee4 refs/tags/LIBXML_2_3_4
+e356c280069914f0052891861a55fdfaff6dcf65 refs/tags/LIBXML_2_3_4^{}
+72d74b776193484557d6a649685b26d22c154085 refs/tags/LIBXML_2_3_5
+c7ad7ce598261a447cfceb7837219fcd93151336 refs/tags/LIBXML_2_3_5^{}
+e21e54203aeef732dfa459cf4838e9040542e9d2 refs/tags/LIBXML_2_3_6
+fac26a1f9330f404a90a8f347c8d13fdf08dbba1 refs/tags/LIBXML_2_3_6^{}
+adbdbc4f8f746f02f38c99112864abf4cefa2278 refs/tags/LIBXML_2_3_7
+393df01cac24c7344ddcdc3b6968f893790c5e67 refs/tags/LIBXML_2_3_7^{}
+e3847ae4bcdb6e4e258bfa651a52dccb561018f9 refs/tags/LIBXML_2_3_8
+3bbbe6fa2a16ce1e1c1ff08725cf09857d7c0428 refs/tags/LIBXML_2_3_8^{}
+68fb039bfda99e6f4c2576bf70b5735914aa0e17 refs/tags/LIBXML_2_3_9
+bed7b052a318695f5e0856f12fc0c86f66472cb3 refs/tags/LIBXML_2_3_9^{}
+deade41e955fb930d0bc528bba8087b88e249f6a refs/tags/LIBXML_2_4_0
+09ab7e1c1c943a6ba160037208c58a0dda3fe8ec refs/tags/LIBXML_2_4_0^{}
+fade9185f8862bf496e6c35f900f6eadcd453eac refs/tags/LIBXML_2_4_11
+bd9b0e8eedacd57d26bbe655d76a6bc858ab95ec refs/tags/LIBXML_2_4_11^{}
+703a08b6efa6d902a8c3ba83801fe76d3c53b32a refs/tags/LIBXML_2_4_12
+ef90ba7e3b530a8eb9ed27f57f0ced139b839780 refs/tags/LIBXML_2_4_12^{}
+6543d5679b5ffeda3ffb311db4b4f9ef39888b24 refs/tags/LIBXML_2_4_13
+af43f63aaabf0dc4b4a070773875d0927da3d8a2 refs/tags/LIBXML_2_4_13^{}
+d74637c3f6dbfe3249ba01f79a0c056e6975b9b7 refs/tags/LIBXML_2_4_14
+07be19bb1e73b86bdd1014eb1d9f84cb7d08e9fa refs/tags/LIBXML_2_4_14^{}
+5baae18ca7ece6da7809840dcf26c1b95ebca10c refs/tags/LIBXML_2_4_16
+5f4b5999b4eeda2ca68e6d9f54a3c534a8474b38 refs/tags/LIBXML_2_4_16^{}
+13ba6f67deac547beaa954065cfd2a63e4388b78 refs/tags/LIBXML_2_4_18
+34ce8bece2f22cc99d25221b77315cd008f4866b refs/tags/LIBXML_2_4_18^{}
+991e738a986bd7af093489d4051d65fd6df12859 refs/tags/LIBXML_2_4_2
+9a0b3d63c152fd11e2e49a308f4f102dc6043d97 refs/tags/LIBXML_2_4_2^{}
+cb220ae9180fb44709c2aa1f0dbf510d49f33906 refs/tags/LIBXML_2_4_20
+a7084cd57e055ac5f768c0d2aacd1bdab952798c refs/tags/LIBXML_2_4_20^{}
+2d9fad9527c5a9c902d8cd774b1307933e728f8a refs/tags/LIBXML_2_4_22
+d5e22ef5802bc1d2d730cded59a700a88abfa47a refs/tags/LIBXML_2_4_22^{}
+17fb73c4b80399cf37ad2762d4ef2152b0b82995 refs/tags/LIBXML_2_4_23
+539638ba2359774d184bd87cf713c7e2afc23a8c refs/tags/LIBXML_2_4_23^{}
+690c9d30526aabcf0a22e2f8bcb9bf716afa139c refs/tags/LIBXML_2_4_24
+42766c0eea0fa40c7b721fa4c9cf56b4c484b4c7 refs/tags/LIBXML_2_4_24^{}
+ea847274005ee18c78f93fdf3b9f4354881f71f0 refs/tags/LIBXML_2_4_25
+e16b57406a96297a6ce39e509e06511c3c8a200e refs/tags/LIBXML_2_4_25^{}
+7a13ab487e54688b5f4f490e7dfa5a9457c18258 refs/tags/LIBXML_2_4_26
+4826743d1643bd01d5ceaeaf627b0d71b60beb2f refs/tags/LIBXML_2_4_26^{}
+4a8a33fe201084427668e814cfd7b160c98728cd refs/tags/LIBXML_2_4_27
+dad3f680e504b25b3bfd30a411adb55b4d0efe09 refs/tags/LIBXML_2_4_27^{}
+3996c4428a894592c28422c18c306e551976e2ff refs/tags/LIBXML_2_4_29
+9b4bb4d07ab8f820fdc19a4fc7e8d7a39e159c66 refs/tags/LIBXML_2_4_29^{}
+7b7a8929f92402ae6bd73cd82823870efe22481c refs/tags/LIBXML_2_4_3
+e8f379330e16fcfae7d2737bbc22007b69cc3704 refs/tags/LIBXML_2_4_3^{}
+fdad8d1875fb14da9dbd6b322cfc4915c3833d33 refs/tags/LIBXML_2_4_30
+2d45f52c14fe508f003b42dca81264147a0fcabc refs/tags/LIBXML_2_4_30^{}
+a5fa03e1a93ef1d8d5f79509d3000629d978dc65 refs/tags/LIBXML_2_4_4
+baa8854e4e005f7a58ee1b0aa306c978247da9a7 refs/tags/LIBXML_2_4_4^{}
+c94b7df0bdd68d94545575b7edf88cb797b106c3 refs/tags/LIBXML_2_4_6
+60087f30f3b4cf21de48f39181736e7d71e7a661 refs/tags/LIBXML_2_4_6^{}
+898487ecf5beb7047e1671aedfcb09276fc55699 refs/tags/LIBXML_2_4_7
+52dcab3999cc9c480b275bc3ddf66dbb66f92d68 refs/tags/LIBXML_2_4_7^{}
+6d315cb263e6b956fadf65a421061e7b20303921 refs/tags/LIBXML_2_5_1
+e2830f1e65ddef63fc74a22addfea30d97ef8d65 refs/tags/LIBXML_2_5_1^{}
+dae9a5a6fb8fde389d693a854e8033a14414aea3 refs/tags/LIBXML_2_5_2
+72fef16e5c05224a81425b2ada12f4147b5194be refs/tags/LIBXML_2_5_2^{}
+74d430bf12c9422842cdb70f7c9191d5c70ad3d4 refs/tags/LIBXML_2_5_3
+869fb32050e8e89c0c4848087970a58df9966f51 refs/tags/LIBXML_2_5_3^{}
+4672f42c45796bb9c56ecabce4a4be7625a33e74 refs/tags/LIBXML_2_5_4
+17bed98106ac388a6eae80515aae6957782d6029 refs/tags/LIBXML_2_5_4^{}
+1d4de4b34555e0b3fca79e6a589a42901449536a refs/tags/LIBXML_2_5_5
+9adc0469d4691e798ea4ad59b84c874cdea8b38d refs/tags/LIBXML_2_5_5^{}
+9ff4a158ebe9ece4bb03b4f2f77c4e35c3f58774 refs/tags/LIBXML_2_5_6
+c2d4a93d4f6ecc658e63ddc416be918318cea7a9 refs/tags/LIBXML_2_5_6^{}
+11fb419f2b9ddc4e661e400f3a836415ed87c75c refs/tags/LIBXML_2_6_10
+4e6fef4dab062b22d2e0386415a5218070952faa refs/tags/LIBXML_2_6_10^{}
+b8d74ccc2f8da503e9526d7d03143f7402342cb8 refs/tags/LIBXML_TEST_2_0_0
+5d211f4c7a150e45a301cec55426a7ed7edb7f50 refs/tags/LIBXML_TEST_2_0_0^{}
+080725036cf5184d3fcc3a218b83a4801a3c56e2 refs/tags/LIB_XML_1_1
+011b63cb2034476017dde1d4ad5a6aea43b94066 refs/tags/LIB_XML_1_1^{}
+cefebfc541511ae9689fe6974fbca23e3e4c3dd1 refs/tags/LIB_XML_1_3
+97fea18b7138caf76bf17d003f4985d8797d26f9 refs/tags/LIB_XML_1_3^{}
+dc13fa6616f650c4883e5d4dcd60361119e50755 refs/tags/LIB_XML_1_4
+1566d3a91b50e08f8bd928da5a06d9c53a99747f refs/tags/LIB_XML_1_4^{}
+0b62127e46dd8131fe7ce0f1c1ba38d3c9393b4e refs/tags/LIB_XML_1_6_1
+d2d38e9ab3691d11755857b87d83f2322b85d93d refs/tags/LIB_XML_1_6_1^{}
+7b0dc286b7b99b0e7e5cc3e7a1094844544cf9b9 refs/tags/LIB_XML_1_6_2
+c08a2c6fd41773f55853c5d93a67a932c61511e9 refs/tags/LIB_XML_1_6_2^{}
+71da3e0339adb75e12fa5dd643e85ae90c3a53d5 refs/tags/LIB_XML_1_7_0
+4ecf39f3e3e51df736cbb7bdc3d24739a786fb3b refs/tags/LIB_XML_1_7_0^{}
+5000182a4ff1c18fb16dfbbcce18408c9a471b5f refs/tags/LIB_XML_1_7_1
+dd6b36766fb1cc83020cc12f226452ba2d640e35 refs/tags/LIB_XML_1_7_1^{}
+b41926302ec35da1c0009a4dcf493cc1edcd0600 refs/tags/LIB_XML_1_7_3
+ad21944c30f85761a9339fe054e1f93e176b7152 refs/tags/LIB_XML_1_7_3^{}
+42ce4e01ec843426c961900a710d7c24edd33a0d refs/tags/LIB_XML_1_8_3
+f3a7358dcae937caacd7149d080bf275e920ba69 refs/tags/LIB_XML_1_8_3^{}
+6b2edc001df59352a92d9e124c085b508f050ded refs/tags/LIB_XML_1_X
+76234da1520f108588bbec7428f7d7f663e4b96e refs/tags/LIB_XML_1_X^{}
+9942b0f93d22dc8e4b081f0907365616c8da976a refs/tags/PRE_MUCKUP
+4b637079f26d8f5879ed45eb18cd249cad261951 refs/tags/PRE_MUCKUP^{}
+d95c7184373f24ab680fea530aed57d2775993d9 refs/tags/PRE_MUCKUP2
+4b637079f26d8f5879ed45eb18cd249cad261951 refs/tags/PRE_MUCKUP2^{}
+48b237e1d5e319fe7473f11037884f58931b1646 refs/tags/PRE_MUCKUP3
+4b637079f26d8f5879ed45eb18cd249cad261951 refs/tags/PRE_MUCKUP3^{}
+8b3ff3d64c7bef4d4e3b2c7f65013d0136ba343b refs/tags/help
+3ed155fcdf123a94ac885923a9262f250bdb3301 refs/tags/help^{}
+32c00ab1f275a5cb405984b9d05074f0220c51b2 refs/tags/v2.7.4
+293416828e1467f877d9dd928f174dcf81b103bc refs/tags/v2.7.4^{}
+16d832067a0cd91c872bddcbaaa333ecfde4e21f refs/tags/v2.7.5
+7a896ce260d2447d405b4ae683bf9d643eef6cda refs/tags/v2.7.5^{}
+09722218f6b34cf7956b9d783b6c4c22245ae0cf refs/tags/v2.7.6
+96bb740e2102f103777f0a630d29ba88996dd80c refs/tags/v2.7.6^{}
+d87cd23dc35db8e3740278437b9788e04842ee8a refs/tags/v2.7.7
+bb5055f3875c5a3c45f4daa8058e35aab8c5ac3f refs/tags/v2.7.7^{}
+dfb55d16be9160f47c2d975787c51e542317bf98 refs/tags/v2.7.8
+4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017 refs/tags/v2.7.8^{}
+60f2ea93af9cf5fb703619b1f70b6efe44e72a68 refs/tags/v2.8.0
+c943f708f1853de4eb15e5a94cf0b35d108da87a refs/tags/v2.8.0^{}
+33ea7b311ab9ef2876f6f637d9d3070168097d6d refs/tags/v2.8.0-rc1
+9d9685ad88c17d35b6688695af3ceba7c7309b13 refs/tags/v2.8.0-rc1^{}
+873af1e595d9d38161713173abe886c2f964ecf3 refs/tags/v2.8.0-rc2
+ee8f1d4cda8dc1a6f2c515fe234f7bc89cdc9f80 refs/tags/v2.8.0-rc2^{}
+64ff9c0b6c1428b22139e96e9c8a6073cb13621c refs/tags/v2.9.0
+38bbd3412d1c2a2016cf5a1a221ad4010216d28e refs/tags/v2.9.0^{}
+68dbd0731a531c518af3119fd28fd76d358cb0fe refs/tags/v2.9.0-rc2
+f933c898132f20a50ba39ac6116378b71a01c700 refs/tags/v2.9.0-rc2^{}
+3c5a219589cd29e14cc98ff3888782f3b4d44fc1 refs/tags/v2.9.1
+f4e5a6994ed230dfa3fb5b5c3fd94c4993ef1ba7 refs/tags/v2.9.1^{}
diff -rupN libxml2-2.9.1/.git/logs/HEAD libxml2/.git/logs/HEAD
--- libxml2-2.9.1/.git/logs/HEAD Thu Jan 1 08:00:00 1970
+++ libxml2/.git/logs/HEAD Wed Sep 25 17:24:22 2013
@@ -0,0 +1 @@
+5d04ad11a8adb38537dc8ceb69416c0f6ca2b1b8 75d13092f2886176fa8e8f354eb8a0e51f7409fd Sui <[email protected]> 1380010446 +0800 pull --progress origin +refs/heads/master:refs/remotes/origin/master: Fast-forward
diff -rupN libxml2-2.9.1/.git/logs/refs/heads/master libxml2/.git/logs/refs/heads/master
--- libxml2-2.9.1/.git/logs/refs/heads/master Thu Jan 1 08:00:00 1970
+++ libxml2/.git/logs/refs/heads/master Wed Sep 25 17:24:22 2013
@@ -0,0 +1 @@
+5d04ad11a8adb38537dc8ceb69416c0f6ca2b1b8 75d13092f2886176fa8e8f354eb8a0e51f7409fd Sui <[email protected]> 1380010446 +0800 pull --progress origin +refs/heads/master:refs/remotes/origin/master: Fast-forward
diff -rupN libxml2-2.9.1/.git/logs/refs/remotes/origin/master libxml2/.git/logs/refs/remotes/origin/master
--- libxml2-2.9.1/.git/logs/refs/remotes/origin/master Thu Jan 1 08:00:00 1970
+++ libxml2/.git/logs/refs/remotes/origin/master Wed Sep 25 17:24:22 2013
@@ -0,0 +1 @@
+5d04ad11a8adb38537dc8ceb69416c0f6ca2b1b8 75d13092f2886176fa8e8f354eb8a0e51f7409fd Sui <[email protected]> 1380010444 +0800 pull --progress origin +refs/heads/master:refs/remotes/origin/master: fast-forward
diff -rupN libxml2-2.9.1/.git/objects/info/packs libxml2/.git/objects/info/packs
--- libxml2-2.9.1/.git/objects/info/packs Thu Jan 1 08:00:00 1970
+++ libxml2/.git/objects/info/packs Wed Sep 25 17:24:28 2013
@@ -0,0 +1,2 @@
+P pack-342aab2d85784a3c9527342083371bdcf40093d2.pack
+
Binary files libxml2-2.9.1/.git/objects/pack/pack-342aab2d85784a3c9527342083371bdcf40093d2.idx and libxml2/.git/objects/pack/pack-342aab2d85784a3c9527342083371bdcf40093d2.idx differ
Binary files libxml2-2.9.1/.git/objects/pack/pack-342aab2d85784a3c9527342083371bdcf40093d2.pack and libxml2/.git/objects/pack/pack-342aab2d85784a3c9527342083371bdcf40093d2.pack differ
diff -rupN libxml2-2.9.1/.git/packed-refs libxml2/.git/packed-refs
--- libxml2-2.9.1/.git/packed-refs Thu Jan 1 08:00:00 1970
+++ libxml2/.git/packed-refs Wed Sep 25 17:24:22 2013
@@ -0,0 +1,280 @@
+# pack-refs with: peeled fully-peeled
+75d13092f2886176fa8e8f354eb8a0e51f7409fd refs/heads/master
+b42dc2bb2d66d31d2f811ad72880b4ba655a8f58 refs/remotes/origin/LIBXML2_2_5_X
+0b348def38d88a639dae39870a23757dfdc4d4b7 refs/remotes/origin/LIB_XML_1_BRANCH
+7e6f5f5e02cd8cb5c3977c708370f975729063af refs/remotes/origin/USING_LIBUNICODE
+75d13092f2886176fa8e8f354eb8a0e51f7409fd refs/remotes/origin/master
+6f67896efe30c2c748a77fa152fa318fdd31863c refs/tags/ChangeLog
+^30fbd3f40eb514294b0f1a32f73db30a86c5b2e4
+6278cf2922e700a5122943e4a9d3b8e0f08e599b refs/tags/EAZEL-NAUTILUS-MS-AUG07
+^76234da1520f108588bbec7428f7d7f663e4b96e
+58f71630e32934536da0b122e839853fcb213f00 refs/tags/FOR_GNOME_0_99_1
+^8f8b4c80f6dfcc5d3985367cfd078c8b6d6e3f4b
+069c04b1511d99804f72e3dcbe876001e2806984 refs/tags/GNOME_0_30
+^8e0137ced4d14942286fe9ff8d423d986973795d
+bcb6b9d6261a3f831ec611a433ab7e6f938dac24 refs/tags/GNOME_PRINT_0_24
+^4b0755c68b0182809a7db5b6ab1478cb2767abfb
+555474d5bf57162b5bbef8d11c4d1cb615a8ffe3 refs/tags/GNUMERIC_FIRST_PUBLIC_RELEASE
+^8e0137ced4d14942286fe9ff8d423d986973795d
+5fef2815562c67e6367f15f5aefb50c91548f85a refs/tags/LIBXML2.6.31
+^216850b27ecf0a48bff5802f04760f5bdf027bfc
+f4e1fc182582ff420cf8b7d2aa52b4c5085a1cd6 refs/tags/LIBXML2.6.32
+^596da973eb47ae1c5fcec9e0085994a689648868
+0461a0c499a6a58ad1a6732f2f76e38789b31e6b refs/tags/LIBXML2.7.0
+^1572425c2774b3fef6af062b87351a0e42c3e172
+2d3852c8072758184e8d1ef084cd8f2f0fc81236 refs/tags/LIBXML2.7.1
+^a7036d93a0fd81c34e1d1f25b9a099454c8b8ac5
+d9e71cf4744d527b6f27ef3b8f51afa8155ca924 refs/tags/LIBXML2.7.2
+^7f4547cdbd76a2931553759fb433df88b8b99452
+a30f67e606819120fa84931004eacb45db9e716d refs/tags/LIBXML2.7.3
+^97ff9b367a6428f7703aa7938595c03ad39652e0
+493ecdf13794c5c28b2cb5997932e53bd744af44 refs/tags/LIBXML2_2_4_21
+^fc57b41cb14a9920fa73cbb9fa1e495047970f2b
+98b6e2e0ad4133df54ea9e6ba11aec5693930a65 refs/tags/LIBXML2_2_5_0
+^7b4b2f9d8fc712c49beaf75985161a130c77d13a
+ae174f24106a3faee155f4ac363943e05c423547 refs/tags/LIBXML2_2_5_10
+^cfba2fe0bbbdd1158666fc1090c7f48c0fdb00e1
+ef1152a1bb47d73162ebb169f2187010e78853e8 refs/tags/LIBXML2_2_5_11
+^b42dc2bb2d66d31d2f811ad72880b4ba655a8f58
+594a62a749038ccfeddb97090526c81e92902a5f refs/tags/LIBXML2_2_5_7
+^92fc02cc52326430de4d7009b177e845fb69dba0
+0e641fffb721aadb23c4221b8c0cd7f5e0bb2e58 refs/tags/LIBXML2_2_5_8
+^560c2a441bf27f5b9d55252a70f3d5952d9ae351
+dbd8be27bbd3f3c1fd0502e3bbd6ffc43bf984f8 refs/tags/LIBXML2_2_5_9
+^83ee40de7569cf3e4cb45080fc9c9cb337a1e8cd
+945d471f5eae6adb42841e57f6df34d7cbf478d6 refs/tags/LIBXML2_2_5_x
+^cfba2fe0bbbdd1158666fc1090c7f48c0fdb00e1
+1866f526ba0d9dc85fe68d77657c42fb54579354 refs/tags/LIBXML2_2_6_1
+^ceffd451992ced3747ecd7477d74e3c88d3ad681
+d621edb6f28d8a91ba066b17c7eda5b5170e07a3 refs/tags/LIBXML2_2_6_11
+^45cb0f41e457439d508f03a19d7a6c98d9803d9f
+fadd1eaf40a8960444cc078c4193ced10756ac80 refs/tags/LIBXML2_2_6_12
+^b331fffbb90064c98e4e6ec5c08bfbe8efa17ffd
+1351130ccb631fc0c60a1be9d128145f3850442c refs/tags/LIBXML2_2_6_13
+^d1de4a3da9e5364a37469108b932e5ad66055a5e
+6e4939285c4ca104695a45d78caf29e98011f378 refs/tags/LIBXML2_2_6_14
+^210818b18aec4674f43b45143f4f4eed850c9e50
+6070cd3f5d98c15ee39f6b3b8d0b7fec6c6cc33c refs/tags/LIBXML2_2_6_15
+^c2f83d1fad48c4483f34213dcf6935e308e0c596
+deea881c69a077adbe6289f22511f116f097846a refs/tags/LIBXML2_2_6_16
+^c3d7cb4e582da89a442d6da32b13950af4cf7067
+31398af43568e5dd3a216f54147e83c1c8694564 refs/tags/LIBXML2_2_6_18
+^57c000e33d0f970846aaa35d47a2b7faf5262032
+82466b40494d537d2c050dd96ca5a8d92714f385 refs/tags/LIBXML2_2_6_19
+^771971f2e5077482fce3d9c234455118f2352f73
+3a1b40aba764c9319781c4535b404b95036e7470 refs/tags/LIBXML2_2_6_2
+^6d373a26fff17281ac1c872adae95b14727ca959
+2ff310f0463982c9ed9ec2b6fc2fc8771437c399 refs/tags/LIBXML2_2_6_20
+^e4aaae2640843b4e1453f57c62a64d70faf95edb
+1144760805ea47e56ce26556cccb9281db8e7e69 refs/tags/LIBXML2_2_6_21
+^0bcc7f6ae97a8bd8615dfd9d3acf8188ab66580e
+83f982c60e1abf40ed98a1ba242629ec6e422077 refs/tags/LIBXML2_2_6_22
+^33b20b70e2b0cc036bd23909fe262f816228f305
+7ccf4c8f185a87d846e48385cdaf2bc244e34344 refs/tags/LIBXML2_2_6_23
+^6795260135a78da60182504a2d7efb4e3177eb57
+76ae427a860d53da573126c5d3defd1fbb1ae2a4 refs/tags/LIBXML2_2_6_24
+^b2f8f1de7a02900f3e62a8170618ac35bd189269
+6990c2948bab125fb3216e58981be116b9af5d90 refs/tags/LIBXML2_2_6_26
+^7cb3fa9d51a0a57d1e538854e4be84db82b75098
+4093371c160d427494f2b459e34762ca49cad824 refs/tags/LIBXML2_2_6_27
+^c8338f1a52e7712dbba5e7c2fd5f76ecf01bf14f
+c23b0423f20e59dc2eeaf3913bef1c78b9404705 refs/tags/LIBXML2_2_6_28
+^e61d75f11e1e061d0394db395937cd8cdad7d689
+3283d0df55d21811897074b757cf32746a75f030 refs/tags/LIBXML2_2_6_29
+^9049c1c50a9e2454f2b43c988c6069631d313c1e
+3d508f7d89b6c069f3d730a55e01e0ddf4fdf09d refs/tags/LIBXML2_2_6_3
+^c480c4ea56bbb5aad5ac991dafef5702dabb6360
+bba1bb9e7ca47ca5a3e73ccecede542da47f3964 refs/tags/LIBXML2_2_6_30
+^22f476e0f2f5549e0a246be62a3affba276f4b75
+d3e8c95b24821db0a34332f877e2f1f4919391f0 refs/tags/LIBXML2_2_6_4
+^e6e59cdf33e02648fc8f33c357accadf2a657668
+e5e563aa3507fc2d1c708b8d2bfe17869cf103f4 refs/tags/LIBXML2_2_6_5
+^189f46b18cf94b0c941f34138611dc56a16cc6f1
+f9548bdf541a0a1261034dee1749e9ba255858f9 refs/tags/LIBXML2_2_6_6
+^5c9547e4f3173e92501d735193767705eab9ac31
+cd9ffc78f627bda4b38322e4994873b80711ec24 refs/tags/LIBXML2_2_6_7
+^9291449d9e7ca7179a2b26182ef1ab375ff4731e
+954f4c261bcf5e7b0e33076198886867b79895ee refs/tags/LIBXML2_2_6_8
+^252004df14b680d40c29e2ab479660162e15431e
+c292b6aeacf7a0d17f7e938e548b704d6840dd36 refs/tags/LIBXML2_2_6_9
+^f70f7b2da92c10e551724fdc955c8b668e5ec0b6
+d1b1f19d55e17a37afa91f87909366f4bfd01788 refs/tags/LIBXML2_6_0
+^2189b59b1005976970ebadb65edbb289f9e091ff
+f5210f2ab3bd0d3030d19b904421e905fcd79a03 refs/tags/LIBXML_0_99
+^29fb727eb480f10010f37ca9e0b984bbd4dcae3b
+6e7609f2a73f3633f6e090e27c9ce0d7420e0f6a refs/tags/LIBXML_1_5_0
+^424af3912493b654c46e569b06b7cd58cb2947c9
+f64eef45b0dec07ef6e69d277aeb430f8d05da47 refs/tags/LIBXML_1_8_10
+^7cb7a77c30b4d64a276c43f9c446be165e5b6b1e
+7872d3ee8561df9a75937b5762077c73fea74a54 refs/tags/LIBXML_1_8_10_REAL
+^c0408519798f2e10497cb46e4d01b53cc7a08ce6
+a05e695a83ae96dda7712fd63614714992324952 refs/tags/LIBXML_1_8_12
+^73a4bfe95229a0f89ac9335a4f5f3960561d0158
+42344bf524ffced12be408577a1b78095350b72a refs/tags/LIBXML_1_8_14
+^146f50561fa2ad63cbf81571887b1e26101d64be
+66cab196da7c222b0cb26e4de7812cb6806e1c8c refs/tags/LIBXML_1_8_16
+^a1ac9b0c7a23734d77fdd9235cb385f0e8b70025
+bb50ea3628cbd82f2869b5f27e2b63726277dec2 refs/tags/LIBXML_1_8_17
+^ead1ea69da2cceea4018cb411971261f8952444c
+09e31436c4e938f3eba2b3f726c1da83d62dcb65 refs/tags/LIBXML_1_8_5
+^461a66c9428af63ee8de68fbb45deaf58c0f79fc
+501e80104894e407e267da087f4a488cdc4a4163 refs/tags/LIBXML_1_8_6
+^e41f2b74c53d9d97b51dfc1d20aa201e4b2c9201
+b22494c4ada06e09e2aeed3be32b249291e277e2 refs/tags/LIBXML_1_8_8
+^08746ae6f0fe219b8c760ff6e85bddf9f39ac1ab
+7ba7b81be0b6f52564a7395d5c87e02d3b7561b2 refs/tags/LIBXML_1_8_9
+^e98991955c4e6661ed1bfe8c84951ff6fd2ed1d6
+8d86f6fc6a5ef306638ae0bb59bac7cbe2750886 refs/tags/LIBXML_2_0_0
+^18b0ef6d41fdc3905e60fce0123f9ff5f48581da
+1270f021d26d5ec3f8fba2fd932cc27fa2634518 refs/tags/LIBXML_2_1_0
+^c230410eadbada15092c04f92d01068af8a19f8d
+ca834ba122b807fb2ce88142385a1475de22de5e refs/tags/LIBXML_2_1_1
+^663a607aa40e095a2e43a78a950a73a8ac1299dd
+f8457304220ac4e34b0343d82d589ab9e1108409 refs/tags/LIBXML_2_2_1
+^69f94a3b722e33fc980ee9e59a78f5ec26863d26
+30a3c2d958db6a20c783cb87b2282a7911aad603 refs/tags/LIBXML_2_2_3
+^04698d9e1c56467007fcbb9472e5db67cf5938f5
+360a48b58ccbb9beddb707e6a0a3db237283d954 refs/tags/LIBXML_2_2_4
+^3bff2b0e5d2428cff9778ae60d38476f6c58c43b
+1c168bcf814a286a761f3652b4ea0ca5bcb51b30 refs/tags/LIBXML_2_2_6
+^29a11cc696655f9ac841a5ca28b272e4150aafa1
+2da5a07b0b3bc69c9d74b310e27e6248a66b313d refs/tags/LIBXML_2_2_7
+^a4964b75003d138d4643ab03e3e116a8453f8308
+7e3278760ac64a94adcacfbb1837b6e175410e58 refs/tags/LIBXML_2_2_8
+^4e19074bc26bac984de1d8eb3e54a5aeee421af1
+a7ed8d41e2498fca91da0fe05b2245a2dd288c67 refs/tags/LIBXML_2_3_0
+^6a2e40604393375cf4c42c464a532dee0be82845
+b92adf88125b7e9d3a88b58fb004fc54d73bfa2e refs/tags/LIBXML_2_3_10
+^b3a182e53326cce1438bc2951372ffc1ca4eb18c
+ec28ff67eb27b33d3a025d8675ed5be7373f787b refs/tags/LIBXML_2_3_11
+^6d473ed349020894228f29d334cba4749f9a7cea
+e8544c76a86f17d33c7e6cd62ea43b530e27e40d refs/tags/LIBXML_2_3_12
+^823a77f8f9effd47b22715f66883bfd889c771ff
+1aa09dd44d790f3583f000cbc4ade9ed5908a181 refs/tags/LIBXML_2_3_13
+^b37ecd0e51908bc9922fa37d1ec0aaaf9dc9d8e8
+a445536c5a474948ef1ac271be3f4d201fbfc298 refs/tags/LIBXML_2_3_14
+^5b43fde43de0b9a507f25238ad6ff3aec7cdafb2
+8accf226f0600685d5ed2127153ef5d329b572c2 refs/tags/LIBXML_2_3_2
+^59a3bd3744b5e46e30ab63dc772bfe924ad81469
+bf5e305a26c27f3a72a61430a49c563a972438e8 refs/tags/LIBXML_2_3_3
+^b402c07ca541924d89cd6ff49f99bd1b59097278
+00943a4a2de3546bf14b913378883103c023cee4 refs/tags/LIBXML_2_3_4
+^e356c280069914f0052891861a55fdfaff6dcf65
+72d74b776193484557d6a649685b26d22c154085 refs/tags/LIBXML_2_3_5
+^c7ad7ce598261a447cfceb7837219fcd93151336
+e21e54203aeef732dfa459cf4838e9040542e9d2 refs/tags/LIBXML_2_3_6
+^fac26a1f9330f404a90a8f347c8d13fdf08dbba1
+adbdbc4f8f746f02f38c99112864abf4cefa2278 refs/tags/LIBXML_2_3_7
+^393df01cac24c7344ddcdc3b6968f893790c5e67
+e3847ae4bcdb6e4e258bfa651a52dccb561018f9 refs/tags/LIBXML_2_3_8
+^3bbbe6fa2a16ce1e1c1ff08725cf09857d7c0428
+68fb039bfda99e6f4c2576bf70b5735914aa0e17 refs/tags/LIBXML_2_3_9
+^bed7b052a318695f5e0856f12fc0c86f66472cb3
+deade41e955fb930d0bc528bba8087b88e249f6a refs/tags/LIBXML_2_4_0