-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathIDB.log
2496 lines (1685 loc) · 74.2 KB
/
IDB.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 b78761e391ea831a5dab8123f03104132b392574
Merge: 30c2355 66d6a51
Author: Eric Su <[email protected]>
Date: Fri Apr 24 02:46:30 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 66d6a5128f8ef8b0e6fa8123a7f7d3a7c7fb30c9
Merge: 80cef65 97aaa07
Author: Hannah <[email protected]>
Date: Fri Apr 24 02:46:16 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 80cef651ce46c29798b7b4e6427eca9b9136546b
Author: Hannah <[email protected]>
Date: Fri Apr 24 02:45:55 2015 +0000
Updated commit numbers
commit 30c2355064f2bc6cf57e5aa311a45240a640bd07
Merge: 3544574 97aaa07
Author: Eric Su <[email protected]>
Date: Fri Apr 24 02:45:23 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 97aaa0757c3a7d8653a706ce695270af5fe453a3
Author: Andy <[email protected]>
Date: Fri Apr 24 02:43:44 2015 +0000
hitboxes!
commit 3544574f36e65f1568ed8ca6326df4a23cb9aba9
Merge: 188db4a 5e22e16
Author: Eric Su <[email protected]>
Date: Fri Apr 24 02:43:42 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 188db4a26c247b690480b7a484f0bd4f27eabb08
Author: Eric Su <[email protected]>
Date: Fri Apr 24 02:43:18 2015 +0000
(1) fixed athlete broken image
commit 5e22e162d6607ae0c5a29af2f74818af88517d04
Author: Andy <[email protected]>
Date: Fri Apr 24 02:40:08 2015 +0000
padding
commit e57164ddbf46e574df25f233d106c04837c78a9a
Author: Eric Su <[email protected]>
Date: Fri Apr 24 02:37:22 2015 +0000
(1) restyle
commit 51488c2898f1f8d7183cde5d1164538f322c436d
Author: Andy <[email protected]>
Date: Fri Apr 24 02:32:37 2015 +0000
removed unimplemented dropdown nav
commit 090a787f39a8359576e1db36c493b196b2a7b97a
Author: Andy <[email protected]>
Date: Fri Apr 24 02:27:12 2015 +0000
updating athletes to be sorted
commit b79508a80f2190ccfb7ae49ba6009779ae242e14
Author: Eric Su <[email protected]>
Date: Fri Apr 24 02:05:31 2015 +0000
(1) styling
commit 67f7f28eba45978d29efe1a647a2b39d458d8ac7
Author: Eric Su <[email protected]>
Date: Fri Apr 24 01:48:14 2015 +0000
(1) Reformat layout in countries.html
commit d46fe6ad5146f581d544b10f224e3c8ac53fb227
Author: Andy <[email protected]>
Date: Fri Apr 24 00:54:49 2015 +0000
minor athlete changes?
commit 29c14ed803556104a8fa1a28270b36da911b3824
Author: Eric Su <[email protected]>
Date: Fri Apr 24 00:52:28 2015 +0000
(1) reformatted search results page
commit 1c5be8312baf3e0ce42b9e9558768d51e4dec09f
Author: Andy <[email protected]>
Date: Fri Apr 24 00:32:02 2015 +0000
minor changepython3 pythians.py
commit b37e279053b35eda78b7a976ebc7355121fc6ee4
Author: Hannah <[email protected]>
Date: Thu Apr 23 23:28:43 2015 +0000
Added downloaded files
commit 3f5687587158aaf5e58169d649090a3d2b9298f5
Author: Hannah <[email protected]>
Date: Thu Apr 23 23:25:58 2015 +0000
Fixes #155 Fixed scraper to download athlete photos
commit e9892f626fdf35b508cfc87e287e1c1883140251
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 23 23:21:24 2015 +0000
Cleaned up starlords page results. Resolves #194
commit 4f000557e08238afd810a80378ed183af39b2c5f
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 23:03:58 2015 +0000
Fixed travis ci infinite committing. Closes #193
commit b01d44676348990538d6afd7218511a99c566170
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:52:45 2015 +0000
Changed reference to travis_run.sh in travis config file
commit e12c71166153e1049f7177af0c52c5268a72a156
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:48:01 2015 +0000
Removed python-apt from requirements.txt
commit ad00357b462a5d975d07b9da556af33cc117919e
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:45:03 2015 +0000
Removed pygobject from requirements.txt
commit fe194d11721fb706567dd3a8e58fb06a9885aa79
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:40:07 2015 +0000
Removed language-selector from requirements.txt
commit 4d383ff91f1a6c9dbe0be0335a3fde77778c75c2
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:37:18 2015 +0000
Removed command-not-found from requirements.txt
commit 0ec20f7ceadc6e0d289035af21fb921a308c5289
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:26:38 2015 +0000
Allowing external sources for command-not-found
commit 9721621ac0834a2e2187c45935147d337960e512
Merge: 7740d32 e3b1fb2
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:20:29 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 7740d323d4de55735ea92a0f38c258234b38bd3d
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:18:31 2015 +0000
Updated requirements.txt for travis ci.
commit e3b1fb2cf195c59e04175a3f10e25900e5cc3cb2
Merge: d0036a1 e076e89
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 23 22:14:32 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit d0036a1a1afd2dfd7b04497ffd55536c0b33bac3
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 23 22:14:29 2015 +0000
Title cased all event names. Resolves #191.
commit e076e894c8906b9e37facc676b6ce276351d78d0
Merge: e5fc54b 0742d05
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:10:22 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit e5fc54bbce8b9ed741d9c9b485ab72021eed5849
Author: Patrick Aupperle <[email protected]>
Date: Thu Apr 23 22:08:48 2015 +0000
Make Travis CI commmit changes. Closes #188
commit 0742d05dff9252289c6fd5c362d75b9d358a4649
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 23 21:40:19 2015 +0000
For game/id, made top countries only display three
commit f2a6cb3e3e540bf761b9baa6ddaf564b792f19be
Author: Andy <[email protected]>
Date: Thu Apr 23 21:15:17 2015 +0000
removing athlete images from events.html
commit 05548ead47b7489682f3b50f7024758b4b30386e
Author: Andy <[email protected]>
Date: Thu Apr 23 21:14:43 2015 +0000
Updating search results style
commit 69eff74ebc7579f6b0a37641190f394ef7d749f4
Author: Eric Su <[email protected]>
Date: Thu Apr 23 20:22:16 2015 +0000
(1) Search bar now yields correct results and reroutes to results page
commit 9a4dcfc9641f032dadccbcc1cdaeb43e2aa657c5
Author: Andy <[email protected]>
Date: Thu Apr 23 19:57:21 2015 +0000
reverting pythians.py
commit bfa96fcf342ced248a3b5843bb0c83d90bd672e5
Author: Andy <[email protected]>
Date: Thu Apr 23 19:52:45 2015 +0000
removing nonworking route in pythians.py
commit 250226b7aa5fa23a9c838d205325ff7fe84b7bc4
Author: Andy <[email protected]>
Date: Thu Apr 23 19:22:54 2015 +0000
updating search results in [search.html]
commit 86920d881f3e7191abc79a7c71f6429b4f3b35ba
Author: Eric Su <[email protected]>
Date: Thu Apr 23 19:20:14 2015 +0000
(1) implemented search bar functionality
commit 301f7ecffdb830cb5fce3701081c9f9627af7eb8
Author: Andy <[email protected]>
Date: Thu Apr 23 18:28:56 2015 +0000
Styling 'and' 'or' buttons, macro function for display results
commit ced30a0077b31189481f887ec2916b00e80db519
Author: Andy <[email protected]>
Date: Thu Apr 23 17:58:59 2015 +0000
Adding 'and' and 'or' tabbed nav [search.html]
commit 7e41379f5b866c70115f8aff4b4b08ae826db33d
Author: Andy <[email protected]>
Date: Thu Apr 23 17:43:20 2015 +0000
Temporarily disabling masonry due to performance
commit e59c4861efd6943e9bd3023eca915878bf1132e9
Author: Andy <[email protected]>
Date: Thu Apr 23 17:22:48 2015 +0000
Migrating country flags to ../img/flags
commit 65abc4d8622395424ea5d9f2719ab0b6d9553c70
Merge: e046334 1b753c8
Author: Hannah <[email protected]>
Date: Thu Apr 23 07:05:48 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit e04633435bd867020dd26c4870b5e5dd2fde4c11
Author: Hannah <[email protected]>
Date: Thu Apr 23 07:03:20 2015 +0000
Fixes #189 It's alive!! Currently storing pictures in the scrapeflag folder in static/img. This is for flags only not athletes
commit 1b753c8657897051bddd6f016255178684395366
Author: Andy <[email protected]>
Date: Thu Apr 23 03:24:17 2015 +0000
Added interesting facts to starlords.html. Closes #163
commit d7b4f6eb9c96d2aff3f5f9514378a115cca688b6
Author: Eric Su <[email protected]>
Date: Wed Apr 22 18:57:46 2015 +0000
(1) fixed image widths in index.html
commit 23a50da630c5180ec23002b47c224bf19032a6bb
Author: Patrick Aupperle <[email protected]>
Date: Tue Apr 21 03:41:55 2015 +0000
Set up travis ci, but without git commits
commit 7d676307f74537852e274b64ada167e0952ab6e3
Merge: 0c058cb e9773ea
Author: Patrick Aupperle <[email protected]>
Date: Tue Apr 21 03:04:47 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 0c058cb3f5a4e6036780058520b6c3b8cedf7380
Author: Patrick Aupperle <[email protected]>
Date: Tue Apr 21 03:04:32 2015 +0000
Added html directory
commit e9773eadc69194be810fba080f68ab473a72b811
Author: Jacob Kovar <[email protected]>
Date: Tue Apr 21 02:53:53 2015 +0000
Added Limits on search query for Andy
commit ac6982683cdeebf16a98ee0f392dc4e8efdaf174
Author: Jacob Kovar <[email protected]>
Date: Tue Apr 21 02:39:44 2015 +0000
Wrote search tests. Resolves #187
commit 114fefc78fdb9ed49b02a31eb8bb2ec0870bad74
Author: Patrick Aupperle <[email protected]>
Date: Tue Apr 21 02:27:13 2015 +0000
Made genDoc work correctly
commit 45af9a49973db8a6076f81e13503d32708cfd920
Author: Patrick Aupperle <[email protected]>
Date: Tue Apr 21 02:18:39 2015 +0000
Added document generating script. Fixes #186
commit 20549ae68c2d8f171dd66c46b545b16005882c4a
Author: Andy <[email protected]>
Date: Tue Apr 21 01:36:04 2015 +0000
Adding filtering capability, updating search results [searh.html]
commit 30f5337d5fe3919011879274f1da89ae6dad5e34
Author: Andy <[email protected]>
Date: Tue Apr 21 01:33:45 2015 +0000
Changing search endpoints return type
commit 266a3be842bea4a2593de5950a1b2ec916348c3d
Author: Andy <[email protected]>
Date: Tue Apr 21 01:32:09 2015 +0000
Updating models to full database, added prefix searching. Closes #184
commit 81af51236a6e719116be1626febbbdebc3b0d195
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 23:03:41 2015 +0000
Fixed typo in /starlords endpoint
commit a4b61a9b1c899e3638cf33c6b0e69e14cb3627d6
Author: Andy <[email protected]>
Date: Mon Apr 20 22:34:13 2015 +0000
Removing unused sorting code [countries.html]
commit 6777a6086e9f11aa4166977a947f268a9aa202d1
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:20:40 2015 +0000
Fixed incorrect avgConstPerFamily, fixes #183
commit 5ff8e2586694e010c6437335cf86bc4b7c76c5c2
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:17:17 2015 +0000
Added planetWithLongestDay to /starlords endpoint, closes #181
commit 367aa6d3f0c6e4216817e5ba2e04ae5a21202889
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:14:56 2015 +0000
Added planetWithMostMoons to /starlords endpoint, closes #180
commit 30b96e3760409061786a5f08299c01bb1c4c463a
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:13:13 2015 +0000
Added hottestStar to /starlords endpoint, closes #179
commit 1f28678fbece8cf7b8ba007c4135927d1fcf1aa3
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:12:17 2015 +0000
Added brightestConst to /starlords endpoint, closes #178
commit 9ab07ce0a4469c6779988c983e75d7c47d4f1a26
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:10:42 2015 +0000
Added avgConstPerFamily in /starlords endpoint, closes #177
commit 48380e3742567b23c0bab37402bb5ee1edbfa495
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:09:22 2015 +0000
Added avgStarsPerConst to /starlords endpoint, closes #176
commit 126db97f0cecc5d680188ed22d7b51cf257ffaf6
Author: Benjamin Pang <[email protected]>
Date: Mon Apr 20 19:07:36 2015 +0000
Added starlords API critique, closes #182
commit 23f21f8e1113ef8fcfc02f9abea65c1a196af270
Merge: 92493ed 04e0b0d
Author: Hannah <[email protected]>
Date: Mon Apr 20 04:00:30 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 92493ed23fa75b0693b9b052d36fb5a567b87cbb
Author: Hannah <[email protected]>
Date: Mon Apr 20 03:58:47 2015 +0000
Fixes #175 I forgot to edit the search vector to include the country_rep and country_host.
The reason why mexico still worked is because mexico city hosted an olympic games so it was pulled when mexico was searched.
commit 04e0b0d8e3e61e5244b961625eeecd366067309b
Author: Andy <[email protected]>
Date: Sat Apr 18 21:17:03 2015 +0000
Removing unstyled medal count for athletes/counties [index.html]
commit da7ee634fd635c0c70090d569cca08be0b1ff02b
Author: Andy <[email protected]>
Date: Sat Apr 18 21:14:13 2015 +0000
Sort pillars in order. #163
commit ea48f0050d242aa9643bdb4d945d2e54fbfb5e4c
Author: Andy <[email protected]>
Date: Sat Apr 18 21:09:53 2015 +0000
Populating entries from starlords endpoint #163
commit 5a000b2a835a207ecccbfe53bae918b81fc82e7e
Author: Andy <[email protected]>
Date: Sat Apr 18 20:35:58 2015 +0000
Updating starlords endpoint
commit 1a7fef28a84ceefb904a845b20a7edbfb37a1344
Author: Andy <[email protected]>
Date: Sat Apr 18 20:35:39 2015 +0000
Fixing color cycling issue
commit d38d02d58648d155904b0903ce52e4614094d2d1
Merge: e2dd6b9 b7d1386
Author: Andy <[email protected]>
Date: Sat Apr 18 19:47:47 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit e2dd6b9fe0c2e38bbe00bbff3c583b24dad65736
Author: Andy <[email protected]>
Date: Sat Apr 18 19:47:28 2015 +0000
Re-enabling global nav search bar
commit b7d13861ae418f038729da25a56237f153962c89
Author: Jacob Kovar <[email protected]>
Date: Sat Apr 18 19:46:49 2015 +0000
Made it to where each item in each category of the search results has the data representing why it was included in the results. Resolves #172, resolves #167.
commit c7afe5f3e4e7cb968395e82a1d2d00c0257672b4
Author: Jacob Kovar <[email protected]>
Date: Sat Apr 18 18:25:36 2015 +0000
Seemingly found way to coalesce duplicates for near matches. Resolves #171.
commit dbe4311920f68952ec8436620a07b1edd4e03f44
Author: Jacob Kovar <[email protected]>
Date: Sat Apr 18 17:45:48 2015 +0000
Fixed duplicate stomping. Fixes #170.
commit 331e9eb369826ab3567bf5c324280485a42ef7a9
Author: Jacob Kovar <[email protected]>
Date: Fri Apr 17 17:54:50 2015 +0000
Made categories into list of dictionaries. Resolves #169.
commit 1b453634c3c0ff5b6dc2d88a5e79c0597f220a4f
Author: Andy <[email protected]>
Date: Fri Apr 17 17:42:23 2015 +0000
Adding search.html page, updating search results endpoint. #167
commit 2cb12b5132504f4b5c8712d6a1bef8d8eefbfd21
Author: Jacob Kovar <[email protected]>
Date: Fri Apr 17 05:18:05 2015 +0000
Created search endpoint rough draft. Resolves #168
commit 07c80f2a94f8d7f619710c3f37ba54e6332395df
Author: Hannah <[email protected]>
Date: Fri Apr 17 01:25:59 2015 +0000
Added gist index to searchable column
commit b1eee8012d468d82d8e7955e37b7053b7d2588e3
Merge: 5b2ac55 2f58677
Author: Hannah <[email protected]>
Date: Fri Apr 17 01:03:48 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 5b2ac553c1b709e9321e9b898a814e44d37dcb65
Author: Hannah <[email protected]>
Date: Fri Apr 17 01:02:33 2015 +0000
Fixes #166 Added ts vectors to the database for search capability
commit 2f58677f0af10e24c56056f747ba8781cf115a7f
Author: Andy <[email protected]>
Date: Thu Apr 16 03:07:45 2015 +0000
minor styling in about.html
commit 57bd7906d2d92458b0dd255a7a80aa6f72de50b7
Author: Andy <[email protected]>
Date: Thu Apr 16 02:53:39 2015 +0000
Team info in about.html dynamially loaded from endpoint closes, #130
commit a80df6fdbd4ee11a1e57f2a64dcf1535c3a67ca1
Author: Andy <[email protected]>
Date: Thu Apr 16 00:51:03 2015 +0000
Minor style tweaks on about.html, adding link to starlords.html page. #163
commit 1d5a35340fd187712d7f1cc9968e6ac6dde21c6f
Author: Andy <[email protected]>
Date: Wed Apr 15 04:39:42 2015 +0000
Minor styling fixes for about.html
commit e64dd408b2ca770cc18ad78487c3f11a014c0fb8
Author: Andy <[email protected]>
Date: Wed Apr 15 03:39:43 2015 +0000
Adding endpoint and template for displaying starlords API requests. #163
commit a82547fbda5e70c56caf566d009069ee8d8c91ad
Author: Andy <[email protected]>
Date: Mon Apr 13 07:12:22 2015 +0000
Adding rich sortability on events.html and sports.html using mixitup. Updated color templating.
commit 17b34f80f8cea0b737b005533198e1677f5253b0
Author: Andy <[email protected]>
Date: Fri Apr 10 00:33:27 2015 +0000
Updating IDB log file
commit 774d0247f86a56b9a655c0d35cb6ee00da8c68e9
Author: Andy <[email protected]>
Date: Fri Apr 10 00:32:06 2015 +0000
updating team member stats
commit e84323a535f9ab835a7b4dca540989da24dabf40
Author: Andy <[email protected]>
Date: Fri Apr 10 00:28:15 2015 +0000
format style for testresults.html
commit 342e9d5c7007712c39dc172f422b9f0857b96957
Author: Andy <[email protected]>
Date: Fri Apr 10 00:04:58 2015 +0000
reverting styling, updating about.html style
commit ca6431dd48e9055794067880470de023d95d04f4
Author: Andy <[email protected]>
Date: Thu Apr 9 23:59:20 2015 +0000
minor styling on about.html
commit b3abbe525d8d4b09133a2d582e781ef6d546aea4
Author: Andy <[email protected]>
Date: Thu Apr 9 23:51:28 2015 +0000
Resized test output in testresults.html
commit 034b004f3876a4643084f02cf97d49a1bd6fbc7f
Author: Andy <[email protected]>
Date: Thu Apr 9 23:46:39 2015 +0000
fix top athlete athlete_id linking in sports/id
commit e6626402035e06e75b8543fb206a66528cf582a3
Author: Andy <[email protected]>
Date: Thu Apr 9 23:42:11 2015 +0000
Adding sport name to sports/id
commit 04bfd72e87f2392adbea751272bffa26f4efbdc9
Merge: 45b1476 db95309
Author: Hannah <[email protected]>
Date: Thu Apr 9 23:36:39 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 45b147668e4128568fae4e94a8ecc14208095fd2
Author: Hannah <[email protected]>
Date: Thu Apr 9 23:36:01 2015 +0000
Added sport name to return in sports_id
commit db9530946cb61fe195620b2378aed40f0d970451
Author: Andy <[email protected]>
Date: Thu Apr 9 23:34:12 2015 +0000
fixed gender linking
commit 178d15dae2aca7861ece762570d5e0cee32654f5
Author: Andy <[email protected]>
Date: Thu Apr 9 23:22:41 2015 +0000
fixed top athletes athlete_id linking bug on countries.html
commit 471e75bf3e5bc126f027fc70de6dc919aacf47fc
Author: Andy <[email protected]>
Date: Thu Apr 9 23:15:04 2015 +0000
updating games.html style
commit 545769819f2742595733bbf27ab866f39e960a44
Author: Andy <[email protected]>
Date: Thu Apr 9 23:01:57 2015 +0000
Updating testresults.html
commit 8acf121f25b17cf1081c7e02a32ef564b1475363
Merge: 6fb47de dd9533a
Author: Andy <[email protected]>
Date: Thu Apr 9 23:00:42 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 6fb47de18fef4f9e84755def3e6a7ab8b6c99980
Author: Andy <[email protected]>
Date: Thu Apr 9 23:00:01 2015 +0000
Relinking datapoints in athletes.html
commit dd9533af99c1b138f32ffb6e7f37b91748ca507f
Author: Sabriel567 <[email protected]>
Date: Thu Apr 9 17:55:13 2015 -0500
Update README.md
commit a32a968b22f3a3f63ca89ff3cd765f72813abdd6
Author: Sabriel567 <[email protected]>
Date: Thu Apr 9 17:52:57 2015 -0500
Update and rename README to README.md
commit 25914c5631579f8de3301fc5fa2fb4c7ffb06d79
Author: Sabriel567 <[email protected]>
Date: Thu Apr 9 17:50:09 2015 -0500
Update README
commit a1502b5937ee5617544587d3d25b11c2c3d2999b
Author: Sabriel567 <[email protected]>
Date: Thu Apr 9 17:49:14 2015 -0500
Update README
commit 9814bb9faf9a5149addab7a1cc5229d39b8ec8de
Author: Andy <[email protected]>
Date: Thu Apr 9 22:30:35 2015 +0000
Adding link to unit tests on about.html
commit d181854374b219d4fc4ead4212a0609afa63e166
Author: Andy <[email protected]>
Date: Thu Apr 9 22:18:43 2015 +0000
Embedding gmaps, #120
commit 719ecd64bdf398aa8473f8ccb91e866cc083fcc7
Author: Eric Su <[email protected]>
Date: Thu Apr 9 21:38:27 2015 +0000
(1) Minor adjustments to timeline layout
commit f38cc5dcf5183f22500ce69b727165d906daf13b
Author: Eric Su <[email protected]>
Date: Thu Apr 9 21:23:47 2015 +0000
(1) Minor adjustments to layout
commit 6b24be080d2aa25fc8168c7247b24499d925adf1
Author: Eric Su <[email protected]>
Date: Thu Apr 9 21:18:55 2015 +0000
(1) Centered text within cards
commit bbefd9d3aa6d94c05e485366682ecee023373ccc
Author: Eric Su <[email protected]>
Date: Thu Apr 9 21:16:44 2015 +0000
(1) Made athlete image clickable
commit 7139a973bb74f4d5407333efd4e6e377d68f2d29
Author: Eric Su <[email protected]>
Date: Thu Apr 9 21:15:05 2015 +0000
(1) Fixed image layout
commit 0a034d8a61e45eace83ac8aecbc774c7cf6df1fd
Author: Eric Su <[email protected]>
Date: Thu Apr 9 21:08:14 2015 +0000
(1) Redesigned Featured Countries layout - Resolves #162
commit de6d4b318278e76c23791e794cbb629f6d679ad4
Author: Andy <[email protected]>
Date: Thu Apr 9 20:48:33 2015 +0000
Added dedicated test results page
commit 340e2441f48704d6a8d29b71b092609fb21628bd
Author: Eric Su <[email protected]>
Date: Thu Apr 9 20:32:29 2015 +0000
(1) Redesigned browse country layout; (2) Make the columns responsive (not yet for mobile)
commit 4995a1865702bd03aa50cb7b3cad40aa8c46da17
Merge: e1a6620 b9802b9
Author: Andy <[email protected]>
Date: Thu Apr 9 20:17:29 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit e1a6620b7e687872d5a84d7530cb49ecbdad2eb3
Author: Andy <[email protected]>
Date: Thu Apr 9 20:17:26 2015 +0000
Minor style adjustments. Fixed bad banner linking. Testing out hover preview #137
commit b9802b986a5a7750a1b0ff576b80d52299180799
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 20:11:45 2015 +0000
Fixed linkable gender bug. Fixes #161.
commit f44427271c4de95807151552b114f0feb862d1f3
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 20:08:22 2015 +0000
Made Athlete Table Data Linkable. Fixes #160.
commit 81ee2813338baedf0ec528eeebecd7f356c532f7
Author: Eric Su <[email protected]>
Date: Thu Apr 9 19:39:05 2015 +0000
(1) Sports was overridden for some reason - Fixed
commit 6f84ce1b6e0b4efbc64b834f20c9712ab5d363e8
Author: Eric Su <[email protected]>
Date: Thu Apr 9 19:33:17 2015 +0000
(1) Implemented sortability for events page - Resolves #156
commit 5ecb785a10d6708a30620bc09079287dd40eaff5
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 19:29:36 2015 +0000
Fixed Broken Flag Image Links on Home Page. Fixes #157
commit 2146fa1e7d9480a59db931291b90d99390c2e0b1
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 19:26:42 2015 +0000
Added names for featured athletes and featured countries on the home page. Fixes #159.
commit b53e88b940414df1e540f11aaa1004b192fcf7ae
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 19:18:57 2015 +0000
Fixed issue with scrape endpoints. Fixes #158
commit 36fba1cea85e6912f91d2853b99a0b9becd26df5
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 19:11:58 2015 +0000
No longer need scrape.py. Replaced by api.py
commit 8d03c62721afc95e0ce892ace1fb118b6b770493
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 19:09:43 2015 +0000
Forgot to add default values for sortBy
commit 2438524dfea177f21a2dfe7a95ba52ddc52d2c13
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 19:07:31 2015 +0000
Merged Eric's sort endpoints with the existing endpoints
commit 1de3211d9964a309646fcdd3759f337fea127abf
Author: Eric Su <[email protected]>
Date: Thu Apr 9 18:29:13 2015 +0000
(1) Implemented sortability for sports page
commit df7b44a165197b537ec2c8a19b7312d583cba145
Author: Eric Su <[email protected]>
Date: Thu Apr 9 18:11:22 2015 +0000
(1) Implemented sortability on countries page
commit b6f1800e5cffc7a74ecec85690050d94659a86ec
Author: Eric Su <[email protected]>
Date: Thu Apr 9 17:47:26 2015 +0000
(1) Added ../sort-by pages to rest of the pillars in pythians.py
commit 8edb5f085788af658d7f35d80d5d5e078747c446
Author: Eric Su <[email protected]>
Date: Thu Apr 9 11:23:13 2015 +0000
(1) Fixed port number in pythians.py
commit 97feb2faeca910d536fba0b7200edbd80f470c42
Author: Eric Su <[email protected]>
Date: Thu Apr 9 11:22:19 2015 +0000
(1) Added sorting function to athletes.html - still needs more work; (2) Added athletes/<sortBy> route to pythians.py
commit 70444412d63980035e8e8cb96eeaa26b35dfe927
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 08:08:27 2015 +0000
Cleaned up athletes/id endpoint
commit 3c06434b457748e6c092f34674c6d3a9c39a12d7
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 07:22:45 2015 +0000
Fixed blank results and random order. Fixes #140, fixes #141.
commit c38e0d1024c7db1fb81c44db106f2b52270daf4b
Author: Hannah <[email protected]>
Date: Thu Apr 9 06:26:08 2015 +0000
Fixes #106 Added sanity check on olympic genders between events and athletes
commit 18830aeb688e835b4fbd5add0eb47786fec81e55
Author: Hannah <[email protected]>
Date: Thu Apr 9 06:04:27 2015 +0000
Re #155 Created a basic scrapper. Currently only checks if the athlete page exists to get a picture from.
Next step is deciding if we should download the picture or store a pointer to it in the db.
commit f7d46fbe491338a163b9a4318734cfdc09e4a2eb
Merge: 8bd7f4d 1182632
Author: Hannah <[email protected]>
Date: Thu Apr 9 06:00:16 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 8bd7f4d3d390c6ade608212d843cf1264871c99d
Author: Hannah <[email protected]>
Date: Thu Apr 9 05:59:37 2015 +0000
Fixes #154 Added array_agg_cust function to databases using procedures.sql
commit 118263286841f340ce01309209f79a49b2d7c018
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 05:37:45 2015 +0000
Fixed sports page, and implemented the retrieving of events for the sports page. Fixes #152, resolves #153.
commit 7c3ee1a258177068ae45c2184f2c1fcd5ed10515
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 04:43:07 2015 +0000
Cleaned up events endpoint and added sport name to output in case it is desired
commit 80bd9fdf9bca234f053734407dd05825f10ada37
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 04:30:59 2015 +0000
Cleaned up countries end point and countries.html
commit 6bab3ccd0a24590f9d66ab9f5eaf8d1dcaf9381e
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 03:12:39 2015 +0000
Fixed index endpoint, along with making it randomized. Resolves #151
commit eecac3718a7ebe693f64da4069e9d00e52eae621
Author: Jacob Kovar <[email protected]>
Date: Thu Apr 9 00:24:14 2015 +0000
Separated the app from pythians because of import issues with getting the test results to an endpoint. Resolves #149, fixes #150
commit fd1f906db97fc9f76081f0490084804261365744
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 18:27:25 2015 +0000
Wrote RESTful API Tests. Resolves #127.
commit 94a713fb76a4295110ab35f5f1eb0cc5146dfe70
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 13:12:53 2015 -0500
Changed Name for Getting Medals by Rank
commit 304a33fc07f3982444067ffc836c660e2d1aa514
Merge: ee4fab7 328be4f
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 07:22:21 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit ee4fab7688e12572fab31cea2e06f56b3ced38c4
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 07:21:51 2015 +0000
Updated athletes endpoint to include lastest_year_id. Resolves #147.
commit 328be4fd0fed8f4ba8e678bf4a1fc9ddec2d3818
Merge: 8694fb4 14624b2
Author: Andy <[email protected]>
Date: Wed Apr 8 05:44:15 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 8694fb4289fe5ebaa3dcfd327f47ed05755d2ba1
Author: Andy <[email protected]>
Date: Wed Apr 8 05:43:53 2015 +0000
Showing years hosted for countries.html and countries/<id> pages
commit 14624b2b2ed4e054aae3ea4a97243a12122ef786
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 00:30:44 2015 -0500
Updated Apiary API. Resolves #148
commit 3accfbab690193689a54ed4f91627a81402d18d5
Merge: 42ecb69 0898bfb
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 05:27:37 2015 +0000
Merge branch 'master' of https://github.com/Sabriel567/cs373-idb
commit 42ecb69c303a1ff9169cd10441fb6225e3ffe70d
Author: Jacob Kovar <[email protected]>
Date: Wed Apr 8 05:27:06 2015 +0000
Moved scrapes to api.py file and enhanced scrapes. Fixes #32, Fixes #43, Fixes #145, Resolves #146.
commit 0898bfb18ea9c26df2d59611d38ee69284377b4a
Author: Andy <[email protected]>
Date: Wed Apr 8 05:22:02 2015 +0000
Populating endpoint data for athletes.html, countries.html, and index.html. #133 #134
commit c819b2874fc82a8198e326818e15a6b86c3fa954
Author: Patrick Aupperle <[email protected]>
Date: Tue Apr 7 23:08:14 2015 +0000
Added sports to events.html
commit 3f065872405335bcdcc27cbce11d91948d83fa46
Author: Eric Su <[email protected]>
Date: Tue Apr 7 01:24:48 2015 +0000
(1) Sort athletes by name
commit 02e79efaca28f8c7b229842b9efe5bb7ad309a67
Author: Eric Su <[email protected]>
Date: Tue Apr 7 00:51:15 2015 +0000
(1) Redesigned cards; (2) Widened results container in athletes.html
commit 78bc4d44c72c817413259b712c63d6bac5b61237