MIMETypes.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 05 Feb 2017 00:18:48 +0000
branchjv
changeset 3969 8933c34d61e7
parent 3756 ca18095fa3c0
child 3862 a5c6ef8ecf6a
permissions -rw-r--r--
bumped update to 8a0b961f9d45: Allow individual applications to define their own shortcut mapping When a system wants to translate a shortcut into a logical action key, the event bubbling process ends up asking an application model for its keyboard map. To allow per-application customization, each application model keeps its own keyboard map initialized from class defaults.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG 
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
     3
	      All Rights Reserved
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
1410
faf04ef6892b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1364
diff changeset
    12
"{ Package: 'stx:libview2' }"
faf04ef6892b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1364
diff changeset
    13
3451
3f6dc42dff22 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
    14
"{ NameSpace: Smalltalk }"
3f6dc42dff22 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
    15
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Object subclass:#MIMETypes
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    17
	instanceVariableNames:''
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    18
	classVariableNames:'CharSetToFontMapping DefaultCommandPerMIMEPerOS
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    19
		DefaultPrintCommandPerMIMEPerOS
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    20
		FileSuffixToImageReaderClassMapping FileSuffixToTypeMapping
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    21
		FilenameToTypeMapping LastSuffix LastType
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    22
		SuffixToCommentStringMapping SuffixToParenthesisSpecMapping
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    23
		TypeFromContentsDetectors TypeToCommentStringMapping
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    24
		TypeToFileSuffixMapping TypeToImageReaderClassMapping
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    25
		TypeToInfoMapping TypeToParenthesisSpecMapping
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    26
		TypeToViewerApplicationMapping'
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    27
	poolDictionaries:''
1800
817b8ce39da7 category
Claus Gittinger <cg@exept.de>
parents: 1783
diff changeset
    28
	category:'Net-Communication-Support'
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    29
!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    30
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
    31
ImmutableString variableByteSubclass:#MIMEType
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    32
	instanceVariableNames:''
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    33
	classVariableNames:'CachedTypes'
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    34
	poolDictionaries:''
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    35
	privateIn:MIMETypes
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!MIMETypes class methodsFor:'documentation'!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
copyright
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
 COPYRIGHT (c) 1997 by eXept Software AG 
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
    43
	      All Rights Reserved
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
 This software is furnished under a license and may be used
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
 only in accordance with the terms of that license and with the
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
 inclusion of the above copyright notice.   This software may not
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
 be provided or otherwise made available to, or used by, any
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
 other person.  No title to or ownership of the software is
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
 hereby transferred.
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
"
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
documentation
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
"
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    just a place to keep MIME information
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    (avoid spreading things at many places)
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
    61
    MIMETypes is abstract and functional.
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
    62
    Actually, in some OperatingSystems, this information may
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
    63
    be found in some config files (or registries).
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
    64
    Therefore, this class may have to be extended to support this
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
    65
    and fetch the information from there eventually.
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
    66
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
    [author:]
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
        Claus Gittinger
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
"
1311
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    70
!
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    71
2486
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    72
examples
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    73
"
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
    74
                                                                            [exBegin]
3210
784ada4aa13b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
    75
    MIMETypes mimeTypeFromString:'text/plain' 
784ada4aa13b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
    76
                                                                            [exEnd]
784ada4aa13b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
    77
                                                                            [exBegin]
2487
eaa224da42fa mimeType: x-expecco-testsuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2486
diff changeset
    78
    MIMETypes mimeTypeFromString:'application/x-expecco-testsuite' 
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
    79
                                                                            [exEnd]
2486
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    80
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
    81
                                                                            [exBegin]
2486
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    82
    MIMETypes mimeTypeForSuffix:'gif'     
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
    83
    MIMETypes mimeTypeForSuffix:'ets'
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
    84
    MIMETypes mimeTypeForSuffix:'xlsx'
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
    85
                                                                            [exEnd]
2486
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    86
"
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    87
!
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
    88
1311
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    89
knownTypes
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    90
"
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    91
    simply a reminder for me ...
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    92
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    93
    application         mime                            file extentsions
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    94
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    95
        powerpoint      application/ms-powerpoint       .pot, .ppz, .ppt, .pps, 
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    96
                        application/mspowerpoint        
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    97
                        application/vnd.ms-powerpoint   
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    98
                        application/x-mspowerpoint
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
    99
1312
Claus Gittinger <cg@exept.de>
parents: 1311
diff changeset
   100
        shockwave       application/x-shockwave-flash   .swf     
1311
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
   101
1312
Claus Gittinger <cg@exept.de>
parents: 1311
diff changeset
   102
        futuresplash    application/futuresplash        .spl
1311
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
   103
"
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
! !
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
!MIMETypes class methodsFor:'initialization'!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   108
addMimeTypeDetector:aMimeTypeFromContentsDetectorBlock
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   109
    "any class (especially: image readers) may add a block
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   110
     which detects the mime-type from a givel contents.
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   111
     The block is called with two arguments, some data (usually the first few kilobytes
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   112
     of a file) and the suffix of the file, or nil if unknown.
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   113
     The block should return the mimeType or nil."
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   114
     
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   115
    TypeFromContentsDetectors isNil ifTrue:[ TypeFromContentsDetectors := OrderedCollection new ]. 
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   116
    TypeFromContentsDetectors add:aMimeTypeFromContentsDetectorBlock.
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   117
!
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   118
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   119
initialize
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   120
    "initialize wellKnown facts"
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   121
    
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   122
    MIMEType initialize. "must be initialized first"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   123
    LastSuffix := LastType := nil.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   124
    self initializeFileNameToMimeTypeMapping.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   125
    self initializeImageReaderMappings.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   126
    self initializeCommentStringMappings.
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   127
    self initializeParenthesisSpecMappings.
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   128
    
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   129
    "
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
   130
     self initialize
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
   131
    "
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
   132
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   133
    "Modified: / 10-04-2007 / 15:16:44 / cg"
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
   134
    "Modified (comment): / 29-11-2011 / 19:11:51 / cg"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   135
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   136
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   137
initializeCommentStringMappings
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   138
    "these are used by the editor's comment/uncomment functions"
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   139
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   140
    TypeToCommentStringMapping := Dictionary new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   141
    SuffixToCommentStringMapping := Dictionary new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   142
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   143
    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   144
        at:'application/x-make'
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   145
        put:#('#' (nil nil)).           "/ '#' EOL comments only
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   146
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   147
    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   148
        at:'application/x-sh'
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   149
        put:#('#' (nil nil)).           "/ '#' EOL comments only
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   150
2489
b891d96fd496 elf extension: x-expecco-logfile
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
   151
    #('text/html' 'text/xml' 
b891d96fd496 elf extension: x-expecco-logfile
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
   152
      'application/xml' 
b891d96fd496 elf extension: x-expecco-logfile
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
   153
      'application/x-expecco-testsuite'
b891d96fd496 elf extension: x-expecco-logfile
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
   154
      'application/x-expecco-logfile'
