summaryrefslogtreecommitdiffstats
path: root/rules/libcroco.in
blob: ab709be2f1e0a9bc6a1e42f697c9d8ba18e96b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## SECTION=multimedia_gtk

menuconfig LIBCROCO
	tristate
	prompt "libcroco                      "
	select LIBXML2
	select LIBXML2_SAX1
	select GLIB
	help
	  a generic Cascading Style Sheet (CSS) parsing and
	  manipulation toolkit

	  Services provided by Libcroco:

	  * A parser module that provides o A SAC like api. SAC stands
            for Simple Api for CSS. SAC is an event driven api which
            resembles SAX in the xml world.

	  * A CSSOM like api. CSSOM stands for Cascading Style Sheet
            Object Model.

	    The libcroco parser implements the CSS Level 2
	    specification, the CSS forward compatibility rules and the
	    CSS cascading rules.

	  * A CSS2 selection engine Given an xml element node (that
            obviously comes from an xml document) and a stylesheet
            cascade, the Libcroco selection engine can evaluate the
            css selectors of the cascade and return the style
            properties associated to the xml element node.

	  Note that the xml manipulation toolkit used by the libcroco
	    selection engine at the moment is libxml2.

if LIBCROCO

config LIBCROCO_CHECKS
	bool
	prompt "Enable runtime checks"
	help
	  FIXME

endif