source: trunk/gsdl/src/recpt/formattools.h@ 13365

Last change on this file since 13365 was 13365, checked in by shaoqun, 17 years ago

add DocumentSearchResultLinks to control the display of search result links in a document page

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
RevLine 
[347]1/**********************************************************************
2 *
3 * formattools.h --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
[533]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.
[347]9 *
[533]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 *
[347]24 *********************************************************************/
25
26
27#ifndef FORMATTOOLS_H
28#define FORMATTOOLS_H
29
30#include "text_t.h"
31#include "comtypes.h"
[1443]32#include "recptproto.h"
[1610]33#include "display.h"
[347]34
[670]35enum command_t {comIf, comOr, comMeta, comText, comLink, comEndLink, comNum, comIcon,
[4936]36 comDoc, comHighlight, comEndHighlight, comRel, comHref, comSummary,
37 comTOC, comImage, comDocumentButtonDetach, comDocumentButtonHighlight,
[13118]38 comDocumentButtonExpandContents, comDocumentButtonExpandText, comOID, comTopOID, comRank, comCollection};
[9401]39
[12567]40enum mcommand_t {mNone=0, mCgiSafe=1, mParent=2, mSibling=4, mChild=8, mSpecial=16};
[9401]41
[649]42enum pcommand_t {pNone, pImmediate, pTop, pAll};
[10415]43enum scommand_t {sNone, sAll, sNum};
[9401]44enum ccommand_t {cNone, cAll, cNum};
[1610]45enum dcommand_t {dMeta, dText};
[347]46
47struct metadata_t {
48 void clear();
49 metadata_t () {clear();}
50
[410]51 text_t metaname;
[5787]52 int metacommand; // used to hold flags from mcommand_t
[9401]53 struct {
54 pcommand_t parent;
55 scommand_t sibling;
56 ccommand_t child;
57 } mqualifier;
58
[10415]59 text_t parentoptions;
60 text_t siblingoptions;
61 text_t childoptions;
[347]62};
63
[1610]64
65// The decision component of an {If}{decision,true-text,false-text}
[7389]66// formatstring. The decision can be based on metadata or on text;
[1610]67// normally that text would be a macro like _cgiargmode_. --gordon
[347]68struct decision_t {
69 void clear();
70 decision_t () {clear();}
71
72 dcommand_t command;
73 metadata_t meta;
[1610]74 text_t text;
[347]75};
76
77struct format_t {
78 void clear();
79 format_t () {clear();}
80
81 command_t command;
82 decision_t decision;
83 text_t text;
84 metadata_t meta;
85 format_t *nextptr;
86 format_t *ifptr;
87 format_t *elseptr;
88 format_t *orptr;
89};
90
[442]91// the format structure used by this receptionist
92struct formatinfo_t {
93 void clear();
94 formatinfo_t () {clear();}
[347]95
[1079]96 bool DocumentImages;
97 bool DocumentTitles;
98 text_t DocumentHeading;
99 bool DocumentContents;
[442]100 bool DocumentArrowsBottom;
[4868]101 bool DocumentArrowsTop;
[13365]102 bool DocumentSearchResultLinks;
[442]103 text_tarray DocumentButtons;
104 text_t DocumentText;
[1941]105 //-----------------
106 text_t RelatedDocuments;
107 //----------------
[649]108 text_tmap formatstrings;
[868]109 bool DocumentUseHTML;
[4972]110 bool AllowExtendedOptions;
[442]111};
112
[749]113bool is_table_content (const text_t &formatstring);
114bool is_table_content (const format_t *formatlistptr);
115
[649]116bool get_formatstring (const text_t &key, const text_tmap &formatstringmap,
117 text_t &formatstring);
118bool get_formatstring (const text_t &key1, const text_t &key2,
119 const text_tmap &formatstringmap,
120 text_t &formatstring);
[442]121
[422]122text_t format_date (const text_t &date);
[347]123
[6645]124text_t remove_namespace(const text_t &meta_name);
125
[2001]126text_t iso639 (const text_t &langcode);
[1941]127
[2706]128text_t get_href (const text_t &link);
129
[1941]130text_t get_related_docs(const text_t& collection, recptproto* collectproto,
131 ResultDocInfo_t &docinfo, ostream& logout);
132
133
[347]134bool parse_formatstring (const text_t &formatstring, format_t *formatlistptr,
[649]135 text_tset &metadata, bool &getParents);
[347]136
[407]137
[347]138
[1443]139text_t get_formatted_string (const text_t& collection, recptproto* collectproto,
[1610]140 ResultDocInfo_t &docinfo, displayclass &disp,
[4906]141 format_t *formatlistptr, text_tmap &options,
[1443]142 ostream& logout);
[347]143
144#endif
[1443]145
146
Note: See TracBrowser for help on using the repository browser.