blob: d08f6eb3aac58ba5e998a859a36681056ab314ad (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
2003-03-20 Gaël Chamoulaud <strider@freespiders.org>
* Makefile.am (SUBDIRS): added man page for croco-config
2003-03-20 Dom Lachowicz <cinamod@hotmail.com>
* COPYING: replace with contents from COPYING.LIB (GNU LGPL)
2003-03-20 Gaël Chamoulaud <strider@freespiders.org>
* configure.in: added conditional compilation of the unit tests
in tests/ subdir
* tests/Makefile.am (INCLUDES): conditional compilation of the unit tests
in tests/ subdir
2003-03-19 Gaël Chamoulaud <strider@freespiders.org>
* Relicense from GPL -> LGPL
2003-03-18 Gaël Chamoulaud <strider@freespiders.org>
* configure.in: fixed a configure bug. Make sure to properly
check the libxml2 versions.
2003-03-18 Dom Lachowicz <cinamod@hotmail.com>
* autogen.sh: Use gnome-autogen (cvs co gnome-common). Creates libtool
and other things properly
* configure.in: better check for LIBXML2, conditional compilation of
the SELENG module
* tests/Makefile.am: disable test5 until I can think of a better
work-around
2003-03-16 dodji <dodji@seketeli.org>
* src/cr-style.c (set_border_x_style_from_value):
new method added to gather 'border_top_style' ... 'border_left_style'
properties value from the css stylesheet.
(set_border_x_width_from_value): completed this function
to properly gather 'border_top_width' ... 'border_left_width'
properties values from the css stylesheet.
* src/cr-num.c (cr_num_set): new method added.
2003-03-15 dodji <dodji@seketeli.org>
* src/cr-utils.[ch]
added some new helper functions/did some cleanups.
* src/cr-tknzr.[ch]:
made the necessary modifs implied by the new CRNum/CRTerm type
system.
* src/cr-term.[ch]:
big cleanup of the CRTerm/CRNum typing system.
* src/cr-style.[ch]:
went forward in the style data structure population code.
* src/rgb.[ch]:
made the necessary modifs implied by the new CRNum type
system
* src/cr-parser.c:
made the necessary modifs implied by the new CRNum type
system
* src/cr-num.[ch]: did some big changes for a better
handling of numeric types.
2003-03-05 Dodji <dodji@seketeli.org>
* src/cr-parser.c (cr_parser_new_from_buf):
new method to parse stylesheets from in memory buffers.
2003-03-04 Dodji <dodji@seketeli.og>
* src/cr-input.c (cr_input_new_from_buf):
added this new method to instanciate an input stream from
an in memory buffer.
(cr_input_new_from_uri): modified this method to make it
use the new cr_input_new_from_buf() method.
2003-03-03 Dodji <dodji@seketeli.org>
* tests/README-description.txt:
added this test description file in the project.
* src/cr-sel-eng.c (cr_sel_eng_get_matched_rulesets_real):
renamed the function cr_sel_eng_get_rulesets_real() into
this new one. Modified it memory management model so that
1/ it does not allocate it output array
2/ caller can use it in a incremental way and get the rulesets
chunck by chunk.
(cr_sel_eng_sel_get_matched_rulesets):
added this public interface based on the private interface
cr_sel_eng_get_matched_rulesets_real().
2003-03-02 Dodji <dodji@seketeli.org>
* src/cr-sel-eng.c (cr_sel_eng_get_rulesets_real):
started to code an implementation of a ruleset "requester".
Still have to debug all this.
2002-09-25 dodji <dodji@seketeli.org>
* src/cr-utils.h: updated this file to define stuffs needed by
other modules.
* src/cr-parser-input.c: started to write down code to handle
the stacked parser input.
|