From ca961399752a5e6b48ec6b3d6df491ad55c8a8b2 Mon Sep 17 00:00:00 2001
From: Mark Craig <mark.craig@forgerock.com>
Date: Mon, 04 Mar 2013 10:02:30 +0000
Subject: [PATCH] After comments from Gary, try to break lines in a less unfortunate place
---
opendj-sdk/opendj3/src/main/docbkx/admin-guide/chap-rest-operations.xml | 36 ++++++++++++++++++------------------
1 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/opendj-sdk/opendj3/src/main/docbkx/admin-guide/chap-rest-operations.xml b/opendj-sdk/opendj3/src/main/docbkx/admin-guide/chap-rest-operations.xml
index ce30083..a9c54d5 100644
--- a/opendj-sdk/opendj3/src/main/docbkx/admin-guide/chap-rest-operations.xml
+++ b/opendj-sdk/opendj3/src/main/docbkx/admin-guide/chap-rest-operations.xml
@@ -314,8 +314,8 @@
<para>Matches when the pointer equals the value, as in the following
example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+eq+"bjensen@example.com"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+/users?_filter=userName+eq+"bjensen@example.com"
&_prettyPrint=true'
{
"result" : [ {
@@ -346,8 +346,8 @@
<para>Matches when the pointer contains the value, as in the following
example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+co+"jensen"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName+co+"jensen"
&_fields=userName
&_prettyPrint=true'
{
@@ -379,8 +379,8 @@
<para>Matches when the pointer starts with the value, as in the
following example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+sw+"ab"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName+sw+"ab"
&_fields=userName
&_prettyPrint=true'
{
@@ -402,8 +402,8 @@
<para>Matches when the pointer is less than the value, as in the
following example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+lt+"ac"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName+lt+"ac"
&_fields=userName
&_prettyPrint=true'
{
@@ -425,8 +425,8 @@
<para>Matches when the pointer is less than or equal to the value, as
in the following example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+le+"ad"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName+le+"ad"
&_fields=userName
&_prettyPrint=true'
{
@@ -450,8 +450,8 @@
<para>Matches when the pointer is greater than the value, as in the
following example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+gt+"tt"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName+gt+"tt"
&_fields=userName
&_prettyPrint=true'
{
@@ -475,8 +475,8 @@
<para>Matches when the pointer is greater than or equal to the value,
as in the following example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?
- _filter=userName+ge+"tw"
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName+ge+"tw"
&_fields=userName
&_prettyPrint=true'
{
@@ -512,8 +512,8 @@
any resource on which the <replaceable>json-pointer</replaceable> is
present, as in the following example.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users?_filter=userName%20pr
- &_prettyPrint=true'
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=userName%20pr&_prettyPrint=true'
{
"result" : [ {
"id" : "abarnes",
@@ -558,8 +558,8 @@
<literal>name/givenName</literal> to identify the fields that are nested
inside the <literal>name</literal> object.</para>
- <screen>$ curl 'http://opendj.example.com:8080/rest2ldap/users
- ?_filter=(name/familyName+eq+"jensen"+and+name/givenName+sw+"Bar")
+ <screen>$ curl 'http://opendj.example.com:8080/rest2ldap
+ /users?_filter=(name/familyName+eq+"jensen"+and+name/givenName+sw+"Bar")
&_fields=name
&_prettyPrint=true'
{
--
Gitblit v1.10.0