Merge "Fix for extra code element and listitem paras"

This commit is contained in:
Jenkins
2016-01-14 00:28:45 +00:00
committed by Gerrit Code Review

View File

@@ -453,7 +453,7 @@
</para>
<para>
If you try to create or update configuration options for groups
other than the <code>identity</code>code> or <code>ldap</code>
other than the <code>identity</code> or <code>ldap</code>
groups, the <code>Forbidden (403)</code> response code is
returned.
</para>
@@ -626,19 +626,25 @@
<para>
List role assignments for the specified user:
</para>
<programlisting>GET /role_assignments?user.id={user_id}</programlisting>
<para>
<programlisting>GET /role_assignments?user.id={user_id}</programlisting>
</para>
</listitem>
<listitem>
<para>
List role assignments for the specified project:
</para>
<programlisting>GET /role_assignments?scope.project.id={project_id}</programlisting>
<para>
<programlisting>GET /role_assignments?scope.project.id={project_id}</programlisting>
</para>
</listitem>
<listitem>
<para>
List all role assignments for a specified project and its sub- projects:
</para>
<programlisting>GET /role_assignments?scope.project.id={project_id}?include_subtree=true</programlisting>
<para>
<programlisting>GET /role_assignments?scope.project.id={project_id}?include_subtree=true</programlisting>
</para>
<para>
If you specify <code>include_subtree=true</code>, you must
also specify the <code>scope.project.id</code>. Otherwise,
@@ -673,14 +679,18 @@
<para>
Determine what a user can actually do:
</para>
<programlisting>GET /role_assignments?user.id={user_id}&amp;effective</programlisting>
<para>
<programlisting>GET /role_assignments?user.id={user_id}&amp;effective</programlisting>
</para>
</listitem>
<listitem>
<para>
Get the equivalent set of role assignments that are
included in a project-scoped token response:
</para>
<programlisting>GET /role_assignments?user.id={user_id}&amp;scope.project.id={project_id}&amp;effective</programlisting>
<para>
<programlisting>GET /role_assignments?user.id={user_id}&amp;scope.project.id={project_id}&amp;effective</programlisting>
</para>
</listitem>
</itemizedlist>
<wadl:resources xmlns:wadl="http://wadl.dev.java.net/2009/02">