diff options
author | Robert Staudinger <robsta@gnome.org> | 2009-09-02 10:17:59 +0200 |
---|---|---|
committer | Robert Staudinger <robsta@gnome.org> | 2009-09-02 10:17:59 +0200 |
commit | 14ae603095af01a2ffd3fd9443018f62880b4507 (patch) | |
tree | 2a63af4bca7a73214fdf791dd605836ef81ee3b5 | |
parent | 8e48c7b87cc50cb43f00b7256c633a3c929c50d4 (diff) |
[doc] Split out CSS properties' docs into own section.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | ccss-doc/Makefile.am | 5 | ||||
-rw-r--r-- | ccss-doc/ccss-docs.sgml | 15 | ||||
-rw-r--r-- | ccss-doc/ccss-sections.txt | 67 | ||||
-rw-r--r-- | ccss-doc/ccss.hierarchy | 10 |
5 files changed, 58 insertions, 40 deletions
@@ -40,7 +40,6 @@ ccss-doc/ccss-undeclared.txt ccss-doc/ccss-undocumented.txt ccss-doc/ccss-unused.txt ccss-doc/ccss.args -ccss-doc/ccss.hierarchy ccss-doc/ccss.interfaces ccss-doc/ccss.prerequisites ccss-doc/ccss.signals diff --git a/ccss-doc/Makefile.am b/ccss-doc/Makefile.am index c951907..301559a 100644 --- a/ccss-doc/Makefile.am +++ b/ccss-doc/Makefile.am @@ -50,3 +50,8 @@ CLEANFILES += ccss-scan.* .PHONY : dist-hook-local endif +EXTRA_DIST = \ + $(DOC_MAIN_SGML_FILE) \ + ccss.hierarchy \ + $(NULL) + diff --git a/ccss-doc/ccss-docs.sgml b/ccss-doc/ccss-docs.sgml index 37c213a..78ecd37 100644 --- a/ccss-doc/ccss-docs.sgml +++ b/ccss-doc/ccss-docs.sgml @@ -91,19 +91,22 @@ TODO. </partintro> <chapter id="basic"> <title>Basic Usage</title> - &ccss_background_t; &ccss_block_t; - &ccss_border_t; - &ccss_border_image_t; - &ccss_color_t; &ccss_function_t; &ccss_grammar_t; &ccss_node_t; + &ccss_style_t; + &ccss_stylesheet_t; + </chapter> + <chapter id="properties"> + <title>CSS properties</title> + &ccss_background_t; + &ccss_border_t; + &ccss_border_image_t; + &ccss_color_t; &ccss_padding_t; &ccss_position_t; &ccss_property_t; - &ccss_style_t; - &ccss_stylesheet_t; </chapter> <chapter id="unstable"> <title>Unstable interfaces</title> diff --git a/ccss-doc/ccss-sections.txt b/ccss-doc/ccss-sections.txt index e5b6207..5f45a4f 100644 --- a/ccss-doc/ccss-sections.txt +++ b/ccss-doc/ccss-sections.txt @@ -131,39 +131,6 @@ ccss_node_init </SECTION> <SECTION> -<TITLE>ccss_style_t</TITLE> -<FILE>style</FILE> -ccss_style_t -ccss_style_destroy -ccss_style_get_double -ccss_style_get_property -ccss_style_set_property -ccss_style_get_string -ccss_style_hash -ccss_style_iterator_f -ccss_style_foreach -ccss_style_dump -</SECTION> - -<SECTION> -<TITLE>ccss_stylesheet_t</TITLE> -<FILE>stylesheet</FILE> -ccss_stylesheet_t -ccss_stylesheet_iterator_f -ccss_stylesheet_precedence_t -ccss_stylesheet_destroy -ccss_stylesheet_reference -ccss_stylesheet_get_reference_count -ccss_stylesheet_add_from_buffer -ccss_stylesheet_add_from_file -ccss_stylesheet_foreach -ccss_stylesheet_query_type -ccss_stylesheet_query -ccss_stylesheet_unload -ccss_stylesheet_dump -</SECTION> - -<SECTION> <TITLE>ccss_padding_t</TITLE> <FILE>padding</FILE> ccss_padding_t @@ -206,5 +173,39 @@ ccss_property_serialize_f ccss_property_generic_t ccss_property_init ccss_property_parse_state +ccss_style_interpret_property +</SECTION> + +<SECTION> +<TITLE>ccss_style_t</TITLE> +<FILE>style</FILE> +ccss_style_t +ccss_style_destroy +ccss_style_get_double +ccss_style_get_property +ccss_style_set_property +ccss_style_get_string +ccss_style_hash +ccss_style_iterator_f +ccss_style_foreach +ccss_style_dump +</SECTION> + +<SECTION> +<TITLE>ccss_stylesheet_t</TITLE> +<FILE>stylesheet</FILE> +ccss_stylesheet_t +ccss_stylesheet_iterator_f +ccss_stylesheet_precedence_t +ccss_stylesheet_destroy +ccss_stylesheet_reference +ccss_stylesheet_get_reference_count +ccss_stylesheet_add_from_buffer +ccss_stylesheet_add_from_file +ccss_stylesheet_foreach +ccss_stylesheet_query_type +ccss_stylesheet_query +ccss_stylesheet_unload +ccss_stylesheet_dump </SECTION> diff --git a/ccss-doc/ccss.hierarchy b/ccss-doc/ccss.hierarchy new file mode 100644 index 0000000..b5e26b1 --- /dev/null +++ b/ccss-doc/ccss.hierarchy @@ -0,0 +1,10 @@ +ccss_property_t + ccss_background_t + ccss_border_t + ccss_border_image_t + ccss_border_style_t + ccss_border_width_t + ccss_color_t + ccss_padding_t + ccss_property_generic_t + |