/[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.246 by wakaba, Sat Jul 14 10:28:52 2007 UTC revision 1.297 by wakaba, Sun Feb 3 06:01:20 2008 UTC
# Line 1  Line 1 
1    2008-02-03  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CSSStyleDeclaration.pm ($serialize_value): Support
4            for new value types.
5    
6    2008-02-02  Wakaba  <wakaba@suika.fam.cx>
7    
8            * CSSStyleDeclaration.pm ($serialize_value): New (was
9            part of Whatpm::CSS::Parser as $default_serializer).
10            Use it instead of old 'serialize' parameter of CSS
11            property definition.
12    
13    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
14    
15            * CSSStyleDeclaration.pm (css_text): Prepend | ! | before
16            the priority token if any.
17            (get_property_priority): Shorthand case implemented.
18    
19    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
20    
21            * CSSStyleDeclaration.pm: Use |serialize_shorthand|
22            and |serialize_multiple| to serialize shorthand properties
23            in reflecting attributes.  Return value of
24            the |serialzie_multiple| function has been changed.
25            (non-computed css_text): Sort by property names.
26    
27    2008-01-24  Wakaba  <wakaba@suika.fam.cx>
28    
29            * Window.pm (manakai_get_computed_style): Renamed
30            from |get_computed_style|.
31    
32            * Element.pm (manakai_computed_style): Renamed from |current_style|.
33    
34    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
35    
36            * CSSStyleDeclaration.pm (AUTOLOAD): DOM attributes reflecting
37            shorthand properties did croak (fixed but still they does not
38            return correct result - they need to be fixed later).
39    
40            * Element.pm (query_selector, query_selector_all): Prototypes
41            were missing.
42    
43    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
44    
45            * Window.pm (___reset_css): Typo fixed.
46    
47    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
48    
49            * CSSStyleDeclaration.pm: The classes now explicitly implement
50            the |CSS2Properties| interface.
51            (@{}, TIEARRAY, FETCH, FETCHSIZE, EXISTS, item, length): Implemented.
52    
53    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
54    
55            * CSSStyleDeclaration.pm (attributes reflecting CSS properties):
56            Return an empty string if no value is assigned to the property.  Insert
57            a SPACE before '!' for compatibility with Firefox.
58    
59    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
60    
61            * CSSRule.pm (css_text): Trailing newline character is removed
62            to avoid double empty lines in CSSStyleSheet->css_text.
63            (selector_text): Namespace support is fixed.
64    
65            * CSSStyleSheet.pm (___new): Now it accepts |_nsmap| option.
66    
67    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
68    
69            * CSSRule.pm (selector_text): Use |serialize_selector_text|
70            to get better result.
71    
72    2008-01-13  Wakaba  <wakaba@suika.fam.cx>
73    
74            * Window.pm: New Perl module.
75    
76            * Document.pm (default_view): Implemented.
77    
78            * Element.pm (current_style): Implemented.
79    
80    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
81    
82            * CSSStyleDeclaration.pm (css_text): Allow to shorten a complete
83            set of longhand properties.
84            (get_property_priority): Implemented.
85            (CSSComputedStyleDeclaration AUTOLOAD): Implemented for reflecting
86            attributes.
87    
88    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
89    
90            * CSSStyleDeclaration.pm (css_text): Allow |{compute_multiple}|
91            as well as |{compute}| as a way to filter out longhand
92            properties.  Sort properties by names for readability.
93    
94    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
95    
96            * CSSStyleDeclaration.pm (css_text): Output |undef| property
97            information for debugging.
98    
99            * CSSStyleSheet.pm (manakai_base_uri): New attribute.
100    
101    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
102    
103            * CSSStyleDeclaration.pm (CSSComputedStyleDeclaration): New class.
104    
105    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
106    
107            * SelectorsAPI.pm, Document.pm (___query_selector_all): New internal
108            method.
109    
110    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
111    
112            * SelectorsAPI.pm: Make simple-selector-sequence-matching
113            an independent function.
114    
115    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
116    
117            * CSSStyleDeclaration.pm (AUTOLOAD): Getter for attributes
118            reflecting CSS property is implemented.
119            (css_text): Getter is implemented.
120    
121    2007-12-24  Wakaba  <wakaba@suika.fam.cx>
122    
123            * CSSRule.pm (selector_text): Ad hoc support for namespace prefixes.
124            (CSSNamespaceRule.css_text): Getter implemented.
125    
126            * CSSStyleSheet.pm (manakai_is_default_namespace,
127            manakai_lookup_namespace_prefix): New methods.
128    
129    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
130    
131            * CSSRule.pm (@charset.css_text): Implemented.
132    
133    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
134    
135            * CSSRule.pm (type, css_text): Typo fixed.
136            (____new): s/_selector/_selectors/g;
137            (CSSStyleRule.css_text, selectors_text): Ad hoc implementation.
138    
139            * CSSStyleDeclaration.pm (css_text): Ad hoc implementation.
140    
141            * CSSStyleSheet.pm (new): s/new/____new/.
142            (css_text): New attribute.
143    
144    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
145    
146            * MediaList.pm: New placeholder for a CSSOM interface.
147    
148            * CSSRule.pm, CSSStyleSheet.pm: Implementing the initial
149            setting of owner* and parent* attributes; support
150            for the |delete_rule| method.
151    
152    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
153    
154            * CSSStyleSheet.pm, CSSRule.pm, CSSRuleList.pm, CSSStyleDeclaration.pm:
155            First version of CSSOM implementation.
156    
157    2007-11-18  Wakaba  <wakaba@suika.fam.cx>
158    
159            * Document.pm, Entity.pm (manakai_has_bom,
160            manakai_charset): New attributes.
161    
162    2007-11-11  Wakaba  <wakaba@suika.fam.cx>
163    
164            * Document.pm, Element.pm (inner_html): Use |Whatpm::HTML::Serializer|
165            for getter.
166    
167    2007-10-27  Wakaba  <wakaba@suika.fam.cx>
168    
169            * Event.pm (init_event, init_event_ns, init_custom_event_ns):
170            The |namespaceURI| attribute was not set correctly.
171    
172            * DOMEvents.dis: Removed.
173    
174    2007-10-08  Wakaba  <wakaba@suika.fam.cx>
175    
176            * Event.pm, EventTarget.pm, EventTargetNode.pm,
177            EventException.pm: Implemented (but not tested!).
178    
179            * DOMException.pm (MALFORMED_EVENT_TYPE_ERR,
180            EVENT_INTERFACE_NOT_SUPPORTED_ERR, EXTERNAL_EVENT_ERR): New
181            error subtypes.
182    
183            * DOMImplementation.pm ($HasFeature): The |Event| feature,
184            version |3.0|, is added.
185    
186            * Document.pm, Node.pm: Event attributes and
187            methods are implemented.
188    
189    2007-10-07  Wakaba  <wakaba@suika.fam.cx>
190    
191            * SelectorsAPI.pm ($get_elements_by_selectors): Receive
192            an additional argument for "current element".
193            Support for |-manakai-current| and |-manakai-current(/s/)|
194            pseudo-classes.
195    
196    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
197    
198            * SelectorsAPI.pm: Attribute selectors are implemented.
199    
200    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
201    
202            * SelectorsAPI.pm (ElementSelector): Implemented.
203    
204    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
205    
206            * SelectorsAPI.pm (query_selector): Implemented.
207    
208    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
209    
210            * SelectorsAPI.pm ($get_elements_by_selectors): Created
211            from most part of |query_selector_all|.
212    
213    2007-09-24  Wakaba  <wakaba@suika.fam.cx>
214    
215            * DOMException.pm (SYNTAX_ERR): New subtype is defined.
216            (UNDECLARED_PREFIX_ERR): New subtype is defined.
217    
218            * Document.pm (Document): Implements the |DocumentSelector|
219            interface.
220    
221            * Element.pm (Element): Implements the |ElementSelector|
222            interface.
223    
224            * Node.pm (Node): Implements the |NSResolver| interface.
225    
226            * SelectorsAPI.pm: Now (hopefully) conform to the Selectors
227            API Editor's Draft (only |query_selector_all| on |Document|,
228            with limited selectors syntax support, though).
229    
230    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
231    
232            * SelectorsAPI.pm: Namespaced type/universal selectors
233            are supported.
234    
235    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
236    
237            * SelectorsAPI.pm: New Perl module.
238    
239    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
240    
241            * Node.pm (manakai_language): Return the |manakai_language|
242            of the |owner_document|, if any, as defined in the spec.
243    
244    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
245    
246            * Makefile: Relative path was wrong.
247    
248    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
249    
250            * HTML/: New directory.
251    
252            * Element.pm (create_element_ns): Return object implementing
253            the |HTMLElement| interface for HTML elements.
254    
255    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
256    
257            * DOMImplementation.pod: New documentation.
258    
259            * Makefile: Make HTML document.
260    
261    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
262    
263            * XDoctype.dis, XDoctype.pm: Removed.
264    
265            * CharacterData.pm: Renamed from DOMCharacterData.pm.
266    
267            * Document.pm: Renamed from DOMDocument.pm.
268    
269            * Element.pm: Renamed from DOMElement.pm
270    
271    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
272    
273            * DOMString.dis, DOMString.pm, Document.dis, Document.pm,
274            Element.dis, Element.pm, CharacterData.dis, CharacterData.pm,
275            TreeCore.dis, TreeCore.pm, DOMCore.dis, DOMCore.pm,
276            DOMFeature.dis, DOMFeature.pm, XML.dis, XML.pm,
277            DOMMain.dis, DOMMain.pm, DOMLS.dis,
278            GenericLS.dis, GenericLS.pm, SimpleLS.dis: Removed.
279    
280            * Makefile: Rules for DIS are removed.
281    
282    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
283    
284            * Text.pm: |Message::DOM::Traversal, an obsolete module,
285            was referenced.
286    
287    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
288    
289            * DOMDocument.pm (inner_html): Setter in HTML document
290            is implemented.
291    
292    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
293    
294            * DOMDocument.pm (inner_html): Setter in XML document
295            is implemented.
296    
297    2007-07-19  Wakaba  <wakaba@suika.fam.cx>
298    
299            * Attr.pm (DeclaredValueType): Added.
300    
301            * ProcessingInstruction.pm (data): Accept |undef|
302            as a valid input, for |text_content| (maybe) allows it.
303    
304            * TypeInfo.pm (type_namespace): The implementation was wrong.
305    
306    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
307    
308            * DOMElement.pm: Incorrect module was referenced.
309    
310            * DOMImplementation.pm: References to
311            the |Message::Charset::Encode| module has been removed.
312    
313    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
314    
315            * XMLParserTemp.pm: Use |Whatpm::Charset::DecodeHandle|
316            instead of |Message::Charset::Encode|.
317    
318    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
319    
320            * DOMDocument.pm (inner_html): New attribute (beta).
321    
322            * DOMElement.pm (inner_html): New attribute (beta).
323    
324    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
325    
326            * DOMConfiguration.pm: Configuration parameter |create-child-element|
327            implemented.
328    
329            * DOMElement.pm (create_element_ns): Support for Atom
330            subclasses.
331    
332            * DOMImplementation.pm (DOMImplementation): Now
333            implements the |AtomDOMImplementation| interface.
334            ($HasFeature): Features |atom| and |atomthreading| are added.
335    
336            * NodeList.pm (StaticNodeList): Implemented.
337    
338    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
339    
340            * Atom/: New directory.
341    
342    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
343    
344            * TreeWalker.pm, SerialWalker.pm: New Perl modules.
345    
346            * Text.pm (whole_text): Parameter index number has
347            been changed to support new |NodeFilter| Perl binding
348            definition.
349    
350    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
351    
352            * AttributeDefinition.pm, DOMElement.pm, DocumentType.pm,
353            ElementTypeDefinition.pm, Entity.pm, EntityReference.pm,
354            Notation.pm, ProcessingInstruction.pm (AUTOLOAD): Don't croak even if an attempt is made to modify a read-only attribute.
355    
356            * DOMConfiguration.pm (can_set_parameter,
357            set_parameter): Don't allow to set the value
358            to a string other than <http://www.w3.org/TR/REC-xml> (XML 1.0 DTD).
359    
360            * DOMDocument.pm (Message::IF::DocumentTraversal): New interface.
361            (create_tree_walker, manakai_create_serial_walker): References
362            and prototypes are added.
363    
364            * DOMException.pm (NULLPO_ERR): New error type:-).
365    
366            * DOMImplementation.pm ($HasFeature): Feature |Traversal|,
367            version |2.0|, is added.
368    
369  2007-07-14  Wakaba  <wakaba@suika.fam.cx>  2007-07-14  Wakaba  <wakaba@suika.fam.cx>
370    
371          * CDATASection.pm: Removed (merged with |Text.pm|).          * CDATASection.pm: Removed (merged with |Text.pm|).

Legend:
Removed from v.1.246  
changed lines
  Added in v.1.297

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24