b891d96fd496 elf extension: x-expecco-logfile
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
   155
    )
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   156
    do:[:eachXMLType |
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   157
        TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   158
            at:eachXMLType
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   159
            put:#(nil ('<!!-- ' ' -->')). "/ '<!!-- ... -->' delimited comments only
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   160
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   161
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   162
    TypeToCommentStringMapping 
2055
501740104b75 css-comments
Claus Gittinger <cg@exept.de>
parents: 2048
diff changeset
   163
        at:'text/css'
501740104b75 css-comments
Claus Gittinger <cg@exept.de>
parents: 2048
diff changeset
   164
        put:#('//' ('/*' '*/')).          
501740104b75 css-comments
Claus Gittinger <cg@exept.de>
parents: 2048
diff changeset
   165
501740104b75 css-comments
Claus Gittinger <cg@exept.de>
parents: 2048
diff changeset
   166
    TypeToCommentStringMapping 
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   167
        at:'application/x-batch-script'
2937
67ef44218dc0 changed: #initializeCommentStringMappings
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
   168
        put:#('@REM ' '@rem ' 'REM ' 'rem ' (nil nil)).         "/ 'rem ' for EOL comments only
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   169
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   170
    "/ the following is ST/X specific
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   171
    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   172
        at:'application/x-smalltalk-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   173
        put:#('"/' ('"' '"')).           "/ '"/ ' for EOL; ".." for delimited comments
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   174
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   175
    "/ this is for standard smalltalk
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   176
"/    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   177
"/        at:'application/x-smalltalk-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   178
"/        put:#(nil ('"' '"')).            "/ ".." for delimited comments only
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   179
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   180
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   181
    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   182
        at:'application/x-pascal-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   183
        put:#(nil ('{' '}')).           "/ '{'..'}' for delimited comments
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   184
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   185
    "/ this is ANSI-c
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   186
    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   187
        at:'application/x-c-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   188
        put:#('//' ('/*' '*/')).          
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   189
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   190
    TypeToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   191
        at:'application/x-cpp-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   192
        put:#('//' ('/*' '*/')).          
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   193
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   194
    TypeToCommentStringMapping 
2479
40a05c259915 c# mime type
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
   195
        at:'application/x-csharp-source'
40a05c259915 c# mime type
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
   196
        put:#('//' ('/*' '*/')).          
40a05c259915 c# mime type
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
   197
40a05c259915 c# mime type
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
   198
    TypeToCommentStringMapping 
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   199
        at:'application/x-java-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   200
        put:#('//' ('/*' '*/')).          
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   201
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   202
    TypeToCommentStringMapping 
2048
dbb361dd9c5f comment strings for javascript files
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   203
        at:'application/x-javascript'
dbb361dd9c5f comment strings for javascript files
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   204
        put:#('//' ('/*' '*/')).          
dbb361dd9c5f comment strings for javascript files
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   205
dbb361dd9c5f comment strings for javascript files
Claus Gittinger <cg@exept.de>
parents: 2028
diff changeset
   206
    TypeToCommentStringMapping 
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   207
        at:'application/x-lisp-source'
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   208
        put:#(';' (nil nil)).           "/ ';' for EOL comments only
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   209
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   210
    TypeToCommentStringMapping 
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   211
        at:'application/x-python-source'
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   212
        put:#('#' (nil nil)).           "/ '#' for EOL comments only
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   213
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   214
    TypeToCommentStringMapping 
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   215
        at:'application/x-asn1-source'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   216
        put:#('--' ('--' '--')).          
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   217
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   218
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   219
    "/ st/x support files
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   220
    SuffixToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   221
        at:'style'
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   222
        put:#(';' (nil nil)).          
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   223
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   224
    SuffixToCommentStringMapping 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   225
        at:'rs'
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   226
        put:#(';' (nil nil)).
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   227
2937
67ef44218dc0 changed: #initializeCommentStringMappings
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
   228
    "Modified: / 06-09-2011 / 10:46:27 / cg"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   229
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   230
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   231
initializeDefaultCommands
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   232
    "these are used to select an application to be opened when a file of a particular
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   233
     type is double clicked in the browser.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   234
     TODO: move this to OS"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   235
3253
32a605517d3d class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
   236
    |unixCommands win32Commands unixPrintCommands win32PrintCommands listToTry|
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   237
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   238
    DefaultCommandPerMIMEPerOS := Dictionary new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   239
    DefaultCommandPerMIMEPerOS at:#unix  put:(unixCommands := Dictionary new).
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   240
    DefaultCommandPerMIMEPerOS at:#win32 put:(win32Commands := Dictionary new).
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   241
3187
6708c6aacc39 class: MIMETypes
Stefan Vogel <sv@exept.de>
parents: 3113
diff changeset
   242
    unixCommands at:'application/x-tar-compressed' put:'tar tvf -'.
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   243
2141
8decb5cd7766 support html browser under unix
ca
parents: 2118
diff changeset
   244
    OperatingSystem isMSWINDOWSlike ifFalse:[ |cmd|
3253
32a605517d3d class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
   245
        OperatingSystem isOSXlike ifTrue:[
3322
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   246
            unixCommands at:'text/html' put:('open -a Safari "%1"').       
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   247
            unixCommands at:'application/pdf' put:('open -a Preview "%1"').       
3253
32a605517d3d class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
   248
        ] ifFalse:[
3322
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   249
            listToTry := #('firefox' 'chrome' 'chromium' 'konqueror' 'opera').
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   250
            cmd := listToTry
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   251
                        detect:[:aCmd| (OperatingSystem pathOfCommand:aCmd) notEmptyOrNil ]
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   252
                        ifNone:nil.
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   253
            cmd notNil ifTrue:[
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   254
                unixCommands at:'text/html' put:(cmd, ' "%1"')       
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   255
            ].
3187
6708c6aacc39 class: MIMETypes
Stefan Vogel <sv@exept.de>
parents: 3113
diff changeset
   256
3322
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   257
            listToTry := #('acroread' 'okular' 'evince' 'kpdf' 'xpdf').
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   258
            cmd := listToTry
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   259
                        detect:[:aCmd| (OperatingSystem pathOfCommand:aCmd) notEmptyOrNil ]
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   260
                        ifNone:nil.
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   261
            cmd notNil ifTrue:[
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   262
                unixCommands at:'application/pdf' put:(cmd, ' "%1"')       
78576b7fa8c5 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3295
diff changeset
   263
            ].
3187
6708c6aacc39 class: MIMETypes
Stefan Vogel <sv@exept.de>
parents: 3113
diff changeset
   264
        ].
2141
8decb5cd7766 support html browser under unix
ca
parents: 2118
diff changeset
   265
    ].
8decb5cd7766 support html browser under unix
ca
parents: 2118
diff changeset
   266
8decb5cd7766 support html browser under unix
ca
parents: 2118
diff changeset
   267
2116
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   268
    DefaultPrintCommandPerMIMEPerOS := Dictionary new.
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   269
    DefaultPrintCommandPerMIMEPerOS at:#unix  put:(unixPrintCommands := Dictionary new).
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   270
    DefaultPrintCommandPerMIMEPerOS at:#win32 put:(win32PrintCommands := Dictionary new).
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   271
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   272
    "/ if you have a good (intelligent) spooler ;-)
2904
bb555534881e changed: #initializeDefaultCommands
Stefan Vogel <sv@exept.de>
parents: 2892
diff changeset
   273
    unixPrintCommands at:'application/pdf'         put:'lpr "%1"'.
2116
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   274
    "/ if not, you may need more...
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   275
    "/ unixPrintCommands at:'application/pdf'         put:'pdfToPS %1 | lpr'.
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
   276
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   277
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   278
     self initializeDefaultCommands
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   279
    "
1979
0612875a95c1 acroread command from registry (win32)
Claus Gittinger <cg@exept.de>
parents: 1925
diff changeset
   280
0612875a95c1 acroread command from registry (win32)
Claus Gittinger <cg@exept.de>
parents: 1925
diff changeset
   281
    "Modified: / 12-05-2004 / 11:43:23 / cg"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   282
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   283
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   284
initializeFileInfoMappings
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   285
    "these are used by the file browser if a 'file' command is not present in the OS"
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   286
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   287
    TypeToInfoMapping := Dictionary new.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   288
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   289
    TypeToInfoMapping at:'application/x-smalltalk-source' put:'Smalltalk source'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   290
    TypeToInfoMapping at:'text/html' put:'HTML document'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   291
    TypeToInfoMapping at:'text/xml' put:'XML document'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   292
    TypeToInfoMapping at:'application/xml' put:'XML document'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   293
    TypeToInfoMapping at:'application/x-c-source' put:'C source'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   294
    TypeToInfoMapping at:'application/x-c-header' put:'C header file'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   295
    TypeToInfoMapping at:'application/x-cpp-source' put:'C++ source'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   296
    TypeToInfoMapping at:'application/x-csharp-source' put:'C# source'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   297
    TypeToInfoMapping at:'application/x-java-source' put:'Java source'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   298
    TypeToInfoMapping at:'application/x-javascript' put:'Javascript source'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   299
    TypeToInfoMapping at:'application/x-lisp-source' put:'Lisp source'.
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   300
    TypeToInfoMapping at:'application/x-python-source' put:'Python source'.
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   301
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   302
    TypeToInfoMapping at:'application/x-make' put:'make rules'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   303
    TypeToInfoMapping at:'application/binary' put:'binary object file'.
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   304
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   305
    "
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   306
     self initializeFileInfoMappings
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   307
     'foo.H' asFilename mimeTypeFromName
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   308
     'foo.o' asFilename mimeTypeFromName
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   309
    "
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   310
!
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   311
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   312
initializeFileNameToMimeTypeMapping
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   313
    "initialize wellKnown facts"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   314
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   315
    |types|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   316
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   317
    FileSuffixToTypeMapping isNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   318
        FileSuffixToTypeMapping := Dictionary new
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   319
    ].
1887
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   320
    TypeToFileSuffixMapping isNil ifTrue:[
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   321
        TypeToFileSuffixMapping := Dictionary new
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   322
    ].
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   323
    FilenameToTypeMapping isNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   324
        FilenameToTypeMapping := Dictionary new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   325
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   326
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   327
    types := OrderedCollection new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   328
    types addAll:self textTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   329
    types addAll:self imageTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   330
    types addAll:self videoTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   331
    types addAll:self audioTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   332
    types addAll:self applicationTypeList.
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   333
    types addAll:self osSpecificTypeList.
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   334
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   335
    types pairWiseDo:[:suff :typeString|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   336
        |type|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   337
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   338
        type := MIMEType fromString:typeString.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   339
        suff isArray ifTrue:[
1887
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   340
            suff do:[:s | FileSuffixToTypeMapping at:s put:type].
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   341
            TypeToFileSuffixMapping at:type put:suff first.
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   342
        ] ifFalse:[
1887
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   343
            FileSuffixToTypeMapping at:suff put:type.
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   344
            TypeToFileSuffixMapping at:type put:suff.
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   345
        ].
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   346
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   347
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   348
    self miscFilenameList pairWiseDo:[:nm :typeString|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   349
        |type|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   350
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   351
        type := MIMEType fromString:typeString.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   352
        nm isArray ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   353
            nm do:[:s | FilenameToTypeMapping at:s put:type]
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   354
        ] ifFalse:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   355
            FilenameToTypeMapping at:nm put:type
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   356
        ]
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   357
    ].
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   358
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   359
    "
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   360
     self initializeFileNameToMimeTypeMapping
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   361
    "
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   362
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   363
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   364
initializeImageReaderMappings
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   365
    "these are used so select an image reader, based on a bitmap image's mime type"
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   366
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   367
    |rdr|
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   368
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   369
    FileSuffixToImageReaderClassMapping isNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   370
        FileSuffixToImageReaderClassMapping := Dictionary new
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   371
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   372
    "MIME" TypeToImageReaderClassMapping isNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   373
        TypeToImageReaderClassMapping := Dictionary new
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   374
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   375
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   376
    "/ setup mimeType to image reader class mapping ...
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   377
    TypeToImageReaderClassMapping at:'image/jpeg' put:JPEGReader.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   378
    TypeToImageReaderClassMapping at:'image/gif'  put:GIFReader.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   379
    TypeToImageReaderClassMapping at:'image/tiff' put:TIFFReader.
2710
29d76b5bb816 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2588
diff changeset
   380
    TypeToImageReaderClassMapping at:'image/png'  put:PNGReader.
3380
e7a59408d31a class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
   381
    TypeToImageReaderClassMapping at:'image/icns' put:MacOSXIconReader.
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   382
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   383
    "/ setup suffix to image reader class mapping ...
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   384
    FileSuffixToImageReaderClassMapping at:'jpg'  put:JPEGReader.
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   385
    FileSuffixToImageReaderClassMapping at:'jpeg' put:JPEGReader.
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   386
    FileSuffixToImageReaderClassMapping at:'gif'  put:GIFReader.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   387
    FileSuffixToImageReaderClassMapping at:'tif'  put:TIFFReader.
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   388
    FileSuffixToImageReaderClassMapping at:'tiff' put:TIFFReader.
2710
29d76b5bb816 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2588
diff changeset
   389
    FileSuffixToImageReaderClassMapping at:'png'  put:PNGReader.
3380
e7a59408d31a class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
   390
    FileSuffixToImageReaderClassMapping at:'icns'  put:MacOSXIconReader.
