source: trunk/gsdl/src/recpt/browseactiontools.cpp@ 2459

Last change on this file since 2459 was 2459, checked in by dmm9, 23 years ago

got formatting of browse filter string working

  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/**********************************************************************
2 *
3 * browseactiontools.cpp --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * A component of the Greenstone digital library software
7 * from the New Zealand Digital Library Project at the
8 * University of Waikato, New Zealand.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 *********************************************************************/
25
26
27#include "browseactiontools.h"
28#include <ctype.h>
29
30void format_browsestring(text_t orig, text_t& formatted, int and_or)
31{
32
33
34 text_t conj = "";
35
36 if(and_or == 0){ conj = " | "; }
37 else { conj = " & "; }
38 text_t::const_iterator here = orig.begin();
39 text_t::const_iterator end = orig.end();
40
41 //while not at the end of the filter string
42 while(here!=end){
43 //if seeing text, add it to the formatted string
44 if(!isspace(*here)){
45 formatted.push_back(*here);
46 here++;
47 }
48 //else, if seeing spaces, check that there is following text and add
49 //the ncessary conjugation if there is.
50 else if(isspace(*here)){
51 while(isspace(*here) && here!=end) here++;
52 if(here!=end) formatted += conj;
53 }
54 }
55
56}
57
58void set_browsefilter_options(FilterRequest_t &request, text_t &browsestring,
59 cgiargsclass &args)
60{
61
62}
Note: See TracBrowser for help on using the repository browser.