# HG changeset patch # User Laurent Peuch # Date 1576017286 -3600 # Node ID 1156108afab91045377c3e3d9f2590dc73b60575 # Parent 3e2e04447bf54db1fe872330230adc25a73ea895 [doc/building/fix] encoding issue was crashing sphinx in python3 diff -r 3e2e04447bf5 -r 1156108afab9 cubicweb/web/data/fullcalendar.locale.js --- a/cubicweb/web/data/fullcalendar.locale.js Tue Dec 10 17:14:56 2019 +0100 +++ b/cubicweb/web/data/fullcalendar.locale.js Tue Dec 10 23:34:46 2019 +0100 @@ -11,7 +11,7 @@ dayNamesShort: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'], titleFormat: { month: 'MMMM yyyy', // ex : Janvier 2010 - week: "d[ MMMM][ yyyy]{ - d MMMM yyyy}", // ex : 10 ΓΆ€” 16 Janvier 2010, + week: "d[ MMMM][ yyyy]{ - d MMMM yyyy}", // ex : 10 au 16 Janvier 2010, day: 'dddd d MMMM yyyy' // ex : Jeudi 14 Janvier 2010 }, columnFormat: {'month': 'dddd', diff -r 3e2e04447bf5 -r 1156108afab9 doc/tools/pyjsrest.py --- a/doc/tools/pyjsrest.py Tue Dec 10 17:14:56 2019 +0100 +++ b/doc/tools/pyjsrest.py Tue Dec 10 23:34:46 2019 +0100 @@ -89,7 +89,7 @@ index.add(filename) # save rst file with open(osp.join(rst_dir, filename) + '.rst', 'wb') as f_rst: - f_rst.write(rst_content) + f_rst.write(rst_content.encode()) stream = open(osp.join(rst_dir, 'index.rst'), 'w') stream.write(''' Javascript API