2570
a089fc8372f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   391
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   392
    "/ some 'used-to-be-optional' readers
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   393
    (rdr := Smalltalk at:#WindowsIconReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   394
        TypeToImageReaderClassMapping       at:'image/bmp'      put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   395
        TypeToImageReaderClassMapping       at:'image/x-MS-bmp' put:rdr.
3585
11f3dcdc89fe #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 3532
diff changeset
   396
        TypeToImageReaderClassMapping       at:'image/x-ms-bmp' put:rdr.
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   397
        TypeToImageReaderClassMapping       at:'image/x-MS-ico' put:rdr.
3585
11f3dcdc89fe #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 3532
diff changeset
   398
        TypeToImageReaderClassMapping       at:'image/x-ms-ico' put:rdr.
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   399
        FileSuffixToImageReaderClassMapping at:'bmp'            put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   400
        FileSuffixToImageReaderClassMapping at:'ico'            put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   401
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   402
    (rdr := Smalltalk at:#XBMReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   403
        TypeToImageReaderClassMapping       at:'image/x-xbitmap' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   404
        FileSuffixToImageReaderClassMapping at:'xbm'             put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   405
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   406
    (rdr := Smalltalk at:#XPMReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   407
        TypeToImageReaderClassMapping       at:'image/x-xpixmap' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   408
        FileSuffixToImageReaderClassMapping at:'pm'              put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   409
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   410
    (rdr := Smalltalk at:#PBMReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   411
        TypeToImageReaderClassMapping       at:'image/x-portable-pixmap'  put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   412
        TypeToImageReaderClassMapping       at:'image/x-portable-bitmap'  put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   413
        TypeToImageReaderClassMapping       at:'image/x-portable-graymap' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   414
        TypeToImageReaderClassMapping       at:'image/x-portable-anymap'  put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   415
        FileSuffixToImageReaderClassMapping at:'ppm'                      put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   416
        FileSuffixToImageReaderClassMapping at:'pbm'                      put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   417
        FileSuffixToImageReaderClassMapping at:'pgm'                      put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   418
        FileSuffixToImageReaderClassMapping at:'pnm'                      put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   419
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   420
    (rdr := Smalltalk at:#PCXReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   421
        TypeToImageReaderClassMapping       at:'image/x-pcx' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   422
        FileSuffixToImageReaderClassMapping at:'pcx'         put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   423
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   424
    (rdr := Smalltalk at:#TargaReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   425
        TypeToImageReaderClassMapping       at:'image/x-targa' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   426
        FileSuffixToImageReaderClassMapping at:'tga'           put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   427
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   428
    (rdr := Smalltalk at:#XWDReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   429
        TypeToImageReaderClassMapping       at:'image/x-xwindowdump' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   430
        TypeToImageReaderClassMapping       at:'image/x-windowdump'  put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   431
        FileSuffixToImageReaderClassMapping at:'xwd'                 put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   432
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   433
    (rdr := Smalltalk at:#BlitImageReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   434
        TypeToImageReaderClassMapping       at:'image/x-blitimage' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   435
        FileSuffixToImageReaderClassMapping at:'48x48x1'           put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   436
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   437
    (rdr := Smalltalk at:#IrisRGBReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   438
        TypeToImageReaderClassMapping       at:'image/x-rgb' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   439
        FileSuffixToImageReaderClassMapping at:'rgb'         put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   440
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   441
    (rdr := Smalltalk at:#SunRasterReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   442
        TypeToImageReaderClassMapping       at:'image/x-sunraster' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   443
        FileSuffixToImageReaderClassMapping at:'im8'               put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   444
        FileSuffixToImageReaderClassMapping at:'icon'              put:rdr.
2570
a089fc8372f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   445
    ].
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   446
    (rdr := Smalltalk at:#ST80FormReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   447
        TypeToImageReaderClassMapping       at:'image/x-st80-form' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   448
        FileSuffixToImageReaderClassMapping at:'form'              put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   449
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   450
    (rdr := Smalltalk at:#FaceReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   451
        TypeToImageReaderClassMapping       at:'image/x-face' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   452
        FileSuffixToImageReaderClassMapping at:'face'         put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   453
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   454
    (rdr := Smalltalk at:#PCDReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   455
        TypeToImageReaderClassMapping       at:'image/x-photo-cd' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   456
        FileSuffixToImageReaderClassMapping at:'pcd'              put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   457
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   458
    (rdr := Smalltalk at:#CMURasterReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   459
        TypeToImageReaderClassMapping       at:'image/x-cmu-raster' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   460
        FileSuffixToImageReaderClassMapping at:'ras'                put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   461
    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   462
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   463
    "/ movie formats - experimental and not yet complete / finished / delivered / published
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   464
"/    (rdr := Smalltalk at:#FLIReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   465
"/        TypeToImageReaderClassMapping       at:'video/x-fli' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   466
"/        FileSuffixToImageReaderClassMapping at:'fli'         put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   467
"/    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   468
"/    (rdr := Smalltalk at:#AVIReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   469
"/        TypeToImageReaderClassMapping       at:'video/x-msvideo' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   470
"/        FileSuffixToImageReaderClassMapping at:'avi'             put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   471
"/    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   472
"/    (rdr := Smalltalk at:#AVIReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   473
"/        TypeToImageReaderClassMapping       at:'video/x-msvideo' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   474
"/        FileSuffixToImageReaderClassMapping at:'avi'             put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   475
"/    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   476
"/    (rdr := Smalltalk at:#QuickTimeReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   477
"/        TypeToImageReaderClassMapping       at:'video/quicktime' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   478
"/        FileSuffixToImageReaderClassMapping at:'qt'              put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   479
"/        FileSuffixToImageReaderClassMapping at:'mov'             put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   480
"/        FileSuffixToImageReaderClassMapping at:'moov'            put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   481
"/    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   482
"/    (rdr := Smalltalk at:#MPEG2Reader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   483
"/        TypeToImageReaderClassMapping       at:'video/x-mpeg2' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   484
"/        FileSuffixToImageReaderClassMapping at:'mpg2'          put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   485
"/        FileSuffixToImageReaderClassMapping at:'mpv2'          put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   486
"/        FileSuffixToImageReaderClassMapping at:'mp2v'          put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   487
"/        FileSuffixToImageReaderClassMapping at:'mp2'           put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   488
"/    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   489
"/    (rdr := Smalltalk at:#MPEGReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   490
"/        TypeToImageReaderClassMapping       at:'video/mpeg' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   491
"/        FileSuffixToImageReaderClassMapping at:'mpg'        put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   492
"/        FileSuffixToImageReaderClassMapping at:'mpeg'       put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   493
"/        FileSuffixToImageReaderClassMapping at:'mpe'        put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   494
"/        FileSuffixToImageReaderClassMapping at:'mpv'        put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   495
"/        FileSuffixToImageReaderClassMapping at:'vps'        put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   496
"/        FileSuffixToImageReaderClassMapping at:'mpegv'      put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   497
"/    ].
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   498
"/    (rdr := Smalltalk at:#SGIMovieReader) notNil ifTrue:[
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   499
"/        TypeToImageReaderClassMapping       at:'video/x-sgi-movie' put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   500
"/        FileSuffixToImageReaderClassMapping at:'movie'             put:rdr.
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   501
"/    ].
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   502
!
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   503
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   504
initializeParenthesisSpecMappings
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   505
    "these are used by the editors to mark matching parenthesis"
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   506
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   507
    |spec|
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   508
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   509
    TypeToParenthesisSpecMapping := Dictionary new.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   510
    SuffixToParenthesisSpecMapping := Dictionary new.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   511
    
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   512
    "/ ST/X spec
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   513
    spec := IdentityDictionary new.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   514
    spec at:#open put:#( $( $[ ${ ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   515
    spec at:#close put:#( $) $] $} ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   516
    spec at:#ignore put:#( $' $" '$[' '$]' '${' '$)' ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   517
    spec at:#eolComment put:'"/'.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   518
    TypeToParenthesisSpecMapping at:'application/x-smalltalk-source' put:spec.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   519
    
2479
40a05c259915 c# mime type
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
   520
    "/ XML & HTML
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   521
    spec := IdentityDictionary new.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   522
    spec at:#open put:#( $< ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   523
    spec at:#close put:#( $> ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   524
    spec at:#ignore put:#( $' $" '$[' '$]' '${' '$)' ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   525
    #( 'text/html' 'text/xml' 'application/xml' ) do:[:eachXMLType | 
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   526
        TypeToParenthesisSpecMapping at:eachXMLType put:spec
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   527
    ].
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   528
    
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   529
    "/ ANSI-c, Java, C#    
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   530
    spec := IdentityDictionary new.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   531
    spec at:#open put:#( $( $[ ${ ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   532
    spec at:#close put:#( $) $] $} ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   533
    spec at:#ignore put:#( $' $" ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   534
    spec at:#eolComment put:'//'.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   535
    TypeToParenthesisSpecMapping at:'application/x-c-source' put:spec.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   536
    TypeToParenthesisSpecMapping at:'application/x-cpp-source' put:spec.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   537
    TypeToParenthesisSpecMapping at:'application/x-csharp-source' put:spec.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   538
    TypeToParenthesisSpecMapping at:'application/x-java-source' put:spec.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   539
    TypeToParenthesisSpecMapping at:'application/x-javascript' put:spec.
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   540
    TypeToParenthesisSpecMapping at:'application/x-python-source' put:spec.
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   541
    
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   542
    "/ Lisp / Scheme    
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   543
    spec := IdentityDictionary new.
3039
1a8ca229615f class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
   544
    spec at:#open put:#( $( $[ ).
1a8ca229615f class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
   545
    spec at:#close put:#( $) $] ).
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   546
    spec at:#ignore put:#( $" ).
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   547
    spec at:#eolComment put:';'.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   548
    TypeToParenthesisSpecMapping at:'application/x-lisp-source' put:spec.
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   549
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   550
    "Created: / 10-04-2007 / 15:16:37 / cg"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   551
! !
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   552
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   553
!MIMETypes class methodsFor:'initialization-lists'!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   554
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   555
applicationCompressorsAndArchiveTypeList
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   556
    ^ #(
1890
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   557
        'tar'                       'application/x-tar'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   558
        'gtar'                      'application/x-gtar'
1891
1b53c21c64c5 tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1890
diff changeset
   559
        ('tgz' 'tar.gz')            'application/x-tar-gzip-compressed'   "/ 'application/x-tar-compressed'
1b53c21c64c5 tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1890
diff changeset
   560
        ('tar.bz2')                 'application/x-tar-bzip2-compressed'
1890
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   561
        'zip'                       'application/x-zip-compressed'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   562
        'bz2'                       'application/x-bzip2-compressed'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   563
        ('gz' 'z')                  'application/x-gzip-compressed'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   564
        'cpio'                      'application/x-cpio'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   565
        'shar'                      'application/x-shar'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   566
        'jar'                       'application/java-archive'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   567
        'sar'                       'application/x-squeak-archive'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   568
        'sit'                       'application/x-stuffit'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   569
        'hqx'                       'application/mac-binhex40'
ccf118af49ce tar.bz2 suffix
Claus Gittinger <cg@exept.de>
parents: 1889
diff changeset
   570
        'cpt'                       'application/mac-compactpro'
3756
ca18095fa3c0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   571
        'pkg'                       'application/x-xar'     "/ a mac archiver for packages
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   572
    )
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   573
!
645
97e83ab4d246 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 643
diff changeset
   574
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   575
applicationMiscTypeList
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   576
    "misc applications"
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   577
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   578
    ^ #(
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   579
        ('a' 'o' 'obj' )                        'application/binary'
2968
bcd13537812b changed: #applicationMiscTypeList
sr
parents: 2942
diff changeset
   580
        ('lic')                                 'application/license'
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   581
        ('dll' 'so')                            'application/shared-library'
2486
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
   582
42063a7fc3db mimeType: x-expecco-testSuite (extension: ets)
Claus Gittinger <cg@exept.de>
parents: 2479
diff changeset
   583
        ('ets')                                 'application/x-expecco-testsuite'
3104
39607bbc7c1d class: MIMETypes
Stefan Vogel <sv@exept.de>
parents: 3039
diff changeset
   584
        ('etr')                                 'application/x-expecco-testrepository'
2489
b891d96fd496 elf extension: x-expecco-logfile
Claus Gittinger <cg@exept.de>
parents: 2487
diff changeset
   585
        ('elf')                                 'application/x-expecco-logfile'
2886
22b48a4da285 comment/format in: #initializeFileNameToMimeTypeMapping
sr
parents: 2830
diff changeset
   586
        ('expeccolicense')                      'application/x-expecco-license'
2888
a0bd24f746c0 changed: #applicationMiscTypeList
sr
parents: 2886
diff changeset
   587
        ('expeccopatch')                        'application/x-expecco-patch'
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   588
    )
2886
22b48a4da285 comment/format in: #initializeFileNameToMimeTypeMapping
sr
parents: 2830
diff changeset
   589
2968
bcd13537812b changed: #applicationMiscTypeList
sr
parents: 2942
diff changeset
   590
    "Modified: / 03-11-2011 / 10:42:28 / sr"
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   591
!
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   592
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   593
applicationProgLangTypeList
3020
3f9c74ff0975 changed: #applicationProgLangTypeList
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
   594
    "applications for programming languages"
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 663
diff changeset
   595
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   596
    ^ #(
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   597
        ('st' 'cls' 'rc')            'application/x-smalltalk-source'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   598
        'sif'                        'application/x-smalltalk-source-sif'
1668
070264d3a087 added dolphin package
Claus Gittinger <cg@exept.de>
parents: 1666
diff changeset
   599
        'pac'                        'application/x-smalltalk-dolphin-package'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   600
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   601
        'sts'                        'application/x-squeak-source'
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   602
        'pr'                         'application/x-squeak-project'
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   603
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   604
        'c'                          'application/x-c-source'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   605
        ('cc' 'cpp')                 'application/x-cpp-source'
2479
40a05c259915 c# mime type
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
   606
        'cs'                         'application/x-csharp-source'
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   607
        ('h' 'hi')                   'application/x-c-header'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   608
        ('js' 'mocha')               'application/x-javascript'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   609
        ('java' 'jav')               'application/x-java-source'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   610
        'sh'                         'application/x-sh'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   611
        'csh'                        'application/x-csh'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   612
        'tcl'                        'application/x-tcl'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   613
        'pl'                         'application/x-perl'
3020
3f9c74ff0975 changed: #applicationProgLangTypeList
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
   614
        'dart'                       'application/x-dart'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   615
        'mak'                        'application/x-make'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   616
        'bat'                        'application/x-batch-script'
3008
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   617
        ('asn1' 'x409' 'gdmo' 'gdm') 'application/x-asn1-source'
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   618
2912
f3466ea0810b changed: #applicationProgLangTypeList
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
   619
        ('lisp' 'lsp' 'scm' 'ss' 
f3466ea0810b changed: #applicationProgLangTypeList
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
   620
         'arc' 'cl' 'brg')           'application/x-lisp-source'
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   621
        'py'                         'application/x-python-source'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   622
    )
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
   623
3020
3f9c74ff0975 changed: #applicationProgLangTypeList
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
   624
    "Modified (comment): / 21-08-2012 / 20:55:13 / cg"
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   625
!
1561
942de18a3e3e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1560
diff changeset
   626
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   627
applicationTextTypeList
1606
158c10a36736 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1604
diff changeset
   628
    "text applications"
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   629
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   630
    ^ #(
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   631
        ('ps' 'eps')                 'application/postscript'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   632
        "/ 'ai'                         'application/postscript'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   633
        'pdf'                        'application/pdf'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   634
        'rtf'                        'application/rtf'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   635
        "/ 'rtf'                        'text/rtf'            ????
3008
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   636
        'ics'                        'text/calendar'
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   637
        'doc'                        'application/ms-word-document'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   638
        "/ 'doc'                        'application/winword'
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   639
        'swf'                        'application/x-shockwave-flash'
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   640
        ('ppt' 'ppz' 'pot' 'pps')    'application/mspowerpoint'
2028
5d67d14ad4a0 slk type added
Michael Beyl <mb@exept.de>
parents: 2024
diff changeset
   641
        'xls'                        'application/x-excel'   
5d67d14ad4a0 slk type added
Michael Beyl <mb@exept.de>
parents: 2024
diff changeset
   642
        'slk'                        'application/vnd.ms-excel'
2911
7afaf1fdae8b comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 2904
diff changeset
   643
        'txt'                        'text/plain'
2970
8b91ec204044 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 2968
diff changeset
   644
        'xlsx'                       'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
3476
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   645
        'xltx'                       'application/vnd.openxmlformats-officedocument.spreadsheetml.template'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   646
        'potx'                       'application/vnd.openxmlformats-officedocument.presentationml.template'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   647
        'ppsx'                       'application/vnd.openxmlformats-officedocument.presentationml.slideshow'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   648
        'pptx'                       'application/vnd.openxmlformats-officedocument.presentationml.presentation'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   649
        'sldx'                       'application/vnd.openxmlformats-officedocument.presentationml.slide'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   650
        'docx'                       'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   651
        'dotx'                       'application/vnd.openxmlformats-officedocument.wordprocessingml.template'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   652
        'xlam'                       'application/vnd.ms-excel.addin.macroEnabled.12'
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   653
        'xlsb'                       'application/vnd.ms-excel.sheet.binary.macroEnabled.12'
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   654
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   655
        'edi'                        'application/EDIFACT'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   656
    )
2911
7afaf1fdae8b comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 2904
diff changeset
   657
3008
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   658
    "Modified: / 26-05-2012 / 15:27:30 / cg"
3476
ae8711fddc4e class: MIMETypes
sr
parents: 3451
diff changeset
   659
    "Modified: / 18-05-2015 / 09:46:47 / sr"
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   660
!
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   661
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   662
applicationTypeList
1606
158c10a36736 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1604
diff changeset
   663
    "applications"
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   664
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   665
    |typeList|                            
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   666
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   667
    typeList := OrderedCollection new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   668
    typeList addAll:self applicationProgLangTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   669
    typeList addAll:self applicationTextTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   670
    typeList addAll:self applicationCompressorsAndArchiveTypeList.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   671
    typeList addAll:self applicationMiscTypeList.
1616
f07466809515 add binary file extensions
penk
parents: 1612
diff changeset
   672
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   673
    ^ typeList
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   674
!
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   675
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   676
audioTypeList
1606
158c10a36736 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1604
diff changeset
   677
    "audio formats ..."
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   678
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   679
    ^ #(
1720
cca50de2e8e4 change x-png to png
penk
parents: 1716
diff changeset
   680
        ('au' 'snd')            'audio/basic'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   681
        ('ra')                  'audio/x-realaudio'
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   682
        ('ram' 'rm')            'audio/x-pn-realaudio'
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   683
"/ cg: see unixSpecific / windowsSpecific
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   684
"/        'rpm'                   'audio/x-pn-realaudio-plugin'
3008
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   685
        ('mpa' 'mpega' 'mpga')  'audio/mpeg'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   686
        "/ 'mp3'                   'audio/x-mp3'
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   687
        ('mp3' 'mp2')           'audio/mpeg'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   688
        'wav'                   'audio/x-wav'
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   689
        ('aif' 'aiff' 'aifc')   'audio/x-aiff'
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   690
        ('midi' 'mid')          'audio/midi'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   691
    )
3008
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   692
aadfac4bdc84 changed:
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   693
    "Modified: / 26-05-2012 / 15:23:45 / cg"
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   694
!
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   695
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   696
imageTypeList
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   697
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   698
    ^ #(
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   699
        "/ image formats ...
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   700
1216
26fe79e724d0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   701
        ('jpg' 'jpeg')  'image/jpeg'
1188
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   702
        'gif'           'image/gif'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   703
        ('tif' 'tiff')  'image/tiff'
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   704
        ('xbm' 'bm')    'image/x-xbitmap'
1188
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   705
        'xpm'           'image/x-xpixmap'
1720
cca50de2e8e4 change x-png to png
penk
parents: 1716
diff changeset
   706
        'png'           'image/png'
1188
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   707
        'pcd'           'image/x-photo-cd'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   708
        'bmp'           'image/x-MS-bmp'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   709
        'rgb'           'image/x-rgb'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   710
        'ppm'           'image/x-portable-pixmap'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   711
        'pgm'           'image/x-portable-graymap'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   712
        'pbm'           'image/x-portable-bitmap'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   713
        'pnm'           'image/x-portable-anymap'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   714
        'xwd'           'image/x-xwindowdump'
bea6424548e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
   715
        'ras'           'image/x-cmu-raster'
1216
26fe79e724d0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
   716
        'tga'           'image/x-targa'
2020
d5c5d7928433 add 'image/x-ico' for *.ico files
penk
parents: 1981
diff changeset
   717
        'ico'           'image/x-ico'
3380
e7a59408d31a class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3367
diff changeset
   718
        'icns'          'image/icns'  
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   719
    ) 
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   720
!
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   721
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   722
miscFilenameList
3104
39607bbc7c1d class: MIMETypes
Stefan Vogel <sv@exept.de>
parents: 3039
diff changeset
   723
    "other formats (not by suffix, but by fileName instead) ..."
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   724
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   725
    ^ #(
2113
65cbfeee886d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   726
        ('makefile' 'make.proto' 'make.spec' 'nt.mak')  'application/x-make'
2830
2945a046a7f5 changed: #miscFilenameList
Claus Gittinger <cg@exept.de>
parents: 2820
diff changeset
   727
        ('exe' 'bin' 'com')                             'application/octet-stream'
2113
65cbfeee886d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
   728
        ('class')                                       'application/octet-stream'
2375
723e3325bad1 top file format
Claus Gittinger <cg@exept.de>
parents: 2298
diff changeset
   729
        ('top')                                         'application/x-waltop-digital-notepad'
1609
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   730
    )
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   731
!
090ee7aa4cab *** empty log message ***
penk
parents: 1606
diff changeset
   732
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   733
osSpecificTypeList
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   734
    OperatingSystem isMSWINDOWSlike ifTrue:[
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   735
        ^ self windowsSpecificTypeList
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   736
    ].
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   737
    ^ self unixSpecificTypeList
2023
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   738
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   739
"
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   740
    self osSpecificTypeList
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   741
"
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   742
!
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   743
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   744
textTypeList
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   745
   "/ misc text ...
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   746
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   747
    ^ #(
1887
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
   748
        ('html' 'htm' 'shtml')  'text/html'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   749
        ('txt' 'text')          'text/plain'
1680
d34932ed0e86 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   750
        'xml'                   'text/xml'
3517
e65c4b28543e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   751
        'xsd'                   'text/xml'
1777
5879ec563fc1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   752
        'css'                   'text/css'
2432
8dcb56eb1e89 csv icon
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
   753
        'csv'                   'text/csv'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   754
    )
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   755
!
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   756
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   757
unixSpecificTypeList
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   758
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   759
    ^ #(
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   760
"/ cg: RPM is 'audio/x-pn-realaudio-plugin' for WIN32
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   761
"/     and 'application/x-rpm' for Unix
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   762
        'rpm'                   'application/x-rpm'
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   763
    )
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   764
!
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   765
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   766
videoTypeList
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   767
    "/ video formats ...
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   768
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   769
    ^ #(
1720
cca50de2e8e4 change x-png to png
penk
parents: 1716
diff changeset
   770
        ('qt' 'mov' 'moov')                'video/quicktime'
cca50de2e8e4 change x-png to png
penk
parents: 1716
diff changeset
   771
        ('mpv' 'mpegv' 'mpg' 'mpeg' 'mpe') 'video/mpeg'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   772
        'movie'                            'video/x-sgi-movie'
1820
7817c4809af7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1819
diff changeset
   773
        ('avi' 'wmv' 'asf')                'video/x-msvideo'
1604
0c678133dc4b new class for mimeType instances
penk
parents: 1593
diff changeset
   774
        ('mpv2' 'mp2v' 'mp2' 'mpeg2')      'video/x-mpeg2'
3367
048fc9f61885 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3359
diff changeset
   775
        ('mp4')                            'video/mp4'
1680
d34932ed0e86 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   776
        'rm'                               'application/vnd.rn-realmedia'
d34932ed0e86 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1668
diff changeset
   777
        'rv'                               'video/x-pn-realvideo'
3295
c430566c334c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3260
diff changeset
   778
        'fli'                              'video/x-fli'
3367
048fc9f61885 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3359
diff changeset
   779
        'flv'                              'video/x-flv'      "/ macromedia flash video
1778
6a019cc68896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1777
diff changeset
   780
   )
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   781
!
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   782
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   783
windowsSpecificTypeList
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   784
    ^ #(
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   785
"/ cg: RPM is 'audio/x-pn-realaudio-plugin' for WIN32
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   786
"/     and 'application/x-rpm' for Unix
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   787
        'rpm'                   'audio/x-pn-realaudio-plugin'
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   788
    )
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   789
! !
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   790
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   791
!MIMETypes class methodsFor:'obsolete'!
1489
9e339e123bfa commentStrings: added ifUnknown-argument
tm
parents: 1475
diff changeset
   792
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   793
defaultCommandForMimeType:mimeType
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   794
    <resource: #obsolete>
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   795
    self obsoleteMethodWarning:'use #defaultCommandTemplateToOpenMimeType:'.
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   796
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   797
    ^ self defaultCommandTemplateToOpenMimeType:mimeType
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   798
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   799
    "
2758
66e62ceecb67 comment/format in: #defaultCommandForMimeType:
Claus Gittinger <cg@exept.de>
parents: 2724
diff changeset
   800
     MIMETypes defaultCommandTemplateToOpenMimeType:'application/pdf' 
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   801
    "
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   802
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   803
    "Created: / 12-05-2004 / 11:09:22 / cg"
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   804
    "Modified: / 12-05-2004 / 11:16:53 / cg"
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   805
!
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
   806
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   807
fontForCharset:aCharSetName
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   808
    "return the font-encoding for an iso-charset"
1489
9e339e123bfa commentStrings: added ifUnknown-argument
tm
parents: 1475
diff changeset
   809
1981
52b15b1e90b6 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 1979
diff changeset
   810
    <resource:#obsolete>
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   811
    self obsoleteMethodWarning:'use FontDescription >> fontNamePatternForCharset:'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   812
    ^ FontDescription fontNamePatternForCharset:aCharSetName.
1489
9e339e123bfa commentStrings: added ifUnknown-argument
tm
parents: 1475
diff changeset
   813
9e339e123bfa commentStrings: added ifUnknown-argument
tm
parents: 1475
diff changeset
   814
    "
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   815
     MIMETypes fontForCharset:'iso2022-jp'       
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   816
     MIMETypes fontForCharset:'euc-jp'     
1472
bef5798d367d comment strings
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   817
    "
bef5798d367d comment strings
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   818
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   819
    "Modified: / 1.8.1998 / 17:00:57 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   820
! !
1472
bef5798d367d comment strings
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   821
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
   822
!MIMETypes class methodsFor:'queries'!
1472
bef5798d367d comment strings
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   823
647
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   824
defineImageType:mimeType suffix:aSuffix reader:aReaderClass
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   825
    "register an image reader."
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   826
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   827
    aSuffix notNil ifTrue:[
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   828
        self imageReaderForSuffix:aSuffix put:aReaderClass.
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   829
    ].
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   830
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   831
    mimeType notNil ifTrue:[
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   832
        self imageReaderForType:mimeType put:aReaderClass
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   833
    ].
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   834
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   835
    (aSuffix notNil and:[mimeType notNil]) ifTrue:[
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   836
        self mimeTypeForSuffix:aSuffix put:mimeType
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   837
    ].
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   838
!
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
   839
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   840
fileInfoForMimeType:mimeType
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   841
    "given a mimeType, return an info string similar to what the unix 'file' command
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   842
     provides. This info here is returned by systems which have no file (i.e. MSDOS) and
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   843
     for types of which file does not know about (smalltalk files, for example)"
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   844
3400
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
   845
    TypeToInfoMapping isNil ifTrue:[
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
   846
        self initializeFileInfoMappings
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
   847
    ].
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
   848
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   849
    ^ TypeToInfoMapping at:mimeType ifAbsent:nil
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   850
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   851
    "
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   852
     self fileInfoForMimeType:(MIMEType fromString:'image/gif')     
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   853
    "
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   854
!
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
   855
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   856
fileSuffixToImageReaderMapping
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   857
    "return the suffix-to-imageReader mapping"
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   858
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   859
    ^ FileSuffixToImageReaderClassMapping ? #()
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   860
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   861
    "Modified: / 1.8.1998 / 17:00:11 / cg"
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   863
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   864
imageFileSuffixes
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   865
    "return a collection with known file suffixes"
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   866
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   867
    FileSuffixToImageReaderClassMapping isNil ifTrue:[^ #()].
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   868
    ^ FileSuffixToImageReaderClassMapping keys
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   869
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   870
    "Created: / 30.6.1997 / 22:04:48 / cg"
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   871
    "Modified: / 1.8.1998 / 17:01:26 / cg"
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   872
!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   873
3014
e6d9a204da08 comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 3012
diff changeset
   874
mimeTypeForFilename:filenameOrString
1272
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   875
    "given a filename, return the mime-type or nil, if unknown"
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   876
1780
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   877
    |type filename lcFilename suff suff2|
1272
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   878
3014
e6d9a204da08 comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 3012
diff changeset
   879
    filename := filenameOrString asFilename.
1474
bd86cf0c1a84 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
   880
bd86cf0c1a84 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
   881
    lcFilename := filename baseName asLowercase.
1272
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   882
    type := FilenameToTypeMapping at:lcFilename ifAbsent:nil.
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   883
    type isNil ifTrue:[
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   884
        "/ allow for fallback ...
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   885
        type := OperatingSystem mimeTypeForFilename:lcFilename.
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   886
        "/ the special value #unknown is returned as nil;
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   887
        "/ this avoids constant retry if a mimeType is not known in
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   888
        "/ the OS.
1275
cf421c7dfeec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   889
"/        type isNil ifTrue:[
cf421c7dfeec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   890
"/            FilenameToTypeMapping at:lcFilename put:#unknown
cf421c7dfeec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
   891
"/        ].
1272
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   892
    ].
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   893
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   894
    type == #unknown ifTrue:[
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   895
        type := nil.
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   896
    ].
1273
7a52d4bcdb10 filenames mime query falls back to suffix query.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   897
7a52d4bcdb10 filenames mime query falls back to suffix query.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   898
    type isNil ifTrue:[
1473
876caa979b7e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1472
diff changeset
   899
        suff := filename suffix.
1273
7a52d4bcdb10 filenames mime query falls back to suffix query.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   900
        suff size ~~ 0 ifTrue:[
1780
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   901
            "/ sigh - special code for multiple-suffices...
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   902
            "/ .tar.gz -> tgz
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   903
            suff2 := filename withoutSuffix suffix.
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   904
            suff2 size > 0 ifTrue:[
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   905
                type := self mimeTypeForSuffix:(suff2 , '.' , suff).
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   906
            ].
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   907
            type isNil ifTrue:[
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   908
                type := self mimeTypeForSuffix:suff
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   909
            ].
1273
7a52d4bcdb10 filenames mime query falls back to suffix query.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   910
        ]
7a52d4bcdb10 filenames mime query falls back to suffix query.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   911
    ].
7a52d4bcdb10 filenames mime query falls back to suffix query.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   912
1272
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   913
    ^ type
1780
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   914
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   915
    "
2820
98e9403031ad comment/format
Claus Gittinger <cg@exept.de>
parents: 2758
diff changeset
   916
     MIMETypes mimeTypeForFilename:'typeinst.dvi'      
98e9403031ad comment/format
Claus Gittinger <cg@exept.de>
parents: 2758
diff changeset
   917
     MIMETypes mimeTypeForFilename:'foo.tar'
98e9403031ad comment/format
Claus Gittinger <cg@exept.de>
parents: 2758
diff changeset
   918
     MIMETypes mimeTypeForFilename:'foo.tgz'
98e9403031ad comment/format
Claus Gittinger <cg@exept.de>
parents: 2758
diff changeset
   919
     MIMETypes mimeTypeForFilename:'foo.tar.gz'
2911
7afaf1fdae8b comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 2904
diff changeset
   920
     MIMETypes mimeTypeForFilename:'foo.txt'   
3756
ca18095fa3c0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   921
     MIMETypes mimeTypeForFilename:'foo.pkg'   
1780
ba94d562efe8 support double-suffix such as '.tar.gz'
Claus Gittinger <cg@exept.de>
parents: 1779
diff changeset
   922
    "
2911
7afaf1fdae8b comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 2904
diff changeset
   923
7afaf1fdae8b comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 2904
diff changeset
   924
    "Modified: / 10-05-2011 / 11:55:18 / cg"
3014
e6d9a204da08 comment/format in: #mimeTypeForFilename:
Claus Gittinger <cg@exept.de>
parents: 3012
diff changeset
   925
    "Modified (format): / 28-07-2012 / 09:39:15 / cg"
1272
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   926
!
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   927
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   928
mimeTypeForFilename:filename put:mimeType
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   929
    "register a mime type for a filename"
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   930
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   931
    FilenameToTypeMapping isNil ifTrue:[
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   932
        FilenameToTypeMapping := Dictionary new
91ba4078b690 additional mime table for filenames without suffix.
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
   933
    ].
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
   934
    FilenameToTypeMapping at:filename put:(MIMEType fromString:mimeType asLowercase)
1611
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
   935
!
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
   936
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   937
mimeTypeForSuffix:suffix
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   938
    "given a file suffix, return the mime-type"
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   939
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   940
    |type lcSuffix|
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   941
1837
penk
parents: 1820
diff changeset
   942
    suffix = LastSuffix ifTrue:[
penk
parents: 1820
diff changeset
   943
        ^ LastType
penk
parents: 1820
diff changeset
   944
    ].
penk
parents: 1820
diff changeset
   945
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   946
    lcSuffix := suffix asLowercase.
1837
penk
parents: 1820
diff changeset
   947
    type := FileSuffixToTypeMapping at:lcSuffix ifAbsent:nil.
penk
parents: 1820
diff changeset
   948
    type isNil ifTrue:[
penk
parents: 1820
diff changeset
   949
        "/ allow for fallback ...
penk
parents: 1820
diff changeset
   950
        type := OperatingSystem mimeTypeForSuffix:lcSuffix.
penk
parents: 1820
diff changeset
   951
        "/ the special value #unknown is returned as nil;
penk
parents: 1820
diff changeset
   952
        "/ this avoids constant retry if a mimeType is not known in the OS.
penk
parents: 1820
diff changeset
   953
penk
parents: 1820
diff changeset
   954
        type := type ? #unknown.
penk
parents: 1820
diff changeset
   955
        FileSuffixToTypeMapping at:lcSuffix put:type.
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   956
    ].
1837
penk
parents: 1820
diff changeset
   957
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   958
    type == #unknown ifTrue:[
1837
penk
parents: 1820
diff changeset
   959
        type := nil.
1180
c3309b30d14f code cleanup & added mimeType aquire fallBack via OS
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   960
    ].
