source: trunk/gsdl/src/recpt/htmlutils.cpp@ 919

Last change on this file since 919 was 919, checked in by sjboddie, 24 years ago

added dm_safe function

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/**********************************************************************
2 *
3 * htmlutils.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 * $Id: htmlutils.cpp 919 2000-02-13 20:38:59Z sjboddie $
25 *
26 *********************************************************************/
27
28/*
29 $Log$
30 Revision 1.5 2000/02/13 20:38:59 sjboddie
31 added dm_safe function
32
33 Revision 1.4 1999/09/07 04:56:56 sjboddie
34 added GPL notice
35
36 Revision 1.3 1999/06/09 00:09:30 sjboddie
37 Added a fairly minimal html_safe function
38
39 Revision 1.2 1999/02/08 01:28:02 rjmcnab
40
41 Got the receptionist producing something using the statusaction.
42
43 Revision 1.1 1999/01/08 08:40:58 rjmcnab
44
45 Moved from lib directory.
46
47 Revision 1.1 1999/01/08 03:57:47 rjmcnab
48
49 Initial revision
50
51 */
52
53
54#include "htmlutils.h"
55
56text_t html_safe (const text_t &instring) {
57
58 text_t outstring;
59 text_t::const_iterator here = instring.begin();
60 text_t::const_iterator end = instring.end();
61 while (here != end) {
62 if (*here == '"') outstring += """;
63 else if (*here == '&') outstring += "&";
64 else if (*here == '<') outstring += "&lt;";
65 else if (*here == '>') outstring += "&gt;";
66 else outstring.push_back(*here);
67 here ++;
68 }
69 return outstring;
70}
71
72text_t dm_safe (const text_t &instring) {
73
74 text_t outstring;
75 text_t::const_iterator here = instring.begin();
76 text_t::const_iterator end = instring.end();
77 while (here != end) {
78 if (*here == '_') outstring += "\\_";
79 else outstring.push_back(*here);
80 here ++;
81 }
82 return outstring;
83}
Note: See TracBrowser for help on using the repository browser.