From: gastal Date: Fri, 15 Jul 2011 18:35:45 +0000 (+0000) Subject: Eina: Making html tags in doc appear only in html doc. X-Git-Tag: 2.0_alpha~69^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21bf9c90e0349340e994cbb03660fa2b0f03057c;p=framework%2Fuifw%2Feina.git Eina: Making html tags in doc appear only in html doc. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@61412 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/include/eina_hash.h b/src/include/eina_hash.h index d03202e..e846242 100644 --- a/src/include/eina_hash.h +++ b/src/include/eina_hash.h @@ -184,7 +184,9 @@ * (argument of @ref eina_hash_new too). The following picture ilustrates the * basic idea: * + * @htmlonly * + * @endhtmlonly * @image latex 01_hash-table.eps * * Adding an element to the hash table is made of: diff --git a/src/include/eina_inlist.h b/src/include/eina_inlist.h index e97373e..4c8c80e 100644 --- a/src/include/eina_inlist.h +++ b/src/include/eina_inlist.h @@ -153,7 +153,9 @@ * The two lists, sharing some elements, can be represented by the following * picture: * - * + * @htmlonly + * + * @endhtmlonly * @image rtf eina_inlist-node_eg2-list-inlist.png * @image latex eina_inlist-node_eg2-list-inlist.eps width=\textwidth * @@ -227,7 +229,9 @@ * * And the resulting lists will be as follow: * - * + * @htmlonly + * + * @endhtmlonly * @image rtf eina_inlist-node_eg3-two-inlists.png * @image latex eina_inlist-node_eg3-two-inlists.eps width=\textwidth * diff --git a/src/include/eina_list.h b/src/include/eina_list.h index ad53ef6..de47560 100644 --- a/src/include/eina_list.h +++ b/src/include/eina_list.h @@ -43,8 +43,10 @@ * @until eina_init * Here we add a sequence of elements to our list. By using append we add * elements to the end of the list, so the list will look like this:@n + * @htmlonly * * Full-size + * @endhtmlonly * @image rtf eina_list_example_01_a.png * @image latex eina_list_example_01_a.eps width=\textwidth * @until roslin @@ -74,8 +76,10 @@ * far: * @until lampkin * With this additions our list now looks like this:@n + * @htmlonly * * Full-size + * @endhtmlonly * @image rtf eina_list_example_01_b.png * @image latex eina_list_example_01_b.eps width=\textwidth * @@ -245,8 +249,10 @@ * @ref Eina_List nodes keep references to the previous node, the next node, its * data and to an accounting structure. * + * @htmlonly * * Full-size + * @endhtmlonly * @image rtf eina_list.png * @image latex eina_list.eps width=5cm * @@ -1358,8 +1364,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-foreach.eps width=\textwidth * * It can be used to free list data, as in the following example: @@ -1414,8 +1422,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-reverse-foreach.eps width=\textwidth * * It can be used to free list data, as in the following example: @@ -1473,8 +1483,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-foreach-safe.eps width=\textwidth * * This macro can be used to free list nodes, as in the following example: @@ -1527,8 +1539,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-reverse-foreach-safe.eps width=\textwidth * * This macro can be used to free list nodes, as in the following example: @@ -1573,8 +1587,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-free.eps width=\textwidth * * If you do not need to release node data, it is easier to call #eina_list_free().