1840
19123ded64e3 mime Types have to MIMEType instance
penk
parents: 1837
diff changeset
   961
    type notNil ifTrue:[
19123ded64e3 mime Types have to MIMEType instance
penk
parents: 1837
diff changeset
   962
        LastSuffix := suffix.
19123ded64e3 mime Types have to MIMEType instance
penk
parents: 1837
diff changeset
   963
        LastType := MIMEType fromString:type.
19123ded64e3 mime Types have to MIMEType instance
penk
parents: 1837
diff changeset
   964
        ^ LastType
19123ded64e3 mime Types have to MIMEType instance
penk
parents: 1837
diff changeset
   965
    ].
1841
b7ff9829e4b3 return value should be undefined if type isNil
penk
parents: 1840
diff changeset
   966
    ^ type
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   967
1666
2fe4fb7be12c added xml type
Claus Gittinger <cg@exept.de>
parents: 1616
diff changeset
   968
    "
1840
19123ded64e3 mime Types have to MIMEType instance
penk
parents: 1837
diff changeset
   969
     self mimeTypeForSuffix:'gif'     
1888
ef0f346b8f43 rpm suffix is RPM-package under unix (realplayer under windows)
Claus Gittinger <cg@exept.de>
parents: 1887
diff changeset
   970
     self mimeTypeForSuffix:'rpm'     
