@@ -253,7 +253,7 @@ def generate_menu():
253
253
needs_rebuild = db .get ('site:needs_rebuild' )
254
254
else :
255
255
needs_rebuild = site .coil_needs_rebuild
256
- if needs_rebuild not in ('0' , '-1' ):
256
+ if needs_rebuild not in (u '0' , u'-1' , b'0' , b '-1' ):
257
257
return ('</li><li><a href="{0}"><i class="fa fa-fw '
258
258
'fa-warning"></i> <strong>Rebuild</strong></a></li>' .format (
259
259
url_for ('rebuild' )))
@@ -671,7 +671,7 @@ def edit(path):
671
671
meta ['author' ] = get_user (meta ['author.uid' ]).realname
672
672
current_auid = int (meta ['author.uid' ])
673
673
author_change_success = True
674
- except :
674
+ except Exception :
675
675
author_change_success = False
676
676
if (not current_user .can_transfer_post_authorship or
677
677
not author_change_success ):
@@ -711,10 +711,11 @@ def edit(path):
711
711
if db is not None :
712
712
uids = db .hgetall ('users' ).values ()
713
713
for u in uids :
714
+ u = u .decode ('utf-8' )
714
715
realname , active = db .hmget ('user:{0}' .format (u ),
715
716
'realname' , 'active' )
716
- if active == '1' :
717
- users .append ((u , realname ))
717
+ if active in ( u '1', b'1' ) :
718
+ users .append ((u , realname . decode ( 'utf-8' ) ))
718
719
else :
719
720
for u , d in app .config ['COIL_USERS' ].items ():
720
721
if d ['active' ]:
@@ -785,6 +786,7 @@ def api_rebuild():
785
786
rq .cancel_job ('build' , db )
786
787
rq .cancel_job ('orphans' , db )
787
788
db .set ('site:needs_rebuild' , '0' )
789
+ site .coil_needs_rebuild = '1'
788
790
789
791
return d
790
792
@@ -1003,17 +1005,17 @@ def acp_users():
1003
1005
if request .args .get ('status' ) == 'undeleted' :
1004
1006
alert = 'User undeleted.'
1005
1007
alert_status = 'success'
1006
- else :
1007
- uids = db .hgetall ('users' ).values ()
1008
- USERS = sorted ([(int (i ), get_user (i )) for i in uids ], key = operator .itemgetter (0 ))
1009
- return render ('coil_users.tmpl' ,
1010
- context = {'title' : 'Users' ,
1011
- 'USERS' : USERS ,
1012
- 'alert' : alert ,
1013
- 'alert_status' : alert_status ,
1014
- 'delform' : UserDeleteForm (),
1015
- 'editform' : UserEditForm (),
1016
- 'importform' : UserImportForm ()})
1008
+
1009
+ uids = db .hgetall ('users' ).values ()
1010
+ USERS = sorted ([(int (i ), get_user (i )) for i in uids ], key = operator .itemgetter (0 ))
1011
+ return render ('coil_users.tmpl' ,
1012
+ context = {'title' : 'Users' ,
1013
+ 'USERS' : USERS ,
1014
+ 'alert' : alert ,
1015
+ 'alert_status' : alert_status ,
1016
+ 'delform' : UserDeleteForm (),
1017
+ 'editform' : UserEditForm (),
1018
+ 'importform' : UserImportForm ()})
1017
1019
1018
1020
1019
1021
@app .route ('/users/edit/' , methods = ['POST' ])
0 commit comments