Bug #282174 --> Podcasting support for Thunderbird Add a custom mime part header that specifies a URL for the attachment.

This mime header is used by Thunderbird's RSS reader and eventually by the code to handle storing attachments separately
from the message. Removes an
obsolete attachment attribute called notDownloaded and replaces it with isExternalAttachment. sr=bienvenu a=sspitzer
This commit is contained in:
scott%scott-macgregor.org 2005-02-15 00:34:38 +00:00
Родитель 38ca496c7d
Коммит 1e5b836983
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -745,7 +745,7 @@ NS_IMETHODIMP TokenStreamListener::ProcessHeaders(nsIUTF8StringEnumerator *aHead
return NS_OK;
}
NS_IMETHODIMP TokenStreamListener::HandleAttachment(const char *contentType, const char *url, const PRUnichar *displayName, const char *uri, PRBool aNotDownloaded)
NS_IMETHODIMP TokenStreamListener::HandleAttachment(const char *contentType, const char *url, const PRUnichar *displayName, const char *uri, PRBool aIsExternalAttachment)
{
mTokenizer.tokenizeAttachment(contentType, NS_ConvertUCS2toUTF8(displayName).get());
return NS_OK;