/[suikacvs]/messaging/manakai/lib/Message/DOM/XMLParser.dis
Suika

Diff of /messaging/manakai/lib/Message/DOM/XMLParser.dis

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

revision 1.9 by wakaba, Fri Jan 27 16:24:37 2006 UTC revision 1.10 by wakaba, Sun Jan 29 07:09:25 2006 UTC
# Line 3918  _ Line 3918  _
3918            element {            element {
3919              namespace-uri: null;              namespace-uri: null;
3920              local-name: 'a';              local-name: 'a';
3921                attribute {
3922                  node-name: 'at3';
3923                  text-content: 'value3';
3924                  specified: false;
3925                }
3926                attribute {
3927                  node-name: 'at4';
3928                  text-content: 'value4';
3929                  specified: false;
3930                }
3931                attribute {
3932                  node-name: 'at5';
3933                  text-content: 'value5';
3934                  specified: false;
3935                }
3936                attribute {
3937                  node-name: 'at6';
3938                  text-content: 'value6';
3939                  specified: false;
3940                }
3941            }            }
3942          }          }
3943    
# Line 3952  _ Line 3972  _
3972            element {            element {
3973              namespace-uri: null;              namespace-uri: null;
3974              local-name: 'a';              local-name: 'a';
3975                attribute {
3976                  node-name: 'at';
3977                  text-content: '  default ' U+000A 'value  ';
3978                  specified: false;
3979                }
3980            }            }
3981          }          }
3982      @@XMLTest:      @@XMLTest:
# Line 3985  _ Line 4010  _
4010            element {            element {
4011              namespace-uri: null;              namespace-uri: null;
4012              local-name: 'a';              local-name: 'a';
4013                attribute {
4014                  node-name: 'at';
4015                  text-content: '  default ' U+000A 'value  ';
4016                  specified: false;
4017                }
4018            }            }
4019          }          }
4020    
# Line 4011  _ Line 4041  _
4041                  data: '  at  value  ';                  data: '  at  value  ';
4042                }                }
4043                schema-type-info: TypeInfo (null, null);                schema-type-info: TypeInfo (null, null);
4044                  specified: true;
4045              }              }
4046            }            }
4047          }          }
# Line 4042  _ Line 4073  _
4073                }                }
4074                schema-type-info:                schema-type-info:
4075                  TypeInfo ('http://www.w3.org/TR/REC-xml', 'CDATA');                  TypeInfo ('http://www.w3.org/TR/REC-xml', 'CDATA');
4076                  specified: true;
4077              }              }
4078            }            }
4079          }          }
# Line 4073  _ Line 4105  _
4105                }                }
4106                schema-type-info:                schema-type-info:
4107                  TypeInfo ('http://www.w3.org/TR/REC-xml', 'NMTOKEN');                  TypeInfo ('http://www.w3.org/TR/REC-xml', 'NMTOKEN');
4108                  specified: true;
4109              }              }
4110            }            }
4111          }          }
# Line 4086  _ Line 4119  _
4119          document {          document {
4120            element {            element {
4121              attribute {              attribute {
4122                  node-name: 'at';
4123                value: '  at ' U+000A 'value  ';                value: '  at ' U+000A 'value  ';
4124                schema-type-info: TypeInfo (null, null);                schema-type-info: TypeInfo (null, null);
4125                  specified: true;
4126              }              }
4127            }            }
4128          }          }
# Line 4102  _ Line 4137  _
4137              attribute {              attribute {
4138                value: '  at ' U+000D 'value  ';                value: '  at ' U+000D 'value  ';
4139                schema-type-info: TypeInfo (null, null);                schema-type-info: TypeInfo (null, null);
4140                  specified: true;
4141              }              }
4142            }            }
4143          }          }
# Line 4114  _ Line 4150  _
4150          document {          document {
4151            element {            element {
4152              attribute {              attribute {
4153                  node-name: 'at';
4154                value: '  at ' U+0009 'value  ';                value: '  at ' U+0009 'value  ';
4155                schema-type-info: TypeInfo (null, null);                schema-type-info: TypeInfo (null, null);
4156                  specified: true;
4157                }
4158              }
4159            }
4160    
4161        @@XMLTest:
4162          @@@QName: xp.doctype.attr.specified.1.test
4163          @@@DEnt:
4164            @@@@test:value:
4165              <!DOCTYPE a [
4166                <!ATTLIST a
4167                  at  CDATA  "default"
4168                >
4169              ]>
4170              <a></a>
4171          @@@test:domTree:
4172            document {
4173              document-type { }
4174              element {
4175                attribute {
4176                  node-name: 'at';
4177                  value: 'default';
4178                  specified: false;
4179                }
4180              }
4181            }
4182        @@XMLTest:
4183          @@@QName: xp.doctype.attr.specified.2.test
4184          @@@DEnt:
4185            @@@@test:value:
4186              <!DOCTYPE a [
4187                <!ATTLIST a
4188                  at  CDATA  "default"
4189                >
4190              ]>
4191              <a at2="specified"></a>
4192          @@@test:domTree:
4193            document {
4194              document-type { }
4195              element {
4196                attribute {
4197                  node-name: 'at';
4198                  value: 'default';
4199                  specified: false;
4200                }
4201                attribute {
4202                  node-name: 'at2';
4203                  value: 'specified';
4204                  specified: true;
4205                }
4206              }
4207            }
4208        @@XMLTest:
4209          @@@QName: xp.doctype.attr.specified.3.test
4210          @@@DEnt:
4211            @@@@test:value:
4212              <!DOCTYPE a [
4213                <!ATTLIST a
4214                  at  CDATA  "default"
4215                >
4216              ]>
4217              <a at="specified"></a>
4218          @@@test:domTree:
4219            document {
4220              document-type { }
4221              element {
4222                attribute {
4223                  node-name: 'at';
4224                  value: 'specified';
4225                  specified: true;
4226              }              }
4227            }            }
4228          }          }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24