2891
9aee109c1c1c changed:
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   971
     self mimeTypeForSuffix:'zip'     
1666
2fe4fb7be12c added xml type
Claus Gittinger <cg@exept.de>
parents: 1616
diff changeset
   972
    "
2fe4fb7be12c added xml type
Claus Gittinger <cg@exept.de>
parents: 1616
diff changeset
   973
2891
9aee109c1c1c changed:
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   974
    "Created: / 30-06-1997 / 21:55:51 / cg"
9aee109c1c1c changed:
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   975
    "Modified: / 14-02-2011 / 17:14:34 / cg"
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   976
!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   977
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   978
mimeTypeForSuffix:suffix put:mimeType
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   979
    "register a mime type for a file suffix"
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   980
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   981
    FileSuffixToTypeMapping isNil ifTrue:[
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
        FileSuffixToTypeMapping := Dictionary new
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
    ].
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
    FileSuffixToTypeMapping at:suffix put:mimeType asLowercase
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
1021
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   986
    "Created: / 30.6.1997 / 21:56:20 / cg"
004c324dc31a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
   987
    "Modified: / 1.8.1998 / 17:03:18 / cg"
1593
4bf2544435a9 add class getter method for FileSuffixToTypemapping
penk
parents: 1561
diff changeset
   988
