Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2139)

Issue 101630045: Added userwise acl view (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
9 years, 9 months ago by ajgupta93
Modified:
9 years, 9 months ago
Reviewers:
thomas.j.waldmann, RogerHaase
Visibility:
Public.

Description

Added userwise acl view

Patch Set 1 #

Patch Set 2 : Made the checkboxes readonly, added user name in the view and cleaned pep8 errors #

Total comments: 13

Patch Set 3 : Removed space before comma, fixed indentation, and used fqname list #

Total comments: 6

Patch Set 4 : Fixed Indentation #

Total comments: 11

Patch Set 5 : Used fqnames and uids instead of names and removed checkboxes #

Total comments: 2

Patch Set 6 : Loaded tablesorter.js before common.js #

Patch Set 7 : Changed the document retrieval method #

Patch Set 8 : Added superuser permission #

Total comments: 17

Patch Set 9 : Changes as per comments #

Patch Set 10 : Minor correction #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+93 lines, -32 lines) Patch
A MoinMoin/apps/admin/templates/admin/user_acl_report.html View 1 2 3 4 5 6 7 8 1 chunk +30 lines, -0 lines 0 comments Download
M MoinMoin/apps/admin/templates/admin/userbrowser.html View 1 2 3 4 5 6 7 8 9 1 chunk +38 lines, -31 lines 0 comments Download
M MoinMoin/apps/admin/views.py View 1 2 3 4 5 6 7 8 9 2 chunks +24 lines, -1 line 1 comment Download
M MoinMoin/templates/base.html View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 13
RogerHaase
tested with several other patches, useful report.
9 years, 9 months ago (2014-07-05 15:01:08 UTC) #1
Thomas.J.Waldmann
https://codereview.appspot.com/101630045/diff/40001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/40001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode10 MoinMoin/apps/admin/templates/admin/user_acl_info.html:10: <h3>User Name : {{ user_name|join(' , ') }}</h3> please ...
9 years, 9 months ago (2014-07-05 15:33:30 UTC) #2
ajgupta93
https://codereview.appspot.com/101630045/diff/40001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/40001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode10 MoinMoin/apps/admin/templates/admin/user_acl_info.html:10: <h3>User Name : {{ user_name|join(' , ') }}</h3> On ...
9 years, 9 months ago (2014-07-07 10:31:54 UTC) #3
RogerHaase
https://codereview.appspot.com/101630045/diff/60001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/60001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode7 MoinMoin/apps/admin/templates/admin/user_acl_info.html:7: {% endif %} indent lines within if https://codereview.appspot.com/101630045/diff/60001/MoinMoin/apps/admin/templates/admin/userbrowser.html File ...
9 years, 9 months ago (2014-07-07 13:01:07 UTC) #4
ajgupta93
https://codereview.appspot.com/101630045/diff/60001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/60001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode7 MoinMoin/apps/admin/templates/admin/user_acl_info.html:7: {% endif %} On 2014/07/07 13:01:07, RogerHaase wrote: > ...
9 years, 9 months ago (2014-07-07 13:18:43 UTC) #5
Thomas.J.Waldmann
https://codereview.appspot.com/101630045/diff/80001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/80001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode6 MoinMoin/apps/admin/templates/admin/user_acl_info.html:6: <h3>User Name(s) : {{ user_names|join(', ') }}</h3> hmm,usually h2 ...
9 years, 9 months ago (2014-07-07 13:37:32 UTC) #6
ajgupta93
https://codereview.appspot.com/101630045/diff/80001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/80001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode6 MoinMoin/apps/admin/templates/admin/user_acl_info.html:6: <h3>User Name(s) : {{ user_names|join(', ') }}</h3> On 2014/07/07 ...
9 years, 9 months ago (2014-07-07 20:11:22 UTC) #7
RogerHaase
https://codereview.appspot.com/101630045/diff/100001/MoinMoin/templates/base.html File MoinMoin/templates/base.html (right): https://codereview.appspot.com/101630045/diff/100001/MoinMoin/templates/base.html#newcode85 MoinMoin/templates/base.html:85: <script src="{{ url_for('serve.files', name='jquery_tablesorter', filename='jquery.tablesorter.js') }}"></script> as common.js is ...
9 years, 9 months ago (2014-07-07 20:47:31 UTC) #8
ajgupta93
https://codereview.appspot.com/101630045/diff/100001/MoinMoin/templates/base.html File MoinMoin/templates/base.html (right): https://codereview.appspot.com/101630045/diff/100001/MoinMoin/templates/base.html#newcode85 MoinMoin/templates/base.html:85: <script src="{{ url_for('serve.files', name='jquery_tablesorter', filename='jquery.tablesorter.js') }}"></script> On 2014/07/07 20:47:31, ...
9 years, 9 months ago (2014-07-09 12:03:06 UTC) #9
Thomas.J.Waldmann
https://codereview.appspot.com/101630045/diff/160001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/160001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode7 MoinMoin/apps/admin/templates/admin/user_acl_info.html:7: {% endif %} do you call it without headline ...
9 years, 9 months ago (2014-07-12 15:17:37 UTC) #10
ajgupta93
https://codereview.appspot.com/101630045/diff/160001/MoinMoin/apps/admin/templates/admin/user_acl_info.html File MoinMoin/apps/admin/templates/admin/user_acl_info.html (right): https://codereview.appspot.com/101630045/diff/160001/MoinMoin/apps/admin/templates/admin/user_acl_info.html#newcode7 MoinMoin/apps/admin/templates/admin/user_acl_info.html:7: {% endif %} On 2014/07/12 15:17:37, Thomas.J.Waldmann wrote: > ...
9 years, 9 months ago (2014-07-14 15:39:00 UTC) #11
ajgupta93
https://codereview.appspot.com/101630045/diff/220001/MoinMoin/apps/admin/views.py File MoinMoin/apps/admin/views.py (right): https://codereview.appspot.com/101630045/diff/220001/MoinMoin/apps/admin/views.py#newcode63 MoinMoin/apps/admin/views.py:63: groups=user_groups)) Please ignore this change. This was caused due ...
9 years, 9 months ago (2014-07-14 17:13:36 UTC) #12
Thomas.J.Waldmann
9 years, 9 months ago (2014-07-17 16:23:18 UTC) #13
looks ok
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b