-
Notifications
You must be signed in to change notification settings - Fork 1
/
IDB3.log
1539 lines (1025 loc) · 44.4 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 3af776eb23996bcfd990b25a9f8410aa18e28a62
Author: JPortillo00 <portillo.jairojr@gmail.com>
Date: Thu Apr 20 21:57:23 2017 -0500
Update app.py
commit 9192362fc903d3c7fb75de63172c6001aa0200da
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 20 21:56:07 2017 -0500
Added final commit/issue counts to About page
commit a8e471c7885d615f5fe62b0727c19202b8b387ba
Author: JN9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 21:52:05 2017 -0500
Delete twitch.py
commit b056e5017819c1fee8254d7071d5b6d210781fb3
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 20 21:41:00 2017 -0500
Added commits and issues to About
commit 85da5877b724e1b52d50e66df0e4856e364cda53
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 21:40:09 2017 -0500
changed column name on games page
commit df7c526dcfdc1888e4abe9d859c2a4d267fd1ca9
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 21:39:13 2017 -0500
fixed file path errors and game ratings
commit 218df80547f492d3151569312d322b20777f2ba7
Author: leosanchez16 <leosanchez16@utexas.edu>
Date: Thu Apr 20 21:38:39 2017 -0500
added halo wars to strategy genre
commit 2056be0ee3b034f4bab1e47f8714448d445c659b
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 21:30:45 2017 -0500
added streamers to game pages
commit de82bf9dbd2d0b78107557cb27933e1421eadb10
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 20 21:19:18 2017 -0500
Added Critique as responsibility for Ding
commit 25f4fc9dfbf19ade213427f69378e1b425b108d3
Author: root <leosanchez16@utexas.edu>
Date: Fri Apr 21 02:10:50 2017 +0000
added __init__.py closes 68
commit 00a53971d9fa4785c4c774a36962eeebc4b55590
Author: leosanchez16 <leosanchez16@utexas.edu>
Date: Thu Apr 20 21:04:27 2017 -0500
added games to genre pages and fixed bug when moving to div
closes #84 and closes #56
commit 83b3358188268751de7523e39018a5acb16c7190
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 20 21:00:32 2017 -0500
Updated About page
commit 41bf6a2b6d347352c7780664efb471750fd6d973
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 19:08:06 2017 -0500
changed mortal kombat flask path
commit 079f16691cf3f94f44a403a3f615a44c8b0864b9
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 18:42:03 2017 -0500
updated gamepage
commit 52e03129e637b91af852009263f20757b1ed1c4e
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 18:34:27 2017 -0500
testing app.py on digital ocean
commit 538689ab8202114a9fa26e50b13c27dbd2f66032
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 18:18:37 2017 -0500
edited flask file paths for games
commit 407cf3d10da23cf0a722d7f74fdf80aaa7e37d8c
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 18:09:33 2017 -0500
added games to game table
commit 8b3a416e978c73a413a3f970497b8ee34461f406
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 17:33:22 2017 -0500
editted number of streamerson genres table
commit 1a0ab671cef64ff576fa9ddc328b4b6feb4ef375
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 17:12:49 2017 -0500
Minorupdates to game pages and live streams
commit 3622de464633a059d25382f269de31623428f532
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 20 16:46:04 2017 -0500
final list of games added
commit 4e3698c949b1882b9c67c6f4385ccca6065db042
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 16:16:26 2017 -0500
streamer pics dingy
commit 1d192539d362df280e2af92dd4f0cb7930e45444
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 15:37:37 2017 -0500
Updates streamer table
commit d4d81f3c3feee5499bcc7574b55a8ac299d59677
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 15:34:05 2017 -0500
Updated app.py and streamer instances
commit 99036525e70d45eaf36a1b0b89ebdc1952c10770
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 15:25:21 2017 -0500
titanfall_livestreams name change to titanfall2_livestreams
commit 83e5da63722770ef1b3e4d793777ef22df439911
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 15:21:55 2017 -0500
nhl_livestreams name change to nhl17_livestreams
commit 89e1f9958a19811f3d201449c82cc3cf28a9fa6a
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 15:04:53 2017 -0500
more livestreamers pages
commit 7339d17f6e2d3bd5308c8b278151f57010e2a04d
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 15:04:16 2017 -0500
updated app.py and streamer table
commit 7697cd41e86674c4a4178fd4a188c425f8896e01
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 14:41:26 2017 -0500
updated app.py
commit 64fef867834bd57a6910a89a8e58ce515edc542e
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 14:40:22 2017 -0500
livestream pages created
commit f08cfcc8497d06c4e3414ab170a960f6205f08c8
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 14:05:12 2017 -0500
rl project car and witcher3
commit b7eccaef40b8fab2adc0ab2da7506e61ea1ad71e
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 13:58:03 2017 -0500
live nfs stream
commit 5427cfe131fe1b3bac88b0f221e58229ad77a7d5
Author: Dingkun Zhang <dz3485@cs.utexas.edu>
Date: Thu Apr 20 13:56:03 2017 -0500
updated app
commit fdeacc022a02d715ad3e7e4397dae35922866197
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 20 13:47:17 2017 -0500
updated app.py
commit 582522b359853d63bd0b525313f13833d42f6300
Author: nc22349 <nathan.caldwell@utexas.edu>
Date: Thu Apr 20 13:18:27 2017 -0500
Add model diagram to repo
commit 75429530eacd36ea552a05771705a830c779d245
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 20 00:10:33 2017 -0500
Added five streamers
commit 1cd087a624a3395f7f4119c0faade1f85856f51c
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 23:38:27 2017 -0500
adding paths
commit 934f9a3d4e275ccc3b4be087add3786603d66727
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 23:15:44 2017 -0500
minor detailing
commit 00e96fdf0090c68a8f14b67213d524bf01976bf4
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 23:12:38 2017 -0500
minor detailing
commit 1f80b6dd0d15d4270dc4d5d778d87f1ab0bc4f59
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 22:25:30 2017 -0500
added online/offline to app.py
commit 32172a95ea235c08b6bef20652407540e176e66a
Merge: 9674188 076fe6f
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 22:19:36 2017 -0500
added online/offline to app.py
commit 967418820867ed3e9141fa5c5a02bbdc97172096
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 22:18:34 2017 -0500
added online/offline to app.py
commit 076fe6f12a18d40f9f9ba4ba3e3657bbd56f9ec2
Author: leosanchez16 <leosanchez16@utexas.edu>
Date: Wed Apr 19 21:08:00 2017 -0500
updated app.py so it can run on digital ocean
commit ea49a63ad7db92021ca5ca37ed0b0a7115ecebf9
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 19 20:53:33 2017 -0500
ufc fix
commit b7e2e3a0da562dc48309b6d07851f6a1a9661c81
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 19 20:48:28 2017 -0500
added games
commit 8a2c96a7d2066132705917e83e940eb56a96ce4f
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 19 20:16:44 2017 -0500
added livestream pages
commit ed52a6912cc0f6b4c2a0a204c60f10273c21739e
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 19 19:04:57 2017 -0500
new game/live stream files
commit 8fe9c5268435367741ecb4b5d72241b9ca0d6618
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 19 18:46:29 2017 -0500
added game/streamer to table
commit 1e37baa46120679eb97a15417a30fff64e6994a2
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 19 18:42:50 2017 -0500
UFC2
commit 2de524db02e60c96e74a74c4e50dc7b7bef7fe8e
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Wed Apr 19 18:40:17 2017 -0500
Added streamer
commit d1350ca397bbff137d0cd9578f84f790cc87d5ab
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Wed Apr 19 18:21:38 2017 -0500
Moved index.html back to Templates b/c didn't help load streamersurf.me
commit 230abfebfb683dfa9a2f4c94562ec0276a5dc08f
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Wed Apr 19 18:02:02 2017 -0500
moved index.html back to main folder of repo
commit 12ff88f638203e0836f8410546ad0aab38e0e737
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Wed Apr 19 17:37:44 2017 -0500
Began updating About page
commit 6a8c73dfd2c2c7c0a4f964bbfb98eb0311d4c0ab
Author: leosanchez16 <leosanchez16@utexas.edu>
Date: Wed Apr 19 13:17:27 2017 -0500
added template to app.py for streamers if we end up using the twitch api
commit 0d66ca787357ce3dcaafe89a6bf108082075c90f
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 15:44:31 2017 -0500
removed venv
commit f1f252797366f59279136b48be1c62b843fc1603
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 15:41:34 2017 -0500
updated about for test commit
commit 47dde85b7acd7468cb722db16565fe2c1531fcea
Author: JPortillo00 <portillo.jairojr@gmail.com>
Date: Tue Apr 18 15:39:11 2017 -0500
update to ignore venv
hopefully fixes issue #67
commit ae782119032ce8bc044ba5721c3f13fddef819f2
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 15:35:12 2017 -0500
venv update?
commit f8fa8c88f7074f3dabb72c40e256d50799ccc02c
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 15:22:51 2017 -0500
remove python3.5m from venv/include
commit 6ccbfff2d3702dcbde9d299ca2b33d26794e69b3
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 15:20:01 2017 -0500
remove python2.7 from venv/include
commit 4aa83d90d4bd3eadaaa5885bf9d32bad1b9d3bd6
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 15:01:20 2017 -0500
fixed about page and added local run to app.py
commit 1dc03ba0b036df0367452196488025d88b457bd2
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 14:39:42 2017 -0500
image paths in about page
commit f7ff253a98854b2a04825da38b2b010d117f57de
Author: leosanchez16 <leosanchez16@utexas.edu>
Date: Tue Apr 18 14:36:04 2017 -0500
Update app.py
commit 0cb781a9ed89e0ca9b45eae4c704f168993077e9
Author: root <root@streamerSurfer-IDB.localdomain>
Date: Tue Apr 18 19:26:25 2017 +0000
digital ocean set up
commit d7e3197363e15ebde9ed99e30679e87be7de89ab
Merge: 724b08c 8086f9a
Author: JPortillo00 <portillo.jairojr@gmail.com>
Date: Tue Apr 18 14:13:07 2017 -0500
Merge pull request #61 from leosanchez16/dev
Dev
commit 8086f9af2db32fad5a63b5db545d0e19953efe0a
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 14:05:10 2017 -0500
fixed css paths in streamer instances
commit 8b1bfdf9c765f1601f65cda4b22ee2132a7a6e3e
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Tue Apr 18 13:48:50 2017 -0500
changes paths in css
commit 36bae63b5c1b08fe15e23c277e269b812a58c1ef
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Mon Apr 17 18:57:23 2017 -0500
Updated about page
commit c92a8e6d6f520be439885a96d4cacade37a772e7
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Mon Apr 17 14:22:59 2017 -0500
updated the streamer instance pages to work with flask
commit a312da2659ea35f5d1d15f2bf79e279fe6d1252c
Merge: 9688e8f 724b08c
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Fri Apr 14 15:24:30 2017 -0500
flask update
commit 9688e8f7c0eef10cf6b81e3c0017a0c464054577
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Fri Apr 14 15:20:26 2017 -0500
flask update
commit 2fed03f53eac4fca8ccbeaf18596eebdf5c8552e
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 12 19:08:33 2017 -0500
Beginning of the flask process
commit 724b08c12474021db501de5d07d5f70421ea2b4f
Author: Dingkun Zhang <dingkzhang@utexas.edu>
Date: Wed Apr 12 18:38:39 2017 -0500
website critical hit
commit a9ba0b1b3348021c42cc974c4861c2bc4b896dfc
Author: leosanchez16 <leosanchez16@utexas.edu>
Date: Wed Apr 12 18:24:28 2017 -0500
added apptest and templates to test DigitalOcean
commit bb34fd198bb66fafa0924316cd9d3c04d987ff85
Author: Jean-Pierre Njock II <jnjock32@cs.utexas.edu>
Date: Wed Apr 12 18:21:10 2017 -0500
updated image directory for fifa and halo images seen on the splash page
commit 5865f8cee11c77d57168ad3c5f5b54d5ce16cdc8
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 12 02:39:18 2017 -0500
game title changes for lol
commit 7f9bc8ea60074beef64819ad07aeb5b4cb65aa98
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 12 02:35:16 2017 -0500
image changes
commit f759410ea2daeb569fe8091430f972bdd11caffe
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 12 02:32:20 2017 -0500
minor edit to halo 5 and fifa 17
commit 4eb776e05540c13bfdef215f29d41bb4a0d3759d
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 12 02:27:54 2017 -0500
game page layout changes, plus added H1Z1 to game list
commit bb5f83cba4d5859b76c1106de4192db7cbe7f9a8
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 11 18:19:06 2017 -0500
game page changes
commit ab6114ae0593fb405e97e0c00c87c83cf7f83995
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 11 16:53:14 2017 -0500
fallout changes
commit 9802f011d9452cde70390599f1ff14601a0d6c24
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 11 16:45:53 2017 -0500
changes to game pages
commit 27eccb5629a946493e1e84902bc822e4e0a4c92d
Author: Jean-Pierre Njock II <jnjock32@cs.utexas.edu>
Date: Tue Apr 11 16:36:20 2017 -0500
new layout to game pages
commit 7e2b89bc588ddfc916dad9a5360261efb9a0122c
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 11 15:47:20 2017 -0500
made a dummie file to work on a new layout for game pages
commit d67ab2a5f61f8c547c9684ef2febdee53b6b1143
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 11 00:00:57 2017 -0500
removed footer from game pages
commit 6e574d394f6383d56a330742088d8561a8a39247
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Mon Apr 10 23:23:32 2017 -0500
centered live streamers table on game pages
commit 46e5600390c0aa3ba19ef0458f60cb6568324e97
Author: jn9765 <jeanpierrenjockii@utexas.edu>
Date: Mon Apr 10 22:04:45 2017 -0500
centered tables in model pages
commit f430958dae4fe62bf1d383e6d4736e846fb6c641
Author: Jean-Pierre Njock II <jnjock32@cs.utexas.edu>
Date: Mon Apr 10 18:58:16 2017 -0500
reverted previous changes to model pages
commit 926fb5fb7b9bf1c80f3c30f83e3d3aab9eb46529
Author: Jean-Pierre Njock II <jnjock32@cs.utexas.edu>
Date: Mon Apr 10 17:06:18 2017 -0500
centered model pages
commit 4f9a5303e086b8a8eeb0b5c98213e6a471360209
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 21:05:55 2017 -0500
added new git log
commit e44d2043f8106dcb2a17e8314b1b2adf1e5e7f4c
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 21:05:21 2017 -0500
fixed streamer link on genre page
commit 98662817c9265f0cd017d62724475f9e4826dd0e
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 20:52:29 2017 -0500
adding git log file
commit 3e946ce8d04852022043c601255237d1ede6ffe0
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 6 20:48:10 2017 -0500
Put in the final commit and issue counts
commit 14e17df7c2b4dfa13405879974f1f0c53e9d96fb
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 20:44:03 2017 -0500
about change
commit 3ce5d2ff6bbcfeb2321fb7592a48b1b640b11227
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 20:40:36 2017 -0500
about page changes
commit 54a25424acc53dc4022edbacf00408d1c733867d
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 20:36:21 2017 -0500
missing character
commit 1aa126eea3cff13c46f56903792ef2ff24566411
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 20:34:24 2017 -0500
updated responsibilities on about page
commit 2db6ab8c903c5f32b33d5e47f6a70abf1a423bdd
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 20:32:42 2017 -0500
fixed streamer
commit 7f276a6781c18280f6a8265a92fd0612302f9e0a
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 20:22:04 2017 -0500
added links to fighting, racing, survival intances
commit fecd2329c10e608f558a2dccb3bae6e8e9e62e16
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 19:51:30 2017 -0500
removed 'more' button off of feature streamers on game pages
commit a7a53c4d8f9db326ee24083829b97b137d2d53da
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 19:45:33 2017 -0500
updated popular streamers for each genre
commit cc686c105e738085b6d5f42885b30381a114df93
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 19:39:01 2017 -0500
minor changes to streetfighterv page
commit aee44d418cbaf8c4fef9fd1eea33be736be5e095
Author: nc22349 <nathan.caldwell@utexas.edu>
Date: Thu Apr 6 19:35:09 2017 -0500
Delete .DS_Store
commit 867f33e9a8e190d615b95d61dc140858af256800
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 19:33:23 2017 -0500
minor change to lol game page
commit ed465c38bfd8a7e8787ca1a62077129fd425bc8c
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 19:30:13 2017 -0500
edited game pages and file paths
commit bea810d8b6ffe9cb92d47c2863dbc949e7ecb0ff
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 6 19:25:56 2017 -0500
finalized About
commit be67b8925ab274459c557b971d3c6434f6a8dcf6
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Thu Apr 6 19:10:39 2017 -0500
finished About bootstrap pending last edits
commit 0e3ba86e87c3ef084c9235f802a6d397ddd0d529
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 17:47:26 2017 -0500
added new streamers to game pages under featured streamers
commit ce7ef23f84405885924e0c1e6aaa20c70f87793f
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 17:34:45 2017 -0500
added two more streamers to streamer page
commit 0d3fa2c876797849d91ad550b7e7545f721eb098
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 6 17:33:48 2017 -0500
editted links within streamer instances
commit 0be3d3dec57cbdfe2720013399fd8d2d675de1e7
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 6 17:14:23 2017 -0500
editted streamer instances and added nhfslickermo
commit 12994661645a5106d17e24ee984f7aeef4b2e6f5
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 6 16:45:41 2017 -0500
editted streamer instances for smaller screens
commit f53803d8924c0675482b92bc570cf050d3c0836c
Merge: 87ab036 7047571
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 6 16:22:11 2017 -0500
Merge branch 'master' of https://github.com/leosanchez16/cs329e-idb
commit 87ab0366123ea30651166dc10b6df5efbf71d480
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 6 16:21:33 2017 -0500
editted Imqtpie instance, added mob5stertv instance
commit 7047571db624e5c89509ed763271bf0c0c8bfac2
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 16:05:52 2017 -0500
added new file path to about page
commit 666ee787fa47976606e6eb9ec293fb6e14288e35
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 15:45:42 2017 -0500
added links to survival and sports
commit 1e048a8879884fef6134b3d21d631d4445ff671e
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Thu Apr 6 15:26:46 2017 -0500
editted streamer instances
commit 4c6d752281f5a8399d542c30575d4153dbbf0f43
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 15:21:37 2017 -0500
fixed strategy link
commit 8b6fe143f050674ebfce26db6dbabf9bedcb9905
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 15:17:51 2017 -0500
fixed links for strategy, and survival
commit b649834ebcb966a8a40a8cf228d9946f4443ec4a
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 13:44:46 2017 -0500
changes to fallout page, and added imaqtpie to streamers table
commit a305d9ad9039b79a33d998df94f28a71f05435da
Author: leosanchez16 <leosanchez16@live.com>
Date: Thu Apr 6 11:44:45 2017 -0500
added 2 more genre instances, fixd the nav bar
closes #36 and closes #37 did not change to javascript, just changed the font for the nav bar, change to javascript on next phase
commit d410ec52e87155576ca46b5fb268b68765b202c2
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 00:30:04 2017 -0500
edited overwatch page
commit 28e48ea73b5199dec71dc96c0097a437396c136b
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 00:24:04 2017 -0500
name was mispelled on about page
commit f3e0dad8a3ba015aca873966314c824f561684a5
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 00:21:43 2017 -0500
edited responsibilities in about page
commit aad05fc6a501634f1afdac9270c6637808e86629
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 00:17:13 2017 -0500
changes to game pages
commit ccd71c688e70c511ccf8e39baeafaf73a3a2c638
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Thu Apr 6 00:02:14 2017 -0500
rearrangement of header elements to make navbar consistent with other pages
commit 53c02b7d5ee59faea72e043f4b03767e7b5cbcda
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 23:38:31 2017 -0500
changes
commit 71af42d99d88b5641f6d14d25fce91455ae80446
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 23:34:58 2017 -0500
change to tables
commit 4f11211e3f8559e7f941ad424bafe60d25726b93
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 23:33:10 2017 -0500
table changes
commit 2ba95ece2868a790780df457ac7954ae08e385ab
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 23:30:55 2017 -0500
changes to streamers page
commit 2746e5bf94322f380744a3101930b8bda8243cb2
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 23:28:51 2017 -0500
changes to games table
commit 73377a8cfb6bb2a49cd72c8b6b6f21c3bb86000c
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 22:53:19 2017 -0500
additional changes to live streamer tables
commit 1dfde8a99fb964cf7c946b6c66cd536473da29dd
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 22:22:24 2017 -0500
additional changes to game pages
commit 9fc459eecbdf7bd6fa29c2f8c73f676b5dbf42d3
Author: Dingkun Zhang <dingkzhang@utexas.edu>
Date: Wed Apr 5 22:03:19 2017 -0500
about page is linked
commit 66c794dee24af5550dc18a7d802f0c2c0b1add0d
Author: Dingkun Zhang <dingkzhang@utexas.edu>
Date: Wed Apr 5 21:53:11 2017 -0500
updating splash page with js and boot
commit 166e204564a0805f327be7b56aea94bb375de67b
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 21:29:26 2017 -0500
Changes to game pages and table pages. Still editing
commit 4d7dca7d297521c7b79e098152c28d605918ca46
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 5 20:12:58 2017 -0500
Nick28T page correction
commit 7c9bd799ab66db8c93c59f504cdd73b9cd30e730
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 5 20:11:44 2017 -0500
testing live website streamer instance
commit 64cf1b8c55ebf771cf2e66c92eee2c86f85c7736
Author: Jairo Portillo <jport00@cs.utexas.edu>
Date: Wed Apr 5 20:01:23 2017 -0500
Bootstrap of streamers
commit 5a34ec8c6889078a4dc6c1cee57684502316a204
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Wed Apr 5 16:18:21 2017 -0500
changes to model pages
commit 516c120511d70ec92340a8983876e0c3cf28fbd1
Author: leosanchez16 <leosanchez16@live.com>
Date: Wed Apr 5 13:00:53 2017 -0500
updated strategy static page, fixed autoplay on iframe
commit 35106fbec4b4982f830798e7ab317106dfc878f8
Author: leosanchez16 <leosanchez16@live.com>
Date: Wed Apr 5 12:25:51 2017 -0500
updated the fighting genre static page
commit e8ccda2a87a4ca501a792012f36b1d50aa8089ad
Author: leosanchez16 <leosanchez16@live.com>
Date: Wed Apr 5 00:44:53 2017 -0500
updated genre pages to bootstrap and added 4 more genre static pages
closes #23 , I still need to add the information for the other 4 static genre pages.
commit f01ed48b32ffdf2cb9e5c41b562bc2473c1eda89
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 4 19:06:32 2017 -0500
small changes to about page
commit 7dde1e914dd6f7c6a5c1bb195251652413f9d505
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Tue Apr 4 18:32:43 2017 -0500
Added game pages and edits to games table; still creating more but I got burned out
commit 52113bf0791c8fa1a8a8abdee1a50f526051ba13
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Mon Apr 3 23:50:44 2017 -0500
changed size of user image on live streamers table
commit f82d38b0f1091d0499761324f37c390aefe6ab36
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Mon Apr 3 19:13:17 2017 -0500
added live stream to streamers table
commit 05af8f036f0dc33da34d44a9bce14825129891f6
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Mon Apr 3 12:10:00 2017 -0500
minor changes to live streamers table
commit d03214885ee73b2dbb7db9b7a89c6268a418e20a
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 20:53:40 2017 -0500
changed the number of users retrieved from Twitch api
commit 82780545e1b2b7d49ebb363ad48df7a85a030177
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 20:13:24 2017 -0500
reverted changes made to games pages
commit 89fb7ace14c031a799ed2ca899b8aded0bccf59c
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 19:49:43 2017 -0500
changes to live stream table
commit 19a7d0d9df9300fc96301084f3509319afb6e45a
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 19:42:51 2017 -0500
added a live streamers table for halo 5
commit 054fe8409d18813c84c8d7c6049f46be2f3ba848
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Sun Apr 2 15:49:30 2017 -0500
Began bootstrapping About. Did not replace original
commit 99e3789dc0b68cf769c8b75881335a7443aad9f7
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 02:19:46 2017 -0500
data table changes
commit 0a21aa016d2b7e9d55351e1900802182e3fe65ed
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 02:02:58 2017 -0500
changes to data table
commit 0dad6237e111e57f125107d584745e9c2ba8e7e8
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 01:13:52 2017 -0500
data table changes
commit f3f69a6c18a59ee976fbfe256552dcf77a167fcc
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 01:00:42 2017 -0500
data table js changes
commit d670e94cff115aedabfa6a1b6d8d60dc1ded1f4d
Author: nc22349 <nathan.caldwell@utexas.edu>
Date: Sun Apr 2 00:56:06 2017 -0500
Delete .DS_Store
commit d06203d917bb70dbdc7dfa226241cc13ff016d9e
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Sun Apr 2 00:55:03 2017 -0500
Started working on About
commit 8b025e1a1a28059e7db1257e03682d58b31ca4a7
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 00:53:04 2017 -0500
index changes
commit 262f1e1b37cf2e549d6c17c5ad10d7bb2b62b4ac
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 00:49:31 2017 -0500
index fix
commit f2ab569c742662de436dc141a8feb086196cfe2d
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 00:48:06 2017 -0500
more changes
commit 7a480e861a91b8f69ab036ca9ce5035d2e84ba04
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 00:46:09 2017 -0500
more changes to table pages
commit b3a9c766cfd6991fd5573426c6d8588b1fd1ff62
Author: WiLdCaT F8n32 <jeanpierrenjockii@utexas.edu>
Date: Sun Apr 2 00:42:33 2017 -0500
added changes to model folder
commit ee4603bdeb43ef0ce16580aab652d2ccdedefab3
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>
Date: Sun Apr 2 00:05:54 2017 -0500
removing test file
commit ad1c5ab65c317f9d2cab612ae329d29ea0bf6b4f
Author: Nathan Caldwell <nathan.caldwell@utexas.edu>