!
4bf2544435a9 add class getter method for FileSuffixToTypemapping
penk
parents: 1561
diff changeset
   989
4bf2544435a9 add class getter method for FileSuffixToTypemapping
penk
parents: 1561
diff changeset
   990
mimeTypeForSuffixMapping
4bf2544435a9 add class getter method for FileSuffixToTypemapping
penk
parents: 1561
diff changeset
   991
4bf2544435a9 add class getter method for FileSuffixToTypemapping
penk
parents: 1561
diff changeset
   992
    ^ FileSuffixToTypeMapping
1611
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
   993
!
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
   994
2023
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   995
mimeTypeFromString:mimeTypeString
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   996
    "given a mime-type for a string"
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   997
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   998
     ^ MIMEType fromString:mimeTypeString
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
   999
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
  1000
    "
3532
001b42c176a5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  1001
     MIMETypes mimeTypeFromString:'text/html' 
001b42c176a5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  1002
     MIMETypes mimeTypeFromString:'image/gif' 
001b42c176a5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  1003
     MIMETypes mimeTypeFromString:'application/x-expecco-testsuite' 
2023
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
  1004
    "
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
  1005
!
70c535a959be *** empty log message ***
penk
parents: 2020
diff changeset
  1006
1611
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
  1007
mimeTypeOfContents:filename
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
  1008
    "given a filename, scan the contents, return the mime-type or nil, if unknown"
5804b7d63ee8 checkin from browser
penk
parents: 1610
diff changeset
  1009
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1010
    |typeString|
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1011
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1012
    typeString := filename mimeTypeOfContents.
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1013
    typeString isNil ifTrue:[^ nil].
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1014
    ^ MIMEType fromString:typeString.
1887
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1015
!
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1016
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1017
mimeTypeOfData:someData
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1018
    "this tries to guess the mime type of contents of someData.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1019
     Returns nil, if unknown.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1020
     This is done using some heuristics, and may need some improvement"
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1021
3400
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1022
    ^ self mimeTypeOfData:someData suffix:nil
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1023
!
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1024
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1025
mimeTypeOfData:someData suffix:fileNameSuffixOrNilIfUnknown
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1026
    "this tries to guess the mime type of contents of someData.
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1027
     Returns nil, if unknown.
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1028
     In addition to registered detectors (see addMimeTypeDetector:),
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1029
     this is done using some heuristics, and may need some improvement"
