-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.log
4074 lines (4030 loc) · 263 KB
/
site.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
[05/May/2016:22:25:35] ENGINE Listening for SIGTERM.
[05/May/2016:22:25:35] ENGINE Bus STARTING
[05/May/2016:22:25:35] ENGINE Started monitor thread '_TimeoutMonitor'.
[05/May/2016:22:25:36] ENGINE Serving on http://127.0.0.1:8080
[05/May/2016:22:25:36] ENGINE Bus STARTED
[06/May/2016:11:16:24] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 209, in decode_raw_stream
text = text.decode(parsed_encoding)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1249: ordinal not in range(128)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 55, in index
return _page.render_unicode(mangas = db.retrieve(Manga))
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 863, in _render_context
(inherit, lclcontext) = _populate_self_namespace(context, tmpl)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 805, in _populate_self_namespace
ret = template.module._mako_inherit(template, context)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\home.html.py", line 26, in _mako_inherit
return runtime._inherit_from(context, 'base.html', _template_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 762, in _inherit_from
template = _lookup_template(context, uri, calling_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 793, in _lookup_template
return lookup.get_template(uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 245, in get_template
return self._check(uri, self._collection[uri])
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 341, in _check
return self._load(template.filename, uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 321, in _load
**self.template_args)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 322, in __init__
module = self._compile_from_file(path, filename)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 378, in _compile_from_file
self.module_writer)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 700, in _compile_module_file
generate_magic_comment=True)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 665, in _compile
node = lexer.parse()
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 224, in parse
self.filename)
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 215, in decode_raw_stream
0, 0, filename)
mako.exceptions.CompileException: Unicode decode operation of encoding 'ascii' failed in file 'C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/View/template/base.html' at line: 0 char: 0
[06/May/2016:11:16:36] ENGINE Listening for SIGTERM.
[06/May/2016:11:16:36] ENGINE Bus STARTING
[06/May/2016:11:16:36] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:11:16:37] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:11:16:37] ENGINE Bus STARTED
[06/May/2016:11:16:37] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 245, in get_template
return self._check(uri, self._collection[uri])
KeyError: 'base.html'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 209, in decode_raw_stream
text = text.decode(parsed_encoding)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1249: ordinal not in range(128)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 55, in index
return _page.render_unicode(mangas = db.retrieve(Manga))
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 863, in _render_context
(inherit, lclcontext) = _populate_self_namespace(context, tmpl)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 805, in _populate_self_namespace
ret = template.module._mako_inherit(template, context)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\home.html.py", line 26, in _mako_inherit
return runtime._inherit_from(context, 'base.html', _template_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 762, in _inherit_from
template = _lookup_template(context, uri, calling_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 793, in _lookup_template
return lookup.get_template(uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 256, in get_template
return self._load(srcfile, uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 321, in _load
**self.template_args)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 322, in __init__
module = self._compile_from_file(path, filename)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 378, in _compile_from_file
self.module_writer)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 700, in _compile_module_file
generate_magic_comment=True)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 665, in _compile
node = lexer.parse()
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 224, in parse
self.filename)
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 215, in decode_raw_stream
0, 0, filename)
mako.exceptions.CompileException: Unicode decode operation of encoding 'ascii' failed in file 'C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/View/template/base.html' at line: 0 char: 0
[06/May/2016:11:16:38] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 245, in get_template
return self._check(uri, self._collection[uri])
KeyError: 'base.html'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 209, in decode_raw_stream
text = text.decode(parsed_encoding)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1249: ordinal not in range(128)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 55, in index
return _page.render_unicode(mangas = db.retrieve(Manga))
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 863, in _render_context
(inherit, lclcontext) = _populate_self_namespace(context, tmpl)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 805, in _populate_self_namespace
ret = template.module._mako_inherit(template, context)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\home.html.py", line 26, in _mako_inherit
return runtime._inherit_from(context, 'base.html', _template_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 762, in _inherit_from
template = _lookup_template(context, uri, calling_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 793, in _lookup_template
return lookup.get_template(uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 256, in get_template
return self._load(srcfile, uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 321, in _load
**self.template_args)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 322, in __init__
module = self._compile_from_file(path, filename)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 378, in _compile_from_file
self.module_writer)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 700, in _compile_module_file
generate_magic_comment=True)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 665, in _compile
node = lexer.parse()
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 224, in parse
self.filename)
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 215, in decode_raw_stream
0, 0, filename)
mako.exceptions.CompileException: Unicode decode operation of encoding 'ascii' failed in file 'C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/View/template/base.html' at line: 0 char: 0
[06/May/2016:11:35:45] ENGINE Listening for SIGTERM.
[06/May/2016:11:35:45] ENGINE Bus STARTING
[06/May/2016:11:35:45] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:11:35:45] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:11:35:45] ENGINE Bus STARTED
[06/May/2016:11:38:19] ENGINE Listening for SIGTERM.
[06/May/2016:11:38:19] ENGINE Bus STARTING
[06/May/2016:11:38:19] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:11:38:19] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:11:38:19] ENGINE Bus STARTED
[06/May/2016:11:41:11] ENGINE Listening for SIGTERM.
[06/May/2016:11:41:11] ENGINE Bus STARTING
[06/May/2016:11:41:11] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:11:41:11] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:11:41:11] ENGINE Bus STARTED
[06/May/2016:11:41:55] ENGINE Listening for SIGTERM.
[06/May/2016:11:41:55] ENGINE Bus STARTING
[06/May/2016:11:41:55] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:11:41:56] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:11:41:56] ENGINE Bus STARTED
[06/May/2016:12:03:02] ENGINE Listening for SIGTERM.
[06/May/2016:12:03:02] ENGINE Bus STARTING
[06/May/2016:12:03:02] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:12:03:02] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:12:03:02] ENGINE Bus STARTED
[06/May/2016:12:23:40] ENGINE Listening for SIGTERM.
[06/May/2016:12:23:40] ENGINE Bus STARTING
[06/May/2016:12:23:40] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:12:23:40] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:12:23:40] ENGINE Bus STARTED
[06/May/2016:19:11:15] ENGINE Listening for SIGTERM.
[06/May/2016:19:11:15] ENGINE Bus STARTING
[06/May/2016:19:11:15] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:11:16] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:11:16] ENGINE Bus STARTED
[06/May/2016:19:27:33] ENGINE Listening for SIGTERM.
[06/May/2016:19:27:33] ENGINE Bus STARTING
[06/May/2016:19:27:33] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:27:34] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:27:34] ENGINE Bus STARTED
[06/May/2016:19:31:17] ENGINE Listening for SIGTERM.
[06/May/2016:19:31:17] ENGINE Bus STARTING
[06/May/2016:19:31:17] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:31:17] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:31:17] ENGINE Bus STARTED
[06/May/2016:19:51:05] ENGINE Listening for SIGTERM.
[06/May/2016:19:51:05] ENGINE Bus STARTING
[06/May/2016:19:51:05] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:51:05] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:51:05] ENGINE Bus STARTED
[06/May/2016:19:51:29] ENGINE Listening for SIGTERM.
[06/May/2016:19:51:29] ENGINE Bus STARTING
[06/May/2016:19:51:29] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:51:29] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:51:29] ENGINE Bus STARTED
[06/May/2016:19:52:17] ENGINE Listening for SIGTERM.
[06/May/2016:19:52:17] ENGINE Bus STARTING
[06/May/2016:19:52:17] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:52:18] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:52:18] ENGINE Bus STARTED
[06/May/2016:19:54:34] ENGINE Listening for SIGTERM.
[06/May/2016:19:54:34] ENGINE Bus STARTING
[06/May/2016:19:54:34] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:54:34] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:54:34] ENGINE Bus STARTED
[06/May/2016:19:59:57] ENGINE Listening for SIGTERM.
[06/May/2016:19:59:57] ENGINE Bus STARTING
[06/May/2016:19:59:57] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:19:59:57] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:19:59:57] ENGINE Bus STARTED
[06/May/2016:20:09:50] ENGINE Listening for SIGTERM.
[06/May/2016:20:09:50] ENGINE Bus STARTING
[06/May/2016:20:09:50] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:09:50] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:09:50] ENGINE Bus STARTED
[06/May/2016:20:12:27] ENGINE Listening for SIGTERM.
[06/May/2016:20:12:27] ENGINE Bus STARTING
[06/May/2016:20:12:27] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:12:27] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:12:27] ENGINE Bus STARTED
[06/May/2016:20:13:25] ENGINE Listening for SIGTERM.
[06/May/2016:20:13:25] ENGINE Bus STARTING
[06/May/2016:20:13:25] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:13:25] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:13:25] ENGINE Bus STARTED
[06/May/2016:20:14:53] ENGINE Listening for SIGTERM.
[06/May/2016:20:14:53] ENGINE Bus STARTING
[06/May/2016:20:14:53] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:14:53] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:14:53] ENGINE Bus STARTED
[06/May/2016:20:17:40] ENGINE Listening for SIGTERM.
[06/May/2016:20:17:40] ENGINE Bus STARTING
[06/May/2016:20:17:40] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:17:40] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:17:40] ENGINE Bus STARTED
[06/May/2016:20:19:03] ENGINE Listening for SIGTERM.
[06/May/2016:20:19:03] ENGINE Bus STARTING
[06/May/2016:20:19:03] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:19:04] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:19:04] ENGINE Bus STARTED
[06/May/2016:20:27:21] ENGINE Listening for SIGTERM.
[06/May/2016:20:27:21] ENGINE Bus STARTING
[06/May/2016:20:27:21] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:27:22] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:27:22] ENGINE Bus STARTED
[06/May/2016:20:27:52] ENGINE Listening for SIGTERM.
[06/May/2016:20:27:52] ENGINE Bus STARTING
[06/May/2016:20:27:52] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:27:52] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:27:52] ENGINE Bus STARTED
[06/May/2016:20:29:04] ENGINE Listening for SIGTERM.
[06/May/2016:20:29:04] ENGINE Bus STARTING
[06/May/2016:20:29:04] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:29:05] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:29:05] ENGINE Bus STARTED
[06/May/2016:20:30:53] ENGINE Listening for SIGTERM.
[06/May/2016:20:30:53] ENGINE Bus STARTING
[06/May/2016:20:30:53] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:30:54] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:30:54] ENGINE Bus STARTED
[06/May/2016:20:32:10] ENGINE Listening for SIGTERM.
[06/May/2016:20:32:10] ENGINE Bus STARTING
[06/May/2016:20:32:10] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:32:10] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:32:10] ENGINE Bus STARTED
[06/May/2016:20:33:06] ENGINE Listening for SIGTERM.
[06/May/2016:20:33:06] ENGINE Bus STARTING
[06/May/2016:20:33:06] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:33:06] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:33:06] ENGINE Bus STARTED
[06/May/2016:20:34:50] ENGINE Listening for SIGTERM.
[06/May/2016:20:34:50] ENGINE Bus STARTING
[06/May/2016:20:34:50] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:34:50] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:34:50] ENGINE Bus STARTED
[06/May/2016:20:40:24] ENGINE Listening for SIGTERM.
[06/May/2016:20:40:24] ENGINE Bus STARTING
[06/May/2016:20:40:24] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:40:24] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:40:24] ENGINE Bus STARTED
[06/May/2016:20:41:19] ENGINE Listening for SIGTERM.
[06/May/2016:20:41:19] ENGINE Bus STARTING
[06/May/2016:20:41:19] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:41:20] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:41:20] ENGINE Bus STARTED
[06/May/2016:20:55:05] ENGINE Listening for SIGTERM.
[06/May/2016:20:55:05] ENGINE Bus STARTING
[06/May/2016:20:55:05] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:55:05] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:55:05] ENGINE Bus STARTED
[06/May/2016:20:55:10] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 245, in get_template
return self._check(uri, self._collection[uri])
KeyError: 'base.html'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 102, in scenariste_list
return _scenariste_list.render_unicode(scenaristes=scenaristes)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 863, in _render_context
(inherit, lclcontext) = _populate_self_namespace(context, tmpl)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 805, in _populate_self_namespace
ret = template.module._mako_inherit(template, context)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\scenariste_list.html.py", line 26, in _mako_inherit
return runtime._inherit_from(context, 'base.html', _template_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 762, in _inherit_from
template = _lookup_template(context, uri, calling_uri)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 793, in _lookup_template
return lookup.get_template(uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 256, in get_template
return self._load(srcfile, uri)
File "C:\Program Files\Python\lib\site-packages\mako\lookup.py", line 321, in _load
**self.template_args)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 322, in __init__
module = self._compile_from_file(path, filename)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 378, in _compile_from_file
self.module_writer)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 700, in _compile_module_file
generate_magic_comment=True)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 665, in _compile
node = lexer.parse()
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 243, in parse
if self.match_control_line():
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 435, in match_control_line
self.append_node(parsetree.ControlLine, keyword, isend, text)
File "C:\Program Files\Python\lib\site-packages\mako\lexer.py", line 140, in append_node
node = nodecls(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\parsetree.py", line 83, in __init__
code = ast.PythonFragment(text, **self.exception_kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\ast.py", line 87, in __init__
code, **exception_kwargs)
mako.exceptions.CompileException: Fragment 'block>' is not a partial control statement in file 'C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/View/template/base.html' at line: 38 char: 1
[06/May/2016:20:55:21] ENGINE Listening for SIGTERM.
[06/May/2016:20:55:21] ENGINE Bus STARTING
[06/May/2016:20:55:21] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:55:21] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:55:21] ENGINE Bus STARTED
[06/May/2016:20:56:40] ENGINE Listening for SIGTERM.
[06/May/2016:20:56:40] ENGINE Bus STARTING
[06/May/2016:20:56:40] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:56:40] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:56:40] ENGINE Bus STARTED
[06/May/2016:20:57:06] ENGINE Listening for SIGTERM.
[06/May/2016:20:57:06] ENGINE Bus STARTING
[06/May/2016:20:57:06] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:57:06] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:57:06] ENGINE Bus STARTED
[06/May/2016:20:58:03] ENGINE Listening for SIGTERM.
[06/May/2016:20:58:03] ENGINE Bus STARTING
[06/May/2016:20:58:03] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:20:58:03] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:20:58:03] ENGINE Bus STARTED
[06/May/2016:21:00:04] ENGINE Listening for SIGTERM.
[06/May/2016:21:00:04] ENGINE Bus STARTING
[06/May/2016:21:00:04] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:21:00:05] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:21:00:05] ENGINE Bus STARTED
[06/May/2016:21:02:05] ENGINE Listening for SIGTERM.
[06/May/2016:21:02:05] ENGINE Bus STARTING
[06/May/2016:21:02:05] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:21:02:05] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:21:02:05] ENGINE Bus STARTED
[06/May/2016:21:03:11] ENGINE Listening for SIGTERM.
[06/May/2016:21:03:11] ENGINE Bus STARTING
[06/May/2016:21:03:11] ENGINE Started monitor thread '_TimeoutMonitor'.
[06/May/2016:21:03:12] ENGINE Serving on http://127.0.0.1:8080
[06/May/2016:21:03:12] ENGINE Bus STARTED
[07/May/2016:10:41:28] ENGINE Listening for SIGTERM.
[07/May/2016:10:41:28] ENGINE Bus STARTING
[07/May/2016:10:41:28] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:10:41:29] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:10:41:29] ENGINE Bus STARTED
[07/May/2016:11:08:29] ENGINE Listening for SIGTERM.
[07/May/2016:11:08:29] ENGINE Bus STARTING
[07/May/2016:11:08:29] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:11:08:29] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:11:08:29] ENGINE Bus STARTED
[07/May/2016:11:08:33] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 132, in dessinateur_list
return _dessinateur_list.render_unicode(dessinateur=dessinateurs)
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 864, in _render_context
_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 890, in _exec_template
callable_(context, *args, **kwargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\base.html.py", line 25, in render_body
context['self'].container(**pageargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\dessinateur_list.html.py", line 53, in render_container
for dessinateur in dessinateurs:
TypeError: 'Undefined' object is not iterable
[07/May/2016:11:09:07] ENGINE Listening for SIGTERM.
[07/May/2016:11:09:07] ENGINE Bus STARTING
[07/May/2016:11:09:07] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:11:09:07] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:11:09:07] ENGINE Bus STARTED
[07/May/2016:11:31:47] ENGINE Listening for SIGTERM.
[07/May/2016:11:31:47] ENGINE Bus STARTING
[07/May/2016:11:31:47] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:11:31:48] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:11:31:48] ENGINE Bus STARTED
[07/May/2016:11:31:49] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 89, in manga_new
statuts=db.retrieve(Statut),
NameError: name 'Statut' is not defined
[07/May/2016:12:06:34] ENGINE Listening for SIGTERM.
[07/May/2016:12:06:34] ENGINE Bus STARTING
[07/May/2016:12:06:34] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:12:06:35] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:12:06:35] ENGINE Bus STARTED
[07/May/2016:12:06:35] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 92, in manga_new
statuts=db.retrieve(Statut),
NameError: name 'Statut' is not defined
[07/May/2016:12:06:36] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 92, in manga_new
statuts=db.retrieve(Statut),
NameError: name 'Statut' is not defined
[07/May/2016:12:06:37] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 92, in manga_new
statuts=db.retrieve(Statut),
NameError: name 'Statut' is not defined
[07/May/2016:12:06:37] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 92, in manga_new
statuts=db.retrieve(Statut),
NameError: name 'Statut' is not defined
[07/May/2016:12:07:08] ENGINE Listening for SIGTERM.
[07/May/2016:12:07:08] ENGINE Bus STARTING
[07/May/2016:12:07:08] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:12:07:09] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:12:07:09] ENGINE Bus STARTED
[07/May/2016:12:07:22] ENGINE Listening for SIGTERM.
[07/May/2016:12:07:22] ENGINE Bus STARTING
[07/May/2016:12:07:22] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:12:07:22] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:12:07:22] ENGINE Bus STARTED
[07/May/2016:15:11:16] ENGINE Listening for SIGTERM.
[07/May/2016:15:11:16] ENGINE Bus STARTING
[07/May/2016:15:11:16] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:11:16] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:11:16] ENGINE Bus STARTED
[07/May/2016:15:15:48] ENGINE Listening for SIGTERM.
[07/May/2016:15:15:48] ENGINE Bus STARTING
[07/May/2016:15:15:48] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:15:48] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:15:48] ENGINE Bus STARTED
[07/May/2016:15:16:33] ENGINE Listening for SIGTERM.
[07/May/2016:15:16:33] ENGINE Bus STARTING
[07/May/2016:15:16:33] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:16:33] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:16:33] ENGINE Bus STARTED
[07/May/2016:15:17:02] ENGINE Listening for SIGTERM.
[07/May/2016:15:17:02] ENGINE Bus STARTING
[07/May/2016:15:17:02] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:17:02] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:17:02] ENGINE Bus STARTED
[07/May/2016:15:36:53] ENGINE Listening for SIGTERM.
[07/May/2016:15:36:53] ENGINE Bus STARTING
[07/May/2016:15:36:53] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:36:53] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:36:53] ENGINE Bus STARTED
[07/May/2016:15:40:16] ENGINE Listening for SIGTERM.
[07/May/2016:15:40:16] ENGINE Bus STARTING
[07/May/2016:15:40:16] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:40:16] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:40:16] ENGINE Bus STARTED
[07/May/2016:15:40:19] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 84, in manga_add
db.createManga(manga)
AttributeError: 'Database' object has no attribute 'createManga'
[07/May/2016:15:41:07] ENGINE Listening for SIGTERM.
[07/May/2016:15:41:07] ENGINE Bus STARTING
[07/May/2016:15:41:07] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:41:07] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:41:07] ENGINE Bus STARTED
[07/May/2016:15:41:46] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 71, in manga_detail
tomes=db.retrieveTome(id))
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 864, in _render_context
_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 890, in _exec_template
callable_(context, *args, **kwargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\base.html.py", line 25, in render_body
context['self'].container(**pageargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\manga_detail.html.py", line 61, in render_container
__M_writer(str(genre.genre))
AttributeError: 'Undefined' object has no attribute 'genre'
[07/May/2016:15:42:37] ENGINE Listening for SIGTERM.
[07/May/2016:15:42:37] ENGINE Bus STARTING
[07/May/2016:15:42:37] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:42:37] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:42:37] ENGINE Bus STARTED
[07/May/2016:15:42:39] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 70, in manga_detail
return _manga_detail.render_unicode(manga=db.retrieve(Manga, Manga.id, id))
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 864, in _render_context
_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 890, in _exec_template
callable_(context, *args, **kwargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\base.html.py", line 25, in render_body
context['self'].container(**pageargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\manga_detail.html.py", line 61, in render_container
for tome in tomes:
TypeError: 'Undefined' object is not iterable
[07/May/2016:15:43:54] ENGINE Listening for SIGTERM.
[07/May/2016:15:43:54] ENGINE Bus STARTING
[07/May/2016:15:43:54] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:43:54] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:43:54] ENGINE Bus STARTED
[07/May/2016:15:45:15] ENGINE Listening for SIGTERM.
[07/May/2016:15:45:15] ENGINE Bus STARTING
[07/May/2016:15:45:15] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:45:16] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:45:16] ENGINE Bus STARTED
[07/May/2016:15:49:02] ENGINE Listening for SIGTERM.
[07/May/2016:15:49:02] ENGINE Bus STARTING
[07/May/2016:15:49:02] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:49:02] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:49:02] ENGINE Bus STARTED
[07/May/2016:15:49:07] ENGINE Listening for SIGTERM.
[07/May/2016:15:49:07] ENGINE Bus STARTING
[07/May/2016:15:49:07] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:49:07] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:49:07] ENGINE Bus STARTED
[07/May/2016:15:49:43] ENGINE Listening for SIGTERM.
[07/May/2016:15:49:43] ENGINE Bus STARTING
[07/May/2016:15:49:43] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:15:49:43] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:15:49:43] ENGINE Bus STARTED
[07/May/2016:16:50:24] ENGINE Listening for SIGTERM.
[07/May/2016:16:50:24] ENGINE Bus STARTING
[07/May/2016:16:50:24] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:50:24] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:50:24] ENGINE Bus STARTED
[07/May/2016:16:51:35] ENGINE Listening for SIGTERM.
[07/May/2016:16:51:35] ENGINE Bus STARTING
[07/May/2016:16:51:35] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:51:36] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:51:36] ENGINE Bus STARTED
[07/May/2016:16:53:28] ENGINE Listening for SIGTERM.
[07/May/2016:16:53:28] ENGINE Bus STARTING
[07/May/2016:16:53:28] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:53:29] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:53:29] ENGINE Bus STARTED
[07/May/2016:16:53:32] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 124, in tome_new
return _tome_new.render_unicode()
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 864, in _render_context
_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 890, in _exec_template
callable_(context, *args, **kwargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\base.html.py", line 25, in render_body
context['self'].container(**pageargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\tome_new.html.py", line 53, in render_container
for manga in mangas:
TypeError: 'Undefined' object is not iterable
[07/May/2016:16:53:33] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 124, in tome_new
return _tome_new.render_unicode()
File "C:\Program Files\Python\lib\site-packages\mako\template.py", line 454, in render_unicode
as_unicode=True)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 829, in _render
**_kwargs_for_callable(callable_, data))
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 864, in _render_context
_exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
File "C:\Program Files\Python\lib\site-packages\mako\runtime.py", line 890, in _exec_template
callable_(context, *args, **kwargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\base.html.py", line 25, in render_body
context['self'].container(**pageargs)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\View\tmp\mako_modules\tome_new.html.py", line 53, in render_container
for manga in mangas:
TypeError: 'Undefined' object is not iterable
[07/May/2016:16:54:09] ENGINE Listening for SIGTERM.
[07/May/2016:16:54:09] ENGINE Bus STARTING
[07/May/2016:16:54:09] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:54:10] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:54:10] ENGINE Bus STARTED
[07/May/2016:16:57:05] ENGINE Listening for SIGTERM.
[07/May/2016:16:57:05] ENGINE Bus STARTING
[07/May/2016:16:57:05] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:57:05] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:57:05] ENGINE Bus STARTED
[07/May/2016:16:57:41] ENGINE Listening for SIGTERM.
[07/May/2016:16:57:41] ENGINE Bus STARTING
[07/May/2016:16:57:41] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:57:41] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:57:41] ENGINE Bus STARTED
[07/May/2016:16:57:46] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1073, in _execute_context
context = constructor(dialect, self, conn, *args)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\default.py", line 584, in _init_compiled
param.append(processors[key](compiled_params[key]))
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\processors.py", line 56, in boolean_to_int
return int(value)
ValueError: invalid literal for int() with base 10: 'on'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 140, in tome_add
db.create(tome,Tome)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\Core\Database.py", line 55, in create
self.session.commit()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 801, in commit
self.transaction.commit()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 392, in commit
self._prepare_impl()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 372, in _prepare_impl
self.session.flush()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 2019, in flush
self._flush(objects)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 2137, in _flush
transaction.rollback(_capture_exception=True)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\langhelpers.py", line 60, in __exit__
compat.reraise(exc_type, exc_value, exc_tb)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\compat.py", line 184, in reraise
raise value
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 2101, in _flush
flush_context.execute()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\unitofwork.py", line 373, in execute
rec.execute(self)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\unitofwork.py", line 532, in execute
uow
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\persistence.py", line 174, in save_obj
mapper, table, insert)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\persistence.py", line 767, in _emit_insert_statements
execute(statement, multiparams)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 914, in execute
return meth(self, multiparams, params)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\sql\elements.py", line 323, in _execute_on_connection
return connection._execute_clauseelement(self, multiparams, params)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1010, in _execute_clauseelement
compiled_sql, distilled_params
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1078, in _execute_context
None, None)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1341, in _handle_dbapi_exception
exc_info
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\compat.py", line 200, in raise_from_cause
reraise(type(exception), exception, tb=exc_tb, cause=cause)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\compat.py", line 183, in reraise
raise value.with_traceback(tb)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1073, in _execute_context
context = constructor(dialect, self, conn, *args)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\default.py", line 584, in _init_compiled
param.append(processors[key](compiled_params[key]))
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\processors.py", line 56, in boolean_to_int
return int(value)
sqlalchemy.exc.StatementError: (builtins.ValueError) invalid literal for int() with base 10: 'on' [SQL: 'INSERT INTO tome (manga, numero, date_parution, date_achat, possede, lu, a_acheter, prix, couverture) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)'] [parameters: [{'manga': '2', 'couverture': 'http://www.nautiljon.com/images/manga/00/39/sayonara_football_5493.jpg?1456339195', 'date_achat': '', 'lu': 'on', 'prix': 6.6, 'date_parution': '09-06-2016', 'numero': '1', 'possede': None, 'a_acheter': 'on'}]]
[07/May/2016:16:59:04] ENGINE Listening for SIGTERM.
[07/May/2016:16:59:04] ENGINE Bus STARTING
[07/May/2016:16:59:04] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:16:59:04] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:16:59:04] ENGINE Bus STARTED
[07/May/2016:16:59:10] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1139, in _execute_context
context)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\default.py", line 450, in do_execute
cursor.execute(statement, parameters)
sqlite3.IntegrityError: NOT NULL constraint failed: tome.possede
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 140, in tome_add
db.create(tome,Tome)
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\Core\Database.py", line 55, in create
self.session.commit()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 801, in commit
self.transaction.commit()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 392, in commit
self._prepare_impl()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 372, in _prepare_impl
self.session.flush()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 2019, in flush
self._flush(objects)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 2137, in _flush
transaction.rollback(_capture_exception=True)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\langhelpers.py", line 60, in __exit__
compat.reraise(exc_type, exc_value, exc_tb)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\compat.py", line 184, in reraise
raise value
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 2101, in _flush
flush_context.execute()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\unitofwork.py", line 373, in execute
rec.execute(self)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\unitofwork.py", line 532, in execute
uow
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\persistence.py", line 174, in save_obj
mapper, table, insert)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\persistence.py", line 767, in _emit_insert_statements
execute(statement, multiparams)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 914, in execute
return meth(self, multiparams, params)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\sql\elements.py", line 323, in _execute_on_connection
return connection._execute_clauseelement(self, multiparams, params)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1010, in _execute_clauseelement
compiled_sql, distilled_params
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1146, in _execute_context
context)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1341, in _handle_dbapi_exception
exc_info
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\compat.py", line 200, in raise_from_cause
reraise(type(exception), exception, tb=exc_tb, cause=cause)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\compat.py", line 183, in reraise
raise value.with_traceback(tb)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\base.py", line 1139, in _execute_context
context)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\engine\default.py", line 450, in do_execute
cursor.execute(statement, parameters)
sqlalchemy.exc.IntegrityError: (sqlite3.IntegrityError) NOT NULL constraint failed: tome.possede [SQL: 'INSERT INTO tome (manga, numero, date_parution, date_achat, possede, lu, a_acheter, prix, couverture) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)'] [parameters: ('2', '1', '09-06-2016', '', None, 1, 1, 6.6, 'http://www.nautiljon.com/images/manga/00/39/sayonara_football_5493.jpg?1456339195')]
[07/May/2016:17:05:49] ENGINE Listening for SIGTERM.
[07/May/2016:17:05:49] ENGINE Bus STARTING
[07/May/2016:17:05:49] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:17:05:50] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:17:05:50] ENGINE Bus STARTED
[07/May/2016:19:34:41] ENGINE Listening for SIGTERM.
[07/May/2016:19:34:41] ENGINE Bus STARTING
[07/May/2016:19:34:41] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:19:34:41] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:19:34:41] ENGINE Bus STARTED
[07/May/2016:19:35:19] ENGINE Listening for SIGTERM.
[07/May/2016:19:35:19] ENGINE Bus STARTING
[07/May/2016:19:35:19] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:19:35:20] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:19:35:20] ENGINE Bus STARTED
[07/May/2016:21:34:20] ENGINE Listening for SIGTERM.
[07/May/2016:21:34:20] ENGINE Bus STARTING
[07/May/2016:21:34:20] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:21:34:20] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:21:34:20] ENGINE Bus STARTED
[07/May/2016:21:35:10] ENGINE Listening for SIGTERM.
[07/May/2016:21:35:10] ENGINE Bus STARTING
[07/May/2016:21:35:10] ENGINE Started monitor thread '_TimeoutMonitor'.
[07/May/2016:21:35:10] ENGINE Serving on http://127.0.0.1:8080
[07/May/2016:21:35:10] ENGINE Bus STARTED
[08/May/2016:15:32:39] ENGINE Listening for SIGTERM.
[08/May/2016:15:32:39] ENGINE Bus STARTING
[08/May/2016:15:32:39] ENGINE Started monitor thread '_TimeoutMonitor'.
[08/May/2016:15:32:39] ENGINE Serving on http://127.0.0.1:8080
[08/May/2016:15:32:39] ENGINE Bus STARTED
[08/May/2016:16:05:39] ENGINE Listening for SIGTERM.
[08/May/2016:16:05:39] ENGINE Bus STARTING
[08/May/2016:16:05:39] ENGINE Started monitor thread '_TimeoutMonitor'.
[08/May/2016:16:05:40] ENGINE Serving on http://127.0.0.1:8080
[08/May/2016:16:05:40] ENGINE Bus STARTED
[08/May/2016:16:10:10] ENGINE Listening for SIGTERM.
[08/May/2016:16:10:10] ENGINE Bus STARTING
[08/May/2016:16:10:10] ENGINE Started monitor thread '_TimeoutMonitor'.
[08/May/2016:16:10:10] ENGINE Serving on http://127.0.0.1:8080
[08/May/2016:16:10:10] ENGINE Bus STARTED
[08/May/2016:16:17:00] ENGINE Listening for SIGTERM.
[08/May/2016:16:17:00] ENGINE Bus STARTING
[08/May/2016:16:17:00] ENGINE Started monitor thread '_TimeoutMonitor'.
[08/May/2016:16:17:00] ENGINE Serving on http://127.0.0.1:8080
[08/May/2016:16:17:00] ENGINE Bus STARTED
[08/May/2016:16:17:02] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 66, in manga_list
mangas = db.retrieve((Manga))
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\Core\Database.py", line 88, in retrieve
obj = self.session.query(type).all()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 1260, in query
return self._query_cls(entities, self, **kwargs)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 110, in __init__
self._set_entities(entities)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 120, in _set_entities
self._set_entity_selectables(self._entities)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 150, in _set_entity_selectables
ent.setup_entity(*d[entity])
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 3421, in setup_entity
self._with_polymorphic = ext_info.with_polymorphic_mappers
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\langhelpers.py", line 754, in __get__
obj.__dict__[self.__name__] = result = self.fget(obj)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 1893, in _with_polymorphic_mappers
configure_mappers()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 2768, in configure_mappers
mapper._post_configure_properties()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 1710, in _post_configure_properties
prop.init()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\interfaces.py", line 183, in init
self.do_init()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\relationships.py", line 1628, in do_init
self._process_dependent_arguments()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\relationships.py", line 1685, in _process_dependent_arguments
self.target = self.mapper.mapped_table
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\langhelpers.py", line 754, in __get__
obj.__dict__[self.__name__] = result = self.fget(obj)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\relationships.py", line 1614, in mapper
% (self.key, type(argument)))
sqlalchemy.exc.ArgumentError: relationship 'tome' expects a class or a mapper argument (received: <class 'sqlalchemy.sql.schema.Table'>)
[08/May/2016:16:17:03] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 66, in manga_list
mangas = db.retrieve((Manga))
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\Core\Database.py", line 88, in retrieve
obj = self.session.query(type).all()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 1260, in query
return self._query_cls(entities, self, **kwargs)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 110, in __init__
self._set_entities(entities)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 120, in _set_entities
self._set_entity_selectables(self._entities)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 150, in _set_entity_selectables
ent.setup_entity(*d[entity])
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 3421, in setup_entity
self._with_polymorphic = ext_info.with_polymorphic_mappers
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\langhelpers.py", line 754, in __get__
obj.__dict__[self.__name__] = result = self.fget(obj)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 1893, in _with_polymorphic_mappers
configure_mappers()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 2765, in configure_mappers
raise e
sqlalchemy.exc.InvalidRequestError: One or more mappers failed to initialize - can't proceed with initialization of other mappers. Original exception was: relationship 'tome' expects a class or a mapper argument (received: <class 'sqlalchemy.sql.schema.Table'>)
[08/May/2016:16:17:04] HTTP
Traceback (most recent call last):
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cprequest.py", line 670, in respond
response.body = self.handler()
File "C:\Program Files\Python\lib\site-packages\cherrypy\lib\encoding.py", line 217, in __call__
self.body = self.oldhandler(*args, **kwargs)
File "C:\Program Files\Python\lib\site-packages\cherrypy\_cpdispatch.py", line 60, in __call__
return self.callable(*self.args, **self.kwargs)
File "C:/Users/jerem/Documents/Workspace/iutvalence-python-mangacollection/server.py", line 66, in manga_list
mangas = db.retrieve((Manga))
File "C:\Users\jerem\Documents\Workspace\iutvalence-python-mangacollection\Core\Database.py", line 88, in retrieve
obj = self.session.query(type).all()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\session.py", line 1260, in query
return self._query_cls(entities, self, **kwargs)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 110, in __init__
self._set_entities(entities)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 120, in _set_entities
self._set_entity_selectables(self._entities)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 150, in _set_entity_selectables
ent.setup_entity(*d[entity])
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\query.py", line 3421, in setup_entity
self._with_polymorphic = ext_info.with_polymorphic_mappers
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\util\langhelpers.py", line 754, in __get__
obj.__dict__[self.__name__] = result = self.fget(obj)
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 1893, in _with_polymorphic_mappers
configure_mappers()
File "C:\Program Files\Python\lib\site-packages\sqlalchemy\orm\mapper.py", line 2765, in configure_mappers
raise e