~ubuntu-branches/ubuntu/quantal/padre/quantal

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2012-01-04 12:04:20 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20120104120420-i5oybqwf91m1d3il
Tags: 0.92.ds1-1
[ gregor herrmann ]
* Remove debian/source/local-options; abort-on-upstream-changes
  and unapply-patches are default in dpkg-source since 1.16.1.
* Swap order of alternative (build) dependencies after the perl
  5.14 transition.

[ Dominique Dumont ]
* Imported Upstream version 0.92.ds1
* removed fix-spelling patch (applied upstream)
* lintian-override: use wildcard to avoid listing a gazillion files
* updated size of some 'not-real-man-page' entries
* rules: remove dekstop cruft (replaced by a file provided in debian
  directory)
* control: removed Breaks statement. Add /me to uploaders. Updated
  dependencies
* rules: make sure that non-DFSG file (i.e. the cute butterfly, sigh)
  is not distributed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package Padre::Wx::WizardLibrary;
2
 
 
3
 
# Defines all the core wizards for Padre.
4
 
 
5
 
use 5.008005;
6
 
use strict;
7
 
use warnings;
8
 
use Padre::Wx         ();
9
 
use Padre::Wx::Wizard ();
10
 
 
11
 
our $VERSION = '0.90';
12
 
 
13
 
######################################################################
14
 
# Wizard Database
15
 
 
16
 
sub init {
17
 
 
18
 
        Padre::Wx::Wizard->new(
19
 
                name     => 'perl5.module',
20
 
                label    => Wx::gettext('Module'),
21
 
                category => Wx::gettext('Perl 5'),
22
 
                comment  => Wx::gettext('Opens the Perl 5 module wizard'),
23
 
                class    => 'Padre::Wx::Dialog::Wizard::Perl::Module',
24
 
        );
25
 
 
26
 
        Padre::Wx::Wizard->new(
27
 
                name     => 'padre.plugin',
28
 
                label    => Wx::gettext('Plugin'),
29
 
                category => Wx::gettext('Padre'),
30
 
                comment  => Wx::gettext('Opens the Padre plugin wizard'),
31
 
                class    => 'Padre::Wx::Dialog::Wizard::Padre::Plugin',
32
 
        );
33
 
 
34
 
        Padre::Wx::Wizard->new(
35
 
                name     => 'padre.document',
36
 
                label    => Wx::gettext('Document'),
37
 
                category => Wx::gettext('Padre'),
38
 
                comment  => Wx::gettext('Opens the Padre document wizard'),
39
 
                class    => 'Padre::Wx::Dialog::Wizard::Padre::Document',
40
 
        );
41
 
 
42
 
        return 1;
43
 
}
44
 
 
45
 
1;
46
 
 
47
 
# Copyright 2008-2011 The Padre development team as listed in Padre.pm.
48
 
# LICENSE
49
 
# This program is free software; you can redistribute it and/or
50
 
# modify it under the same terms as Perl 5 itself.