3400
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1030
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1031
    |buffer lcBuffer size idx idx2|
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1032
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1033
    someData isEmptyOrNil ifTrue:[^ nil].
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1034
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1035
    TypeFromContentsDetectors notNil ifTrue:[
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1036
        TypeFromContentsDetectors do:[:eachDetector |
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1037
            |m|
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1038
            
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1039
            m := eachDetector value:someData value:fileNameSuffixOrNilIfUnknown.
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1040
            m notNil ifTrue:[^ m]
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1041
        ]
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1042
    ].    
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1043
    
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1044
    size := 2048 min:someData size.
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1045
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1046
    "/ read some data from the file ...
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1047
    buffer := (someData copyTo:size) asString.
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1048
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1049
    lcBuffer := buffer asLowercase.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1050
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1051
    (idx := lcBuffer findString:'mimetype:') ~~ 0 ifTrue:[
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1052
        idx := idx + 'mimetype:' size.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1053
        idx := lcBuffer indexOfNonSeparatorStartingAt:idx.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1054
        idx2 := lcBuffer indexOfSeparatorStartingAt:idx.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1055
        idx2 > idx ifTrue:[
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1056
            ^ MIMEType fromString:(lcBuffer copyFrom:idx to:idx2-1)
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1057
        ].
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1058
    ].
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1059
2924
808feaad1bb3 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  1060
    "/ real starters
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1061
    #(
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1062
        ( #[16r4C 16r00 16r00 16r00 16r01 16r14 16r02 16r00 16r00 16r00 16r00 16r00 16rC0 16r00 16r00 16r00 16r00 16r00 16r00 16r46] 
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1063
                #'application/x-ms-shortcut' )
2924
808feaad1bb3 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  1064
        ( 'ITOLITLS' 
808feaad1bb3 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  1065
                #'application/x-ms-reader' )
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1066
        ( 'WALTOP' 
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1067
                #'application/x-waltop-digital-notepad' )
2892
3da4b1884487 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2891
diff changeset
  1068
        ('PK'                       
3da4b1884487 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2891
diff changeset
  1069
                #'application/x-zip-compressed')
3113
f05de9a7a26c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
  1070
        ('<?xml'                       
f05de9a7a26c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
  1071
                #'text/xml')
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1072
     ) pairsDo:[:pattern :what |
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1073
        |patternString|
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1074
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1075
        patternString := pattern asString.
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1076
        (buffer startsWith:patternString) ifTrue:[
3400
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1077
            what = #'application/x-zip-compressed' ifTrue:[
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1078
                fileNameSuffixOrNilIfUnknown = 'jar' ifTrue:[
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1079
                    ^ MIMEType fromString: #'application/java-archive'
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1080
                ].
7c44ae7a6d6b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3380
diff changeset
  1081
            ].
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1082
            ^ MIMEType fromString:what
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1083
        ]
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1084
    ].
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1085
2924
808feaad1bb3 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  1086
    "/ somewhere near the beginning
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1087
    #(
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1088
            ('<body:'                   #'text/html')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1089
            ('%!!ps-adobe'               #'application/postscript')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1090
            ('%PDF-'                    #'application/pdf')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1091
            ('#!! /bin/sh'               #'application/x-sh')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1092
            ('#!!/bin/sh'                #'application/x-sh')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1093
            "/ ('#!! /bin/bash'              'application/x-bash')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1094
            "/ ('#!!/bin/bash'               'application/x-bash')
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
  1095
            ('UNB+UNO'                  #'application/EDIFACT')
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1096
3113
f05de9a7a26c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
  1097
            ('---- encoding: '          #'application/x-smalltalk-source')
f05de9a7a26c class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
  1098
            ('---- timestamp '          #'application/x-smalltalk-source')
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1099
            ('from dolphin'             #'application/x-smalltalk-source')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1100
            ('from visualworks'         #'application/x-smalltalk-source')
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1101
            ('from squeak'              #'application/x-smalltalk-source')
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1102
            ('from smalltalk/x'         #'application/x-smalltalk-source')
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1103
            ('"{ Package:'              #'application(x-smalltalk-source')
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1104
            ('categoriesforclass'       #'application/x-smalltalk-source')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1105
            ('methodsfor!!'              #'application/x-smalltalk-source')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1106
            ('subclass:'                #'application/x-smalltalk-source')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1107
            ('methodsfor:'              #'application/x-smalltalk-source')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1108
            ('interchangeversion:'      #'application/x-smalltalk-source-sif')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1109
            ('subclass:'                #'application/x-smalltalk-source')
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1110
            ('methodsfor:'              #'application/x-smalltalk-source')
3332
5ab088e3de36 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3322
diff changeset
  1111
            ('Application create:'      #'application/x-smalltalk-source')
5ab088e3de36 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3322
diff changeset
  1112
            ('becomeDefault!!'           #'application/x-smalltalk-source')
3451
3f6dc42dff22 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  1113
            ('(reader defineClass:'     #'application/x-smalltalk-source')      "/ gravel smalltalk
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1114
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1115
    ) pairsDo:[:pattern :what | 
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1116
        (lcBuffer findString:pattern) ~~ 0 ifTrue:[
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1117
            ^ MIMEType fromString:what
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1118
        ]
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1119
    ].
3691
f0cdcbd903e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1120
    
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1121
    (idx := lcBuffer findString:'<h') ~~ 0 ifTrue:[
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1122
        ((lcBuffer continuesWith:'<head' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1123
        or:[(lcBuffer continuesWith:'<html' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1124
        or:[(lcBuffer continuesWith:'<h1' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1125
        or:[(lcBuffer continuesWith:'<h2' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1126
        or:[(lcBuffer continuesWith:'<h3' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1127
        or:[(lcBuffer continuesWith:'<h4' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1128
        or:[(lcBuffer continuesWith:'<h5' startingAt:idx)
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1129
        or:[(lcBuffer continuesWith:'<h6' startingAt:idx)]]]]]]])
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1130
        ifTrue:[
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1131
            ^ MIMEType fromString:'text/html'
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1132
        ]
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1133
    ].
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1134
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1135
    [size ~~ 0 and:[(buffer at:size) isPrintable]] whileTrue:[size := size - 1].
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1136
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1137
    size == 0 ifTrue:[
2583
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  1138
        ^ MIMEType fromString:'text/plain'
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1139
    ].
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1140
    ^ nil
2891
9aee109c1c1c changed:
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
  1141
2924
808feaad1bb3 changed: #mimeTypeOfData:
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  1142
    "Modified: / 12-07-2011 / 19:08:17 / cg"
2582
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1143
!
298203fdb64d mime type detection from conents moved from fileName to here
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
  1144
1887
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1145
suffixForMimeType:mimeType
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1146
    "given a file suffix, return the mime-type"
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1147
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1148
    ^ TypeToFileSuffixMapping at:mimeType ifAbsent:nil
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1149
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1150
    "
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1151
     self suffixForMimeType:(MIMEType fromString:'image/gif')     
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1152
    "
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1153
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1154
    "Created: / 30.6.1997 / 21:55:51 / cg"
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1155
    "Modified: / 23.12.1999 / 22:30:55 / cg"
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1156
!
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1157
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1158
suffixForMimeTypeString:mimeTypeString
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1159
    "given a file suffix, return the mime-type"
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1160
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1161
     ^ self suffixForMimeType:(MIMEType fromString:mimeTypeString) 
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1162
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1163
    "
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1164
     self suffixForMimeTypeString:'image/gif' 
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1165
    "
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1166
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1167
    "Created: / 30.6.1997 / 21:55:51 / cg"
ae19bd933dbd add suffixForMimeType acces
penk
parents: 1864
diff changeset
  1168
    "Modified: / 23.12.1999 / 22:30:55 / cg"
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1169
! !
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1170
2116
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1171
!MIMETypes class methodsFor:'queries-applications'!
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1172
2117
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1173
defaultCommandPerMIME
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1174
    "returns the collection which is used to map MIME-type to command-templates."
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1175
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1176
    "TODO: move this to OS/UserPreferences"
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1177
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1178
    DefaultCommandPerMIMEPerOS isNil ifTrue:[
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1179
        self initializeDefaultCommands
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1180
    ].
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1181
    OperatingSystem isUNIXlike ifTrue:[
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1182
        ^ DefaultCommandPerMIMEPerOS at:#unix
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1183
    ].
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1184
    ^ DefaultCommandPerMIMEPerOS at:#win32
2942
693d381bc775 comment/format in: #defaultCommandPerMIME
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1185
693d381bc775 comment/format in: #defaultCommandPerMIME
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1186
    "
693d381bc775 comment/format in: #defaultCommandPerMIME
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1187
     MIMETypes defaultCommandPerMIME
693d381bc775 comment/format in: #defaultCommandPerMIME
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1188
    "
693d381bc775 comment/format in: #defaultCommandPerMIME
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1189
693d381bc775 comment/format in: #defaultCommandPerMIME
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1190
    "Modified (comment): / 16-09-2011 / 16:20:12 / cg"
2117
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1191
!
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1192
2116
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1193
defaultCommandTemplateToOpenMimeType:mimeType
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1194
    |cmd|
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1195
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1196
    cmd := self defaultCommandPerMIME at:mimeType ifAbsent:nil.
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1197
    cmd isNil ifTrue:[
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1198
        OperatingSystem isMSWINDOWSlike ifTrue:[
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1199
            cmd := Win32OperatingSystem::RegistryEntry commandTemplateToOpenMimeType:mimeType
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1200
        ].
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1201
    ].
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1202
    ^ cmd
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1203
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1204
    "
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1205
     MIMETypes defaultCommandTemplateToOpenMimeType:'application/pdf'
2118
b41112f6c76e commandTemplate stuff
Claus Gittinger <cg@exept.de>
parents: 2117
diff changeset
  1206
     MIMETypes defaultCommandTemplateToOpenMimeType:'text/html'
2116
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1207
    "
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1208
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1209
    "Created: / 12-05-2004 / 11:09:22 / cg"
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1210
    "Modified: / 12-05-2004 / 11:16:53 / cg"
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1211
!
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1212
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1213
defaultCommandTemplateToPrintMimeType:mimeType
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1214
    |cmd|
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1215
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1216
    cmd := self defaultPrintCommandPerMIME at:mimeType ifAbsent:nil.
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1217
    cmd isNil ifTrue:[
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1218
        OperatingSystem isMSWINDOWSlike ifTrue:[
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1219
            cmd := Win32OperatingSystem::RegistryEntry commandTemplateToPrintMimeType:mimeType
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1220
        ].
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1221
    ].
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1222
    ^ cmd
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1223
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1224
    "
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1225
     MIMETypes defaultCommandTemplateToPrintMimeType:'application/pdf'
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1226
    "
2117
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1227
!
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1228
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1229
defaultPrintCommandPerMIME
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1230
    "returns the collection which is used to map MIME-type to printing command-templates."
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1231
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1232
    "TODO: move this to OS/UserPreferences"
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1233
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1234
    DefaultPrintCommandPerMIMEPerOS isNil ifTrue:[
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1235
        self initializeDefaultCommands
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1236
    ].
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1237
    OperatingSystem isUNIXlike ifTrue:[
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1238
        ^ DefaultPrintCommandPerMIMEPerOS at:#unix
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1239
    ].
84ad717d243e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2116
diff changeset
  1240
    ^ DefaultPrintCommandPerMIMEPerOS at:#win32
2116
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1241
! !
edc0a8f8ff26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2113
diff changeset
  1242
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1243
!MIMETypes class methodsFor:'queries-image formats'!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1244
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1245
imageReaderClasses
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1246
    "return a collection of registered image reader classes"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1247
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1248
    |setOfClasses|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1249
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1250
    setOfClasses := IdentitySet new.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1251
    FileSuffixToImageReaderClassMapping notNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1252
        FileSuffixToImageReaderClassMapping keysAndValuesDo:[:suff :cls |
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1253
            setOfClasses add:cls
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1254
        ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1255
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1256
    TypeToImageReaderClassMapping notNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1257
        TypeToImageReaderClassMapping keysAndValuesDo:[:suff :cls |
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1258
            setOfClasses add:cls
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1259
        ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1260
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1261
    ^ setOfClasses
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1262
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1263
    "Created: / 30.6.1997 / 22:03:42 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1264
    "Modified: / 1.8.1998 / 16:59:52 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1265
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1266
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1267
imageReaderForSuffix:aSuffix
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1268
    "given a file suffix, return an approriate image reader class"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1269
2724
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1270
    FileSuffixToImageReaderClassMapping isNil ifTrue:[
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1271
        self initializeImageReaderMappings
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1272
    ].
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1273
    ^ FileSuffixToImageReaderClassMapping at:aSuffix asLowercase ifAbsent:nil
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1274
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1275
    "Created: / 30.6.1997 / 21:59:11 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1276
    "Modified: / 1.8.1998 / 17:01:58 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1277
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1278
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1279
imageReaderForSuffix:aSuffix put:aReaderClass
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1280
    "register an image reader for a file suffix"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1281
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1282
    FileSuffixToImageReaderClassMapping isNil ifTrue:[
2724
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1283
        self initializeImageReaderMappings
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1284
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1285
    FileSuffixToImageReaderClassMapping at:aSuffix asLowercase put:aReaderClass
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1286
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1287
    "Created: / 30.6.1997 / 21:59:43 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1288
    "Modified: / 1.8.1998 / 17:02:14 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1289
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1290
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1291
imageReaderForType:mimeTypeString
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1292
    "given a mime-type, return an approriate image reader class"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1293
2724
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1294
    TypeToImageReaderClassMapping isNil ifTrue:[
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1295
        self initializeImageReaderMappings
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1296
    ].
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1297
    ^ TypeToImageReaderClassMapping at:mimeTypeString asLowercase ifAbsent:nil
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1298
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1299
    "Created: / 30.6.1997 / 21:56:01 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1300
    "Modified: / 1.8.1998 / 17:02:28 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1301
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1302
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1303
imageReaderForType:mimeTypeString put:aReaderClass
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1304
    "register an image reader for a mime-type"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1305
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1306
    TypeToImageReaderClassMapping isNil ifTrue:[
2724
8e834e62dbbc Initialize when querying for image type and not yet initialized
Stefan Vogel <sv@exept.de>
parents: 2710
diff changeset
  1307
        self initializeImageReaderMappings
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1308
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1309
    TypeToImageReaderClassMapping at:mimeTypeString asLowercase put:aReaderClass
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1310
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1311
    "Created: / 30.6.1997 / 21:56:11 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1312
    "Modified: / 1.8.1998 / 17:02:40 / cg"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1313
! !
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1314
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1315
!MIMETypes class methodsFor:'queries-language syntax'!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1316
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1317
commentStringsForFilename:aFilename
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1318
    "return a useful comment definition; heuristics for now.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1319
     The returned value is an array of 2 elements;
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1320
     the first is the end-of-line comment string (or nil);
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1321
     the second an array of opening/closing delimiters (or an array of nils)"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1322
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1323
     |mime|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1324
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1325
     mime := MIMETypes mimeTypeForFilename:aFilename.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1326
     ^ self commentStringsForMimeType:mime suffix:(aFilename asFilename suffix)
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1327
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1328
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1329
     MIMETypes commentStringsForFilename:'Makefile'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1330
     MIMETypes commentStringsForFilename:'Object.st'. 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1331
     MIMETypes commentStringsForFilename:'Foo.java'. 
1925
9f5e4568529f comment
Claus Gittinger <cg@exept.de>
parents: 1891
diff changeset
  1332
     MIMETypes commentStringsForFilename:'Foo.html'. 
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1333
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1334
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1335
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1336
commentStringsForFilename:aFilename ifUnknown:alternativeBlockReturningCommentString
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1337
    "return a useful comment definition; heuristics for now.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1338
     The returned value is an array of 2 elements;
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1339
     the first is the end-of-line comment string (or nil);
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1340
     the second an array of opening/closing delimiters (or an array of nils)"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1341
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1342
     |mime|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1343
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1344
     mime := MIMETypes mimeTypeForFilename:aFilename.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1345
     ^ self commentStringsForMimeType:mime suffix:(aFilename asFilename suffix) ifUnknown:alternativeBlockReturningCommentString
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1346
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1347
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1348
     MIMETypes commentStringsForFilename:'Makefile'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1349
     MIMETypes commentStringsForFilename:'Object.st'. 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1350
     MIMETypes commentStringsForFilename:'Foo.java'. 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1351
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1352
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1353
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1354
commentStringsForMimeType:mime suffix:suff
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1355
    "return a useful comment definition; heuristics for now.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1356
     The returned value is an array of 2 elements;
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1357
     the first is the end-of-line comment string (or nil);
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1358
     the second an array of opening/closing delimiters (or an array of nils)"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1359
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1360
    ^ self
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1361
        commentStringsForMimeType:mime suffix:suff 
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1362
        ifUnknown: #(';' (nil nil))  
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1363
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1364
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1365
     |mime|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1366
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1367
     mime := MIMETypes mimeTypeForFilename:'Makefile'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1368
     MIMETypes commentStringsForMimeType:mime suffix:nil.     
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1369
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1370
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1371
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1372
     |mime|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1373
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1374
     mime := MIMETypes mimeTypeForFilename:'Object.st'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1375
     MIMETypes commentStringsForMimeType:mime suffix:nil.    
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1376
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1377
!
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1378
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1379
commentStringsForMimeType:mime suffix:suff ifUnknown:alternativeBlockReturningCommentString
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1380
    "return a useful comment definition; heuristics for now.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1381
     The returned value is an array of 2 elements;
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1382
     the first is the end-of-line comment string (or nil);
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1383
     the second an array of opening/closing delimiters (or an array of nils)"
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1384
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1385
    |commentSpec|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1386
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1387
    commentSpec := TypeToCommentStringMapping at:mime ifAbsent:nil.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1388
    commentSpec notNil ifTrue:[
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1389
        ^ commentSpec
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1390
    ].
3492
0d8154dbdc2b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  1391
    suff notNil ifTrue:[
0d8154dbdc2b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  1392
        commentSpec := SuffixToCommentStringMapping at:suff ifAbsent:nil.
0d8154dbdc2b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  1393
        commentSpec notNil ifTrue:[
0d8154dbdc2b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  1394
            ^ commentSpec
0d8154dbdc2b class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  1395
        ].
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1396
    ].
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1397
    ^ alternativeBlockReturningCommentString value
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1398
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1399
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1400
     |mime|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1401
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1402
     mime := MIMETypes mimeTypeForFilename:'Makefile'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1403
     MIMETypes commentStringsForMimeType:mime suffix:nil.     
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1404
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1405
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1406
    "
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1407
     |mime|
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1408
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1409
     mime := MIMETypes mimeTypeForFilename:'Object.st'.
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1410
     MIMETypes commentStringsForMimeType:mime suffix:nil.    
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1411
    "
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1412
!
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1413
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1414
parenthesisSpecForFilename:aFilename
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1415
    "return a useful parentesis spec; heuristics for now.
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1416
     The returned value is a dictionary to be used as parentesis spec in an editor"
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1417
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1418
     |mime|
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1419
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1420
     mime := MIMETypes mimeTypeForFilename:aFilename.
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1421
     ^ self parenthesisSpecForMimeType:mime suffix:(aFilename asFilename suffix)
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1422
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1423
    "
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1424
     MIMETypes parenthesisSpecForFilename:'Object.st'. 
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1425
     MIMETypes parenthesisSpecForFilename:'Foo.java'. 
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1426
     MIMETypes parenthesisSpecForFilename:'Foo.html'. 
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1427
     MIMETypes parenthesisSpecForFilename:'Foo.lsp'. 
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1428
    "
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1429
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1430
    "Created: / 10-04-2007 / 15:18:41 / cg"
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1431
!
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1432
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1433
parenthesisSpecForFilename:aFilename ifUnknown:alternative
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1434
     |mime|
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1435
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1436
     mime := MIMETypes mimeTypeForFilename:aFilename.
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1437
     ^ self parenthesisSpecForMimeType:mime suffix:(aFilename asFilename suffix) ifUnknown:alternative
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1438
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1439
    "Created: / 10-04-2007 / 15:26:20 / cg"
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1440
!
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1441
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1442
parenthesisSpecForMimeType:mime suffix:suff
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1443
    ^ self
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1444
        parenthesisSpecForMimeType:mime suffix:suff 
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1445
        ifUnknown: nil
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1446
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1447
    "Created: / 10-04-2007 / 15:19:39 / cg"
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1448
!
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1449
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1450
parenthesisSpecForMimeType:mime suffix:suff ifUnknown:alternativeValue
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1451
    |spec|
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1452
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1453
    spec := TypeToParenthesisSpecMapping at:mime ifAbsent:nil.
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1454
    spec notNil ifTrue:[
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1455
        ^ spec
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1456
    ].
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1457
2491
831417cc1e5b Change bas spelling: parentesis to good spellinge parenthesis
Stefan Vogel <sv@exept.de>
parents: 2490
diff changeset
  1458
    spec := SuffixToParenthesisSpecMapping at:suff ifAbsent:nil.
2298
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1459
    spec notNil ifTrue:[
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1460
        ^ spec
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1461
    ].
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1462
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1463
    ^ alternativeValue value
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1464
2d09f75ee005 parentesis spec
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
  1465
    "Created: / 10-04-2007 / 15:20:38 / cg"
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1466
! !
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1467
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1468
!MIMETypes::MIMEType class methodsFor:'documentation'!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1469
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1470
documentation
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1471
"
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1472
    like a string, but knows that it represents a mimeType.
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1473
    mimetypes are singletons, remembered in the class variable CachedTypes.
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1474
"
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1475
! !
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1476
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1477
!MIMETypes::MIMEType class methodsFor:'instance creation'!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1478
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1479
fromString:aString
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1480
    |cachedType newType|
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1481
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1482
    aString class == self ifTrue:[^ aString].
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1483
3011
f2af94d78383 delay initialization of cachedTypes
Claus Gittinger <cg@exept.de>
parents: 3008
diff changeset
  1484
    CachedTypes isNil ifTrue:[
3012
af9c31ac2fc1 make it a real dictionary
Claus Gittinger <cg@exept.de>
parents: 3011
diff changeset
  1485
        CachedTypes := Dictionary new:100.
3011
f2af94d78383 delay initialization of cachedTypes
Claus Gittinger <cg@exept.de>
parents: 3008
diff changeset
  1486
    ].
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1487
    cachedType := CachedTypes at:aString ifAbsent:nil.
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1488
    cachedType notNil ifTrue:[^ cachedType].
3011
f2af94d78383 delay initialization of cachedTypes
Claus Gittinger <cg@exept.de>
parents: 3008
diff changeset
  1489
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1490
    newType := aString copy changeClassTo:self.
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1491
    CachedTypes at:aString put:newType.
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1492
    ^ newType
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1493
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1494
    "
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1495
     self fromString:'text/html'
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1496
    "
3011
f2af94d78383 delay initialization of cachedTypes
Claus Gittinger <cg@exept.de>
parents: 3008
diff changeset
  1497
3012
af9c31ac2fc1 make it a real dictionary
Claus Gittinger <cg@exept.de>
parents: 3011
diff changeset
  1498
    "Modified: / 20-07-2012 / 17:36:31 / cg"
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1499
! !
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1500
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1501
!MIMETypes::MIMEType methodsFor:'queries'!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1502
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1503
fileTypeInfo
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1504
    ^ MIMETypes fileTypeInfoForMimeType:self
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1505
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1506
    "
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1507
     (MIMETypes mimeTypeFromString:'application/x-smalltalk-source') fileTypeInfo 
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1508
    "
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1509
!
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1510
1693
4055b361abe9 isArchiv -> isArchive
Claus Gittinger <cg@exept.de>
parents: 1691
diff changeset
  1511
isArchive
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1512
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1513
    "return true, if I represent an archive type (such as zip or tar)"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1514
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1515
    ^ self isArchiveType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1516
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1517
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1518
isArchiveType
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1519
    "return true, if I represent an archive type (such as zip or tar)"
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1520
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1521
    |archivTypes|
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1522
1729
5d1b74b8d264 refactored
Claus Gittinger <cg@exept.de>
parents: 1720
diff changeset
  1523
    archivTypes := MIMETypes applicationCompressorsAndArchiveTypeList.
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1524
    archivTypes pairWiseDo:[: ext : type |
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1525
        self = type ifTrue:[ ^ true].
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1526
    ].
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1527
    ^ false
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1528
!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1529
2024
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1530
isBinary
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1531
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1532
    "return true, if I represent a binary (non-text) type"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1533
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1534
    ^ self isBinaryType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1535
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1536
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1537
isBinaryType
2024
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1538
    "return true, if I represent a binary (non-text) type"
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1539
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1540
    ^ self isTextType not
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1541
!
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1542
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1543
isHtml
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1544
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1545
    "return true, if I represent the html text type"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1546
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1547
    ^ self isHtmlType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1548
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1549
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1550
isHtmlType
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1551
    "return true, if I represent the html text type"
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1552
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1553
    ^ (self = 'text/html')
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1554
!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1555
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1556
isImage
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1557
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1558
    "return true, if I represent an image type (such as gif or jpg)"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1559
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1560
    ^ self isImageType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1561
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1562
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1563
isImageType
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1564
    "return true, if I represent an image type (such as gif or jpg)"
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1565
1693
4055b361abe9 isArchiv -> isArchive
Claus Gittinger <cg@exept.de>
parents: 1691
diff changeset
  1566
    ^ (self startsWith:'image/')
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1567
!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1568
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1569
isPdf
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1570
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1571
    "return true, if I represent the pdf type"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1572
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1573
    ^ self isPdfType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1574
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1575
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1576
isPdfType
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1577
    "return true, if I represent the pdf type"
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1578
1612
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1579
    ^ (self = 'application/pdf')
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1580
!
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1581
4c7893f943a8 *** empty log message ***
penk
parents: 1611
diff changeset
  1582
isSmalltalkSource
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1583
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1584
    "return true, if I represent the smalltalk sourcecode type"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1585
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1586
    ^ self isSmalltalkSourceType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1587
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1588
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1589
isSmalltalkSourceType
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1590
    "return true, if I represent the smalltalk sourcecode type"
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1591
3359
62084f197409 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3332
diff changeset
  1592
    ^ (self startsWith: 'application/x-smalltalk-source')
1783
faf721f692ae *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
  1593
!
faf721f692ae *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
  1594
2024
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1595
isTextType
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1596
    "return true, if I represent some text type"
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1597
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1598
    ^ self startsWith:'text/'
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1599
!
eb5838c72cc7 isBinary added
penk
parents: 2023
diff changeset
  1600
1783
faf721f692ae *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
  1601
isXml
3260
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1602
    <resource: #obsolete>
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1603
    "return true, if I represent the xml text type"
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1604
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1605
    ^ self isXmlType
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1606
!
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1607
cefd4c99843e class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3253
diff changeset
  1608
isXmlType
1864
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1609
    "return true, if I represent the xml text type"
c21ec6c1635e comments
Claus Gittinger <cg@exept.de>
parents: 1841
diff changeset
  1610
1783
faf721f692ae *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
  1611
    ^ (self = 'text/xml')
2490
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1612
!
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1613
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1614
suffix
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1615
    ^ MIMETypes suffixForMimeType:self
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1616
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1617
    "
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1618
       (MIMETypes mimeTypeFromString:'application/x-expecco-testsuite') suffix 
9bcc1b3fd7e0 MIMEType>>#suffix
Stefan Vogel <sv@exept.de>
parents: 2489
diff changeset
  1619
    "
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
! !
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1621
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1622
!MIMETypes class methodsFor:'documentation'!
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1623
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1624
version
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
  1625
    ^ '$Header$'
2758
66e62ceecb67 comment/format in: #defaultCommandForMimeType:
Claus Gittinger <cg@exept.de>
parents: 2724
diff changeset
  1626
!
66e62ceecb67 comment/format in: #defaultCommandForMimeType:
Claus Gittinger <cg@exept.de>
parents: 2724
diff changeset
  1627
66e62ceecb67 comment/format in: #defaultCommandForMimeType:
Claus Gittinger <cg@exept.de>
parents: 2724
diff changeset
  1628
version_CVS
3482
3d7a30e2aa97 class: MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
  1629
    ^ '$Header$'
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1630
! !
1666
2fe4fb7be12c added xml type
Claus Gittinger <cg@exept.de>
parents: 1616
diff changeset
  1631
3104
39607bbc7c1d class: MIMETypes
Stefan Vogel <sv@exept.de>
parents: 3039
diff changeset
  1632
643
f3bd12eb1008 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1633
MIMETypes initialize!