/[suikacvs]/messaging/manakai/lib/Message/DOM/Text.pm
Suika

Contents of /messaging/manakai/lib/Message/DOM/Text.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations) (download)
Fri Jun 15 14:32:50 2007 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
Changes since 1.1: +14 -3 lines
++ manakai/t/ChangeLog	15 Jun 2007 14:31:27 -0000
2007-06-15  Wakaba  <wakaba@suika.fam.cx>

	* DOM-Node.t: New test.

2007-06-15  Wakaba  <wakaba@suika.fam.cx>

	* DOM-Document.t: New test.

++ manakai/lib/Message/DOM/ChangeLog	15 Jun 2007 14:32:37 -0000
2007-06-15  Wakaba  <wakaba@suika.fam.cx>

	* ProcessingInstruction.pm, EntityReference.pm,
	CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
	ElementTypeDefinition.pm, AttributeDefinition.pm,
	DocumentType.pm, DOMElement.pm, Attr.pm,
	CharacterData.pm, Text.pm, Comment.pm (node_name,
	node_value, node_type): Implemented.

1 wakaba 1.1 package Message::DOM::Text;
2     use strict;
3 wakaba 1.2 our $VERSION=do{my @r=(q$Revision: 1.1 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
4 wakaba 1.1 push our @ISA, 'Message::DOM::CharacterData', 'Message::IF::Text';
5     require Message::DOM::DOMCharacterData; ## TODO: Change to new module name
6    
7     sub AUTOLOAD {
8     my $method_name = our $AUTOLOAD;
9     $method_name =~ s/.*:://;
10     return if $method_name eq 'DESTROY';
11    
12     if ({
13     ## Read-only attributes (trivial accessors)
14     }->{$method_name}) {
15     no strict 'refs';
16     eval qq{
17     sub $method_name (\$) {
18     if (\@_ > 1) {
19     require Carp;
20     Carp::croak (qq<Can't modify read-only attribute>);
21     }
22     return \${\$_[0]}->{$method_name};
23     }
24     };
25     goto &{ $AUTOLOAD };
26     } elsif ({
27     ## Read-write attributes (DOMString, trivial accessors)
28     }->{$method_name}) {
29     no strict 'refs';
30     eval qq{
31     sub $method_name (\$) {
32     if (\@_ > 1) {
33     \${\$_[0]}->{$method_name} = ''.$_[1];
34     }
35     return \${\$_[0]}->{$method_name};
36     }
37     };
38     goto &{ $AUTOLOAD };
39     } else {
40     require Carp;
41     Carp::croak (qq<Can't locate method "$AUTOLOAD">);
42     }
43     } # AUTOLOAD
44    
45     ## The |Node| interface - attribute
46    
47 wakaba 1.2 ## Spec:
48     ## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-F68D095>
49     ## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-1950641247>
50    
51     sub node_name ($) {
52     return '#text';
53     } # node_name
54    
55     ## Spec:
56     ## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-111237558>
57    
58     sub node_type ($) { 3 } # TEXT_NODE
59 wakaba 1.1
60     package Message::IF::Text;
61    
62     package Message::DOM::Document;
63    
64     sub create_text_node ($$) {
65     return Message::DOM::Text->____new ($_[0], $_[1]);
66     } # create_text_node
67    
68     1;
69     ## License: <http://suika.fam.cx/~wakaba/archive/2004/8/18/license#Perl+MPL>
70 wakaba 1.2 ## $Date: 2007/06/13 12:04:50 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24