(self, contentType)
| 746 | return k |
| 747 | |
| 748 | def mapContentType(self, contentType): |
| 749 | contentType = contentType.lower() |
| 750 | if contentType == 'text': |
| 751 | contentType = 'text/plain' |
| 752 | elif contentType == 'html': |
| 753 | contentType = 'text/html' |
| 754 | elif contentType == 'xhtml': |
| 755 | contentType = 'application/xhtml+xml' |
| 756 | return contentType |
| 757 | |
| 758 | def trackNamespace(self, prefix, uri): |
| 759 | loweruri = uri.lower() |
no outgoing calls
no test coverage detected