Skip to content

Commit 30d5333

Browse files
committedMay 29, 2015
fix #37 -- py3 compatibility
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent cf6fbef commit 30d5333

File tree

5 files changed

+22
-19
lines changed

5 files changed

+22
-19
lines changed
 

‎coil/data/templates/jinja/coil_post_edit.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
>
2323
{% for auid, aname in users %}
2424
<option
25-
{% if auid == current_auid %}
25+
{% if int(auid) == int(current_auid) %}
2626
selected
2727
{% endif %}
2828
value="{{ auid }}">{{ aname }}</option>

‎coil/data/templates/jinja/coil_users.tmpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ $('#deleteModal').on('show.bs.modal', function (event) {
8787
{% endfor %}
8888
<tr><form action="{{ url_for('acp_users_edit') }}" method="POST">{{ editform.csrf_token }}
8989
<td class="uid"><strong>Create:</strong></td>
90-
<td colspan="4"><input name="username" placeholder="New user" class="form-control input-sm"></td>
90+
<td colspan="4"><input name="username" placeholder="New user"
91+
class="form-control input-sm"><input type="hidden" name="action" value="new"></td>
9192
<td><button type="submit" class="btn btn-sm btn-primary"><i class="fa fa-plus-square fa-fw"></i> Create</button></td>
9293
</form></tr>
9394
<tr><form action="{{ url_for('acp_users_import') }}" method="POST" enctype="multipart/form-data">{{ importform.csrf_token }}

‎coil/data/templates/mako/coil_post_edit.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
>
2323
% for auid, aname in users:
2424
<option
25-
%if auid == current_auid:
25+
%if int(auid) == int(current_auid):
2626
selected
2727
% endif
2828
value="${auid}">${aname}</option>

‎coil/tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def build(dburl, sitedir, mode):
5959
out = []
6060

6161
while p.poll() is None:
62-
nl = p.stderr.readline()
62+
nl = p.stderr.readline().decode('utf-8')
6363
for k in milestones:
6464
if k in nl:
6565
milestones[k] = 1

‎coil/web.py

+17-15
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def generate_menu():
253253
needs_rebuild = db.get('site:needs_rebuild')
254254
else:
255255
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'):
257257
return ('</li><li><a href="{0}"><i class="fa fa-fw '
258258
'fa-warning"></i> <strong>Rebuild</strong></a></li>'.format(
259259
url_for('rebuild')))
@@ -671,7 +671,7 @@ def edit(path):
671671
meta['author'] = get_user(meta['author.uid']).realname
672672
current_auid = int(meta['author.uid'])
673673
author_change_success = True
674-
except:
674+
except Exception:
675675
author_change_success = False
676676
if (not current_user.can_transfer_post_authorship or
677677
not author_change_success):
@@ -711,10 +711,11 @@ def edit(path):
711711
if db is not None:
712712
uids = db.hgetall('users').values()
713713
for u in uids:
714+
u = u.decode('utf-8')
714715
realname, active = db.hmget('user:{0}'.format(u),
715716
'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')))
718719
else:
719720
for u, d in app.config['COIL_USERS'].items():
720721
if d['active']:
@@ -785,6 +786,7 @@ def api_rebuild():
785786
rq.cancel_job('build', db)
786787
rq.cancel_job('orphans', db)
787788
db.set('site:needs_rebuild', '0')
789+
site.coil_needs_rebuild = '1'
788790

789791
return d
790792

@@ -1003,17 +1005,17 @@ def acp_users():
10031005
if request.args.get('status') == 'undeleted':
10041006
alert = 'User undeleted.'
10051007
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()})
10171019

10181020

10191021
@app.route('/users/edit/', methods=['POST'])

0 commit comments

Comments
 (0)
Please sign in to comment.