• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

eg/H03-May-2022-

lib/Devel/StackTrace/H01-Apr-2016-256165

t/H01-Apr-2016-9770

ChangesH A D01-Apr-20161.7 KiB5034

LICENSEH A D01-Apr-201618 KiB380292

MANIFESTH A D01-Apr-2016333 2019

META.jsonH A D01-Apr-20161.8 KiB7472

META.ymlH A D01-Apr-2016998 3736

Makefile.PLH A D01-Apr-20161 KiB4735

READMEH A D01-Apr-20161.1 KiB4627

cpanfileH A D01-Apr-2016200 139

dist.iniH A D01-Apr-201671 64

README

1NAME
2
3    Devel::StackTrace::AsHTML - Displays stack trace in HTML
4
5SYNOPSIS
6
7      use Devel::StackTrace::AsHTML;
8
9      my $trace = Devel::StackTrace->new;
10      my $html  = $trace->as_html;
11
12DESCRIPTION
13
14    Devel::StackTrace::AsHTML adds as_html method to Devel::StackTrace
15    which displays the stack trace in beautiful HTML, with code snippet
16    context and function parameters. If you call it on an instance of
17    Devel::StackTrace::WithLexicals, you even get to see the lexical
18    variables of each stack frame.
19
20AUTHOR
21
22    Tatsuhiko Miyagawa <miyagawa@bulknews.net>
23
24    Shawn M Moore
25
26    HTML generation code is ripped off from CGI::ExceptionManager written
27    by Tokuhiro Matsuno and Kazuho Oku.
28
29COPYRIGHT
30
31    The following copyright notice applies to all the files provided in
32    this distribution, including binary files, unless explicitly noted
33    otherwise.
34
35    Copyright 2009-2013 Tatsuhiko Miyagawa
36
37LICENSE
38
39    This library is free software; you can redistribute it and/or modify it
40    under the same terms as Perl itself.
41
42SEE ALSO
43
44    Devel::StackTrace Devel::StackTrace::WithLexicals CGI::ExceptionManager
45
46