~ubuntu-branches/ubuntu/precise/padre/precise

« back to all changes in this revision

Viewing changes to lib/Padre/Wx/PodFrame.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2010-05-08 09:17:22 UTC
  • mfrom: (1.2.1 upstream) (10.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100508091722-y6008jtk0ap6znyn
Tags: 0.60.ds1-3
rules: run tests with HOME=$fake_home to avoud failing when $HOME points
to a non-existent location. Closes: #579289

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
  # Create the Pod viewing window
12
12
  my $frame = Padre::Wx::PodFrame->new;
13
 
  
 
13
 
14
14
  # Load a Pod file or document
15
15
  $frame->load_file( 'file.pod' );
16
16
  $frame->load_pod( "=head1 THIS IS POD!" );
17
17
 
18
18
=head1 DESCRIPTION
19
19
 
20
 
Padre::Wx::PodFrame provides a simple standalone window containing a
 
20
C<Padre::Wx::PodFrame> provides a simple standalone window containing a
21
21
Pod2HTML rendering widget, for displaying a single POD document as
22
22
HTML.
23
23
 
30
30
use warnings;
31
31
use Padre::Wx ();
32
32
 
33
 
our $VERSION = '0.50';
 
33
our $VERSION = '0.60';
34
34
our @ISA     = 'Wx::Frame';
35
35
 
36
36
=pod
106
106
 
107
107
=head1 COPYRIGHT
108
108
 
109
 
Copyright 2008-2009 The Padre development team as listed in Padre.pm.
 
109
Copyright 2008-2010 The Padre development team as listed in Padre.pm.
110
110
 
111
111
This program is free software; you can redistribute
112
112
it and/or modify it under the same terms as Perl itself.