OSDN Git Service

Refactor API to facilitate implementation of GUI ListView hooks.
[mingw/mingw-get.git] / src / pkgkeys.c
1 /*
2  * pkgkeys.c
3  *
4  * $Id$
5  *
6  * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
7  * Copyright (C) 2010, MinGW Project
8  *
9  *
10  * Implementation of the global definitions for the string constants
11  * which are used as keys in the XML database.
12  *
13  *
14  * This is free software.  Permission is granted to copy, modify and
15  * redistribute this software, under the provisions of the GNU General
16  * Public License, Version 3, (or, at your option, any later version),
17  * as published by the Free Software Foundation; see the file COPYING
18  * for licensing details.
19  *
20  * Note, in particular, that this software is provided "as is", in the
21  * hope that it may prove useful, but WITHOUT WARRANTY OF ANY KIND; not
22  * even an implied WARRANTY OF MERCHANTABILITY, nor of FITNESS FOR ANY
23  * PARTICULAR PURPOSE.  Under no circumstances will the author, or the
24  * MinGW Project, accept liability for any damages, however caused,
25  * arising from the use of this software.
26  *
27  */
28 const char *alias_key               =   "alias";
29 const char *application_key         =   "application";
30 const char *catalogue_key           =   "catalogue";
31 const char *class_key               =   "class";
32 const char *component_key           =   "component";
33 const char *defaults_key            =   "defaults";
34 const char *description_key         =   "description";
35 const char *dirname_key             =   "dir";
36 const char *download_key            =   "download";
37 const char *download_host_key       =   "download-host";
38 const char *eq_key                  =   "eq";
39 const char *filename_key            =   "file";
40 const char *ge_key                  =   "ge";
41 const char *gt_key                  =   "gt";
42 const char *id_key                  =   "id";
43 const char *installed_key           =   "installed";
44 const char *issue_key               =   "issue";
45 const char *le_key                  =   "le";
46 const char *lt_key                  =   "lt";
47 const char *manifest_key            =   "manifest";
48 const char *mirror_key              =   "mirror";
49 const char *modified_key            =   "modified";
50 const char *name_key                =   "name";
51 const char *package_key             =   "package";
52 const char *package_collection_key  =   "package-collection";
53 const char *package_list_key        =   "package-list";
54 const char *pathname_key            =   "path";
55 const char *profile_key             =   "profile";
56 const char *reference_key           =   "references";
57 const char *release_key             =   "release";
58 const char *repository_key          =   "repository";
59 const char *requires_key            =   "requires";
60 const char *source_key              =   "source";
61 const char *subsystem_key           =   "subsystem";
62 const char *sysmap_key              =   "system-map";
63 const char *sysroot_key             =   "sysroot";
64 const char *tarname_key             =   "tarname";
65 const char *title_key               =   "title";
66 const char *uri_key                 =   "uri";
67
68 /* Some standard values, which may be associated with certain
69  * of the above keys.
70  */
71 const char *value_no                =   "no";
72 const char *value_none              =   "none";
73 const char *value_unknown           =   "<<<unknown>>>";
74 const char *value_virtual           =   "virtual";
75 const char *value_yes               =   "yes";
76
77 /* $RCSfile$: end of file */