From c807c4b7347434d25b1677ca444ace3d9ac27fc8 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Fri, 22 Oct 2010 16:11:04 +0200 Subject: [PATCH] Add *.pas ([object] pascal) to the list of supported source extensions --- src/IDF/Views/Source.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Views/Source.php b/src/IDF/Views/Source.php index d53e644..357a38a 100644 --- a/src/IDF/Views/Source.php +++ b/src/IDF/Views/Source.php @@ -37,7 +37,7 @@ class IDF_Views_Source public static $supportedExtenstions = array( 'ascx', 'ashx', 'asmx', 'aspx', 'browser', 'bsh', 'c', 'cc', 'config', 'cpp', 'cs', 'csh', 'csproj', 'css', 'cv', 'cyc', - 'html', 'html', 'java', 'js', 'master', 'perl', 'php', 'pl', + 'html', 'html', 'java', 'js', 'master', 'pas', 'perl', 'php', 'pl', 'pm', 'py', 'rb', 'sh', 'sitemap', 'skin', 'sln', 'svc', 'vala', 'vb', 'vbproj', 'wsdl', 'xhtml', 'xml', 'xsd', 'xsl', 'xslt');