Changeset 2207


Ignore:
Timestamp:
12/26/08 09:52:03 (3 years ago)
Author:
kaare
Message:

Added description for included plugins.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Task-Padre-Plugins/lib/Task/Padre/Plugins.pm

    r2151 r2207  
    44use strict; 
    55 
    6 our $VERSION = '0.07'; 
     6our $VERSION = '0.08'; 
    77 
    881; 
     
    1515=head1 VERSION 
    1616 
    17 Version 0.07 
     17Version 0.08 
    1818 
    1919=head1 SYNOPSIS 
    2020 
    21 Nothing here. 
     21Most plugins will just run with the text you selected if there is any selection. 
     22 
     23If not, they run with the whole text from selected document. 
     24 
     25=head1 MODULES 
     26 
     27=head2 Padre::Plugin::AcmePlayCode 
     28 
     29This is a simple plugin to run Acme::PlayCode on your source code. 
     30 
     31=head2 Padre::Plugin::Alarm 
     32 
     33Alarm Clock (Audio::Beep) 
     34 
     35=head2 Padre::Plugin::CPAN 
     36 
     37CPAN in Padre 
     38 
     39=head3 Edit Config 
     40 
     41Edit CPAN/Config.pm 
     42 
     43=head3 Install Module 
     44 
     45Run cpan $mod inside Padre. behaves like: 
     46 
     47 perl −MCPAN −e "install $mod" 
     48 
     49=head3 Upgrade All Padre Plugins 
     50 
     51Upgrade all plugin in one hit 
     52 
     53=head2 Padre::Plugin::CSS 
     54 
     55=head3 CSS Minifier 
     56 
     57use CSS::Minifier::XS to minify css 
     58 
     59=head3 Validate CSS 
     60 
     61use WebService::Validator::CSS::W3C to validate the CSS 
     62 
     63=head2 Padre::Plugin::Encrypt 
     64 
     65Encrypt/Decrypt by Crypt::CBC 
     66 
     67=head2 Padre::Plugin::HTML 
     68 
     69=head3 Validate HTML 
     70 
     71use WebService::Validator::HTML::W3C to validate the HTML 
     72 
     73=head3 Tidy HTML 
     74 
     75use HTML::Tidy to tidy HTML 
     76 
     77=head2 Padre::Plugin::HTMLExport 
     78 
     79Export a HTML page by using Syntax::Highlight::Engine::Kate 
     80 
     81=head2 Padre::Plugin::JavaScript 
     82 
     83=head3 JavaScript Beautifier 
     84 
     85use JavaScript::Beautifier to beautify js 
     86 
     87=head3 JavaScript Minifier 
     88 
     89use JavaScript::Minifier::XS to minify js 
     90 
     91=head2 Padre::Plugin::PAR 
     92 
     93Padre::Plugin::PAR − PAR generation from Padre 
     94 
     95=head2 Padre::Plugin::PerlCritic 
     96 
     97This is a simple plugin to run Perl::Critic on your source code. 
     98 
     99=head2 Padre::Plugin::PerlTidy 
     100 
     101This is a simple plugin to run Perl::Tidy on your source code. 
     102 
     103=head2 Padre::Plugin::Pip 
     104 
     105=head2 Padre::Plugin::ViewInBrowser 
     106 
     107View selected doc in browser for Padre. Basically it’s a shortcut for Wx::LaunchDefaultBrowser( $self−>selected_filename ); 
     108 
     109=head2 Padre::Plugin::XML 
     110 
     111Use XML::Tidy to tidy XML. 
    22112 
    23113=head1 AUTHOR 
Note: See TracChangeset for help on using the changeset viewer.