~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/webshell/tests/viewer/dump2html.pl

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -w
 
2
# ***** BEGIN LICENSE BLOCK *****
 
3
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
#
 
5
# The contents of this file are subject to the Mozilla Public License Version
 
6
# 1.1 (the "License"); you may not use this file except in compliance with
 
7
# the License. You may obtain a copy of the License at
 
8
# http://www.mozilla.org/MPL/
 
9
#
 
10
# Software distributed under the License is distributed on an "AS IS" basis,
 
11
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
# for the specific language governing rights and limitations under the
 
13
# License.
 
14
#
 
15
# The Original Code is dump2html.pl.
 
16
#
 
17
# The Initial Developer of the Original Code is
 
18
# Netscape Communications Corp.
 
19
# Portions created by the Initial Developer are Copyright (C) 2002
 
20
# the Initial Developer. All Rights Reserved.
 
21
#
 
22
# Contributor(s):
 
23
#   Chris Waterson <waterson@netscape.com>
 
24
#
 
25
# Alternatively, the contents of this file may be used under the terms of
 
26
# either the GNU General Public License Version 2 or later (the "GPL"), or
 
27
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
28
# in which case the provisions of the GPL or the LGPL are applicable instead
 
29
# of those above. If you wish to allow use of your version of this file only
 
30
# under the terms of either the GPL or the LGPL, and not to allow others to
 
31
# use your version of this file under the terms of the MPL, indicate your
 
32
# decision by deleting the provisions above and replace them with the notice
 
33
# and other provisions required by the GPL or the LGPL. If you do not delete
 
34
# the provisions above, a recipient may use your version of this file under
 
35
# the terms of any one of the MPL, the GPL or the LGPL.
 
36
#
 
37
# ***** END LICENSE BLOCK *****
 
38
 
 
39
#
 
40
# Convert a content model dump (e.g., from Viewer's `Debug->Dump
 
41
# Content' menu) to HTML.
 
42
#
 
43
 
 
44
my @tagstack;
 
45
 
 
46
sub indent
 
47
{
 
48
    for (my $count = $#tagstack; $count > 0; --$count) {
 
49
        print " ";
 
50
    }
 
51
}
 
52
 
 
53
while (<>) {
 
54
    chomp;
 
55
    if (/^\s*Text\@0x[[:xdigit:]]+ refcount=\d+<(.*)>$/) {
 
56
        # A text node, e.g.
 
57
        # `     Text@0xbaf3080 refcount=4<blah blah blah>'
 
58
        $_ = $1;
 
59
 
 
60
        # Convert newlines, carriage returns, and tabs
 
61
        s/\\n/\n/g;
 
62
        s/\\t/\t/g;
 
63
        s/\\r/\r/g;
 
64
 
 
65
        indent;
 
66
        print " $_\n";
 
67
    }
 
68
    elsif (/^\s*([^@]+)\@0x[[:xdigit:]]+(.*) refcount=\d+<$/) {
 
69
        # An open tag, e.g.
 
70
        # `    a@0xbaf2488 href="index.html" refcount=3<'
 
71
        indent;
 
72
        print "<$1$2>\n";
 
73
        push(@tagstack, $1);
 
74
    }
 
75
    elsif (/^\s*>$/) {
 
76
        # A close tag, e.g., `     >'
 
77
        my $tag = pop(@tagstack);
 
78
        indent;
 
79
        print "</$tag>\n";
 
80
    }
 
81
}