MIMETypes.st
changeset 3941 dd9237d3a727
parent 3871 51014a1e5d17
child 3952 6a9078c8b47e
equal deleted inserted replaced
3940:d5fb7f7790eb 3941:dd9237d3a727
  1650 !
  1650 !
  1651 
  1651 
  1652 isXmlType
  1652 isXmlType
  1653     "return true, if I represent the xml text type"
  1653     "return true, if I represent the xml text type"
  1654 
  1654 
  1655     ^ (self = 'text/xml')
  1655     ^ self = 'text/xml' or:[self = 'application/xml']
       
  1656 
       
  1657     "Modified (format): / 13-03-2017 / 09:41:52 / stefan"
  1656 !
  1658 !
  1657 
  1659 
  1658 suffix
  1660 suffix
  1659     ^ MIMETypes suffixForMimeType:self
  1661     ^ MIMETypes suffixForMimeType:self
  1660 
  1662