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

Legend:
Removed from v.1.251  
changed lines
  Added in v.1.290

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24