-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhg.log
3671 lines (3019 loc) · 130 KB
/
hg.log
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
changeset: 651:451e9b3e509b
bookmark: master
tag: tip
user: Steve Cassidy <[email protected]>
date: Fri Oct 07 14:55:05 2022 +1100
summary: update
changeset: 650:819dcc9dcb92
parent: 649:daf50e8238cc
parent: 648:71e409bb09c1
user: stevecassidy
date: Tue Apr 14 23:04:22 2015 +1000
summary: Merge with CompressUploadRefactor
changeset: 649:daf50e8238cc
parent: 639:da14b197b195
user: stevecassidy
date: Tue Apr 14 23:02:28 2015 +1000
summary: Add script to upload from the command line.
changeset: 648:71e409bb09c1
branch: CompressUploadRefactor
user: Steve Cassidy
date: Wed Jan 21 17:25:57 2015 +1100
summary: Add component and session identifiers for Emotional speech collection to support upload (prompts etc not added)
changeset: 647:af383f0f2ea9
branch: CompressUploadRefactor
user: Steve Cassidy <[email protected]>
date: Tue Apr 15 22:16:37 2014 +1000
summary: typo
changeset: 646:2253b3737453
branch: CompressUploadRefactor
user: Steve Cassidy
date: Tue Apr 15 18:28:01 2014 +1000
summary: fixes to rename script
changeset: 645:e0603ca0f6f5
branch: CompressUploadRefactor
parent: 644:063f6c2116c3
parent: 643:4a4f5ed11f1d
user: steve
date: Wed Oct 31 12:24:54 2012 +1100
summary: Merge with 4a4f5ed11f1de855c3232a9a88931ac50d65c274
changeset: 644:063f6c2116c3
branch: CompressUploadRefactor
parent: 640:eacff09a49fb
user: steve
date: Wed Oct 31 12:24:34 2012 +1100
summary: add option to download digits to downloader
changeset: 643:4a4f5ed11f1d
user: Shirren Premaratne <[email protected]>
date: Thu Oct 18 00:09:49 2012 +1100
summary: Added an ignore step for manifest errors when renaming, this is because we can regenerate the manifest afterwards.
changeset: 642:dd488204b087
user: Shirren Premaratne <[email protected]>
date: Thu Oct 18 00:07:35 2012 +1100
summary: Added an ignore step for manifest errors when renaming, this is because we can regenerate the manifest afterwards.
changeset: 641:b7937a6d1cff
parent: 639:da14b197b195
user: Shirren Premaratne <[email protected]>
date: Wed Oct 17 20:22:13 2012 +1100
summary: Worked on and updated rename.py script to support renaming of speakers.
changeset: 640:eacff09a49fb
branch: CompressUploadRefactor
parent: 637:2df624428f96
parent: 639:da14b197b195
user: steve
date: Tue Oct 16 10:58:14 2012 +1100
summary: Merge with da14b197b1951f2016db21efa720e69a2592a678
changeset: 639:da14b197b195
user: stevecassidy
date: Mon Oct 15 17:17:54 2012 +1100
summary: Added tag release-1-7 for changeset 57f61671a026
changeset: 638:57f61671a026
tag: release-1-7
parent: 636:470246518afb
user: stevecassidy
date: Mon Oct 15 17:17:36 2012 +1100
summary: remove yet another page number!
changeset: 637:2df624428f96
branch: CompressUploadRefactor
parent: 632:a81efe04cc30
user: steve
date: Tue Oct 16 09:48:00 2012 +1100
summary: catch another exception. Exception on download was crashing for some reason for unbound 'ex' - removed reference to this variable but can't see why it would be wrong.
changeset: 636:470246518afb
user: stevecassidy
date: Thu Oct 11 19:42:51 2012 +1100
summary: Added tag release-1-7 for changeset 609d3e0291a9
changeset: 635:609d3e0291a9
user: steve
date: Thu Oct 11 19:38:32 2012 +1100
summary: fix item format in component/session list
changeset: 634:41f7b57cd8c7
user: stevecassidy
date: Thu Oct 11 19:31:20 2012 +1100
summary: regenerate map files
changeset: 633:b7f7ebf3655d
parent: 627:ac80c0fa71db
user: stevecassidy
date: Thu Oct 11 19:28:12 2012 +1100
summary: Remove page numbers from slides.
changeset: 632:a81efe04cc30
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Oct 11 13:18:11 2012 +1100
summary: Added an exception handler
changeset: 631:a270398f7c28
branch: CompressUploadRefactor
parent: 621:b42911a6bca5
user: Shirren Premaratne <[email protected]>
date: Thu Oct 11 12:25:04 2012 +1100
summary: The downloader can no recommence downloads upon termination. In addition failed downloads are re-attempted on a redownload attempt.
changeset: 630:646ceaf29d05
branch: SetupToolsReorg
user: steve
date: Thu Oct 11 16:53:31 2012 +1100
summary: change overall package name to blackbox with sub-packages. Started renaming internal imports but it will be hard to do and hard to ensure we didn't stuff up...giving up.
changeset: 629:ae1465fc1527
branch: SetupToolsReorg
user: steve
date: Thu Oct 11 16:01:07 2012 +1100
summary: Add setup.py and an empty init for the blackbox package, this enables building a distribution that can be installed (without the binary files).
changeset: 628:d68748dd8e8c
branch: SetupToolsReorg
user: steve
date: Thu Oct 11 15:56:40 2012 +1100
summary: Starting 'SetupToolsReorg' branch
changeset: 627:ac80c0fa71db
user: stevecassidy
date: Wed Oct 10 17:21:36 2012 +1100
summary: Added tag release-1-7 for changeset a3fcc1aa3d54
changeset: 626:a3fcc1aa3d54
user: stevecassidy
date: Wed Oct 10 17:20:09 2012 +1100
summary: Add prompt images for new versions of words
changeset: 625:7e70f31ba081
user: steve
date: Wed Oct 10 17:03:13 2012 +1100
summary: change references to components in sessions to use new word lists
changeset: 624:108c13812d15
user: steve
date: Wed Oct 10 17:01:57 2012 +1100
summary: Fix prompts in new word lists (numbers got added) and regenerate map files.
changeset: 623:d2f8458fcb69
parent: 622:4192b9f33318
parent: 621:b42911a6bca5
user: steve
date: Wed Oct 10 15:50:30 2012 +1100
summary: Merge with b42911a6bca59d462e4e40abf186e439713cc924
changeset: 622:4192b9f33318
parent: 619:deb8d72081e5
user: steve
date: Wed Oct 10 14:37:54 2012 +1100
summary: Modify prompts in words components to fix 'hooll sounds like tool' problem. Now have two versions of all words components with different numbers. Retrospectively change old prompts to 'hool sounds like tool'.
changeset: 621:b42911a6bca5
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed Oct 10 14:15:11 2012 +1100
summary: Added support for the -s command line switch which process a file with a list of sites and speakers
changeset: 620:223f33772562
branch: CompressUploadRefactor
parent: 610:582ad0ec6449
user: Shirren Premaratne <[email protected]>
date: Wed Oct 10 12:37:34 2012 +1100
summary: Modified the downloader to support the download of multiple speakers via the console.
changeset: 619:deb8d72081e5
user: steve
date: Wed Oct 03 17:09:14 2012 +1000
summary: remove duplicate declaration of component 32 (words session 3)
changeset: 618:4bff1674e2e2
user: stevecassidy
date: Tue Oct 02 16:09:45 2012 +1000
summary: Added tag release-1-7 for changeset 17c244fddbf8
changeset: 617:17c244fddbf8
user: stevecassidy
date: Tue Oct 02 16:09:28 2012 +1000
summary: Increment version for 1.7 release
changeset: 616:df036eb00322
parent: 615:1242e66a6d3a
parent: 613:b691ec7e098d
user: stevecassidy
date: Tue Oct 02 14:46:57 2012 +1000
summary: Merge with b691ec7e098dd092506468f02d7c359b69549f97
changeset: 615:1242e66a6d3a
user: stevecassidy
date: Thu Sep 27 16:04:36 2012 +1000
summary: remove slide numbers from some prompt slides and regenerate images
changeset: 614:08ad1a1ddb0b
parent: 612:fc579f821dbc
user: stevecassidy
date: Thu Sep 27 16:04:04 2012 +1000
summary: increment version
changeset: 613:b691ec7e098d
user: steve
date: Fri Sep 28 14:26:33 2012 +1000
summary: Add new field to component to record a short name for use in published URLs
changeset: 612:fc579f821dbc
user: stevecassidy
date: Wed Sep 05 17:39:43 2012 +1000
summary: Duplicate words-session2 component and fix heen-heed error.
changeset: 611:3a98d625a6a0
user: stevecassidy
date: Mon Sep 03 15:43:09 2012 +1000
summary: Re-Starting 'default' branch
changeset: 610:582ad0ec6449
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Aug 09 15:11:31 2012 +1000
summary: Removed transcription utility script files out of blackbox project
changeset: 609:949b709630e4
branch: CompressUploadRefactor
user: steve
date: Tue Aug 07 11:14:57 2012 +1000
summary: Add upload_item script to compress and upload a single item from the command line
changeset: 608:b97670672930
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon Jul 30 13:18:39 2012 +1000
summary: Bug fix in findComponents which was not following symbolic links
changeset: 607:ef36923a11a2
branch: CompressUploadRefactor
parent: 606:be5cfbff6cd4
parent: 605:cf0f0ad00eb6
user: Shirren Premaratne <[email protected]>
date: Mon Jul 30 12:18:50 2012 +1000
summary: Merged
changeset: 606:be5cfbff6cd4
branch: CompressUploadRefactor
parent: 602:0148204ffd82
user: Shirren Premaratne <[email protected]>
date: Mon Jul 30 12:17:34 2012 +1000
summary: Added manifest regenratiion functionality
changeset: 605:cf0f0ad00eb6
branch: CompressUploadRefactor
parent: 604:aa8543239f60
parent: 602:0148204ffd82
user: stevecassidy
date: Mon Jul 30 09:53:35 2012 +1000
summary: Merge with 0148204ffd82ef315d33bbe0c558314c0e76c55c
changeset: 604:aa8543239f60
branch: CompressUploadRefactor
user: stevecassidy
date: Mon Jul 30 09:52:04 2012 +1000
summary: updates to explorer tool and version increment
changeset: 603:0193e446e13a
branch: CompressUploadRefactor
parent: 599:b1e1ddaca6a5
user: stevecassidy
date: Fri Jul 27 15:11:49 2012 +1000
summary: A few updates to the new explorer tool, make the names used in the display conform to our standard layout, give it an icon in the installer.
changeset: 602:0148204ffd82
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Sun Jul 29 21:45:58 2012 +1000
summary: Fixed bug in rename which was not regenerating the manifest.txt file
changeset: 601:3a489e64944f
branch: CompressUploadRefactor
parent: 600:f54cef75f996
parent: 599:b1e1ddaca6a5
user: Shirren Premaratne <[email protected]>
date: Fri Jul 27 15:38:41 2012 +1000
summary: Merged changes locally
changeset: 600:f54cef75f996
branch: CompressUploadRefactor
parent: 595:6ccb2d8c2d65
user: Shirren Premaratne <[email protected]>
date: Fri Jul 27 15:37:35 2012 +1000
summary: Date filter removed for query.py -o flag
changeset: 599:b1e1ddaca6a5
branch: CompressUploadRefactor
user: steve
date: Fri Jul 27 13:18:46 2012 +1000
summary: Fix up metadata generation in different circumstances.
changeset: 598:7d1f686cf744
branch: CompressUploadRefactor
parent: 597:fb153673e7bf
parent: 595:6ccb2d8c2d65
user: Steve Cassidy
date: Thu Jul 26 13:45:30 2012 +1000
summary: merge
changeset: 597:fb153673e7bf
branch: CompressUploadRefactor
user: Steve Cassidy
date: Thu Jul 26 13:45:22 2012 +1000
summary: ensure we grab missing camera data
changeset: 596:545822304f4a
branch: CompressUploadRefactor
parent: 565:f31555555710
user: steve
date: Tue May 15 10:43:15 2012 +1000
summary: Add component details for renamed sentences
changeset: 595:6ccb2d8c2d65
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon Jul 23 12:00:08 2012 +1000
summary: Added speaker details to the name attribute of the speaker node
changeset: 594:40d075d3f218
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon Jul 23 11:05:02 2012 +1000
summary: Connected add speaker algorithm to transcribe console app
changeset: 593:55845d5948bf
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Sun Jul 22 00:54:11 2012 +1000
summary: Algorithm complete
changeset: 592:bf29f6bd3105
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Sat Jul 21 23:46:39 2012 +1000
summary: Added process.py
changeset: 591:b53887bad4d6
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Sat Jul 21 21:29:29 2012 +1000
summary: Started worker on process.py for speaker addendum to trs files
changeset: 590:aace7f8c865b
branch: CompressUploadRefactor
user: shirren
date: Sat Jul 21 17:12:44 2012 +1000
summary: Pushing functions from transcribe.py into file_handler.
changeset: 589:c7a2dc4ef683
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri Jul 20 23:56:36 2012 +1000
summary: Added trs file generator with speaker nodes
changeset: 588:7407f570efb7
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri Jul 20 13:22:21 2012 +1000
summary: Fixed incorrect logical condition in query component
changeset: 587:fbab546913bb
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri Jul 20 13:14:29 2012 +1000
summary: Refactored and created a Meta class
changeset: 586:9d145f8fa9c7
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri Jul 20 12:56:46 2012 +1000
summary: Refactored and created a Meta class
changeset: 585:4f59580ebbf2
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri Jul 20 00:11:36 2012 +1000
summary: Refactored browser.py to use it's own browse method
changeset: 584:ef59a4657408
branch: CompressUploadRefactor
user: shirren
date: Thu Jul 19 23:55:03 2012 +1000
summary: Further work on inspecting maptask meta data.
changeset: 583:2f134668c111
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Jul 19 18:58:11 2012 +1000
summary: Added a mixin for handling files albeit a simple one.
changeset: 582:407b157d3124
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Jul 19 17:10:00 2012 +1000
summary: Added tests for trs.py, still broken will fix them.
changeset: 581:20104499a804
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Jul 19 13:00:35 2012 +1000
summary: Refactoring transcribe.py by introducing more modules
changeset: 580:140b8a3cf5fb
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon Jul 09 14:53:09 2012 +1000
summary: Added search function to transcribe.py
changeset: 579:5417c8bacce1
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon Jul 09 14:41:50 2012 +1000
summary: Added search function to transcribe.py
changeset: 578:d8e1d8567bff
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri Jul 06 00:22:00 2012 +1000
summary: Added some additional error handling to transcribe.py
changeset: 577:ad60afc528a5
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Jul 05 22:46:47 2012 +1000
summary: Added some additional error handling to transcribe.py
changeset: 576:09bdb6270239
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Jul 05 21:51:03 2012 +1000
summary: Fixed bug in transcribe.py where when generating bpf files the application foolishly assumes that words are separated by a single space only.
changeset: 575:ac893d7d8b7c
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Jul 03 11:40:04 2012 +1000
summary: Trs does not require extension.
changeset: 574:f424e3cf4107
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Jul 03 11:35:10 2012 +1000
summary: Fixed issue with time interval of trs file
changeset: 573:e548c2f8a878
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Jul 03 11:03:26 2012 +1000
summary: Added support to transcribe.py to generate trs file for dual sources.
changeset: 572:839314b86b08
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Jun 26 10:11:17 2012 +1000
summary: Transcribe.py now copies the BPF files and audio files to a particular destination.
changeset: 571:8adcc65a2910
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Sun Jun 24 11:17:16 2012 +1000
summary: Removed trailing and leading / from the trs while when generating
changeset: 570:cbe96a135431
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu Jun 21 14:12:59 2012 +1000
summary: Added functionality to transcribe.py to generate bpf files.
changeset: 569:a94d30ada34c
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Jun 12 14:35:53 2012 +1000
summary: Modified transcribe to process story files
changeset: 568:3746099cda0b
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 30 22:53:45 2012 +1000
summary: Improved download feedback message.
changeset: 567:aba1bff2e80a
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 30 21:21:07 2012 +1000
summary: Added a progress indicator to the download script.
changeset: 566:454b67144373
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 30 16:59:16 2012 +1000
summary: Added downloader to blackbox project
changeset: 565:f31555555710
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 10 21:23:04 2012 +1000
summary: Moved log files to /var/tmp from __file__ location.
changeset: 564:c170a9729c24
branch: CompressUploadRefactor
parent: 563:43eb6fda881c
parent: 562:49ab82164ee1
user: Shirren Premaratne <[email protected]>
date: Thu May 10 20:48:22 2012 +1000
summary: Merged
changeset: 563:43eb6fda881c
branch: CompressUploadRefactor
parent: 561:b4621b816ebb
user: Shirren Premaratne <[email protected]>
date: Thu May 10 20:47:21 2012 +1000
summary: Fixed the broken mapping file. Uodated the sentence renamer to work at the component level instead of the item level. However, logging remains at the item level.
changeset: 562:49ab82164ee1
branch: CompressUploadRefactor
user: steve
date: Thu May 10 15:54:40 2012 +1000
summary: correct some mappings
changeset: 561:b4621b816ebb
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 09 15:40:35 2012 +1000
summary: Added a check to see if the backup of the meta data is successful
changeset: 560:e45e41a8cd74
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon May 07 16:42:48 2012 +1000
summary: Added a print statement so we know something is happening as we generate the transcriptions
changeset: 559:12e6a490f8f0
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Mon May 07 16:39:17 2012 +1000
summary: Added a new transcription python module.
changeset: 558:95a720d10e76
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri May 04 13:53:49 2012 +1000
summary: Added mapping file.
changeset: 557:119e615d53d0
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Fri May 04 13:38:37 2012 +1000
summary: Revised code to rename item and component instead of just the prompt.
changeset: 556:2eef827634ee
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 17:44:49 2012 +1000
summary: Sample no needs to be cast to int before comparison
changeset: 555:cce557507627
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 17:25:09 2012 +1000
summary: Added csv extract of xls document for use on Bigasc
changeset: 554:c4e756818aa3
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 17:19:24 2012 +1000
summary: Forgot to uncomment an important line in the renamer
changeset: 553:c8a4c490465a
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 17:17:03 2012 +1000
summary: Added a feature to backup metadata prior to update. Also extended logger to return its name
changeset: 552:05b727c6e83d
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 14:41:41 2012 +1000
summary: Sort was not working properly, hopefully fixed now.
changeset: 551:cc38ec89d2bf
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 14:21:43 2012 +1000
summary: Fixed chronological sorter in query component
changeset: 550:fc87f6c611de
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 11:08:12 2012 +1000
summary: Switched rename.py to use RecordedItem.
changeset: 549:2dca77ff84e0
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Thu May 03 10:36:42 2012 +1000
summary: A little bit of refactoring in the query component.
changeset: 548:18af8339943c
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 02 16:53:38 2012 +1000
summary: Fix to cater for issue with Queensland data
changeset: 547:e8b5f7b34b7c
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 02 15:44:12 2012 +1000
summary: Added support for showing min and max dates for a collection.
changeset: 546:f9c0765dcdec
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 02 14:54:52 2012 +1000
summary: Changed the query component to predicate on date instead of version as the
changeset: 545:b3fa7f9fbdf4
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 02 11:07:42 2012 +1000
summary: Added a new feature to query the minimum and maximum version for a session and component in a collection
changeset: 544:552c634b511c
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 02 10:49:02 2012 +1000
summary: Removed print statement in query component which flooded the console with lots
changeset: 543:19d19f5fd3e3
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Wed May 02 10:39:18 2012 +1000
summary: Added support for using max version numbers for filtering the result sets
changeset: 542:10b5827f98d4
branch: CompressUploadRefactor
user: shirren
date: Tue May 01 19:41:39 2012 +1000
summary: WIP, resolved to using rsync for the renaming script.
changeset: 541:0e1c06db8819
branch: CompressUploadRefactor
parent: 540:f65a21fd988b
parent: 539:26b2ca2abbfb
user: shirren
date: Tue May 01 19:25:07 2012 +1000
summary: Merge with 26b2ca2abbfb778be05eadc6f6c54f22c26450bc
changeset: 540:f65a21fd988b
branch: CompressUploadRefactor
parent: 538:0dfc1149545e
user: shirren
date: Tue May 01 19:18:41 2012 +1000
summary: Made passing the XL spreadsheet to the query script optional.
changeset: 539:26b2ca2abbfb
branch: CompressUploadRefactor
user: shirren
date: Tue May 01 19:18:41 2012 +1000
summary: Made passing the XL spreadsheet to the query script optional.
changeset: 538:0dfc1149545e
branch: CompressUploadRefactor
user: shirren
date: Tue May 01 19:09:02 2012 +1000
summary: Added mapping spreadsheet and updated message added to log file.
changeset: 537:c72f0c9fb059
branch: CompressUploadRefactor
user: shirren
date: Mon Apr 30 22:57:05 2012 +1000
summary: Query component cross checks spreadsheet before listing potential incorrect sentences for a session and component.
changeset: 536:2f2b3c140442
branch: CompressUploadRefactor
user: shirren
date: Mon Apr 30 15:48:14 2012 +1000
summary: Fixed some tabbing issues.
changeset: 535:054d1f6df335
branch: CompressUploadRefactor
user: shirren
date: Mon Apr 30 15:44:15 2012 +1000
summary: Added functionality to query.py to lookup incorrect sentences. WIP.
changeset: 534:091b234f3946
branch: CompressUploadRefactor
user: shirren
date: Sun Apr 29 09:16:48 2012 +1000
summary: Fixed compilation issue in explorer bootstrap program.
changeset: 533:d30e0de87cc4
branch: CompressUploadRefactor
user: shirren
date: Sun Apr 29 09:12:25 2012 +1000
summary: The properties window of the explorer app now presents the properties in a nicely formatted window.
changeset: 532:f81ad0437c71
branch: CompressUploadRefactor
user: shirren
date: Thu Apr 26 19:51:11 2012 +1000
summary: Added logging to rename methods in component and item.
changeset: 531:cacd75b37612
branch: CompressUploadRefactor
parent: 530:ddd5c55efa7b
parent: 529:43b254ea992c
user: Shirren Premaratne <[email protected]>
date: Thu Apr 26 12:34:51 2012 +1000
summary: Merged changes.
changeset: 530:ddd5c55efa7b
branch: CompressUploadRefactor
parent: 525:6d3169eae870
user: shirren
date: Thu Apr 26 12:22:48 2012 +1000
summary: Initial checkin of black box explorer. The current version is a barebones version with more features to come.
changeset: 529:43b254ea992c
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 26 09:43:41 2012 +1000
summary: Added tag release-1-6 for changeset b85ec26e089a
changeset: 528:b85ec26e089a
branch: CompressUploadRefactor
tag: release-1-6
parent: 527:cbb4f87072de
parent: 526:5a42ae26f28a
user: Steve Cassidy <[email protected]>
date: Tue Apr 24 08:49:26 2012 +1000
summary: merge
changeset: 527:cbb4f87072de
branch: CompressUploadRefactor
parent: 523:a038ea548422
user: stevecassidy
date: Mon Apr 23 13:22:47 2012 +1000
summary: Add function to find the prompt for an item given a component and item id.
changeset: 526:5a42ae26f28a
branch: CompressUploadRefactor
user: shirren
date: Sat Apr 21 19:07:15 2012 +1000
summary: Minor functional addition to query script
changeset: 525:6d3169eae870
branch: CompressUploadRefactor
parent: 524:dffd4fb4c13d
parent: 523:a038ea548422
user: Shirren Premaratne <[email protected]>
date: Fri Apr 20 17:37:51 2012 +1000
summary: Merged changes locally
changeset: 524:dffd4fb4c13d
branch: CompressUploadRefactor
parent: 514:3ca2e080d6ba
user: shirren
date: Fri Apr 20 17:32:13 2012 +1000
summary: Added some additional query methods for diagnosing problematic recordings.
changeset: 523:a038ea548422
branch: CompressUploadRefactor
user: stevecassidy
date: Fri Apr 20 16:03:40 2012 +1000
summary: Added tag release-1-6 for changeset 268111d95333
changeset: 522:268111d95333
branch: CompressUploadRefactor
user: stevecassidy
date: Fri Apr 20 14:18:45 2012 +1000
summary: Always re-copy audio files in case copied version was incomplete or corrupted.
changeset: 521:3520519822a0
branch: CompressUploadRefactor
parent: 520:9f4e9e0aff48
parent: 514:3ca2e080d6ba
user: stevecassidy
date: Fri Apr 20 11:11:41 2012 +1000
summary: Merge with 3ca2e080d6ba910eafb392429fd70ad34a2783d8
changeset: 520:9f4e9e0aff48
branch: CompressUploadRefactor
user: stevecassidy
date: Fri Apr 20 11:08:35 2012 +1000
summary: Increment version to 1.6
changeset: 519:d2f46ef175e1
branch: CompressUploadRefactor
user: stevecassidy
date: Fri Apr 20 11:04:34 2012 +1000
summary: Make the copier GUI be event driven.
changeset: 518:02e39713772e
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 19 12:57:14 2012 +1000
summary: increment version to 1.6b3
changeset: 517:aef15118d60d
branch: CompressUploadRefactor
parent: 516:624b473a0b2b
parent: 512:8ffac5a021aa
user: stevecassidy
date: Thu Apr 19 12:50:31 2012 +1000
summary: Merge with 8ffac5a021aa306f6d3a548aa4f01acf7a882b4a
changeset: 516:624b473a0b2b
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 19 12:43:14 2012 +1000
summary: Ignore zero length video files - don't add them to item metadata so they don't cause a validation error.
changeset: 515:168a4937a5ab
branch: CompressUploadRefactor
parent: 513:00385e6d2f69
user: stevecassidy
date: Thu Apr 19 11:53:46 2012 +1000
summary: Add check for calibration directory and disable compress if not present.
changeset: 514:3ca2e080d6ba
branch: CompressUploadRefactor
user: shirren
date: Thu Apr 19 17:23:43 2012 +1000
summary: Cleaner support for renaming components and speakers. Includes a fix to update the manifest.
changeset: 513:00385e6d2f69
branch: CompressUploadRefactor
parent: 509:a0554fc7d975
user: steve
date: Thu Apr 19 11:10:29 2012 +1000
summary: Regenerate verbose names after renaming item
changeset: 512:8ffac5a021aa
parent: 511:21538a06a124
parent: 483:36d13c22b793
user: steve
date: Wed Mar 14 12:36:01 2012 +1100
summary: Merge with 36d13c22b7935624c5f20c3e582fe30660beb4d4
changeset: 511:21538a06a124
user: steve
date: Tue Mar 06 12:31:40 2012 +1100
summary: Add trailing slash to validation URL to avoid redirect
changeset: 510:eded4ffcecf8
parent: 482:5c1fac4b6ba2
user: steve
date: Tue Mar 06 12:31:14 2012 +1100
summary: Increase block size for checksum calculation to speed it up.
changeset: 509:a0554fc7d975
branch: CompressUploadRefactor
user: shirren
date: Thu Apr 19 10:01:26 2012 +1000
summary: Fixed a bug where the upload status was not tracked during the rename.
changeset: 508:2c9a388a2f33
branch: CompressUploadRefactor
user: shirren
date: Wed Apr 18 15:41:10 2012 +1000
summary: Added script to hook into rename facilities of components and items. Also removed redundant read_meta data call in RecordedComponent.
changeset: 507:106dfc17c7a8
branch: CompressUploadRefactor
user: shirren
date: Wed Apr 18 14:20:23 2012 +1000
summary: Fixed bug where if animal or colour changed the grand parent folder was not created properly.
changeset: 506:d5d727d0f9bf
branch: CompressUploadRefactor
user: shirren
date: Tue Apr 17 16:59:39 2012 +1000
summary: Added functionality to move items across component folders if and when required.
changeset: 505:b10086b8ee02
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Apr 17 16:12:33 2012 +1000
summary: WIP for renaming an item. Current implementation is local to RecordedItem.
changeset: 504:13ab1c558c62
branch: CompressUploadRefactor
user: stevecassidy
date: Mon Apr 16 17:28:43 2012 +1000
summary: Added tag release-1-6b2 for changeset e1d25bfe7166
changeset: 503:e1d25bfe7166
branch: CompressUploadRefactor
tag: release-1-6b2
user: stevecassidy
date: Mon Apr 16 17:28:03 2012 +1000
summary: Increment version to 1.6b2
changeset: 502:8796da584895
branch: CompressUploadRefactor
user: stevecassidy
date: Mon Apr 16 17:27:45 2012 +1000
summary: Deal with unknown directories a bit better in IdentifyDir
changeset: 501:dee3c8a2f4fe
branch: CompressUploadRefactor
user: stevecassidy
date: Mon Apr 16 15:55:46 2012 +1000
summary: Improve error tracking and reporting for case of empty video files.
changeset: 500:23fe6dd13c18
branch: CompressUploadRefactor
user: stevecassidy
date: Mon Apr 16 13:20:34 2012 +1000
summary: Clean up FlowPanel handling, merge ProcessScript and FlowPanel, clean up the way that CoperFrame runs the panels in sequence
changeset: 499:9c5265de1c6a
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 05 18:32:17 2012 +1000
summary: Added tag release-1-6b1 for changeset f19b8ea20f26
changeset: 498:f19b8ea20f26
branch: CompressUploadRefactor
tag: release-1-6b1
user: stevecassidy
date: Thu Apr 05 18:31:51 2012 +1000
summary: Remove import of test modules
changeset: 497:557f6e7aa7cb
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 05 17:22:58 2012 +1000
summary: Remove mention of tests in datahandling.__init__.py since we exclude the test code from production release.
changeset: 496:5c79e61f83e5
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 05 17:20:02 2012 +1000
summary: Increment version to 1.6b1
changeset: 495:bbca114fbc3b
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 05 17:19:41 2012 +1000
summary: Add an empty video file to the test data.
changeset: 494:ab3b988ce284
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 05 17:15:57 2012 +1000
summary: Make sure that empty video files don't crash the compresser.
changeset: 493:3dde96863fad
branch: CompressUploadRefactor
user: stevecassidy
date: Thu Apr 05 16:58:13 2012 +1000
summary: Refactoring of audio video upload code to prioritise audio slightly differently. Fix up metadata generation to ensure that it is always complete even though only audio files have been copied or uploaded. Ensure that validation understands the new data flow.
changeset: 492:d20f1812516e
branch: CompressUploadRefactor
user: stevecassidy
date: Wed Apr 04 17:44:01 2012 +1000
summary: remove modified paths/urls and general clean up for testing new compress/upload code
changeset: 491:28ad551a5d1f
branch: CompressUploadRefactor
user: Shirren Premaratne <[email protected]>
date: Tue Apr 03 18:06:58 2012 +1000
summary: First stage of manifest validation.
changeset: 490:54991cf54bb3
branch: CompressUploadRefactor