~ubuntu-branches/ubuntu/wily/padre/wily

« back to all changes in this revision

Viewing changes to lib/Padre/Wx/Menu/Help.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2009-05-09 18:19:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090509181953-ttew3adppp057nha
Tags: 0.35-1
* New Upstream Version

* install eg/ as examples only in padre (not also in libwx-perl-
  dialog-perl)
* mention --pristine-tar in README.source
* add disable-tcp-server.patch
  the tcp server is used for communication with running instance of padre.
  Although it only listens on 127.0.0.1, there is no measures taken to
  ensure that the user connecting to the server is the same as the user
  running padre.
* add README.debian documenting changes in the package compared to
  upstream sources

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
use Padre::Wx::Menu       ();
12
12
use Padre::Wx::DocBrowser ();
13
13
 
14
 
our $VERSION = '0.34';
15
 
use base 'Padre::Wx::Menu';
 
14
our $VERSION = '0.35';
 
15
our @ISA     = 'Padre::Wx::Menu';
16
16
 
17
17
#####################################################################
18
18
# Padre::Wx::Menu Methods
69
69
                $main,
70
70
                $self->Append( -1, Wx::gettext('Visit the PerlMonks') ),
71
71
                sub {
72
 
                        Wx::LaunchDefaultBrowser('http://perlmonks.org/');
 
72
                        Padre::Wx::LaunchDefaultBrowser('http://perlmonks.org/');
73
73
                },
74
74
        );
75
75
 
79
79
                $main,
80
80
                $self->Append( -1, Wx::gettext("Report a New &Bug") ),
81
81
                sub {
82
 
                        Wx::LaunchDefaultBrowser('http://padre.perlide.org/wiki/Tickets');
 
82
                        Padre::Wx::LaunchDefaultBrowser('http://padre.perlide.org/wiki/Tickets');
83
83
                },
84
84
        );
85
85
        Wx::Event::EVT_MENU(
86
86
                $main,
87
87
                $self->Append( -1, Wx::gettext("View All &Open Bugs") ),
88
88
                sub {
89
 
                        Wx::LaunchDefaultBrowser('http://padre.perlide.org/report/1');
 
89
                        Padre::Wx::LaunchDefaultBrowser('http://padre.perlide.org/report/1');
90
90
                },
91
91
        );
92
92
 
168
168
        $about->AddDeveloper("Jérôme Quelin");
169
169
        $about->AddDeveloper("Kaare Rasmussen");
170
170
        $about->AddDeveloper("Keedi Kim - 김도형");
 
171
        $about->AddDeveloper("Kenichi Ishigaki - 石垣憲一");
171
172
        $about->AddDeveloper("Max Maischein");
172
173
        $about->AddDeveloper("Patrick Donelan");
173
174
        $about->AddDeveloper("Paweł Murias");
181
182
        $about->AddTranslator("Hebrew - Shlomi Fish - שלומי פיש");
182
183
        $about->AddTranslator("Hungarian - György Pásztor");
183
184
        $about->AddTranslator("Italian - Simone Blandino");
 
185
        $about->AddTranslator("Japanese - Kenichi Ishigaki - 石垣憲一");
184
186
        $about->AddTranslator("Korean - Keedi Kim - 김도형");
185
187
        $about->AddTranslator("Russian - Andrew Shitov");
186
188
        $about->AddTranslator("Dutch - Dirk De Nijs");