source: main/trunk/greenstone2/runtime-src/src/recpt/configaction.h@ 24874

Last change on this file since 24874 was 4290, checked in by sjboddie, 21 years ago

Added a "configaction" to allow new collection servers to be added to and
removed from a persistent version of greenstone (i.e. the local library)
while it's still running. Without this you need to restart the server in
order for it to notice any new collections that may have appeared.
Use "?a=config&cmd=add-collection&c=colname" to create and configure a
collection server for the "colname" collection.

  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/**********************************************************************
2 *
3 * configaction.h --
4 * Copyright (C) 2003 DL Consulting Ltd
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#ifndef CONFIGACTION_H
28#define CONFIGACTION_H
29
30#include "action.h"
31#include "receptionist.h"
32
33class configaction : public action {
34
35protected:
36 receptionist *recpt;
37
38 void create_colservr (const text_t &collection, ostream &logout);
39 void remove_colservr (const text_t &collection, ostream &logout);
40
41public:
42 configaction ();
43 virtual ~configaction ();
44
45 void set_receptionist (receptionist *therecpt) {recpt=therecpt;}
46
47 text_t get_action_name () {return "config";}
48 void get_cgihead_info (cgiargsclass &args, recptprotolistclass *protos,
49 response_t &response, text_t &response_data,
50 ostream &logout);
51
52 bool do_action (cgiargsclass &args, recptprotolistclass *protos,
53 browsermapclass *browsers, displayclass &disp,
54 outconvertclass &outconvert, ostream &textout,
55 ostream &logout);
56};
57
58
59
60#endif
Note: See TracBrowser for help on using the repository browser.