-
Notifications
You must be signed in to change notification settings - Fork 0
/
IDB3.log
3343 lines (2260 loc) · 95 KB
/
IDB3.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
commit 9102e8d06edc06751be06e5a0babcd2dc920ea36
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Tue Apr 25 14:04:30 2017 -0500
auto vertically aligns stuff now close #105
commit 0ec81c5d064ff4012f931df652a90bdab53b4fcc
Merge: 1f3dfdd a1a4847
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Tue Apr 25 13:04:57 2017 -0500
Merge branch 'master' of github.com:sweatshoptech/idb
commit 1f3dfdd87b012dc71c441f08b67c4d45cfa5094e
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Tue Apr 25 13:04:54 2017 -0500
modified img and increased bottom margin on about
commit a1a48472697e0bf1ef63d4b16cb2090269a57085
Merge: f5c00e2 4ce3020
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 23 19:12:19 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit f5c00e22f03f78fab2a27dbe3e0fde5a8abe3dcf
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 23 19:12:09 2017 +0000
why was this here
commit 4ce3020ff2140e114e55e71fff6ddf5b0493289d
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 18:04:16 2017 -0500
React usage specified
commit b35722e8216b2689792c0986c41721b294268d5e
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 22:52:31 2017 +0000
phase 3 complete
commit 5ddabc6f9c7d3d6ec67dc65fa8a52d18f56408bd
Merge: b24aaa2 b5168b2
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 22:49:55 2017 +0000
heckin merge conflict AAAAAAARGH
commit b24aaa28f3d6d09bb4db3080338a615ed708419a
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 22:46:06 2017 +0000
report cleanup if it is even possible, closes #103 for now
commit b5168b24c9448638430eb31299cdd4f68ca74b69
Author: adityapalnitkar <adityapalnitkar@gmail.com>
Date: Thu Apr 20 17:30:30 2017 -0500
Added more planit description
commit bbd7f4f3c9b9a2c5e9a845a0b53b194804f747a9
Author: adityapalnitkar <adityapalnitkar@gmail.com>
Date: Thu Apr 20 17:29:11 2017 -0500
Update design.html
commit 0fff521018c57b941a6df86a98fe0fd249ab0f69
Merge: 2bed563 a9c85c8
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 22:18:18 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 2bed5630cf6dab61c30630bbfe7a88c64b117937
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 22:18:11 2017 +0000
documentation check just in case
commit a9c85c86cc4a181cb9d6e0bf1955e7661e535c82
Author: adityapalnitkar <adityapalnitkar@gmail.com>
Date: Thu Apr 20 16:59:44 2017 -0500
Update design.html
commit f5bc56780f9aa439dc2be72db8fb1caa090401b7
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 21:59:17 2017 +0000
favicon added to main pages, basically done
commit 0d041dd7a07f0f48346643c64c6e5223c214f5e2
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 16:53:57 2017 -0500
new favicon
commit 6f299cb81ff74d1a2b42bb1313946fd93dc551f7
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 16:50:24 2017 -0500
Favicon upload
commit 3cffd73e6761e874e1485935f3bb9f272fee24e8
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 21:45:41 2017 +0000
stats updated, ready to turn in, closes #104
commit 7c3a4bc89d3ffaa68a8f260ab656c7ac874a97cc
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 21:35:04 2017 +0000
react rendering carousel, closes #31
commit 50d9a52cfb8aceb3fbd80ce36bd79ba3c06952b5
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 21:10:47 2017 +0000
react iteration 1
commit b7430c3e24e1f112243410a6314ac7cfe8195a21
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 20 15:37:38 2017 -0500
added import reacct
commit 48aacbc0c895a4c733e22d9501cffc145dbdac96
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 20 15:35:52 2017 -0500
react attempt 1
commit 81e748bb9303af3b71a87ca7ced5f9912e579dee
Merge: 8b9e3e1 fd04176
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 20 14:52:43 2017 -0500
fixed merge conflict
commit 8b9e3e11410543e6e556f791c29bf706877aeb04
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 20 14:49:35 2017 -0500
made it mobile compatible
commit fd04176b89350c195aa199c73ae0cfd5f41bef4b
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 17:15:29 2017 +0000
data credits
commit 99eb2035bc5f47fc3890668858e645a826bf6a76
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 20 16:53:03 2017 +0000
API CORS
commit 8bde0fbb5f4cd08b53dc52cd23c48b1cef2a2472
Author: vignesh <vignesh.1996@utexas.edu>
Date: Wed Apr 19 19:34:38 2017 -0500
added 800 words to technical report for search
commit 2fa7228209e2daa6cc8411b962bda97f6dae9d2a
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 21:18:25 2017 +0000
image width fixed for results, closes #99
commit 889b288d41ca6bb23ec9ef4c2c3471c967f77eae
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 20:58:09 2017 +0000
redirect to href version, closes #102
commit 4957944be1d0f3b170ca882a1ed987281daefb1e
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 20:47:41 2017 +0000
search bar for all
commit 30ef7738762f830aec6ffa7b60a2064e4221f64f
Merge: 65e226b 9b9e05c
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 20:36:45 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 65e226b90298e443d59a02fe16b8c7168aa03f8a
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 20:36:37 2017 +0000
search icon/bar to home
commit 9b9e05cb6338ec8b1a3bb0ee6ec46924cde65caf
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Tue Apr 18 15:17:46 2017 -0500
Added visualization to report tabs
commit ede088463deaa7427b696e36303f18c9767c2ca6
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Tue Apr 18 15:13:11 2017 -0500
Added to report about visualization, references #93
commit 206c37b76e9902611b6bce77e72a19964283b590
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 03:42:53 2017 +0000
removing old tester code
commit e9771f2ac73c8d5481abbff80642e4496fd88cb2
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 03:36:27 2017 +0000
update
commit 176ba1acc2253d2b3e396885e11bd71dc66d7a3b
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 03:36:02 2017 +0000
visualization improvements and travis build fix
commit e2766f4e5155f8315eb597f4a91b6db42cc7478c
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 01:24:15 2017 +0000
formatting
commit 188b0b21c0c8574469a1dcbc67a27616034ecb01
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 18 01:23:37 2017 +0000
visualization done, some permissions changes, closes #95
commit 385b015c194d37ca16f38193eb2d09fdfe0a58e6
Author: Vishnu Thiagarajan <vignesh.1996@utexas.edu>
Date: Tue Apr 18 00:14:15 2017 +0000
added description snippet for search, closes #101
commit 688c6d535482c7a15dfef986655c5dd521e03637
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 23:37:27 2017 +0000
adding sample data
commit 113167363beefd8290b2cb7a2db76dfdae4664f2
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 22:28:28 2017 +0000
config
commit 4147f128d05bdcfa9c28620b02a0cf6e6f5f95b2
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 22:14:00 2017 +0000
top 10 d3
commit a78a551187ca6645d6a6ea3f85bb696593774ce4
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Mon Apr 17 16:59:42 2017 -0500
Moving js to html file, referencews #95
commit c039aa6ed36251f37de25833921f1a806c11aa8a
Merge: a47b4d9 8b88fac
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Mon Apr 17 16:46:41 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 8b88facc33e853009c7e4e06219d50abee2fecbd
Author: adityapalnitkar <adityapalnitkar@gmail.com>
Date: Mon Apr 17 16:46:19 2017 -0500
Changed food type display name
commit 26c08f78e561ac0ba8a5b8aad3d595669440e2f3
Author: adityapalnitkar <adityapalnitkar@gmail.com>
Date: Mon Apr 17 16:43:19 2017 -0500
modified bubbles.js
commit a47b4d99005e1747df91ce32b3e86a32407f15b2
Merge: a4b2879 a54f299
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Mon Apr 17 16:31:51 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit a54f2993e55620f13b919a1cda74b2a1cc9abeb4
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 21:30:40 2017 +0000
visualization fixes
commit a4b287989ceead349b27f052f7674c4378298b06
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Mon Apr 17 16:27:36 2017 -0500
Import responses, references #95
commit 407b7c61b06681b519bd95764ec17a5599ec84bc
Merge: f8a2ab2 f45eb4e
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 21:26:47 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit f45eb4e6280f86cd45dd4ec2aa8e2659f4b2826e
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Mon Apr 17 16:25:33 2017 -0500
Added API to url, references #95
commit f8a2ab23dfaed1b99b54a0d3a69f9c360122f06a
Merge: ab82ae3 d4e1257
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 21:20:32 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit d4e1257c495c48f54b83a2e69c9aec738471131a
Author: adityapalnitkar <adityapalnitkar@gmail.com>
Date: Mon Apr 17 16:18:46 2017 -0500
Fixed typo
commit ab82ae3286d845dbd668e751f8d5ad60b99bffb6
Merge: 170db28 936d8ca
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 21:13:32 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 170db2811df44fdec2aeecc74c7a61716e8af6af
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 21:13:30 2017 +0000
removing overridden default
commit 936d8cac7010ade38a6cc0ab09c305dd09938dda
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Mon Apr 17 16:09:12 2017 -0500
Test visualization page, reference #95
commit 9efea941aa4ba1ce03cc9968086cc76318a221c6
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 16:25:58 2017 +0000
not sure if anything changed but works
commit 488ac2fed5282bf32044ef6724d3aaad0d7cd8c1
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 15:55:33 2017 +0000
fixed multi word search, closes #100
commit 94f3de008967ce576354c42eaa597de00da2cbe2
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 00:19:07 2017 +0000
try again
commit c1a3eaefd8440d3d87baf5fe755200fcd8b36181
Merge: 7bb7220 33023da
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 00:04:08 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 7bb72205dee590c120ac483d6d197319725669ff
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Mon Apr 17 00:04:00 2017 +0000
coverage code climate
commit 33023da89415a4ee8307b24784f0a341335750c3
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 18:39:21 2017 -0500
better badges
commit 1aff537d4a573b1319b025ebe951b68aaf7cd8bc
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 18:25:19 2017 -0500
some space
commit 417af8b22b19a2615233e651c0b2b2a12e274e1b
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 18:24:43 2017 -0500
Code climate badge
commit 5e24e51637d4995ef2c13bd5d91472cb979298e6
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 23:09:08 2017 +0000
climate yml fixes
commit a27de99bacf12a34821904516b767e2375c707bb
Merge: 9e044f2 d4cdb89
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 22:59:34 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 9e044f2973f8c7d5c2201a157e516ffb2cb18686
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 22:59:21 2017 +0000
clean up and code climate
commit d4cdb8957d02bfb9ffe1a7d9eb850e3b6e94d584
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Sun Apr 16 17:37:57 2017 -0500
Report intro as basic README
commit 06bacffad764f7f8964be9a78bf85924dd756b0a
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 14 19:07:39 2017 +0000
fixing all visualization stuff
commit 57cb4e7b96acce02f02cf70f37814c6da7384054
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 14 03:11:45 2017 +0000
Search complete, closes #92
commit 9565656e74bae883e5a0dc3fd056e56dcb3c53b3
Author: Vishnu Thiagarajan <vignesh.1996@utexas.edu>
Date: Fri Apr 14 02:24:15 2017 +0000
pagination fixed, search results for all
commit 9f554a05907f199a5477adca3118720ae9ca9ccf
Author: Vishnu Thiagarajan <vignesh.1996@utexas.edu>
Date: Fri Apr 14 01:46:15 2017 +0000
company page search templates
commit 395c8b6a73da1503b22e35298305aa19e835e6ab
Author: Vishnu Thiagarajan <vignesh.1996@utexas.edu>
Date: Fri Apr 14 01:13:38 2017 +0000
now working with all models, jquery needed, #92
commit 23be9885dfd28395637576dbad3ae13bded2be63
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 14 00:44:49 2017 +0000
first search page done, people, #92
commit 16c62f43b1328610ea0bdfedacc6049b6f064a2d
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 13 01:39:19 2017 +0000
searching works with highlighting. #92, closes #97
commit 6658ff7518cedbe82b81ce1a71a80420282530ac
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 13 00:58:03 2017 +0000
test fix
commit c99a532e2b6f44e05c7ce6ed8ed0727013038a8a
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 13 00:56:33 2017 +0000
new page search results
commit c387c9e2d46c98afe0deb6b21755f86495e2ff01
Author: Vishnu Thiagarajan <vignesh.1996@utexas.edu>
Date: Thu Apr 13 00:14:18 2017 +0000
search results page
commit 3e7c16e5765c141f8d32076c076630cc43b1932e
Author: Vishnu Thiagarajan <vignesh.1996@utexas.edu>
Date: Thu Apr 13 00:13:37 2017 +0000
added search results template, closes #91
commit 7e8939b5ca1e3fc148c543bd1d000036b6bf4e7b
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Wed Apr 12 23:36:32 2017 +0000
trying to ficks travis again
commit 6f0ba13a41c7fb25b4646842fc5ec31bc8be2e38
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Wed Apr 12 23:29:54 2017 +0000
travis import not committed in previous
commit 04e5633aedeb7b61e20b7e5486b7c68b6cfc656c
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Wed Apr 12 23:27:13 2017 +0000
travis fix after search
commit 8198f8bc61a4abe03793efe45339ec656cc89889
Merge: f4acab2 9575fef
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Wed Apr 12 22:57:33 2017 +0000
merge? ahhhhhh
commit f4acab2a176fc829f63f26f1eca36a263f741cf7
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Wed Apr 12 22:53:49 2017 +0000
whoosh sudo
commit 9575fef7a9885f266107ad264fda8a49606c3ee2
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Tue Apr 11 18:39:57 2017 -0500
Start of visualization page, reference #95
commit 0d335275fce60204ea54ab609ba38ad74f36e13d
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Tue Apr 11 13:28:33 2017 -0500
Updated info to match API, closes #89
commit ce74d3d844d7065218aa4725889e6b4ad374db1c
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:42:23 2017 -0500
heckin brackets
commit c6d677d0d1647c6e3b604fb82db7feb19d41ed59
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:37:08 2017 -0500
School country added
commit 1d0776d5203b89b789cff7165a74481f38b460b4
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:36:31 2017 -0500
Country added
commit bd00fe42c11348f7bb467f23cddcc4760a2d5c79
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 21:29:17 2017 -0500
updated stats close #67
commit 02a315029987de0714eb704c25684b142dcc8f21
Merge: 61982b5 bd340c4
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 7 02:21:29 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 61982b592bb51c12811e377c07d43d1e6c2802bb
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 7 02:21:19 2017 +0000
turn in phase 2
commit bd340c43da8e155549358df4153a9eecb2234424
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Thu Apr 6 21:18:36 2017 -0500
Fixed Jinja link from about page
commit e8ff12dc34daa09819592a6022ae177b65fc9236
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 21:12:03 2017 -0500
ugh vishnu whyyyyy
commit b458858f80b8b7e8ef73c46924d6f699dd2df072
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:09:28 2017 -0500
Update design.html
commit d6d461749933341e0de3ca44e32b62de306c51dd
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:06:57 2017 -0500
More data information
commit 8cc8928f5390e44dae0ebf7fd3f7fa9a3da8f5d2
Merge: 639e611 e89b144
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 21:06:21 2017 -0500
Merge branch 'master' of github.com:sweatshoptech/idb
commit 639e6113d1ff8ebbad65951d52dd1af59952b80c
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 21:06:13 2017 -0500
fixed nav for report pages close #86
commit 1488631e2b128a0b94c1be0db10d7f21a98b64b8
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 20:58:57 2017 -0500
fixed about page close #87
commit e89b1447506a2761bf0e45a0b92f12b988fb8f64
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 20:23:41 2017 -0500
Add information on sort/filter/paginate
commit de50336562064d918b2753b602b91bf353dcd6ff
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 20:21:04 2017 -0500
fixed outro on report
commit 27b58668ae6779c426c41a1f6153a3db030d8c0d
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 20:19:46 2017 -0500
removed spacing on outro
commit 9b34bb4868a7c0e9f4e10073e748f8fd34cf4f69
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 20:14:52 2017 -0500
fixed report break lines
commit 5cc4b40a4b4e5c60abce979e8861fda92388f1e2
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 20:10:37 2017 -0500
close #88
commit 164e850d78fca33eac579de1578412fb62bce83a
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 20:07:47 2017 -0500
fixed css path in report
commit 02384cb2d6473fa97565d3ac2f469a46e25c71ec
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:56:34 2017 -0500
close #85
commit 54dcc6be3d93c78ed45bcd1000075575da759cba
Merge: fd4a041 0e5d67a
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:47:47 2017 -0500
Merge branch 'master' of github.com:sweatshoptech/idb
commit fd4a04149955fb2a721f2e07a99240e9d492529f
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:47:43 2017 -0500
close #69
commit 633b22fb6a89874226c3713d8f617b7a9a51eb7f
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:46:09 2017 -0500
finished is-checked for people
commit 0e5d67a24db03d500b9b78aba74992f590015837
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 7 00:43:50 2017 +0000
coverage out fixed, closes #81
commit 9a2eef743c67134557f2b141328f452d53bb343b
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:43:01 2017 -0500
need to add defualt is clicked for job in people
commit 2029785656a27d0fb32278411d89db01a88d3b26
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:40:25 2017 -0500
finished is-checked for companies
commit 4bb13dcedf9310b6cf68e6f2004765c74a764933
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:37:36 2017 -0500
need to add defualt is clicked for ownership in companies
commit ef204cd0d3887094a436672bc01fe069a41401e3
Merge: b4b6bc0 917ecee
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 7 00:34:39 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit b4b6bc00d2bfd0fc2b33b09270816ba6b4369d4c
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Fri Apr 7 00:34:28 2017 +0000
many to many done, closes #75
commit 917eceee80d185a4846c7d2d51de385354d6ec92
Author: Aaron Chang <achang@cs.utexas.edu>
Date: Thu Apr 6 19:30:47 2017 -0500
derp
commit 59ff10e3262799a525588939a15b330aba3ed8ad
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:29:54 2017 -0500
finished is-checked for investors
commit b3a828a1d0da75ecc56dac5701ef50f4dc69cb2c
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:27:31 2017 -0500
default is-checked works for sortby in investorts
commit 7d915bcc9325aef6497ebd95f99a6640f851b62d
Merge: f078e2b 4206f23
Author: Aaron Chang <achang@cs.utexas.edu>
Date: Thu Apr 6 19:25:42 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit f078e2b436a22f20362a527d1055c8899ea33dc7
Author: Aaron Chang <achang@cs.utexas.edu>
Date: Thu Apr 6 19:25:23 2017 -0500
trying something with coverage
commit d2ae6513fd0c7f85acd7fc7c3eea7dd5af2986e0
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 19:18:25 2017 -0500
default is-checked works for countries in investors
commit 4206f2323ddf472beb7599cfa5bc38b020a2bc63
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 18:55:32 2017 -0500
Update about.html
commit 59b84f824f5db98c31b74cde14310275f25d53f3
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 18:53:52 2017 -0500
Update tools.html
commit 585b84f5d105cd9f3fde6244e21223491149197d
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 18:46:34 2017 -0500
edits
commit e087dedc871d7cd7280cbbce06eb188002188982
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 18:39:57 2017 -0500
more edits (CHANGE SORTING AND FILTERING SECTION)
commit 818371d3c23da0b891e9456ad9edc93157d2a428
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 18:25:19 2017 -0500
more edits
commit f5151123e20c43829a598e13695e4712be892fa6
Merge: e021434 3337b54
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 23:22:31 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit e0214343a4f30757b8c34157d300d700651118cc
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 23:22:20 2017 +0000
card numbers fixed on filter. closes #80
commit 3337b54a9555fcda0d1040509ec54fef9a1a5b42
Author: aach <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 18:19:51 2017 -0500
minor proofreading
commit b8bd6beccd7b1745f7e339aaf8bf193c275c4a15
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 23:08:04 2017 +0000
asc/desc sorts work, closes #71
commit 993311936ff030ee39cc1c0afd7b3a7e94c1e749
Merge: d5f7477 abdc6f6
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 22:55:08 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit d5f74771e7b28da22694ee017b06b5ff12b879f7
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 22:55:01 2017 +0000
regex fixes to format description, closes #78
commit abdc6f652dca7f9dd36176bb066f4f58746a7835
Merge: f88138e a6e6237
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Thu Apr 6 17:51:30 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit f88138e05ac7865ecae40ae4006416f7a31bc9c9
Author: Brenda Salazar <bsalazar96@utexas.edu>
Date: Thu Apr 6 17:51:26 2017 -0500
Added more to report. Added 679 words; 571 to go
commit a6e6237200629aa6655f85700399d4d5da7db216
Merge: 7bb3a16 37729ef
Author: Aaron Chang <achang@cs.utexas.edu>
Date: Thu Apr 6 17:41:13 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 7bb3a1647406207f9862d4233723583593988250
Author: Aaron Chang <achang@cs.utexas.edu>
Date: Thu Apr 6 17:41:02 2017 -0500
trying regex
commit 37729ef99866502662afab39e4ce8a13d0ed6f9e
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:37:28 2017 -0500
close #84
commit 48203a3e811a91b380edce586cf5b0ba8d68702e
Merge: 0f596ff 8066daa
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:32:16 2017 -0500
Merge branch 'master' of github.com:sweatshoptech/idb
commit 0f596ffbd5ea1c68b0b412a7146b557dec7a820d
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:32:12 2017 -0500
close #84
commit 8066daaed9f89b2d4499592f5e0f4c4ab45a5a9c
Merge: c318210 f492a8b
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 22:32:01 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit c31821031984692c312baee943cf6123a98cd8ef
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 22:31:49 2017 +0000
models pages newlines removed
commit f492a8b0c7b49a9edf2b690bd9ddd0643347decc
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:05:12 2017 -0500
removed is-checked from investors
commit aa5ee781408c28d073605f7aa4a7311a05e22f9e
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:04:47 2017 -0500
removed is-checked from schools
commit d7753e816908ecc8ae7831c29d1c71964f66eec0
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:04:16 2017 -0500
removed is-checked from people
commit 1c07e6509e518ccd1dfdbfe02538ab4a41d6915e
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 17:03:21 2017 -0500
removed is-checked from companies
commit 9dc7c0ef6ef7d161c4c404758b8f8d065bf8e49d
Merge: 7eaeb7c 5cedf89
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 16:59:17 2017 -0500
commiting merge
commit 7eaeb7cc706ebd653356249613f09592a72df53b
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 16:57:58 2017 -0500
added ascending/descending buttong
commit 5cedf89d176b2b1f6f2b2d9b439734991aee0863
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:43:41 2017 +0000
removing bad files
commit b81bd10cf4c3687f5c64abc199d43d7e21f382d2
Merge: fa8ff86 5d83fa4
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:40:33 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit fa8ff8688282263a4cb90aebaf44bae1cee64d62
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:39:45 2017 +0000
removing http, closes #73
commit 5d83fa4a13b45e6204499d19eb20fbac335a5ca6
Merge: 31a040e 13aec4f
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 16:39:13 2017 -0500
Merge branch 'master' of github.com:sweatshoptech/idb
commit 31a040ed42a72c33134ca1f0a245bd7f85786f11
Author: DonaldMcRonald <raunak1997@utexas.edu>
Date: Thu Apr 6 16:38:58 2017 -0500
fixed issue #82
commit 13aec4fa6577dac42c12364d02ebb0e42b6635f8
Author: Aaron Chang <aaron.j.m.chang@gmail.com>
Date: Thu Apr 6 16:38:12 2017 -0500
replacing \r\n with breaks, references #78
commit 13b944145d848d628a14bb503f54eaee7a0fc27a
Author: vignesh <vignesh.1996@utexas.edu>
Date: Thu Apr 6 16:19:21 2017 -0500
removed keys
commit 6d77017ba832a99b9e2fee977895d3d703a4705a
Merge: 09c795e 67823cc
Author: vignesh <vignesh.1996@utexas.edu>
Date: Thu Apr 6 16:17:43 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 09c795e15de243604d97139bd5c5f70fd9c4948a
Author: vignesh <vignesh.1996@utexas.edu>
Date: Thu Apr 6 16:17:27 2017 -0500
fixed wrong commit
commit 67823ccf83ea691b1c2380fb8f99a62cc3608689
Merge: 9761a4c da0cb60
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:16:56 2017 +0000
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 9761a4c5a3520e8b307f5b58ef7b4748172d0e5c
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:16:52 2017 +0000
fixed investors, closes #77
commit da0cb600ed2836daa436fd08e66a52f8bd430344
Merge: fe3602d 07381a7
Author: vignesh <vignesh.1996@utexas.edu>
Date: Thu Apr 6 16:12:08 2017 -0500
Merge branch 'master' of https://github.com/sweatshoptech/idb
commit 07381a7422c1585ee0c6a9860f09d8c2c7745f68
Author: Vishnu Thiagarajan <thiagarajanvishnu@gmail.com>
Date: Thu Apr 6 21:11:57 2017 +0000
investor country filter
commit fe3602d3b077d704acc777192ef5a76329b72cc5
Author: vignesh <vignesh.1996@utexas.edu>
Date: Thu Apr 6 16:11:52 2017 -0500