Changeset 2225


Ignore:
Timestamp:
12/28/08 15:56:40 (3 years ago)
Author:
adamk
Message:

Removing the explicit POSIX import (it doesn't appear to be used any more), and adding document registration entries for POD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Document.pm

    r2214 r2225  
    2828use File::Spec     (); 
    2929use Class::Autouse (); 
    30 use POSIX          qw(LC_CTYPE); 
    3130use Padre::Util    (); 
    3231use Padre::Wx      (); 
     
    7069    mat   => 'text/x-matlab', 
    7170    pas   => 'text/x-pascal', 
     71    pod   => 'text/x-pod', 
    7272    php   => 'application/x-php', 
    7373    py    => 'text/x-python', 
     
    8282    pod   => 'application/x-perl', 
    8383    t     => 'application/x-perl', 
     84    txt   => 'text/plain', 
    8485    xml   => 'text/xml', 
    8586    yml   => 'text/x-yaml', 
     
    9293 
    9394our %MIME_CLASS = ( 
     95    'text/x-pod'             => 'Padre::Document::POD', 
    9496    'application/x-perl'     => 'Padre::Document::Perl', 
    9597); 
     
    129131    'application/x-pasm'     => Wx::wxSTC_LEX_CONTAINER, # CONFIRMED 
    130132    'application/x-perl6'    => Wx::wxSTC_LEX_CONTAINER, # CONFIRMED 
     133    'text/plain'             => Wx::wxSTC_LEX_NULL,      # CONFIRMED 
    131134); 
    132135 
Note: See TracChangeset for help on using the changeset viewer.