Changeset 12022
- Timestamp:
- 07/26/10 02:45:57 (19 months ago)
- Location:
- trunk/Padre-Plugin-Emacs
- Files:
-
- 2 deleted
- 3 edited
- 2 copied
- 1 moved
-
. (moved) (moved from trunk/Padre-Plugin-EmacsMode)
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
Makefile.PL (modified) (1 diff)
-
lib/Padre/Plugin/Emacs.pm (copied) (copied from trunk/Padre-Plugin-EmacsMode/lib/Padre/Plugin/EmacsMode.pm) (5 diffs)
-
lib/Padre/Plugin/EmacsMode.pm (deleted)
-
t/Padre-Plugin-Emacs.t (copied) (copied from trunk/Padre-Plugin-EmacsMode/t/Padre-Plugin-EmacsMode.t) (1 diff)
-
t/Padre-Plugin-EmacsMode.t (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre-Plugin-Emacs/Changes
r9520 r12022 3 3 0.02 to be released 4 4 - Removed a warning on startup 5 - fixed inconsistent file naming: Padre/Plugin/EmacsMode.pm 6 -> Padre/Plugin/Emacs.pm (ZENOG) 7 - gettext-ified some strings (ZENOG) 8 - defined Padre interface versions (ZENOG) 5 9 6 10 0.01 Thu Jan 15 17:02:23 2009 -
trunk/Padre-Plugin-Emacs/MANIFEST
r2811 r12022 3 3 MANIFEST 4 4 README 5 t/Padre-Plugin-Emacs Mode.t6 lib/Padre/Plugin/Emacs Mode.pm5 t/Padre-Plugin-Emacs.t 6 lib/Padre/Plugin/Emacs.pm -
trunk/Padre-Plugin-Emacs/Makefile.PL
r3006 r12022 3 3 # the contents of the Makefile that is written. 4 4 WriteMakefile( 5 NAME => 'Padre-Plugin-Emacs Mode',6 VERSION_FROM => 'lib/Padre/Plugin/Emacs Mode.pm', # finds $VERSION7 PREREQ_PM => { Padre => 0. 25}, # e.g., Module::Name => 1.15 NAME => 'Padre-Plugin-Emacs', 6 VERSION_FROM => 'lib/Padre/Plugin/Emacs.pm', # finds $VERSION 7 PREREQ_PM => { Padre => 0.43 }, # e.g., Module::Name => 1.1 8 8 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 9 9 (AUTHOR => 'Aaron Trevena <teejay@cpan.org>') : ()), -
trunk/Padre-Plugin-Emacs/lib/Padre/Plugin/Emacs.pm
r9539 r12022 14 14 use strict; 15 15 use warnings; 16 17 our $VERSION = '0.02'; 18 16 19 use Padre::Util; 17 use Padre::Plugin; 18 19 use base qw(Padre::Plugin); 20 our @ISA = 'Padre::Plugin'; 21 22 our $VERSION = '0.18'; 20 21 use base 'Padre::Plugin'; 23 22 24 23 my %subs; … … 114 113 }; 115 114 115 sub padre_interfaces { 116 'Padre::Plugin' => 0.43, 117 'Padre::Document' => 0.43, 118 } 119 116 120 sub plugin_name { 117 return 'Emacs Mode for Padre';121 return Wx::gettext('Emacs Mode for Padre'); 118 122 } 119 123 … … 122 126 sub menu_plugins_simple { 123 127 my $self = shift; 124 return 'Emacs Mode'=> [128 return Wx::gettext('Emacs Mode') => [ 125 129 About => sub { $self->show_about }, 126 130 Commands => [ … … 135 139 136 140 my $about = Wx::AboutDialogInfo->new; 137 $about->SetName("Padre::Plugin::Emacs Mode");141 $about->SetName("Padre::Plugin::Emacs"); 138 142 $about->SetDescription( 139 143 "Emacs Keybindings and stuff\n". 140 "Much todohere\n"144 "Much TODO here\n" 141 145 ); 142 $about->SetVersion($Padre::Plugin::Emacs Mode::VERSION);146 $about->SetVersion($Padre::Plugin::Emacs::VERSION); 143 147 $about->SetCopyright(Wx::gettext("Copyright 2009 Aaron Trevena")); 144 148 … … 158 162 159 163 # behaviour rules (more to come) 160 $self->SetTabIndents(1);164 # $self->SetTabIndents(1); 161 165 162 166 # get menu keys (FIXME:store them somewhere) -
trunk/Padre-Plugin-Emacs/t/Padre-Plugin-Emacs.t
r2811 r12022 7 7 8 8 use Test::More tests => 1; 9 BEGIN { use_ok('Padre::Plugin::Emacs Mode') };9 BEGIN { use_ok('Padre::Plugin::Emacs') }; 10 10 11 11 #########################
Note: See TracChangeset
for help on using the changeset viewer.
