/[MITgcm]/mitgcm.org/devel/buildweb/pkg/swish-e/src/methods.c
ViewVC logotype

Contents of /mitgcm.org/devel/buildweb/pkg/swish-e/src/methods.c

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Fri Sep 20 19:47:29 2002 UTC (22 years, 10 months ago) by adcroft
Branch: Import, MAIN
CVS Tags: baseline, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/plain
Error occurred while calculating annotation data.
Importing web-site building process.

1 /*
2 ** methods.c
3 */
4
5 #include "swish.h"
6
7 #ifdef ALLOW_FILESYSTEM_INDEXING_DATA_SOURCE
8 extern struct _indexing_data_source_def FileSystemIndexingDataSource;
9 #endif
10
11 #ifdef ALLOW_HTTP_INDEXING_DATA_SOURCE
12 extern struct _indexing_data_source_def HTTPIndexingDataSource;
13 #endif
14
15 #ifdef ALLOW_EXTERNAL_PROGRAM_DATA_SOURCE
16 extern struct _indexing_data_source_def ExternalProgramDataSource;
17 #endif
18
19
20 struct _indexing_data_source_def *data_sources[] = {
21
22 #ifdef ALLOW_FILESYSTEM_INDEXING_DATA_SOURCE
23 &FileSystemIndexingDataSource,
24 #endif
25
26 #ifdef ALLOW_HTTP_INDEXING_DATA_SOURCE
27 &HTTPIndexingDataSource,
28 #endif
29
30 #ifdef ALLOW_EXTERNAL_PROGRAM_DATA_SOURCE
31 &ExternalProgramDataSource,
32 #endif
33
34 0
35 };

  ViewVC Help
Powered by ViewVC 1.1.22