From f88759f4cbc55953d87c65d254ef54c68526a089 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Pinot?= Date: Thu, 29 Mar 2012 11:35:34 +0000 Subject: [PATCH] =?utf8?q?From:=20J=C3=A9r=C3=B4me=20Pinot=20=20Subject:=20[E-devel]=20[patch]=20eina=20doxygen=20doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Here is a patch that fix several links in the eina doxygen doc. Most of the problems come from unescaped special characters. SVN revision: 69746 --- legacy/eina/AUTHORS | 1 + legacy/eina/src/include/eina_clist.h | 2 +- legacy/eina/src/include/eina_inarray.h | 2 +- legacy/eina/src/include/eina_inlist.h | 4 ++-- legacy/eina/src/include/eina_simple_xml_parser.h | 14 +++++++------- legacy/eina/src/include/eina_tiler.h | 2 +- legacy/eina/src/include/eina_value.h | 6 +++--- 7 files changed, 16 insertions(+), 15 deletions(-) diff --git a/legacy/eina/AUTHORS b/legacy/eina/AUTHORS index 6091910..8b4b115 100644 --- a/legacy/eina/AUTHORS +++ b/legacy/eina/AUTHORS @@ -23,3 +23,4 @@ Sung W. Park Guillaume Friloux Jonas M. Gastal Raphael Kubo da Costa +Jérôme Pinot diff --git a/legacy/eina/src/include/eina_clist.h b/legacy/eina/src/include/eina_clist.h index 096a4b7..1a2d959 100644 --- a/legacy/eina/src/include/eina_clist.h +++ b/legacy/eina/src/include/eina_clist.h @@ -43,7 +43,7 @@ * * Elements of this list are members of the structs stored in the list * - * Advantages over @ref Eina_List and @ref Eina_Inlist: + * Advantages over @ref Eina_List and @ref Eina_Inlist : * - uses less memory (two machine words per item) * - allows removing items without knowing which list they're in using O(1) time * - no need to keep updating the head pointer as the list is changed diff --git a/legacy/eina/src/include/eina_inarray.h b/legacy/eina/src/include/eina_inarray.h index 079f1e3..7d0902c 100644 --- a/legacy/eina/src/include/eina_inarray.h +++ b/legacy/eina/src/include/eina_inarray.h @@ -130,7 +130,7 @@ * @skip int * @until eina_init * - * We then create the array much like we did on @ref eina_inarray_example_01: + * We then create the array much like we did on @ref eina_inarray_example_01 : * @until inarray_new * * The point were this example significantly differs from the first eina inline diff --git a/legacy/eina/src/include/eina_inlist.h b/legacy/eina/src/include/eina_inlist.h index cfb3159..d22328a 100644 --- a/legacy/eina/src/include/eina_inlist.h +++ b/legacy/eina/src/include/eina_inlist.h @@ -358,14 +358,14 @@ * It may be the case that someone needs to have some inlist nodes added to a * @ref Eina_List too. If this happens, the inlist nodes can be added to the * @ref Eina_List without any problems. This example demonstrates this case: - * @ref inlist_02_example_page + * @ref eina_inlist_02_example_page * * It's also possible to have some data that is part of two different inlists. * If this is the case, then it won't be possible to use the convenience macros * to both of the lists. It will be necessary to create a new set of macros that * will allow access to the second list node info. An example for this usage can * be found here: - * @ref inlist_03_example_page + * @ref eina_inlist_03_example_page * * List of examples: * @li @ref eina_inlist_01_example_page diff --git a/legacy/eina/src/include/eina_simple_xml_parser.h b/legacy/eina/src/include/eina_simple_xml_parser.h index 78660ef..e6571b0 100644 --- a/legacy/eina/src/include/eina_simple_xml_parser.h +++ b/legacy/eina/src/include/eina_simple_xml_parser.h @@ -119,15 +119,15 @@ struct _Eina_Simple_XML_Node_Data typedef enum _Eina_Simple_XML_Type { - EINA_SIMPLE_XML_OPEN = 0, /*!< */ - EINA_SIMPLE_XML_OPEN_EMPTY, /*!< */ - EINA_SIMPLE_XML_CLOSE, /*!< */ + EINA_SIMPLE_XML_OPEN = 0, /*!< \ */ + EINA_SIMPLE_XML_OPEN_EMPTY, /*!< \ */ + EINA_SIMPLE_XML_CLOSE, /*!< \ */ EINA_SIMPLE_XML_DATA, /*!< tag text data */ - EINA_SIMPLE_XML_CDATA, /*!< */ + EINA_SIMPLE_XML_CDATA, /*!< \ */ EINA_SIMPLE_XML_ERROR, /*!< error contents */ - EINA_SIMPLE_XML_PROCESSING, /*!< */ - EINA_SIMPLE_XML_DOCTYPE, /*!< */ + EINA_SIMPLE_XML_PROCESSING, /*!< \ \ */ + EINA_SIMPLE_XML_DOCTYPE, /*!< \ */ EINA_SIMPLE_XML_IGNORED /*!< whatever is ignored by parser, like whitespace */ } Eina_Simple_XML_Type; diff --git a/legacy/eina/src/include/eina_tiler.h b/legacy/eina/src/include/eina_tiler.h index 5272099..d7e1bc8 100644 --- a/legacy/eina/src/include/eina_tiler.h +++ b/legacy/eina/src/include/eina_tiler.h @@ -29,7 +29,7 @@ * * This is an example that illustrates how Eina_Tiler works for a given set of * rectangles. The rectangles must be given in the command line in the form: - * x++ + * \x\+\+\ * The example will show two panels, the first(input) will show the given * rectangles(in different colors) and in the seconds(output) it will show the * rectangles given by the tiler. The rectangles will be added one by one every diff --git a/legacy/eina/src/include/eina_value.h b/legacy/eina/src/include/eina_value.h index 341781f..d55135d 100644 --- a/legacy/eina/src/include/eina_value.h +++ b/legacy/eina/src/include/eina_value.h @@ -210,9 +210,9 @@ * * Next we have setting, this however requires not one but rather two functions, * the reason for this is because to be able to receive arguments of any type - * eina value uses @ref https://wikipedia.org/wiki/Variadic_functions "variadic - * functions", so we need a function to get the argument from a va_list and - * another to actually to the setting. + * eina value uses + * variadic functions, so we need a function to get the argument from a + * va_list and another to actually to the setting. * * Lets first look at the pset function which sets the received value to a * pointer: -- 2.7.4