~ubuntu-branches/ubuntu/oneiric/libxml-tokeparser-perl/oneiric

« back to all changes in this revision

Viewing changes to Changes

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2010-10-03 11:00:36 UTC
  • Revision ID: james.westby@ubuntu.com-20101003110036-s82cygco63wsfqp9
Tags: upstream-0.05
ImportĀ upstreamĀ versionĀ 0.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Revision history for Perl extension XML::TokeParser.
 
2
 
 
3
0.01  Tue Jan 16 17:59:21 2001
 
4
        - original version; created by h2xs 1.19
 
5
0.02  Mon Jan 29 21:20:00 2001
 
6
        - fixed bug in unget_token
 
7
0.03  Fri Jun 01 06:30:00 2001
 
8
        - unget_token can now handle partial tokens returned by get_tag
 
9
        - added begin_saving and restore_saved methods
 
10
        - fixed bug causing warning when reaching the end of XML passed
 
11
          in as string reference
 
12
        - fixed bug preventing Latin conversion for tag and attribute names
 
13
0.04  Sat Jul 20 00:10:00 2001
 
14
        - fixed bugs causing warnings under some circumstances
 
15
 
 
16
0.05  Sun Jun  8 08:08:25 2003
 
17
    - PODMASTER takes over maintenance (with original authors "blessing")
 
18
        and makes all tokens of type XML::TokeParser::Token
 
19
        with the following methods:
 
20
 
 
21
            is_text
 
22
            is_comment
 
23
            is_pi which is short for is_process_instruction
 
24
            is_start_tag
 
25
            is_end_tag
 
26
            is_tag
 
27
 
 
28
            target
 
29
            data
 
30
            raw
 
31
            attr
 
32
            attrseq
 
33
            tag
 
34
            text
 
35
 
 
36
        ** WARNING: The tokens will probably change
 
37
        as per http://perlmonks.com/index.pl?node_id=264094
 
38
        which shouldn't affect how you use them.
 
39
 
 
40
    - more tests, more pod, added TODO