Changeset 10624

Show
Ignore:
Timestamp:
02/08/10 12:51:11 (4 weeks ago)
Author:
azawawi
Message:

More POD fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Directory/OpenInFileBrowserAction.pm

    r10623 r10624  
    11package Padre::Wx::Directory::OpenInFileBrowserAction; 
     2 
     3=head1 NAME 
     4 
     5Padre::Wx::Directory::OpenInFileBrowserAction - Open in file browser action 
     6 
     7=head1 DESCRIPTION 
     8 
     9For the current saved Padre document, open the platform's file manager/browser and 
     10tries to select it if possible. On win32, opens the containing folder and 
     11selects the file in its explorer. On Linux KDE/GNOME, opens the containing folder 
     12for it. 
     13 
     14=head1 FUNCTIONS 
     15 
     16=cut 
    217 
    318use 5.008; 
     
    5166} 
    5267 
    53 # 
    54 # Opens the provided filename in the File browser: 
    55 # On win32, selects it in Windows Explorer 
    56 # On linux, opens the containing folder for it 
    57 # 
     68=head2 C<open_in_file_browser> 
     69 
     70  $action->open_in_file_browser($filename); 
     71 
     72Opens the provided C<$filename> in the file browser 
     73On win32, selects it in Windows Explorer 
     74On UNIX, opens the containing folder for it using either KDE or GNOME 
     75 
     76=cut 
     77 
    5878sub open_in_file_browser { 
    5979        my ( $self, $filename ) = @_; 
     
    87107} 
    88108 
    89 # 
    90 # Open with default system editor 
    91 # 
     109=head2 C<open_with_default_system_editor> 
     110 
     111  $action->open_in_file_browser($filename); 
     112 
     113Opens the provided C<$filename> using the default system editor 
     114 
     115=cut 
     116 
    92117sub open_with_default_system_editor { 
    93118        my ( $self, $filename ) = @_; 
     
    128153 
    129154# 
    130 # Try to execute a file in KDE or GNOME 
     155# Private method to execute a file in KDE or GNOME 
    131156# 
    132157sub _execute_unix { 
     
    155180__END__ 
    156181 
    157 =head1 NAME 
    158  
    159 Padre::Wx::Directory::OpenInFileBrowserAction - Open in file browser action 
    160  
    161 =head1 DESCRIPTION 
    162  
    163 =head2 Open in File Browser 
    164  
    165 For the current saved Padre document, open the platform's file manager/browser and 
    166 tries to select it if possible. On win32, opens the containing folder and 
    167 selects the file in its explorer. On Linux KDE/GNOME, opens the containing folder 
    168 for it. 
    169  
    170 =head1 AUTHOR 
    171  
    172 Ahmad M. Zawawi C<< <ahmad.zawawi at gmail.com> >> 
     182=pod 
    173183 
    174184=head1 COPYRIGHT & LICENSE