/[suikacvs]/messaging/manakai/lib/Message/DOM/ChangeLog
Suika

Diff of /messaging/manakai/lib/Message/DOM/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.257 by wakaba, Sun Jul 29 08:31:14 2007 UTC revision 1.292 by wakaba, Mon Jan 14 13:56:35 2008 UTC
# Line 1  Line 1 
1    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CSSStyleDeclaration.pm (AUTOLOAD): DOM attributes reflecting
4            shorthand properties did croak (fixed but still they does not
5            return correct result - they need to be fixed later).
6    
7            * Element.pm (query_selector, query_selector_all): Prototypes
8            were missing.
9    
10    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
11    
12            * Window.pm (___reset_css): Typo fixed.
13    
14    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
15    
16            * CSSStyleDeclaration.pm: The classes now explicitly implement
17            the |CSS2Properties| interface.
18            (@{}, TIEARRAY, FETCH, FETCHSIZE, EXISTS, item, length): Implemented.
19    
20    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
21    
22            * CSSStyleDeclaration.pm (attributes reflecting CSS properties):
23            Return an empty string if no value is assigned to the property.  Insert
24            a SPACE before '!' for compatibility with Firefox.
25    
26    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
27    
28            * CSSRule.pm (css_text): Trailing newline character is removed
29            to avoid double empty lines in CSSStyleSheet->css_text.
30            (selector_text): Namespace support is fixed.
31    
32            * CSSStyleSheet.pm (___new): Now it accepts |_nsmap| option.
33    
34    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
35    
36            * CSSRule.pm (selector_text): Use |serialize_selector_text|
37            to get better result.
38    
39    2008-01-13  Wakaba  <wakaba@suika.fam.cx>
40    
41            * Window.pm: New Perl module.
42    
43            * Document.pm (default_view): Implemented.
44    
45            * Element.pm (current_style): Implemented.
46    
47    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
48    
49            * CSSStyleDeclaration.pm (css_text): Allow to shorten a complete
50            set of longhand properties.
51            (get_property_priority): Implemented.
52            (CSSComputedStyleDeclaration AUTOLOAD): Implemented for reflecting
53            attributes.
54    
55    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
56    
57            * CSSStyleDeclaration.pm (css_text): Allow |{compute_multiple}|
58            as well as |{compute}| as a way to filter out longhand
59            properties.  Sort properties by names for readability.
60    
61    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
62    
63            * CSSStyleDeclaration.pm (css_text): Output |undef| property
64            information for debugging.
65    
66            * CSSStyleSheet.pm (manakai_base_uri): New attribute.
67    
68    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
69    
70            * CSSStyleDeclaration.pm (CSSComputedStyleDeclaration): New class.
71    
72    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
73    
74            * SelectorsAPI.pm, Document.pm (___query_selector_all): New internal
75            method.
76    
77    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
78    
79            * SelectorsAPI.pm: Make simple-selector-sequence-matching
80            an independent function.
81    
82    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
83    
84            * CSSStyleDeclaration.pm (AUTOLOAD): Getter for attributes
85            reflecting CSS property is implemented.
86            (css_text): Getter is implemented.
87    
88    2007-12-24  Wakaba  <wakaba@suika.fam.cx>
89    
90            * CSSRule.pm (selector_text): Ad hoc support for namespace prefixes.
91            (CSSNamespaceRule.css_text): Getter implemented.
92    
93            * CSSStyleSheet.pm (manakai_is_default_namespace,
94            manakai_lookup_namespace_prefix): New methods.
95    
96    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
97    
98            * CSSRule.pm (@charset.css_text): Implemented.
99    
100    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
101    
102            * CSSRule.pm (type, css_text): Typo fixed.
103            (____new): s/_selector/_selectors/g;
104            (CSSStyleRule.css_text, selectors_text): Ad hoc implementation.
105    
106            * CSSStyleDeclaration.pm (css_text): Ad hoc implementation.
107    
108            * CSSStyleSheet.pm (new): s/new/____new/.
109            (css_text): New attribute.
110    
111    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
112    
113            * MediaList.pm: New placeholder for a CSSOM interface.
114    
115            * CSSRule.pm, CSSStyleSheet.pm: Implementing the initial
116            setting of owner* and parent* attributes; support
117            for the |delete_rule| method.
118    
119    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
120    
121            * CSSStyleSheet.pm, CSSRule.pm, CSSRuleList.pm, CSSStyleDeclaration.pm:
122            First version of CSSOM implementation.
123    
124    2007-11-18  Wakaba  <wakaba@suika.fam.cx>
125    
126            * Document.pm, Entity.pm (manakai_has_bom,
127            manakai_charset): New attributes.
128    
129    2007-11-11  Wakaba  <wakaba@suika.fam.cx>
130    
131            * Document.pm, Element.pm (inner_html): Use |Whatpm::HTML::Serializer|
132            for getter.
133    
134    2007-10-27  Wakaba  <wakaba@suika.fam.cx>
135    
136            * Event.pm (init_event, init_event_ns, init_custom_event_ns):
137            The |namespaceURI| attribute was not set correctly.
138    
139            * DOMEvents.dis: Removed.
140    
141    2007-10-08  Wakaba  <wakaba@suika.fam.cx>
142    
143            * Event.pm, EventTarget.pm, EventTargetNode.pm,
144            EventException.pm: Implemented (but not tested!).
145    
146            * DOMException.pm (MALFORMED_EVENT_TYPE_ERR,
147            EVENT_INTERFACE_NOT_SUPPORTED_ERR, EXTERNAL_EVENT_ERR): New
148            error subtypes.
149    
150            * DOMImplementation.pm ($HasFeature): The |Event| feature,
151            version |3.0|, is added.
152    
153            * Document.pm, Node.pm: Event attributes and
154            methods are implemented.
155    
156    2007-10-07  Wakaba  <wakaba@suika.fam.cx>
157    
158            * SelectorsAPI.pm ($get_elements_by_selectors): Receive
159            an additional argument for "current element".
160            Support for |-manakai-current| and |-manakai-current(/s/)|
161            pseudo-classes.
162    
163    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
164    
165            * SelectorsAPI.pm: Attribute selectors are implemented.
166    
167    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
168    
169            * SelectorsAPI.pm (ElementSelector): Implemented.
170    
171    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
172    
173            * SelectorsAPI.pm (query_selector): Implemented.
174    
175    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
176    
177            * SelectorsAPI.pm ($get_elements_by_selectors): Created
178            from most part of |query_selector_all|.
179    
180    2007-09-24  Wakaba  <wakaba@suika.fam.cx>
181    
182            * DOMException.pm (SYNTAX_ERR): New subtype is defined.
183            (UNDECLARED_PREFIX_ERR): New subtype is defined.
184    
185            * Document.pm (Document): Implements the |DocumentSelector|
186            interface.
187    
188            * Element.pm (Element): Implements the |ElementSelector|
189            interface.
190    
191            * Node.pm (Node): Implements the |NSResolver| interface.
192    
193            * SelectorsAPI.pm: Now (hopefully) conform to the Selectors
194            API Editor's Draft (only |query_selector_all| on |Document|,
195            with limited selectors syntax support, though).
196    
197    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
198    
199            * SelectorsAPI.pm: Namespaced type/universal selectors
200            are supported.
201    
202    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
203    
204            * SelectorsAPI.pm: New Perl module.
205    
206    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
207    
208            * Node.pm (manakai_language): Return the |manakai_language|
209            of the |owner_document|, if any, as defined in the spec.
210    
211    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
212    
213            * Makefile: Relative path was wrong.
214    
215    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
216    
217            * HTML/: New directory.
218    
219            * Element.pm (create_element_ns): Return object implementing
220            the |HTMLElement| interface for HTML elements.
221    
222    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
223    
224            * DOMImplementation.pod: New documentation.
225    
226            * Makefile: Make HTML document.
227    
228  2007-07-29  Wakaba  <wakaba@suika.fam.cx>  2007-07-29  Wakaba  <wakaba@suika.fam.cx>
229    
230          * XDoctype.dis, XDoctype.pm: Removed.          * XDoctype.dis, XDoctype.pm: Removed.
231    
232          * CharacterData.pm: Renamed from DOMCharacterData.pm.          * CharacterData.pm: Renamed from DOMCharacterData.pm.
233    
234          * Document.pm: Renaemd from DOMDocument.pm.          * Document.pm: Renamed from DOMDocument.pm.
235    
236          * Element.pm: Renamed from DOMElement.pm          * Element.pm: Renamed from DOMElement.pm
237    

Legend:
Removed from v.1.257  
changed lines
  Added in v.1.292

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24