aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-07 14:25:54 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-07 14:25:54 +0000
commitb996cee2f79bb0cde8e7f8b4aef0f064ee19d005 (patch)
treeeb8a446270528d331a06cca44cc002989b2c8b54
parent218c292077a3a0eadc142dce2de4e5c10c8604ad (diff)
downloadgnunet-gtk-b996cee2f79bb0cde8e7f8b4aef0f064ee19d005.tar.gz
gnunet-gtk-b996cee2f79bb0cde8e7f8b4aef0f064ee19d005.zip
-update ignores
-rw-r--r--src/fs/gnunet-fs-gtk_anonymity-widgets.c2
-rw-r--r--src/fs/gnunet-fs-gtk_anonymity-widgets.h2
-rw-r--r--src/fs/gnunet-fs-gtk_common.c4
-rw-r--r--src/fs/gnunet-fs-gtk_common.h24
-rw-r--r--src/setup/gnunet-setup-datacache-config.c2
-rw-r--r--src/setup/gnunet-setup-datacache-plugins.c2
-rw-r--r--src/setup/gnunet-setup-datastore-config.c2
-rw-r--r--src/setup/gnunet-setup-datastore-plugins.c2
-rw-r--r--src/setup/gnunet-setup-hostlist-editing.c2
-rw-r--r--src/setup/gnunet-setup-hostlist-server.c2
-rw-r--r--src/setup/gnunet-setup-namestore-config.c2
-rw-r--r--src/setup/gnunet-setup-namestore-plugins.c2
-rw-r--r--src/setup/gnunet-setup-transport-plugins.c2
-rw-r--r--src/setup/gnunet-setup.c2
-rw-r--r--src/setup/gnunet-setup.h4
15 files changed, 28 insertions, 28 deletions
diff --git a/src/fs/gnunet-fs-gtk_anonymity-widgets.c b/src/fs/gnunet-fs-gtk_anonymity-widgets.c
index 72ada5fa..e52f8a1b 100644
--- a/src/fs/gnunet-fs-gtk_anonymity-widgets.c
+++ b/src/fs/gnunet-fs-gtk_anonymity-widgets.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/fs/gnunet-fs-gtk_anonymtiy-widgets.c 22 * @file src/fs/gnunet-fs-gtk_anonymity-widgets.c
23 * @author Christian Grothoff 23 * @author Christian Grothoff
24 * @brief operations to manage user's anonymity level selections 24 * @brief operations to manage user's anonymity level selections
25 */ 25 */
diff --git a/src/fs/gnunet-fs-gtk_anonymity-widgets.h b/src/fs/gnunet-fs-gtk_anonymity-widgets.h
index b5770fa4..410b11d6 100644
--- a/src/fs/gnunet-fs-gtk_anonymity-widgets.h
+++ b/src/fs/gnunet-fs-gtk_anonymity-widgets.h
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/fs/gnunet-fs-gtk_anonymtiy-widgets.h 22 * @file src/fs/gnunet-fs-gtk_anonymity-widgets.h
23 * @author Christian Grothoff 23 * @author Christian Grothoff
24 * @brief operations to manage user's anonymity level selections 24 * @brief operations to manage user's anonymity level selections
25 */ 25 */
diff --git a/src/fs/gnunet-fs-gtk_common.c b/src/fs/gnunet-fs-gtk_common.c
index 4d72dd55..c8570833 100644
--- a/src/fs/gnunet-fs-gtk_common.c
+++ b/src/fs/gnunet-fs-gtk_common.c
@@ -29,8 +29,8 @@
29#include "gnunet-fs-gtk_event-handler.h" 29#include "gnunet-fs-gtk_event-handler.h"
30 30
31/** 31/**
32 * Converts metadata specified by @data of size @data_len 32 * Converts metadata specified by @a data of size @a data_len
33 * and saved in format @format to UTF-8 encoded string. 33 * and saved in format @a format to UTF-8 encoded string.
34 * Works only for C-string and UTF8 metadata formats 34 * Works only for C-string and UTF8 metadata formats
35 * (returns NULL for everything else). 35 * (returns NULL for everything else).
36 * Verifies UTF-8 strings. 36 * Verifies UTF-8 strings.
diff --git a/src/fs/gnunet-fs-gtk_common.h b/src/fs/gnunet-fs-gtk_common.h
index cab261b2..a50367e5 100644
--- a/src/fs/gnunet-fs-gtk_common.h
+++ b/src/fs/gnunet-fs-gtk_common.h
@@ -67,12 +67,12 @@ GNUNET_FS_GTK_get_expiration_time (GtkSpinButton * spin);
67 67
68 68
69/** 69/**
70 * mmap the given file and run the GNUNET_FS_directory_list_contents 70 * mmap the given file and run the #GNUNET_FS_directory_list_contents
71 * function on it. 71 * function on it.
72 * 72 *
73 * @param filename name with the directory 73 * @param filename name with the directory
74 * @param dep function to call on each entry 74 * @param dep function to call on each entry
75 * @param dep_cls closure for 'dep' 75 * @param dep_cls closure for @a dep
76 * @return GNUNET_OK on success 76 * @return GNUNET_OK on success
77 */ 77 */
78int 78int
@@ -106,17 +106,17 @@ GNUNET_FS_GTK_add_meta_data_to_list_store (void *cls, const char *plugin_name,
106 106
107 107
108/** 108/**
109 * Converts metadata specified by #data of size #data_len 109 * Converts metadata specified by @a data of size @a data_len
110 * and saved in format #format to UTF-8 encoded string. 110 * and saved in format @a format to UTF-8 encoded string.
111 * Works only for C-string and UTF8 metadata formats 111 * Works only for C-string and UTF8 metadata formats
112 * (returns NULL for everything else). 112 * (returns NULL for everything else).
113 * Verifies UTF-8 strings. 113 * Verifies UTF-8 strings.
114 * 114 *
115 * @param format format of the #data 115 * @param format format of the @a data
116 * @param data data to convert 116 * @param data data to convert
117 * @param data_len length of the data buffer (in bytes) 117 * @param data_len length of the @a data buffer (in bytes)
118 * @return NULL if can't be converted, allocated string otherwise, 118 * @return NULL if can't be converted, allocated string otherwise,
119 * freeable with GNUNET_free* (). 119 * freeable with GNUNET_free().
120 */ 120 */
121char * 121char *
122GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format, 122GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
@@ -129,13 +129,13 @@ GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
129 * the respective meta data. 129 * the respective meta data.
130 * 130 *
131 * @param meta meta data to inspect 131 * @param meta meta data to inspect
132 * @param is_a_dup is set to GNUNET_YES if the result is a dup, and there was 132 * @param is_a_dup is set to #GNUNET_YES if the result is a dup, and there was
133 * no description to be found. GNUNET_NO otherwise. 133 * no description to be found. #GNUNET_NO otherwise.
134 * @return description of the result in utf-8, never NULL 134 * @return description of the result in utf-8, never NULL
135 */ 135 */
136char * 136char *
137GNUNET_FS_GTK_get_description_from_metadata ( 137GNUNET_FS_GTK_get_description_from_metadata (const struct GNUNET_CONTAINER_MetaData *meta,
138 const struct GNUNET_CONTAINER_MetaData *meta, int *is_a_dup); 138 int *is_a_dup);
139 139
140 140
141/** 141/**
@@ -155,7 +155,7 @@ GNUNET_FS_GTK_handle_uri (const struct GNUNET_FS_Uri *uri,
155 * 155 *
156 * @param rr row reference 156 * @param rr row reference
157 * @param iter pointer to an iter structure to fill 157 * @param iter pointer to an iter structure to fill
158 * @return GNUNET_OK if iter was filled, GNUNET_SYSERR otherwise 158 * @return #GNUNET_OK if iter was filled, #GNUNET_SYSERR otherwise
159 */ 159 */
160int 160int
161GNUNET_GTK_get_iter_from_reference (GtkTreeRowReference *rr, 161GNUNET_GTK_get_iter_from_reference (GtkTreeRowReference *rr,
diff --git a/src/setup/gnunet-setup-datacache-config.c b/src/setup/gnunet-setup-datacache-config.c
index e468983b..8f7ffc02 100644
--- a/src/setup/gnunet-setup-datacache-config.c
+++ b/src/setup/gnunet-setup-datacache-config.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-datacache-config.c 22 * @file src/setup/gnunet-setup-datacache-config.c
23 * @brief test datacache configuration 23 * @brief test datacache configuration
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-datacache-plugins.c b/src/setup/gnunet-setup-datacache-plugins.c
index e342a84a..ecc16048 100644
--- a/src/setup/gnunet-setup-datacache-plugins.c
+++ b/src/setup/gnunet-setup-datacache-plugins.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-datacache-plugins.c 22 * @file src/setup/gnunet-setup-datacache-plugins.c
23 * @brief (de)sensitize transport plugin buttons based on plugin availability 23 * @brief (de)sensitize transport plugin buttons based on plugin availability
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-datastore-config.c b/src/setup/gnunet-setup-datastore-config.c
index d4f94461..de160be5 100644
--- a/src/setup/gnunet-setup-datastore-config.c
+++ b/src/setup/gnunet-setup-datastore-config.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-datastore-config.c 22 * @file src/setup/gnunet-setup-datastore-config.c
23 * @brief test datastore configuration 23 * @brief test datastore configuration
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-datastore-plugins.c b/src/setup/gnunet-setup-datastore-plugins.c
index 46d95ef8..7e66495b 100644
--- a/src/setup/gnunet-setup-datastore-plugins.c
+++ b/src/setup/gnunet-setup-datastore-plugins.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-datastore-plugins.c 22 * @file src/setup/gnunet-setup-datastore-plugins.c
23 * @brief (de)sensitize datastore plugin buttons based on plugin availability 23 * @brief (de)sensitize datastore plugin buttons based on plugin availability
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-hostlist-editing.c b/src/setup/gnunet-setup-hostlist-editing.c
index b37cc60d..ecf503ed 100644
--- a/src/setup/gnunet-setup-hostlist-editing.c
+++ b/src/setup/gnunet-setup-hostlist-editing.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-hostlist-editing.c 22 * @file src/setup/gnunet-setup-hostlist-editing.c
23 * @brief allow editing of the hostlist 23 * @brief allow editing of the hostlist
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-hostlist-server.c b/src/setup/gnunet-setup-hostlist-server.c
index 7aba103d..122f8b7b 100644
--- a/src/setup/gnunet-setup-hostlist-server.c
+++ b/src/setup/gnunet-setup-hostlist-server.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-hostlist-server.c 22 * @file src/setup/gnunet-setup-hostlist-server.c
23 * @brief (de)sensitize UI elements related to hostlist server configuration 23 * @brief (de)sensitize UI elements related to hostlist server configuration
24 * based on the build configuration of the hostlist daemon 24 * based on the build configuration of the hostlist daemon
25 * @author Christian Grothoff 25 * @author Christian Grothoff
diff --git a/src/setup/gnunet-setup-namestore-config.c b/src/setup/gnunet-setup-namestore-config.c
index f890a864..3b881f36 100644
--- a/src/setup/gnunet-setup-namestore-config.c
+++ b/src/setup/gnunet-setup-namestore-config.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-namestore-config.c 22 * @file src/setup/gnunet-setup-namestore-config.c
23 * @brief test datastore configuration 23 * @brief test datastore configuration
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-namestore-plugins.c b/src/setup/gnunet-setup-namestore-plugins.c
index 9a69998c..d90c4ac5 100644
--- a/src/setup/gnunet-setup-namestore-plugins.c
+++ b/src/setup/gnunet-setup-namestore-plugins.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-namestore-plugins.c 22 * @file src/setup/gnunet-setup-namestore-plugins.c
23 * @brief (de)sensitize namestore plugin buttons based on plugin availability 23 * @brief (de)sensitize namestore plugin buttons based on plugin availability
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup-transport-plugins.c b/src/setup/gnunet-setup-transport-plugins.c
index d9107f43..86edbcc1 100644
--- a/src/setup/gnunet-setup-transport-plugins.c
+++ b/src/setup/gnunet-setup-transport-plugins.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup-transport-plugins.c 22 * @file src/setup/gnunet-setup-transport-plugins.c
23 * @brief (de)sensitize transport plugin buttons based on plugin availability 23 * @brief (de)sensitize transport plugin buttons based on plugin availability
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/setup/gnunet-setup.c b/src/setup/gnunet-setup.c
index 6f9c6ad6..b6662878 100644
--- a/src/setup/gnunet-setup.c
+++ b/src/setup/gnunet-setup.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2010, 2011, 2012 Christian Grothoff (and other contributing authors) 3 (C) 2010, 2011, 2012, 2013 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/setup/gnunet-setup.h b/src/setup/gnunet-setup.h
index ef5a1bdb..cf23d474 100644
--- a/src/setup/gnunet-setup.h
+++ b/src/setup/gnunet-setup.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2010 Christian Grothoff (and other contributing authors) 3 (C) 2010, 2013 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/gnunet-setup.h 22 * @file src/setup/gnunet-setup.h
23 * @brief globals 23 * @brief globals
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */