611d9fcd2522d30714d6651c0ae577033680f7f9
[idzebra-moved-to-github.git] / test / api / rankingrecords.h
1 /* This file is part of the Zebra server.
2    Copyright (C) 1995-2008 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 /** rankingrecords.h - some test data for t9, and t10 */
21
22 const char *recs[] = {
23         "<gils>\n"
24         "  <title>The first title</title>\n"
25         "  <abstract> \n"
26         "    The first common word is the: the the the \n"
27         "    The second common word is word \n"
28         "    but all have the foo bar \n"
29         "  </abstract>\n"
30         "</gils>\n",
31
32         "<gils>\n"
33         "  <title>The second title</title>\n"
34         "  <abstract> \n"
35         "    The first common word is the: the \n"
36         "    The second common word is foo: foo foo \n"
37         "    but all have the foo bar \n"
38         "  </abstract>\n"
39         "</gils>\n",
40
41         "<gils>\n"
42         "  <title>The third title</title>\n"
43         "  <abstract> \n"
44         "    The first common word is the: the \n"
45         "    The third common word is bar: bar \n"
46         "    but all have the foo bar \n"
47         "  </abstract>\n"
48         "</gils>\n",
49     
50         0 };
51
52
53 /*
54  * Local variables:
55  * c-basic-offset: 4
56  * indent-tabs-mode: nil
57  * End:
58  * vim: shiftwidth=4 tabstop=8 expandtab
59  */
60