From 8fb880be06065b7bfdc2b510e56d456565c51b7c Mon Sep 17 00:00:00 2001 From: David Crossley Date: Wed, 26 Aug 2015 18:13:01 +1000 Subject: [PATCH] Fix URLs which had long strings of encoded "space" characters, making it difficult for the user to observe and tweak the actual URL. --- doc/tutorial.xml | 29 ++++++++--------------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/doc/tutorial.xml b/doc/tutorial.xml index d04b5a1..730b884 100644 --- a/doc/tutorial.xml +++ b/doc/tutorial.xml @@ -225,10 +225,8 @@ correct &acro.pqf; query. For example, to search in titles only, we use - http://localhost:9999/?version=1.1&operation=searchRetrieve&x-pquery=@attr - 1=title the&startRecord=1&maximumRecords=1&recordSchema=dc + url="http://localhost:9999/?version=1.1&operation=searchRetrieve&x-pquery=@attr 1=title the&startRecord=1&maximumRecords=1&recordSchema=dc"> + http://localhost:9999/?version=1.1&operation=searchRetrieve&x-pquery=@attr 1=title the&startRecord=1&maximumRecords=1&recordSchema=dc @@ -240,13 +238,8 @@ description using the query @and @attr 1=title the @attr 1=description fish. - http://localhost:9999/?version=1.1&operation=searchRetrieve&x-pquery=@and - @attr 1=title the - @attr 1=description fish&startRecord=1&maximumRecords=1&recordSchema=dc + url="http://localhost:9999/?version=1.1&operation=searchRetrieve&x-pquery=@and @attr 1=title the @attr 1=description fish&startRecord=1&maximumRecords=1&recordSchema=dc"> + http://localhost:9999/?version=1.1&operation=searchRetrieve&x-pquery=@and @attr 1=title the @attr 1=description fish&startRecord=1&maximumRecords=1&recordSchema=dc @@ -354,11 +347,8 @@ dc.title=the and dc.description=fish results in the following page - http://localhost:9999/?version=1.1&operation=searchRetrieve&query=dc.title=the - and dc.description=fish &startRecord=1&maximumRecords=1&recordSchema=dc + url="http://localhost:9999/?version=1.1&operation=searchRetrieve&query=dc.title=the and dc.description=fish&startRecord=1&maximumRecords=1&recordSchema=dc"> + http://localhost:9999/?version=1.1&operation=searchRetrieve&query=dc.title=the and dc.description=fish &startRecord=1&maximumRecords=1&recordSchema=dc @@ -383,11 +373,8 @@ schema's of the form zebra:: just work right out of the box - http://localhost:9999/?version=1.1&operation=searchRetrieve&query=dc.title=the - and dc.description=fish &startRecord=1&maximumRecords=1&recordSchema=zebra::snippet + url="http://localhost:9999/?version=1.1&operation=searchRetrieve&query=dc.title=the and dc.description=fish&startRecord=1&maximumRecords=1&recordSchema=zebra::snippet"> + http://localhost:9999/?version=1.1&operation=searchRetrieve&query=dc.title=the and dc.description=fish &startRecord=1&maximumRecords=1&recordSchema=zebra::snippet -- 1.7.10.4