-
Notifications
You must be signed in to change notification settings - Fork 1
/
IDB2.log
996 lines (663 loc) · 29.4 KB
/
IDB2.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
commit e44d2043f8106dcb2a17e8314b1b2adf1e5e7f4c
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 21:05:21 2017 -0500
fixed streamer link on genre page
commit 98662817c9265f0cd017d62724475f9e4826dd0e
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 20:52:29 2017 -0500
adding git log file
commit 3e946ce8d04852022043c601255237d1ede6ffe0
Author: Nathan Caldwell <[email protected]>
Date: Thu Apr 6 20:48:10 2017 -0500
Put in the final commit and issue counts
commit 14e17df7c2b4dfa13405879974f1f0c53e9d96fb
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 20:44:03 2017 -0500
about change
commit 3ce5d2ff6bbcfeb2321fb7592a48b1b640b11227
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 20:40:36 2017 -0500
about page changes
commit 54a25424acc53dc4022edbacf00408d1c733867d
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 20:36:21 2017 -0500
missing character
commit 1aa126eea3cff13c46f56903792ef2ff24566411
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 20:34:24 2017 -0500
updated responsibilities on about page
commit 2db6ab8c903c5f32b33d5e47f6a70abf1a423bdd
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 20:32:42 2017 -0500
fixed streamer
commit 7f276a6781c18280f6a8265a92fd0612302f9e0a
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 20:22:04 2017 -0500
added links to fighting, racing, survival intances
commit fecd2329c10e608f558a2dccb3bae6e8e9e62e16
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 19:51:30 2017 -0500
removed 'more' button off of feature streamers on game pages
commit a7a53c4d8f9db326ee24083829b97b137d2d53da
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 19:45:33 2017 -0500
updated popular streamers for each genre
commit cc686c105e738085b6d5f42885b30381a114df93
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 19:39:01 2017 -0500
minor changes to streetfighterv page
commit aee44d418cbaf8c4fef9fd1eea33be736be5e095
Author: nc22349 <[email protected]>
Date: Thu Apr 6 19:35:09 2017 -0500
Delete .DS_Store
commit 867f33e9a8e190d615b95d61dc140858af256800
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 19:33:23 2017 -0500
minor change to lol game page
commit ed465c38bfd8a7e8787ca1a62077129fd425bc8c
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 19:30:13 2017 -0500
edited game pages and file paths
commit bea810d8b6ffe9cb92d47c2863dbc949e7ecb0ff
Author: Nathan Caldwell <[email protected]>
Date: Thu Apr 6 19:25:56 2017 -0500
finalized About
commit be67b8925ab274459c557b971d3c6434f6a8dcf6
Author: Nathan Caldwell <[email protected]>
Date: Thu Apr 6 19:10:39 2017 -0500
finished About bootstrap pending last edits
commit 0e3ba86e87c3ef084c9235f802a6d397ddd0d529
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 17:47:26 2017 -0500
added new streamers to game pages under featured streamers
commit ce7ef23f84405885924e0c1e6aaa20c70f87793f
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 17:34:45 2017 -0500
added two more streamers to streamer page
commit 0d3fa2c876797849d91ad550b7e7545f721eb098
Author: Jairo Portillo <[email protected]>
Date: Thu Apr 6 17:33:48 2017 -0500
editted links within streamer instances
commit 0be3d3dec57cbdfe2720013399fd8d2d675de1e7
Author: Jairo Portillo <[email protected]>
Date: Thu Apr 6 17:14:23 2017 -0500
editted streamer instances and added nhfslickermo
commit 12994661645a5106d17e24ee984f7aeef4b2e6f5
Author: Jairo Portillo <[email protected]>
Date: Thu Apr 6 16:45:41 2017 -0500
editted streamer instances for smaller screens
commit f53803d8924c0675482b92bc570cf050d3c0836c
Merge: 87ab036 7047571
Author: Jairo Portillo <[email protected]>
Date: Thu Apr 6 16:22:11 2017 -0500
Merge branch 'master' of https://github.com/leosanchez16/cs329e-idb
commit 87ab0366123ea30651166dc10b6df5efbf71d480
Author: Jairo Portillo <[email protected]>
Date: Thu Apr 6 16:21:33 2017 -0500
editted Imqtpie instance, added mob5stertv instance
commit 7047571db624e5c89509ed763271bf0c0c8bfac2
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 16:05:52 2017 -0500
added new file path to about page
commit 666ee787fa47976606e6eb9ec293fb6e14288e35
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 15:45:42 2017 -0500
added links to survival and sports
commit 1e048a8879884fef6134b3d21d631d4445ff671e
Author: Jairo Portillo <[email protected]>
Date: Thu Apr 6 15:26:46 2017 -0500
editted streamer instances
commit 4c6d752281f5a8399d542c30575d4153dbbf0f43
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 15:21:37 2017 -0500
fixed strategy link
commit 8b6fe143f050674ebfce26db6dbabf9bedcb9905
Author: leosanchez16 <[email protected]>
Date: Thu Apr 6 15:17:51 2017 -0500
fixed links for strategy, and survival
commit b649834ebcb966a8a40a8cf228d9946f4443ec4a
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 13:44:46 2017 -0500
changes to fallout page, and added imaqtpie to streamers table
commit a305d9ad9039b79a33d998df94f28a71f05435da
Author: leosanchez16 <[email protected]>
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 <[email protected]>
Date: Thu Apr 6 00:30:04 2017 -0500
edited overwatch page
commit 28e48ea73b5199dec71dc96c0097a437396c136b
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 00:24:04 2017 -0500
name was mispelled on about page
commit f3e0dad8a3ba015aca873966314c824f561684a5
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 00:21:43 2017 -0500
edited responsibilities in about page
commit aad05fc6a501634f1afdac9270c6637808e86629
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Apr 6 00:17:13 2017 -0500
changes to game pages
commit ccd71c688e70c511ccf8e39baeafaf73a3a2c638
Author: WiLdCaT F8n32 <[email protected]>
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 <[email protected]>
Date: Wed Apr 5 23:38:31 2017 -0500
changes
commit 71af42d99d88b5641f6d14d25fce91455ae80446
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 23:34:58 2017 -0500
change to tables
commit 4f11211e3f8559e7f941ad424bafe60d25726b93
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 23:33:10 2017 -0500
table changes
commit 2ba95ece2868a790780df457ac7954ae08e385ab
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 23:30:55 2017 -0500
changes to streamers page
commit 2746e5bf94322f380744a3101930b8bda8243cb2
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 23:28:51 2017 -0500
changes to games table
commit 73377a8cfb6bb2a49cd72c8b6b6f21c3bb86000c
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 22:53:19 2017 -0500
additional changes to live streamer tables
commit 1dfde8a99fb964cf7c946b6c66cd536473da29dd
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 22:22:24 2017 -0500
additional changes to game pages
commit 9fc459eecbdf7bd6fa29c2f8c73f676b5dbf42d3
Author: Dingkun Zhang <[email protected]>
Date: Wed Apr 5 22:03:19 2017 -0500
about page is linked
commit 66c794dee24af5550dc18a7d802f0c2c0b1add0d
Author: Dingkun Zhang <[email protected]>
Date: Wed Apr 5 21:53:11 2017 -0500
updating splash page with js and boot
commit 166e204564a0805f327be7b56aea94bb375de67b
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 21:29:26 2017 -0500
Changes to game pages and table pages. Still editing
commit 4d7dca7d297521c7b79e098152c28d605918ca46
Author: Jairo Portillo <[email protected]>
Date: Wed Apr 5 20:12:58 2017 -0500
Nick28T page correction
commit 7c9bd799ab66db8c93c59f504cdd73b9cd30e730
Author: Jairo Portillo <[email protected]>
Date: Wed Apr 5 20:11:44 2017 -0500
testing live website streamer instance
commit 64cf1b8c55ebf771cf2e66c92eee2c86f85c7736
Author: Jairo Portillo <[email protected]>
Date: Wed Apr 5 20:01:23 2017 -0500
Bootstrap of streamers
commit 5a34ec8c6889078a4dc6c1cee57684502316a204
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Apr 5 16:18:21 2017 -0500
changes to model pages
commit 516c120511d70ec92340a8983876e0c3cf28fbd1
Author: leosanchez16 <[email protected]>
Date: Wed Apr 5 13:00:53 2017 -0500
updated strategy static page, fixed autoplay on iframe
commit 35106fbec4b4982f830798e7ab317106dfc878f8
Author: leosanchez16 <[email protected]>
Date: Wed Apr 5 12:25:51 2017 -0500
updated the fighting genre static page
commit e8ccda2a87a4ca501a792012f36b1d50aa8089ad
Author: leosanchez16 <[email protected]>
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 <[email protected]>
Date: Tue Apr 4 19:06:32 2017 -0500
small changes to about page
commit 7dde1e914dd6f7c6a5c1bb195251652413f9d505
Author: WiLdCaT F8n32 <[email protected]>
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 <[email protected]>
Date: Mon Apr 3 23:50:44 2017 -0500
changed size of user image on live streamers table
commit f82d38b0f1091d0499761324f37c390aefe6ab36
Author: WiLdCaT F8n32 <[email protected]>
Date: Mon Apr 3 19:13:17 2017 -0500
added live stream to streamers table
commit 05af8f036f0dc33da34d44a9bce14825129891f6
Author: WiLdCaT F8n32 <[email protected]>
Date: Mon Apr 3 12:10:00 2017 -0500
minor changes to live streamers table
commit d03214885ee73b2dbb7db9b7a89c6268a418e20a
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 20:53:40 2017 -0500
changed the number of users retrieved from Twitch api
commit 82780545e1b2b7d49ebb363ad48df7a85a030177
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 20:13:24 2017 -0500
reverted changes made to games pages
commit 89fb7ace14c031a799ed2ca899b8aded0bccf59c
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 19:49:43 2017 -0500
changes to live stream table
commit 19a7d0d9df9300fc96301084f3509319afb6e45a
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 19:42:51 2017 -0500
added a live streamers table for halo 5
commit 054fe8409d18813c84c8d7c6049f46be2f3ba848
Author: Nathan Caldwell <[email protected]>
Date: Sun Apr 2 15:49:30 2017 -0500
Began bootstrapping About. Did not replace original
commit 99e3789dc0b68cf769c8b75881335a7443aad9f7
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 02:19:46 2017 -0500
data table changes
commit 0a21aa016d2b7e9d55351e1900802182e3fe65ed
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 02:02:58 2017 -0500
changes to data table
commit 0dad6237e111e57f125107d584745e9c2ba8e7e8
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 01:13:52 2017 -0500
data table changes
commit f3f69a6c18a59ee976fbfe256552dcf77a167fcc
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 01:00:42 2017 -0500
data table js changes
commit d670e94cff115aedabfa6a1b6d8d60dc1ded1f4d
Author: nc22349 <[email protected]>
Date: Sun Apr 2 00:56:06 2017 -0500
Delete .DS_Store
commit d06203d917bb70dbdc7dfa226241cc13ff016d9e
Author: Nathan Caldwell <[email protected]>
Date: Sun Apr 2 00:55:03 2017 -0500
Started working on About
commit 8b025e1a1a28059e7db1257e03682d58b31ca4a7
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 00:53:04 2017 -0500
index changes
commit 262f1e1b37cf2e549d6c17c5ad10d7bb2b62b4ac
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 00:49:31 2017 -0500
index fix
commit f2ab569c742662de436dc141a8feb086196cfe2d
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 00:48:06 2017 -0500
more changes
commit 7a480e861a91b8f69ab036ca9ce5035d2e84ba04
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 00:46:09 2017 -0500
more changes to table pages
commit b3a9c766cfd6991fd5573426c6d8588b1fd1ff62
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Apr 2 00:42:33 2017 -0500
added changes to model folder
commit ee4603bdeb43ef0ce16580aab652d2ccdedefab3
Author: Nathan Caldwell <[email protected]>
Date: Sun Apr 2 00:05:54 2017 -0500
removing test file
commit ad1c5ab65c317f9d2cab612ae329d29ea0bf6b4f
Author: Nathan Caldwell <[email protected]>
Date: Sun Apr 2 00:05:17 2017 -0500
testing to see if github now recognizes as nc22349 instead of nathan caldwell
commit bab65774e794b3e1cda385af20ad7a0952dc41e1
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:59:02 2017 -0500
returned splashStyle.css's name to IndexStyle.css :)
commit 14f95db0588836337feadce215e303d49449035f
Author: JPortillo00 <[email protected]>
Date: Thu Mar 30 13:24:59 2017 -0500
Curse Streamer instance in bootstrap
incomplete, just a rough draft,
commit 8ed93debc0c54fee0549d443c7cfb2014b5c99a6
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:43:42 2017 -0500
moved index back to repo (forgot it had to be there)
commit e3000b482b7432c39c849ef7899f5d2fba85f9d5
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:38:48 2017 -0500
removed splash files from main repo folder
commit 4d64819c02c5c3681b1f0a2782a1a2ce7d4ec07e
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:36:59 2017 -0500
moved splash files to own folder and made them reference the navbar location
commit 0fe1b914106a3544910795d8b7da47224aca8f15
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:31:56 2017 -0500
Edited About, Games, and Genres to reference the nav bar
commit e5828c370b31c0c2e85e24d093a49294de2d95ff
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:10:22 2017 -0500
Edited Model files to reference nav bar location
commit f2f9fe903d9084cdfabe2ace1f8aa818a5b50a11
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 23:04:57 2017 -0500
put nav bar in one place and began editing files to reference it
commit 06936d17f6d80b7df903ed4b820decc9e2004e99
Author: Nathan Caldwell <[email protected]>
Date: Sat Apr 1 21:38:19 2017 -0500
moved About files into their own folder
commit 782ca5e42c51c2069103656fa1e73e4311b4c860
Author: Luis Sanchez <[email protected]>
Date: Thu Mar 23 20:52:59 2017 -0500
added git commit log,last push for this phase :)
commit 337e517548b1e9a7415a5cf3a8a93dd780c81d14
Author: Luis Sanchez <[email protected]>
Date: Thu Mar 23 20:50:39 2017 -0500
added number of commits to about page
commit 94d809a8c97ece35d705a9dec243320916ea30d7
Author: Nathan Caldwell <[email protected]>
Date: Thu Mar 23 20:23:47 2017 -0500
cropped
commit c12bd5e8cc5352917bf1977ffa1841aaea5aaa30
Author: nc22349 <[email protected]>
Date: Thu Mar 23 20:18:14 2017 -0500
too small in wiki
commit 4a8fdc2b10be51bdb2fed7b5c78378d959169d9f
Author: nc22349 <[email protected]>
Date: Thu Mar 23 20:18:03 2017 -0500
didn't resize in wiki
commit fed664f3b1021ca74ec0732c287e857f55936758
Author: Nathan Caldwell <[email protected]>
Date: Thu Mar 23 20:17:00 2017 -0500
A replacement diagram; text size larger
commit b661321ed84333291b9504bc6c184709deb37746
Author: nc22349 <[email protected]>
Date: Thu Mar 23 19:38:23 2017 -0500
Trying to blow up img on wiki's structure page
commit 0ddd143974ef46c08cf17fcb241eff6b9657cedd
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 19:32:38 2017 -0500
gitignore empty file
commit baddd267b6cbc3594898a5b009703c63027c3c6d
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 18:48:03 2017 -0500
changed team name in about page
commit 1469fd4151c119f9c977d765eb16bef548d579ac
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 18:45:55 2017 -0500
changes to about page including name
commit 398b8d8c547092638f7bba6decdff71556a7b601
Author: Luis Sanchez <[email protected]>
Date: Thu Mar 23 16:36:50 2017 -0500
edited about page, uploaded more images
commit 1242f67823249f201ab99c8e7590940aea11dddc
Author: nc22349 <[email protected]>
Date: Thu Mar 23 15:29:02 2017 -0500
Add JP's diagram so I can link to it in Wiki
commit a122f3431e2c7882614395115d30942c0e494cd9
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 15:18:19 2017 -0500
edits to about page
commit 801fbe9dccd166fd2915b2ec9aea8a29278237f8
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 15:07:28 2017 -0500
IDB1.log created and pushed
commit eb44612d0bc0f29a0f3b198b067013dab21286b3
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 15:05:32 2017 -0500
log information
commit 96c520abe43b12bcea37f63e390c641dec77206d
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 13:08:43 2017 -0500
file path error resolved on streamer's table page
commit 1c47f7cab8aa6b5d9afa66be57314f7890aa0d9c
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 23 00:32:48 2017 -0500
Added halo 5 to games table
commit 3a94185190d439ba3467e1ea1c1658ff71110c45
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 22:47:29 2017 -0500
added image to about page
commit 3f737ff0bcf9cdfb1519eee0d8f3b88f74f178b6
Author: Nathan Caldwell <[email protected]>
Date: Wed Mar 22 20:58:52 2017 -0500
sldkfj
commit 3423b20a4532cd0d4e63fa5a1930564120709503
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 20:41:31 2017 -0500
edits to about page
commit 108759327f920eba02c6d6670a4add9dc9bdbb7b
Author: Luis Sanchez <[email protected]>
Date: Wed Mar 22 20:27:51 2017 -0500
updated about page
commit 06486adeca9966e4493a5cf2b905c929a42c616a
Author: JPortillo00 <[email protected]>
Date: Wed Mar 22 20:22:04 2017 -0500
Fixed small issues
commit 3e0e0aecbae85ed9cb3ceb52b5314c6a689c087d
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 19:59:11 2017 -0500
about page edit
commit f0f3f94b474aa118f1efb35b3a80ed63f3295ba3
Author: Nathan Caldwell <[email protected]>
Date: Wed Mar 22 19:54:42 2017 -0500
Added my ugly mug to the About page img source
commit 3128a9eab7f07666fd632d0c23a4686690e8b35b
Author: Nathan Caldwell <[email protected]>
Date: Wed Mar 22 19:51:13 2017 -0500
adjusted video size
commit 2755939b4f408641aeceb4ca6b031e9e926cfcca
Author: Luis Sanchez <[email protected]>
Date: Wed Mar 22 19:47:14 2017 -0500
fixed nav var name, and image id tag
commit f595eb9a960873fdd64c1c134544874d5864b918
Author: Luis Sanchez <[email protected]>
Date: Wed Mar 22 19:45:37 2017 -0500
added about page
closes #14
commit 374749bee4c3d3ae3fdc77e7c5d33a316312fb71
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 19:33:19 2017 -0500
linked games pages to appropriate pages
commit e57de6912db412cec1bbc709a4dd93957ab4b8ef
Author: Jairo Portillo <[email protected]>
Date: Wed Mar 22 19:31:41 2017 -0500
Added Curse
commit 4ae8a7408fc2c32b4b896a7e99f7901a00458f3f
Author: Dingkun Zhang <[email protected]>
Date: Wed Mar 22 19:16:42 2017 -0500
added Fallout 4
commit 913236a5c804bd80c76f3003ecc45a1de932c718
Author: Nathan Caldwell <[email protected]>
Date: Wed Mar 22 19:11:17 2017 -0500
Resized videos to be actually usable sizes
commit da576251ad88fda0d4e605f990fe7b85646b6cff
Author: JPortillo00 <[email protected]>
Date: Wed Mar 22 19:09:48 2017 -0500
Added Streamers and Links
commit f6b50fb068b9bbf84509129df568bee286ab1e01
Author: Dingkun Zhang <[email protected]>
Date: Wed Mar 22 19:01:07 2017 -0500
correcting image link
commit ef236e6b556c91789c9c220bda6632903769f1a8
Author: Dingkun Zhang <[email protected]>
Date: Wed Mar 22 18:57:28 2017 -0500
updated index yet again
commit 04e971de4dd829cbbbe807cbbd036a578ac06571
Author: Luis Sanchez <[email protected]>
Date: Wed Mar 22 18:49:56 2017 -0500
fixed the body, head tag
commit 6f2654fe9ef1c6711742ea91a0acd85ce8b4fc68
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 18:46:13 2017 -0500
added changes to game pages
commit baf6646a8053617d2a855d9f2674c7aeb1f3feb3
Author: Nathan Caldwell <[email protected]>
Date: Wed Mar 22 18:38:33 2017 -0500
Made navbar consistent with others'
commit 03770ef2fd8f99abadb641bb0737e7c974ec19e5
Author: Dingkun Zhang <[email protected]>
Date: Wed Mar 22 18:33:14 2017 -0500
fix please
commit e5e79c7f713a3fd2929336d00951666517d7b07d
Author: Dingkun Zhang <[email protected]>
Date: Wed Mar 22 18:30:07 2017 -0500
trying to fix position problem
commit bd014e823e7ce8a1031d08153288b0cd587e1c40
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 18:29:45 2017 -0500
changes to game pages
commit f9068218ea8fd3b12410133827111080ebc9639a
Author: Luis Sanchez <[email protected]>
Date: Wed Mar 22 18:26:48 2017 -0500
edited link for home and added seperator between divs
commit 8f1ac9a9e18f8612bd377a6fe4b4a9b1f70235a7
Author: Luis Sanchez <[email protected]>
Date: Wed Mar 22 17:32:00 2017 -0500
edited genre pages and edited nav links
commit 16f9e84b8191ce1bdc2a38c4b16d81692d23f6b6
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 22 00:44:44 2017 -0500
changes to all my game pages. Hopefully these don't mess up when you guys open up your screens. Used a new boootstrap template
commit 787ee021d559a163b944b1ea5c1de05550fe7a67
Author: Dingkun Zhang <[email protected]>
Date: Tue Mar 21 23:03:19 2017 -0500
updated index css and html page
commit 37287e93138baf20beae81a8a355eb6ac37d23ad
Author: Dingkun Zhang <[email protected]>
Date: Tue Mar 21 19:33:36 2017 -0500
updated index again and added background wallpaper check it
commit a7446c7c42957b9f4ea1a51a3b4ee573426cb82f
Author: JPortillo00 <[email protected]>
Date: Tue Mar 21 14:36:26 2017 -0500
Added links to some pages
commit 8a758e5ac66dcbc0e3bc2fce39f3dd9253fb6847
Author: Dingkun Zhang <[email protected]>
Date: Mon Mar 20 20:41:38 2017 -0500
updated index.html and IndexStyle.css
commit 6c56d314707e41006b6980035ea0edfef52f7b24
Author: WiLdCaT F8n32 <[email protected]>
Date: Mon Mar 20 20:33:17 2017 -0500
overwatch changes
commit 36ee0574c21b5221b0cc3922ec349e6f1a7c7c1a
Author: nc22349 <[email protected]>
Date: Mon Mar 20 20:32:00 2017 -0500
Create CNAME closes #5 closes #6
commit f8280aa72bfe05a57fd38ae0adbe10d9a12b766e
Author: Nathan Caldwell <[email protected]>
Date: Mon Mar 20 20:21:21 2017 -0500
Added a streamer for fallout 4, added links, and standardized image size in the Streamed Games section
commit bad27efdbfe63884fda76101a3c9c30cfb89468b
Author: Luis Sanchez <[email protected]>
Date: Mon Mar 20 20:06:17 2017 -0500
added 3rd genre static page, linked games and streamers
closes #13
commit b07e73a2c532032a0c5b6b4e3dcd07f42ba438c4
Author: JPortillo00 <[email protected]>
Date: Mon Mar 20 19:54:20 2017 -0500
Added Breif Descriptions
commit d9e7dcf95062a84bd2b12f00a9dee74c86e0720a
Author: JPortillo00 <[email protected]>
Date: Mon Mar 20 19:44:16 2017 -0500
Genre and Games
Tables added to both pages and table formatting added to css
commit b78a243fb3451eb8c31be20a9643a13f9a487bab
Author: WiLdCaT F8n32 <[email protected]>
Date: Mon Mar 20 19:29:48 2017 -0500
overwatch changes
commit a5bbf55d18fcac5a75a83ac946f3b0e6eed90fd6
Author: WiLdCaT F8n32 <[email protected]>
Date: Mon Mar 20 19:18:42 2017 -0500
overwatch changes
commit 11642f12d44daec9d6db1f759821a76a448623e0
Author: JPortillo00 <[email protected]>
Date: Mon Mar 20 19:13:28 2017 -0500
Added table to genre
commit 92c365cd645f104481d18d3732ebfd2c9a9c56e0
Merge: 20aaf78 25c3a21
Author: Dingkun Zhang <[email protected]>
Date: Mon Mar 20 18:58:27 2017 -0500
Merge branch 'master' of https://github.com/leosanchez16/cs329e-idb
commit 20aaf7853154b31285068f56995e7cd459a81b83
Author: Dingkun Zhang <[email protected]>
Date: Mon Mar 20 18:57:06 2017 -0500
updated model and index pages
commit 25c3a21810f561565781ddf228da63e6b2d3e2d8
Author: WiLdCaT F8n32 <[email protected]>
Date: Mon Mar 20 18:45:45 2017 -0500
overwatch.html changes
commit a3b2af5438005713ee868be706d1d1f16d37fad8
Author: Nathan Caldwell <[email protected]>
Date: Mon Mar 20 18:09:49 2017 -0500
deleted streamer_curse.html from main repo
commit e4fd2ebdfc58f658528db88eabd3ed835e9eeacd
Author: Nathan Caldwell <[email protected]>
Date: Mon Mar 20 18:06:44 2017 -0500
Moved streamer_curse.html to a folder for my streamer files
commit a672aaaa93152272adebdffb4fc3b1673ac99d5e
Author: Luis Sanchez <[email protected]>
Date: Mon Mar 20 18:04:06 2017 -0500
added static pages to folders, added 1st, 2nd genre static page
closes #11, closes #12
commit 6791fa985fa42bd53d9d1e391cae7783db5b81e8
Author: JPortillo00 <[email protected]>
Date: Sun Mar 19 15:43:23 2017 -0500
Added some more html pages
Added the frames of the other pages for the splash paged using the style
ding used
commit e0e0b4ecb00a5343c24ac1727751834baa4e0cce
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Mar 19 00:22:37 2017 -0500
file change
commit 48a75f1c9e5d3351913c5ec3ea014fe7747bfc55
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Mar 19 00:19:35 2017 -0500
added changes plus an images folder
commit 00086b846b81fe1876b5bade52144ded5221406d
Author: WiLdCaT F8n32 <[email protected]>
Date: Sun Mar 19 00:07:17 2017 -0500
Halo 5,Overwatch, and FIFA 17 html documents. Links between pages still needs to be implemented but we'll do that once we meet up as a group
commit 802a4c2c8ff803f6bffa174c91fbe452df7e356d
Author: Nathan Caldwell <[email protected]>
Date: Sat Mar 18 22:45:43 2017 -0500
Separated CSS into a streamer-instance stylesheet
commit aa0c2d517188ace84a5d3751b1cb0477ee7b61d8
Author: Nathan Caldwell <[email protected]>
Date: Sat Mar 18 22:25:28 2017 -0500
booyakasha 4th streamer
commit 86d25c5e71fac87b66b2d986d13c2bff5f90e4b9
Author: Nathan Caldwell <[email protected]>
Date: Sat Mar 18 22:08:43 2017 -0500
Added a third streamer. one more to go
commit 7347abdd7239e17243cf1163a4850d160eab2726
Author: Nathan Caldwell <[email protected]>
Date: Sat Mar 18 21:43:30 2017 -0500
Added a second streamer index
commit e9bc5317cde47460f117b0a845927e008a9d6dcc
Author: Nathan Caldwell <[email protected]>
Date: Sat Mar 18 21:34:26 2017 -0500
Added a streamer index
commit 7a801231ec8989e615a0c53607e25c9c843f5856
Author: Dingkun Zhang <[email protected]>
Date: Thu Mar 16 18:44:25 2017 -0500
attached id to each model
commit 39da121d4b973e5cc7b63c3f82af3b97578f059e
Author: Dingkun Zhang <[email protected]>
Date: Thu Mar 16 18:16:04 2017 -0500
changed to white background
commit e67f219b8380e7b0f3ed14b82bf6a9ea567f4d38
Author: Dingkun Zhang <[email protected]>
Date: Thu Mar 16 17:49:23 2017 -0500
adding blank webpages
commit d2fe15dc728b12885118d1e2725eca639f9797a9
Author: Dingkun Zhang <[email protected]>
Date: Thu Mar 16 17:47:52 2017 -0500
adding blank about page
commit de7350766197e3b816b2e4ec447827cbeebbd474
Author: WiLdCaT F8n32 <[email protected]>
Date: Thu Mar 16 14:33:47 2017 -0500
halo5 html
commit 3ab85344fae93eaea0a5b5c92894929641c852b3
Author: WiLdCaT F8n32 <[email protected]>
Date: Wed Mar 15 09:41:28 2017 -0500
Twitch api python script
commit 1e99b302ba43d203fa9abb54cf2a799deb684ad8
Author: leosanchez16 <[email protected]>
Date: Fri Mar 10 12:39:49 2017 -0600
Initial commit