Adding image blob support. Fixes #13

This commit is contained in:
Klaus Silveira
2012-05-23 21:52:37 -03:00
parent 8401688386
commit c7ed3ee0d8
4 changed files with 19 additions and 0 deletions

View File

@@ -199,6 +199,16 @@ class Utils
return 'yaml';
case 'yaml':
return 'yaml';
case 'png':
return 'image';
case 'jpg':
return 'image';
case 'gif':
return 'image';
case 'jpeg':
return 'image';
case 'bmp':
return 'image';
default:
return 'text';
}