-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIDB2.log
More file actions
2237 lines (1502 loc) · 62.2 KB
/
IDB2.log
File metadata and controls
2237 lines (1502 loc) · 62.2 KB
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
Author: Richard Huettel <richeyh@users.noreply.github.com>
Date: Thu Apr 7 21:05:50 2016 -0500
Merge pull request #47 from richeyh/dev
feature/fixed-tests-running
commit f3ee8f42d516f63f504db4a3ffd0c7bbfc08a199
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Thu Apr 7 21:04:41 2016 -0500
env files
commit 5c6e57ee5846cea0b781e7e769deff6fa2bb45f3
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 21:01:30 2016 -0500
added ui paddding
commit 3ab9a896d0cd1785cbc760ab002d1742c2a7dee5
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:59:36 2016 -0500
added byte decoding
commit 57918867e0cefe837be381ad77b0ef1272d29d1a
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:58:16 2016 -0500
more ui changes for tests
commit 22f02427793c4a5cf6d5ef64f31799812a3a740c
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:53:40 2016 -0500
added max bound
commit 6caad384c72dd005c65b074b41fb99b42f8c445c
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:52:22 2016 -0500
fixed bytes cast issue
commit 70e213a99b8d5da6d419cc2963db0fede7022c7e
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:51:30 2016 -0500
fixed formating on front end issue
commit 95eb8e9ee0d5ce3ee01fe077f6005242a982bd06
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:48:26 2016 -0500
made template for tests
commit c74a123df6fd16d9a5c842c6ba8ff347655e358b
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:45:02 2016 -0500
adding cast
commit 4ebb1e370e7d33bd8df7d0ecc6956aa02eccd59f
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 20:44:10 2016 -0500
changed run test
commit 3e4302b4d2f0d51a4aa8fb3bd24964877a62ba14
Merge: 045d34b 9c91258
Author: Richard Huettel <richeyh@users.noreply.github.com>
Date: Thu Apr 7 19:37:05 2016 -0500
Merge pull request #46 from richeyh/dev
commit and issues added back for project 2
commit 045d34b5a17686263bd841cbd454519e8432ccf3
Merge: 9ca1d4d f67cd3d
Author: Richard Huettel <richeyh@users.noreply.github.com>
Date: Thu Apr 7 18:24:08 2016 -0500
Merge pull request #45 from richeyh/dev
Phase 2 of Project complete
commit f67cd3d1a9d5ad938d9da81b28ae264c4f5602e3
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Thu Apr 7 18:22:30 2016 -0500
Transferring API Description file from Apiary.io
commit 0443664442812a196ec4b411bf5fd8f3a7cdfaf9
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Thu Apr 7 18:17:34 2016 -0500
Updated makefile and .travis.yml
commit a1ae8c84a4bd259e2473bb7ac51c9b7a4165e1cb
Merge: 4cdd007 6f06a4c
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 18:13:51 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit 4cdd007f9926e79238603f0c0fbb737b7c87dbd4
Merge: 8ababec 9ca1d4d
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 18:13:34 2016 -0500
updated the api
commit 6f06a4cdc60777d8135ebc7a1730626f3a7d2032
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Thu Apr 7 18:12:11 2016 -0500
Added temp IDB2.log
commit 8ababec9d84db54520ce515e43b5c2c98768fbc3
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Thu Apr 7 18:07:44 2016 -0500
Updated models.html Close #27
commit 87e1092be11c5dcd3cdeb6e0c3ee22c470069051
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 18:04:42 2016 -0500
Revert "active tabs"
This reverts commit 560f5086864fcaa340d1c507e6c8013e6c0b128f.
commit 560f5086864fcaa340d1c507e6c8013e6c0b128f
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Apr 7 17:58:42 2016 -0500
active tabs
commit b9273cbbcf673acd8e8884db4c163281cd02c70b
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:55:30 2016 -0500
updated author page
commit fa754a2b02ab7a1a3113ce519fe5971a8b8f570e
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:51:17 2016 -0500
forgot it was a dict
commit 1f501879e4d7a33d93c915f42d9dff6d9b8ca064
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:49:55 2016 -0500
added in raw tags
commit ad8bebdd6662d5529406142d110a6f2bede18263
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:44:10 2016 -0500
trying to fix description still
commit 0b85373f7d81c0d97149e711093bd821365d9323
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:40:21 2016 -0500
fix html not printing issue
commit 0b72184b8b2a37983ac060763dde7de91d12fa00
Merge: be55dc6 4d6e22d
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:38:35 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit be55dc6a2ee1edf7b298b0a1a9c6e71b16e64644
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:38:23 2016 -0500
added back book id
commit 4d6e22d7aadf98b7aedfcc541858ebf062a3a379
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Apr 7 17:36:33 2016 -0500
fixed sorting
commit 71edc4e5a955112ceae5cab7291d0a2551ba9574
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:35:27 2016 -0500
renamed variables in view
commit 7f9c57a3bb08d65ee8b779f75d0b8338cf7f37db
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:33:09 2016 -0500
added in recent book for author page
commit 952a181fdf0430f0aa0967e3cb0bfb1e75e0f2b2
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:30:15 2016 -0500
using wrong dict fixed
commit df3d65e4455402a04f8055b6ea7c7ab0f989e90c
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:27:08 2016 -0500
book without author handled
commit 8b96ffcd3dc7e1034220a4ddc7ed3cc46e54a600
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:24:33 2016 -0500
added extra properties
commit b2a5b14870295452a06ceee3109dc684376bb566
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:13:54 2016 -0500
added author dates
commit 1a33d405a16d87e2b4b95934ae3d94bc9253115e
Merge: 8a98a44 27a8db9
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:08:36 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit 8a98a4443c2b4943ab23ce986f00afcd01fcfaeb
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 17:08:22 2016 -0500
even more exception handling
commit 27a8db9b5604b80229152d33f365ece62abc9abe
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Apr 7 17:07:28 2016 -0500
fixed active navbar
commit b7a8804b92b0be2ef750e6d2c60a0c07778a7b04
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 16:46:48 2016 -0500
syntax will be the death of me
commit 59ad98ec08ee426ece70dff6f84858ff2ccef6c0
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 16:43:11 2016 -0500
this is how we get more exceptions
commit 577cfcc2c223308cf960a33e0ace7d89d440aa43
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 16:35:07 2016 -0500
fixed indent issue
commit 2fa3e8404487b2bbf72731d39ee8fd69cdc16fa6
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 16:27:11 2016 -0500
more error handling and another level of retry logic
commit 5d7ccf869b4ee6656a1d27773170e683d9461629
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 16:17:29 2016 -0500
increased readability for fetch
commit ca63cf030a4af8f3f3752adcb864ecb17968afe6
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 16:02:47 2016 -0500
rolling the db back
commit 6b9dca159a250fc25411f2d23961602325d96c29
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:58:16 2016 -0500
even more exceptions
commit 6b98ec18e82737e0ca7978d85a155513c332e416
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:51:26 2016 -0500
description error handling
commit 7cec049f34f12a8144bb88fad683ccdd102bc16c
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:43:05 2016 -0500
added catch for weird names
commit 99305c13388bc88358744688380eaf4d74a438a0
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:41:10 2016 -0500
fixing 403 issue
commit b2d9953a5f842e714d132ccaea21ed22b61bdc7a
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:34:35 2016 -0500
apparently %= is not a thing
commit 6fa273d508d1a5b885af4a1c0a037edf7e1e16c1
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:32:14 2016 -0500
changed to %= for ==
commit e07c726eee69c261fe704069e5f7f51d2cc9b17b
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:31:34 2016 -0500
updated scraper and fetch_data
commit 4b7578b5b4e2d558ecb44d6b00c6a6bba5bcece9
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:20:28 2016 -0500
take 3 at summary issue
commit 62e17122846d6614486300764cf4f52e630d59b5
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:17:51 2016 -0500
take 2 at summary issue
commit 71bb21ffb9eb7f4bf400c4fa6eb0be581dd887b5
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:12:53 2016 -0500
added handlers for invalid summaries
commit 009ad80cfa14c72ac19e177139adff1d346831d5
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:07:10 2016 -0500
fixed index issue
commit 77de0e5b490466e69a9554445eac52f98c2604b9
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:05:29 2016 -0500
updated query
commit d80ed0a2035df6b59d30d18859fc8f518fc4143f
Merge: dfc1a7d 6933246
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:02:45 2016 -0500
fixed merge conflict
commit dfc1a7dc1512827a912c944777113ed54f4a9a80
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 15:01:51 2016 -0500
added query terms
commit 69332465ea743715ce5bad47f200080253708b03
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Thu Apr 7 15:01:15 2016 -0500
added tests for to_dict() methods in each model
commit 9cda6512213d9384280dfce02dae761a8cf4e5c2
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 14:59:50 2016 -0500
fixed app context issue
commit bac053ae865ed55a6b1938448978df48af8c4df4
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 14:53:20 2016 -0500
update to remove dupe books,authors
commit 1fadb4c5f17a2e1f9ed593215f008020ecf13ac2
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 14:46:28 2016 -0500
updated models comments
commit d0f1c124a961cb46569796f782d29af59d3baae7
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Thu Apr 7 14:42:39 2016 -0500
added sleep and max retries
commit b9b8fba2d4027489f6c2970928508f1f7c5aaf77
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Apr 7 14:16:18 2016 -0500
attempted to improve active navbar on all pages. Closes #40
commit b54edbbb5a195ffed6e4b980af0dd51f98884315
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Thu Apr 7 04:05:27 2016 -0500
isbn now shows up in book pages
commit 8edb304efed0731d0a06f62b80e556199860e08a
Author: tkl355 <tklo101@gmail.com>
Date: Wed Apr 6 20:51:20 2016 -0500
added description for book.html
commit 7c23285125918d4c75433945a02d766c8f4d3da2
Author: tkl355 <tklo101@gmail.com>
Date: Wed Apr 6 20:44:54 2016 -0500
updated individual book and author pages
commit 348e88afc028df2b6c7d309248db6b65b212b261
Author: Timmy <Timmy>
Date: Wed Apr 6 16:18:41 2016 -0500
updated best seller lists typo
commit bc78238f3a3e3397f11d04adaaf42b8ce74fa5c5
Author: Richard Huettel <richeyh@users.noreply.github.com>
Date: Wed Apr 6 15:38:15 2016 -0500
updated best seller category
commit 4b75db00ee6e3a2f90f804a3909595a4e6dce5b6
Author: Richard Huettel <richard_huettel@homedepot.com>
Date: Wed Apr 6 19:22:50 2016 +0000
updated tests
commit 796d6be8844ff49547649389bc4907d4c5bd1c56
Author: Richard Huettel <richard_huettel@homedepot.com>
Date: Wed Apr 6 19:08:55 2016 +0000
added 503 retry logic to script
commit 17a75efd4ae906dc90857ec42d0f7cf9ddb02de9
Author: Richard Huettel <richard_huettel@homedepot.com>
Date: Wed Apr 6 19:04:37 2016 +0000
updated fetch_data now loading almost all books
commit eeac7eb18e2adf0e2a40166d1718f22700811d74
Author: Richard Huettel <richard_huettel@homedepot.com>
Date: Wed Apr 6 17:07:54 2016 +0000
updated fetch_data
commit 16f119187273ce60377151bebc47db22b1f50ae7
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 22:30:12 2016 -0500
isbn now shows up in books table
commit 3ecf7123323b024e117fae0cd436698a240d885a
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 22:21:24 2016 -0500
Added bio in Author model and deleted image_link in Book model
commit 53800264af8b146ee9924ce048671a5de5bdec15
Merge: b3d3498 ab5d693
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:42:33 2016 -0500
Merge branch 'dev' of github.com:richeyh/cs373-idb into dev
commit b3d3498bb7264cd9a5dd76129e303e6d1fea3a91
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:42:31 2016 -0500
unit test button on about page working
commit ab5d693f0aa6b3a480a687cc1959712e85af2339
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 21:39:28 2016 -0500
updating apiary as per Kyung
commit 6543a32626ac07ed9ab999372a6d37766efb37f1
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:34:40 2016 -0500
fixed unit tests
commit 6fb98962071e8c90e000e45ef7b8975593c616d9
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:32:39 2016 -0500
fixed error in views.py
commit 36097f1c8c939fe45edfa0bb9906c497679e5303
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:22:28 2016 -0500
import RunTests in blueprints.py
commit 4be1e013c8b002a2e2bf703e58934a30a6b45095
Merge: 9b38ec4 efbbfb0
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:19:22 2016 -0500
Merge branch 'dev' of github.com:richeyh/cs373-idb into dev
commit 9b38ec43f145c083934daa3a898819feb8555e78
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:19:20 2016 -0500
added link for running unit tests on the about page
commit efbbfb046cc890ba9e1bcdbbb41086a2b3a434bb
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 21:18:13 2016 -0500
working on db in docker
commit eb7df3e8ea1a2b89aebc8904ef829a65188551c0
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Tue Apr 5 21:13:49 2016 -0500
added view for running unit test
commit 7dcd0c588946f9f63109307fbc448e5813f7fcf6
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 20:50:53 2016 -0500
updated make file to include running fetch_data
commit 35c6b4e3494172425735b3f13aa5d757d17fd495
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 20:37:39 2016 -0500
added catch to print url's
commit 7530b8d88c52817d683424c978ee625fcd8779e4
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 20:33:39 2016 -0500
made description a text field to prevent overflow
commit 8e74d2cfde9836fb83972b9414945f0d36c29751
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 20:32:27 2016 -0500
handle error with author does not have last name
commit c47d3a8ff9c26d05818ceb52add56dc7b8d0b40c
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 20:27:18 2016 -0500
added mechanical soup to requirements.txt
commit 8b7ff1b940172bbdc487d76482f186f482be6ce5
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 20:26:18 2016 -0500
collecting metrics on scrape failures
commit 2334966f5bb07930e24dedcb6464c79ccad1850e
Author: tkl355 <tklo101@gmail.com>
Date: Tue Apr 5 19:55:46 2016 -0500
fixed angular table paginations
commit 760573e33066dce7373aa16fefc20516c6c4edb7
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:49:12 2016 -0500
added in author names for book detail view
commit f6c1162cce719da0f5a1684e0109c50dd04c6626
Author: tkl355 <tklo101@gmail.com>
Date: Tue Apr 5 19:46:23 2016 -0500
Pagination implemented hopefully
commit 173cd2aabf397c41c3e8e9d7e87bc000033bb203
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:45:02 2016 -0500
added in to dict for detail views
commit 576319d8a103535cd3bd14ffdbb1544618732bf2
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:42:27 2016 -0500
updated typo in views
commit 4e45f85293b67c44b6722189dec592da86b86e0f
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:41:46 2016 -0500
added in other part to check
commit 89680c0660e8e020e1f1a174bb15582fa435da70
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:40:56 2016 -0500
removed prints added check for author link
commit a3f50176ce0c9fb09899d19e1443cc47a0259aa4
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:37:53 2016 -0500
another exception case if no author link found
commit 7ea33d5da5560c5c7bfdc2f8b9b3000de5eed2b8
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:35:40 2016 -0500
added in check for if author link not present
commit 4b8e163bdecebd2c42c09c84ed6b5f27b4ee17b7
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:33:56 2016 -0500
added case for if no description is present
commit 1c0250a8509bc53a775e4433270606d05861439d
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:26:17 2016 -0500
working on bugs in scraper
commit 1e60ff34824b1132be17582ba2a95a97f3041025
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:20:43 2016 -0500
fixing issue with s refrenced before assignment in scraper.py
commit 88f8fc84e9454fa82c9840d8a02bf4c048e26bc2
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:16:30 2016 -0500
converted seconded html section to soup
commit 68eebcb14d7febe02d2cb86718291719f3751cf3
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:15:35 2016 -0500
updated scraper to use soup objects over html
commit 981e0decc6738b34b7f6fad2ae3fee5df2450ae9
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:13:02 2016 -0500
added host detection for config.py
commit 130f7d8b8f3305c7f7ef6dcc09bee6314558b0f6
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 19:10:08 2016 -0500
updated Scraper to use mechanicalsoup
commit 30f4b49f23b4b6f912b8c9be6e48a19c2b0c755d
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 18:22:14 2016 -0500
Added commands to makefile to init db in Carina
commit e20644e1751427a9283a725ba998049019a5ceb8
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 18:20:36 2016 -0500
added app context for DB issues
commit 94ce8eebfb87172174a2691e310e0b47a1649e9b
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 18:17:58 2016 -0500
fixed models import in fetch_data
commit 5f0626e34014c0cd2e28f931f9fa5fc647d4f2bc
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 18:16:51 2016 -0500
combined two scrapers and moved files
commit 6ffa2dabb187f3111fc69d4d579c8c24bbc3643e
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 17:58:02 2016 -0500
added secret key to config
commit e3d4419397fcaeb5cdd7f673ed0323b42585c4a3
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 17:34:59 2016 -0500
fixed bug in authors.html and added admin page for books and authors
commit e9511a0654913e80b24a52358b7c17a8b0615cf1
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 17:31:41 2016 -0500
removed ibdb from reqs
commit c4ec591907c76a44ba297793e8a5b858c7ee747a
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 17:02:17 2016 -0500
pep8 compliance + moved return in view function
commit bd496fe3d965710a87c4947aee8606e5b2a086dc
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 16:58:07 2016 -0500
updated requirments.txt to include new packages
commit e752808e8a7a7931670c38a2e0dd435be8bdf2c7
Merge: 3a8aa46 0858111
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 16:56:10 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit 3a8aa4632eae8dde91db63807125b459f9767085
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 16:56:02 2016 -0500
Kindof compressed images..
commit 08581116fc10307664c31063ea632d04556c7025
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 16:55:48 2016 -0500
updated manage.py
commit bc448b66e7bbddf2013613295d00f29b42cde18a
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 16:47:29 2016 -0500
Updated makefile
commit 8f194cb943750b1d5f25c989b2761012e0f0f6a2
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Apr 5 16:45:20 2016 -0500
attempting to fix errors
commit bd7d4a30b91225dd575cd2ea46f29ed64c251966
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 16:41:04 2016 -0500
added to_dict and DB to views page
commit dc10e6bc46f9a68f02c3bf77f26a9556c026c1fb
Merge: 99dafbe 8854e39
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Apr 5 16:37:36 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit 99dafbe47366ec48ab01fcff9f46d068c9ac2fe2
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Apr 5 16:37:23 2016 -0500
added dirPagination.js
commit 8854e39648b5e2c24accff02ae867abdc20cdc0c
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 16:35:13 2016 -0500
added in to dict method for models
commit afc27f251f6178148cdfe0df563b3af3bd327424
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Apr 5 16:07:47 2016 -0500
added preliminaries for pagination implementation
commit 231c03796376b3ed58210e800bf72c62cfaa6b34
Author: Richard Huettel <richeyhuettel@yahoo.com>
Date: Tue Apr 5 15:43:27 2016 -0500
Transferring API Description file from Apiary.io
commit a627469b0c4bcd6be24a93369188c7afec9d460a
Author: Richard Huettel <richeyh@cs.utexas.edu>
Date: Tue Apr 5 15:37:02 2016 -0500
added makefile for app
commit 5f736575384a7b66bb5677108d4980c08fac2d5a
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Tue Apr 5 12:03:44 2016 -0500
Fixed bad gateway error
commit bcde02ed7b8e74a19d430028ea14f07698df5a0d
Merge: 65c761b 45d836b
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 23:21:04 2016 -0500
Merge branch 'dev' of github.com:richeyh/cs373-idb into dev
commit 65c761baa22cb7d1a5f48bf365bbcd3a22a00f43
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 23:20:55 2016 -0500
RESTful API implemented on actual db
commit 45d836b3601d4d98fd8a70bef582f3df13a5fb3f
Author: tkl355 <tklo101@gmail.com>
Date: Sun Apr 3 23:20:38 2016 -0500
added comments to book object entries and added all of the best seller lists to fetch_data.py
commit 6f1c7988371f5b456950fc841c2e27e421897e7a
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 23:04:44 2016 -0500
RESTful API working with temporary db in views.py
commit 3d94de814dd2cfc853629d3c21ea2f670a61e741
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 22:56:07 2016 -0500
imported json in views.py
commit 86a98eca6b1f1f066bef5784a32dd98ef1ec98c6
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 22:53:38 2016 -0500
fixed endpoint names to be different
commit be28acb5f4a883b36ca75e9bb911335a59dd90d2
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 22:51:28 2016 -0500
import api classes in blueprint.py
commit 9f0740192fa41f60dec2b34fae94a03077ce55a2
Author: Kyung Yoo <ksy228@cs.utexas.edu>
Date: Sun Apr 3 22:46:21 2016 -0500
attempt at implementing RESTful API
commit e5161eae88c87d927129cf33db2a2938a3e83853
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Fri Apr 1 13:58:56 2016 -0500
Take out /db from .gitignore
commit 06a8caf327f09d1b22a736582be6357b4001a9f2
Merge: 746ca15 d0f0f9d
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Fri Apr 1 02:23:44 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit 746ca15ad0e1522705426ad22cdcea04ea0c71ad
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Fri Apr 1 02:23:29 2016 -0500
Database setup
commit d0f0f9d4d5596581f42554a8e340bee8cf794af8
Merge: f7f2f66 b1970c4
Author: tkl355 <tklo101@gmail.com>
Date: Thu Mar 31 23:40:10 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit f7f2f66710d7e1a5034a4ee9839b554b5bf4d4c0
Author: tkl355 <tklo101@gmail.com>
Date: Thu Mar 31 23:39:59 2016 -0500
added amazon link
commit b1970c4a421ed2c0b81c9bd0bfd38b1e13b3a95f
Author: Ruzseth Anne Dela Cruz <r.delacruz@utexas.edu>
Date: Thu Mar 31 23:21:15 2016 -0500
update scraper
commit db1b4e765c773eba6e6773363c5e07e419e492e8
Author: Ruzseth Anne Dela Cruz <r.delacruz@utexas.edu>
Date: Thu Mar 31 22:58:33 2016 -0500
initial scraper files
commit 3a1e29473982dc69ff0475a57c7b77a767ce7a04
Author: tkl355 <tklo101@gmail.com>
Date: Thu Mar 31 18:17:44 2016 -0500
commented amazon link out
commit 9a8466f5ef6a2a346367ea1250848c7bf283a27c
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 31 15:21:52 2016 -0500
embedding amazon. need to test
commit 81e7a5a10bafbbb3668659eeef6bb748009651a9
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Wed Mar 30 15:20:38 2016 -0500
finished making book objects. Will need to test later
commit cce329c8368f837e1453cb3935f60ebbe79efb49
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Wed Mar 30 14:52:19 2016 -0500
getting data from NYTimes API in the form of a dictionary of lists of dictionaries. Changing it to dictionary of lists of objects. Updated Book model to include amazon_link
commit c83fc7ba610d1985e8b642c85eb3ce21d7f9cfea
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Mar 29 15:30:47 2016 -0500
deleted more unnecessary files
commit fbba80c4450a85c531abd94e8cdd397bd2d26ef7
Merge: 93350f1 7a2daec
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Mar 29 15:25:24 2016 -0500
Merge branch 'master' into dev
commit 93350f173396f88e648885dba1cf32cf2f9cce48
Merge: 451d692 51c7eef
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Mar 29 15:24:36 2016 -0500
Merge branch 'dev' of https://github.com/richeyh/cs373-idb into dev
commit 451d692ef715cbce8cba24a694d7624c08d5857b
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Tue Mar 29 15:24:19 2016 -0500
removed unnecessary files in preparation for phase 2
commit 51c7eef9f739648bb53ae5f128919f9a7be14ded
Author: Rachel Choi <rachelychoi@utexas.edu>
Date: Thu Mar 24 21:06:46 2016 -0500
Changed table style
commit 7a2daec2be0d0a15c195ee13abbaf51d8ca3a5e9
Merge: 54cebab 92ad8e0
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:45:05 2016 -0500
Merge branch 'dev'
commit 92ad8e00b1678fcfe146362d62c549e11dd5e95b
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:44:52 2016 -0500
added new log file
commit 15b524d1faba83e2c7c15b70a60292d2aae77167
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:41:01 2016 -0500
edited kyung's bio
commit eb2620f7a740a4156d9fa990c391052812cb90c5
Author: rdcruz <rdcruz@cs.utexas.edu>
Date: Thu Mar 24 20:40:25 2016 -0500
table fix
commit 997812893c7e8190c0e6bd8855958b0a87f1b522
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:34:49 2016 -0500
added issues and commits to members
commit f7ee8bdf61df64418ea5bb997045ab7b983e9756
Author: rdcruz <rdcruz@cs.utexas.edu>
Date: Thu Mar 24 20:28:46 2016 -0500
table size
commit 54cebabd0d8fe38eca1864e075a6cac6f96a2ec5
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:27:11 2016 -0500
added apiary.apib to master
commit 2757c20f233ebd5ffc485e2354500987b22a5ded
Merge: 52fcf53 9c0921a
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:24:52 2016 -0500
merged with dev
commit 9c0921adaca7fd5e45b2ec7b0ac99d64720cf530
Author: rdcruz <rdcruz@cs.utexas.edu>
Date: Thu Mar 24 20:22:26 2016 -0500
align
commit 4770cdfccde2cdc4cd2db0bc0c67cdf87341640c
Author: Timothy Lo <tklo101@cs.utexas.edu>
Date: Thu Mar 24 20:18:22 2016 -0500