Browse CVS Repository
Diff of /gikonavigoeson/gikonavi/GikoXMLDoc.pas
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 394 |
f.Seek( last, soFromBeginning ); |
f.Seek( last, soFromBeginning ); |
| 395 |
f.ReadBuffer( PChar( attributeValue )^, tagLen ); |
f.ReadBuffer( PChar( attributeValue )^, tagLen ); |
| 396 |
|
|
| 397 |
node.AddAttribute( attributeName, HttpDecode( attributeValue ) ); |
node.AddAttribute( attributeName, HtmlDecode( attributeValue ) ); |
| 398 |
|
|
| 399 |
// 値を読み終わったので終了 |
// 値を読み終わったので終了 |
| 400 |
f.Seek( f.Position + 1, soFromBeginning ); // '"' 飛ばし |
f.Seek( f.Position + 1, soFromBeginning ); // '"' 飛ばし |
| 402 |
end else if ch in kXMLWhite then |
end else if ch in kXMLWhite then |
| 403 |
begin |
begin |
| 404 |
// 規格外だけどね |
// 規格外だけどね |
| 405 |
node.AddAttribute( attributeName, HttpDecode( attributeValue ) ); |
node.AddAttribute( attributeName, HtmlDecode( attributeValue ) ); |
| 406 |
|
|
| 407 |
goto NextNode; |
goto NextNode; |
| 408 |
end else begin |
end else begin |
|
|
Legend:
| Removed from v.1.3 |
|
| changed lines |
| |
Added in v.1.4 |
|
|
| |